:root {
    --primary-navy: #1a237e;
    --primary-gold: #d4af37;
    --light-gold: #f5e6a3;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --medium-gray: #6c757d;
    --dark-gray: #212529;
    --gradient-primary: linear-gradient(135deg, #1a237e 0%, #3949ab 100%);
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f5e6a3 100%);
    --shadow: 0 5px 15px rgba(26, 35, 126, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    overflow-x: hidden;
}

.font-display {
    font-family: 'Playfair Display', serif;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Navigation */
.navbar {
    padding: 1rem 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--primary-navy) !important;
    text-decoration: none;
    position: relative;
}

.navbar-brand::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-gold);
    transition: width 0.3s ease;
}

.navbar-brand:hover::after {
    width: 100%;
}

.nav-link {
    font-weight: 500;
    color: var(--dark-gray) !important;
    margin: 0 1rem;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::before {
    width: 100%;
}

/* Enhanced Burger Menu */
.custom-toggler {
    border: none;
    background: var(--gradient-gold);
    padding: 12px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    position: relative;
    z-index: 1001;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.custom-toggler:focus {
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.5);
    outline: none;
}

.custom-toggler:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.burger-line {
    width: 20px;
    height: 2px;
    background-color: var(--primary-navy);
    border-radius: 1px;
    margin: 2px 0;
    transition: all 0.3s ease;
    transform-origin: center;
}

.custom-toggler[aria-expanded="true"] {
    background: var(--primary-navy);
}

.custom-toggler[aria-expanded="true"] .burger-line {
    background-color: white;
}

.custom-toggler[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.custom-toggler[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.custom-toggler[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
}

/* Enhanced Mobile Menu */
@media (max-width: 991px) {
    .navbar-collapse {
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.95) 100%);
        border-radius: 20px;
        margin-top: 1rem;
        padding: 2rem 1.5rem;
        box-shadow: 0 15px 35px rgba(26, 35, 126, 0.15);
        backdrop-filter: blur(15px);
        border: 1px solid rgba(212, 175, 55, 0.2);
    }
    
    .navbar-nav {
        gap: 0.75rem;
    }
    
    .nav-link {
        padding: 1rem 1.5rem !important;
        border-radius: 15px;
        transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        font-weight: 500;
        position: relative;
        overflow: hidden;
    }
    
    .nav-link::after {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: var(--gradient-gold);
        transition: left 0.3s ease;
        z-index: -1;
    }
    
    .nav-link:hover::after {
        left: 0;
    }
    
    .nav-link:hover {
        color: var(--primary-navy) !important;
        transform: translateX(8px);
        box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    }
    
    .nav-link::before {
        display: none;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #1a237e 0%, #3949ab 50%, #5c6bc0 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="%23ffffff" fill-opacity="0.05" points="0,1000 1000,0 1000,1000"/></svg>');
    background-size: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

/* Dynamic cursor styles */
.typewriter-cursor::after {
    content: '|';
    color: white;
    margin-left: 2px;
    animation: blink 1s infinite;
}

.typewriter-cursor.typing::after {
    animation: none;
}

.typewriter-cursor.subtitle::after {
    color: var(--light-gold);
}

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}

#typewriter-description {
    opacity: 0;
    transform: translateY(20px);
    transition: all 1.5s ease-out;
}

#typewriter-description.animate-in {
    opacity: 1;
    transform: translateY(0);
}


.hero .subtitle {
    font-size: 1.5rem;
    color: var(--light-gold);
    margin-bottom: 2rem;
}

.hero p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
}

.btn-luxury {
    background: var(--gradient-gold);
    color: var(--primary-navy);
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.btn-luxury:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    color: var(--primary-navy);
}

/* Hero Image */
.hero-image {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img {
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    max-width: 350px;
    width: 100%;
    height: auto;
    object-fit: cover;
    opacity: 0;
    transform: translateX(50px) scale(0.9);
    animation: heroImageEnter 1s ease-out 0.2s forwards, floatAnimation 6s ease-in-out 1.5s infinite;
}

.hero-img:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 25px 50px rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    animation-play-state: paused;
}

@keyframes heroImageEnter {
    0% {
        opacity: 0;
        transform: translateX(50px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes floatAnimation {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@media (max-width: 991px) {
    .hero-image {
        text-align: center;
    }

    .hero-img {
        max-width: 280px;
    }
}

/* Stats Section */
.stats-section {
    padding: 100px 0;
    background: var(--light-gray);
    position: relative;
}

.stats-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.stats-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.6s ease;
}

.stats-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(26, 35, 126, 0.2);
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.stats-card:hover::before {
    left: 100%;
}

.stats-card:hover .stats-number {
    color: var(--primary-gold);
    transform: scale(1.1);
}

.stats-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.stats-label {
    font-size: 1.1rem;
    color: var(--medium-gray);
    font-weight: 500;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: white;
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0.1;
    z-index: 1;
    transition: opacity 0.4s ease;
}

.about-image:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(26, 35, 126, 0.2);
}

.about-image:hover::before {
    opacity: 0.05;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* About image entrance animation */
.about-image.animate-on-scroll {
    opacity: 0;
    transform: translateX(-50px) scale(0.9);
}

.about-image.animate-on-scroll.animated {
    opacity: 1;
    transform: translateX(0) scale(1);
    transition: all 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

.section-subtitle {
    color: var(--primary-gold);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

/* Expertise Items - Dedicated Classes */
.expertise-item {
    transition: all 0.3s ease;
    padding: 1rem;
    border-radius: 12px;
    cursor: pointer;
    background: white;
    border: 1px solid rgba(212, 175, 55, 0.1);
    box-shadow: 0 2px 8px rgba(26, 35, 126, 0.05);
}

.expertise-item:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(255, 255, 255, 0.95) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}

.expertise-icon-wrapper {
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(212, 175, 55, 0.2);
    flex-shrink: 0;
}

/* Override any service-icon styles when used in expertise items */
.expertise-item .service-icon {
    width: 50px !important;
    height: 50px !important;
    background: var(--gradient-gold) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-right: 1rem !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 3px 10px rgba(212, 175, 55, 0.2) !important;
    flex-shrink: 0 !important;
}

.expertise-item:hover .service-icon {
    transform: scale(1.1) rotate(5deg) !important;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3) !important;
}

.expertise-item .service-icon i {
    font-size: 1.2rem !important;
    color: var(--primary-navy) !important;
    transition: all 0.3s ease !important;
}

.expertise-item:hover .service-icon i {
    color: white !important;
}

.expertise-item:hover .expertise-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.expertise-icon-wrapper i {
    font-size: 1.2rem;
    color: var(--primary-navy);
    transition: all 0.3s ease;
}

.expertise-item:hover .expertise-icon-wrapper i {
    color: white;
}

.expertise-text-content {
    flex: 1;
}

.expertise-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 0.25rem;
    transition: all 0.3s ease;
}

.expertise-item:hover .expertise-main-title {
    color: var(--primary-gold);
    transform: translateY(-1px);
}

.expertise-description {
    font-size: 0.85rem;
    color: var(--medium-gray);
    font-weight: 500;
    line-height: 1.3;
    transition: all 0.3s ease;
}

.expertise-item:hover .expertise-description {
    color: var(--dark-gray);
}


/* Services Section */
.services-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    margin-bottom: 3rem;
    height: 100%;
    position: relative;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(26, 35, 126, 0.15);
    border-color: rgba(212, 175, 55, 0.2);
    background: linear-gradient(135deg, #ffffff 0%, #fefefe 100%);
}

.service-card:hover .service-icon {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.service-card:hover .service-title {
    color: var(--primary-gold);
    transform: translateY(-2px);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    color: var(--primary-navy);
    transition: all 0.3s ease;
}

.service-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

/* Portfolio Section */
.portfolio-section {
    padding: 100px 0;
    background: white;
}

.portfolio-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.portfolio-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(26, 35, 126, 0.2);
}

.portfolio-item:hover img {
    transform: scale(1.05);
}


.portfolio-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0.95;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: all 0.3s ease;
}

.portfolio-title {
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.portfolio-subtitle {
    color: var(--light-gold);
    font-size: 1rem;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.6s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(26, 35, 126, 0.2);
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.testimonial-card:hover::before {
    left: 100%;
}

.testimonial-card:hover .quote-icon {
    color: var(--primary-gold);
    opacity: 0.6;
    transform: scale(1.1);
}

.testimonial-quote {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--dark-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 1rem;
    background: var(--gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-navy);
    font-size: 1.5rem;
}

.author-name {
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 0.2rem;
}

.author-title {
    color: var(--medium-gray);
    font-size: 0.9rem;
}

.quote-icon {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 3rem;
    color: var(--primary-gold);
    opacity: 0.3;
    transition: all 0.3s ease;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: var(--primary-navy);
    color: white;
}

.contact-info {
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(10px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: var(--primary-navy);
    font-size: 1.2rem;
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(10px);
}

.form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: white;
    padding: 15px 20px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25);
    color: white;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

/* Footer */
.footer {
    background: #0d1421;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

/* Enhanced Responsive Design */
@media (max-width: 768px) {
    /* Hero Section Mobile */
    .hero {
        padding: 6rem 0 2rem 0;
        min-height: 90vh;
    }
    
    
    .hero .col-lg-6:first-child {
        order: 2;
    }
    
    .hero .col-lg-6:last-child {
        order: 1;
        margin-bottom: 2rem;
    }
    
    .hero h1 {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
        line-height: 1.2;
    }

    .hero .subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-img {
        max-width: 200px;
        animation: heroImageEnter 0.8s ease-out 0.1s forwards, floatAnimation 6s ease-in-out 1.2s infinite;
    }
    
    .btn-luxury {
        padding: 12px 30px;
        font-size: 1rem;
    }

    /* Section Titles */
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    /* Stats Section */
    .stats-section {
        padding: 60px 0;
    }
    
    .stats-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .stats-number {
        font-size: 1.8rem;
        margin-bottom: 0.75rem;
    }
    
    .stats-label {
        font-size: 1rem;
    }

    /* About Section */
    .about-section {
        padding: 60px 0;
    }
    
    .about-image img {
        height: 350px;
    }
    
    /* About expertise items mobile */
    .about-section .row.mt-4 {
        flex-direction: column;
        margin-top: 2rem !important;
    }
    
    .about-section .col-md-6 {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .about-section .d-flex {
        justify-content: flex-start !important;
        align-items: center;
        text-align: left;
    }

    /* Expertise Items Mobile */
    .expertise-item {
        padding: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .expertise-icon-wrapper {
        width: 45px;
        height: 45px;
        margin-right: 0.75rem;
    }
    
    .expertise-icon-wrapper i {
        font-size: 1.1rem;
    }
    
    .expertise-main-title {
        font-size: 1rem;
        margin-bottom: 0.2rem;
    }
    
    .expertise-description {
        font-size: 0.8rem;
    }

    /* Services Section */
    .services-section {
        padding: 60px 0;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    .service-icon {
        width: 65px;
        height: 65px;
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .service-title {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    /* Portfolio Section */
    .portfolio-section {
        padding: 60px 0;
    }
    
    .portfolio-item {
        margin-bottom: 1.5rem;
    }
    
    .portfolio-item img {
        height: 250px;
    }

    /* Testimonials Section */
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonial-card {
        padding: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .testimonial-quote {
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    .author-image {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    /* Contact Section */
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .contact-form {
        padding: 2rem;
        margin-top: 2rem;
    }
    
    .form-control {
        padding: 12px 15px;
        font-size: 1rem;
    }
}

/* Extra Small Devices */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero {
        padding: 7rem 0 2rem 0;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero .subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .stats-card {
        padding: 1.25rem;
    }
    
    .service-card {
        padding: 1.5rem 1rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}