/* styles.css */
:root {
    --primary-color: #2596be;
    --primary-dark: #1d7a9c;
    --light-color: #f9f9f9;
    --light-gray: #f0f0f0;
    --medium-gray: #e0e0e0;
    --dark-gray: #333;
    --text-color: #444;
    --text-light: #666;
    --white: #ffffff;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 10px 25px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 8px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--light-color);
}

h1, h2, h3, h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    position: relative;
}

h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    border: none;
    font-family: 'Inter', sans-serif;
}
/* Force the hover transform for hero buttons */
.hero-buttons .btn-primary:hover,
.hero-buttons .btn-secondary:hover {
    transform: translateY(-2px) !important;
}

/* Add transition to all buttons consistently */
.btn-primary,
.btn-secondary {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background-color: white;
    color: var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
    color: white;
}

.btn-nav {
    padding: 0.7rem 1.5rem;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: var(--border-radius);
    font-weight: 500;
}

.btn-nav:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
}

/* ========== NAVIGATION ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: top;
    transform: translateY(0) scaleY(1);
    /* INCREASED HEIGHT */
    height: 95px;
    display: flex;
    align-items: center;
}

.navbar.sticky {
    /* DECREASED STICKY HEIGHT */
    height: 85px;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
    /* STRONGER ZOOM OUT EFFECT */
    transform: translateY(-10px) scaleY(0.88);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0 1.5rem;
    /* ADD TRANSITION FOR SCALING EFFECT */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Apply scaling to container when sticky */
.navbar.sticky .nav-container {
    transform: scale(0.95);
}

/* ========== LOGO - BIGGER & CENTERED ========== */
.logo {
    display: block;
    /* INCREASED LOGO SIZE */
    height: 85px; /* Bigger logo */
    width: auto;
    max-height: none; /* Remove restriction */
    transition: all 0.4s ease;
    object-fit: contain;
    /* Perfect vertical centering */
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
}

.navbar.sticky .logo {
    /* Proportionally smaller when sticky */
    height: 75px;
    /* Apply additional scaling for stronger effect */
    transform: translateY(-50%) scale(0.92);
}

/* ========== DESKTOP NAVIGATION ========== */
.nav-menu {
    display: flex;
    align-items: center;
    /* ADD TRANSITION FOR SMOOTH SCALING */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.sticky .nav-menu {
    /* Apply scaling to nav menu */
    transform: scale(0.95);
}

.nav-list {
    display: flex;
    list-style: none;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-item {
    margin-left: 2rem;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.nav-item:nth-child(1) { transition-delay: 0.1s; }
.nav-item:nth-child(2) { transition-delay: 0.2s; }
.nav-item:nth-child(3) { transition-delay: 0.3s; }
.nav-item:nth-child(4) { transition-delay: 0.4s; }
.nav-item:nth-child(5) { transition-delay: 0.5s; }

.nav-menu.active .nav-item {
    opacity: 1;
    transform: translateY(0);
}

.nav-link {
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition);
    display: inline-block;
    color: var(--dark-gray);
    /* SLIGHTLY LARGER FONT */
    font-size: 1rem;
}

.nav-link:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Current page indicator for desktop */
.nav-link.current-page {
    color: var(--primary-color);
    font-weight: 600;
}

.nav-link.current-page::after {
    width: 100%;
}

/* ========== DESKTOP BUTTON - WITH ZOOM EFFECT ========== */
.btn-nav {
    padding: 0.7rem 1.6rem; /* Slightly larger padding */
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); /* Match navbar transition */
    font-size: 0.95rem; /* Slightly larger font */
    white-space: nowrap;
    /* Moved toward center - less space on right */
    margin-left: 1.5rem; /* Add space between nav and button */
    margin-right: -0.5rem; /* Pull button toward center */
}

/* Apply scaling to button when sticky */
.navbar.sticky .btn-nav {
    transform: scale(0.92);
    /* Slightly smaller padding when sticky */
    padding: 0.6rem 1.4rem;
    font-size: 0.9rem;
}

.desktop-book-btn {
    display: block;
}

.mobile-book-btn {
    display: none;
}

/* ... rest of your CSS remains the same ... */

/* ========== MENU TOGGLE ========== */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 1002;
}

.menu-line {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--dark-gray);
    margin: 5px 0;
    transition: var(--transition);
    border-radius: 2px;
}


.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 90vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}


/* ========== NAVIGATION MOBILE ========== */
/* 768px and below */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 1.5rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -280px;
        width: 280px !important;
        height: 100vh;
        background-color: var(--white);
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
        padding: 6rem 1.5rem 2rem;
        transition: right 0.4s cubic-bezier(0.65, 0.05, 0.36, 1);
        z-index: 1001; /* Higher than overlay (1000) */
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        border-left: 4px solid var(--primary-color);
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(249, 249, 249, 0.98) 100%);
        /* FIX: Make it scrollable */
        overflow-y: auto;
        overflow-x: hidden;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    /* When menu opens, show overlay with blur */
    .nav-menu.active ~ .menu-overlay {
        display: block;
        opacity: 1;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
        width: 100%;
        margin-top: 1.5rem;
        /* FIX: Allow dropdown to expand naturally */
        min-height: auto;
    }
    
    .nav-item {
        margin: 0;
        opacity: 0;
        transform: translateX(20px);
        width: 100%;
    }
    
    .nav-menu.active .nav-item {
        opacity: 1;
        transform: translateX(0);
    }
    
    .nav-link {
        font-size: 1.05rem;
        font-weight: 600;
        padding: 0.8rem 1rem;
        color: var(--dark-gray);
        display: block;
        width: 100%;
        border-radius: var(--border-radius);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    
    /* Current page indicator for mobile - highlighted style */
    .nav-link.current-page {
        color: var(--primary-color);
        background-color: rgba(37, 150, 190, 0.15);
        padding-left: 1.5rem;
        border-left: 3px solid var(--primary-color);
    }
    
    /* Add subtle hover effect */
    .nav-link::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 3px;
        height: 100%;
        background-color: var(--primary-color);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    .nav-link:hover:not(.current-page) {
        background-color: rgba(37, 150, 190, 0.08);
        color: var(--primary-color);
        padding-left: 1.5rem;
        transform: none;
    }
    
    .nav-link:hover:not(.current-page)::before {
        transform: translateX(0);
    }
    
    .nav-link::after {
        display: none;
    }
    
    .mobile-book-btn {
        display: block !important;
        width: 100%;
        margin-top: 2.5rem; /* Space after the last menu item */
        margin-bottom: 2rem; /* Space at bottom of menu */
        padding: 1rem 1.5rem !important;
        text-align: center;
        font-weight: 600;
        font-size: 1rem !important;
        /* REMOVE sticky positioning */
        position: static;
        background-color: var(--primary-color);
        color: white;
        border-radius: var(--border-radius);
        box-shadow: 0 4px 12px rgba(37, 150, 190, 0.3);
        /* Keep it at the end of the menu flow */
        order: 9999;
        transition: all 0.3s ease;
    }
    
    .mobile-book-btn:hover {
        background-color: #2a8db5;
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(37, 150, 190, 0.4);
    }
    
    /* Hide desktop button in mobile */
    .desktop-book-btn {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .menu-toggle.active .menu-line:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .menu-toggle.active .menu-line:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active .menu-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    /* Mobile logo - slightly smaller */
 .logo {
        height: 70px;
        /* Manual centering with pixels */
        position: relative;
        top: 35px; /* Adjust this value until centered in normal state */
    }
    
    .navbar.sticky .logo {
        height: 60px;
        /* Adjust top value for sticky state */
        top: 40px; /* Adjust this value until centered in sticky state */
    }
    
    /* Reset button margins on mobile */
    .btn-nav {
        margin-left: 0;
        margin-right: 0;
    }
    .navbar {
    height: 80px;
}
.navbar.sticky {
    height: 75px;
}
}

/* 480px and below */
@media (max-width: 480px) {
    .nav-menu {
        width: 250px !important;
        padding: 5.5rem 1.2rem 2rem;
    }
    
    .nav-link {
        font-size: 1rem;
        padding: 0.7rem 0.9rem;
    }
    
    .nav-link.current-page {
        padding-left: 1.2rem;
    }
    
    .mobile-book-btn {
        font-size: 0.9rem !important;
        padding: 0.8rem 0.9rem !important;
        width: calc(100% - 1.6rem);
        margin: 1.5rem 0.8rem 0.8rem;
    }
    
    .logo {
        height: 60px;
    }
    
    .navbar.sticky .logo {
        height: 55px;
    }
}

/* ========== DROPDOWN STYLES ========== */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dropdown-arrow {
    display: inline-block;
    margin-left: 0.25rem;
    transform: rotate(90deg);
    transition: transform 0.3s ease;
    font-size: 1.2em;
    line-height: 1;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(0deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 190px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    padding: 1.25rem 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.locations-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.locations-list li {
    margin: 0;
}

.location-item {
    display: block;
    padding: 0.65rem 1.5rem;
    color: var(--dark-gray);
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    text-decoration: none;
    text-align: left;
}

.location-item:hover {
    background-color: rgba(37, 150, 190, 0.08);
    color: var(--primary-color);
}

/* Current page indicator for location items */
.location-item.current-page {
    color: var(--primary-color);
    background-color: rgba(37, 150, 190, 0.15);
    font-weight: 600;
}

/* Sticky navbar dropdown adjustment */
.navbar.sticky .dropdown-menu {
    top: calc(100% + 5px);
}

/* ========== MOBILE DROPDOWN ========== */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static !important;
        width: 100% !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        max-height: 0 !important;
        padding: 0 !important;
        overflow: hidden !important;
        background: none !important;
        box-shadow: none !important;
        border: none !important;
        transition: max-height 0.4s ease !important;
        margin: 0 !important;
    }
    
    .dropdown.active .dropdown-menu {
        max-height: 500px !important;
        padding: 0 !important;
        /* FIX: Allow scrolling within dropdown if needed */
        overflow-y: auto;
    }
    
    .dropdown.active .dropdown-toggle {
        background-color: rgba(37, 150, 190, 0.15);
    }
    
    .locations-list {
        padding-left: 0 !important; /* Remove left padding */
        margin: 0 !important;
    }
    
    .location-item {
        padding: 0.7rem 2rem !important; /* Added more left padding for hierarchy */
        font-size: 0.95rem !important;
        text-align: left !important;
        display: block !important;
        width: 100% !important;
        box-sizing: border-box !important;
        margin: 0 !important;
        border-radius: 0 !important;
        background-color: rgba(0, 0, 0, 0.02);
    }
    
    .location-item:hover {
        background-color: rgba(37, 150, 190, 0.08) !important;
        color: var(--primary-color) !important;
    }
    
    /* Current page style for mobile - matches main nav */
    .location-item.current-page {
        color: var(--primary-color) !important;
        background-color: rgba(37, 150, 190, 0.15) !important;
        font-weight: 600 !important;
        border-left: 3px solid var(--primary-color) !important;
    }
}





/* ========== HERO SECTION ========== */
.hero {
    padding: 12rem 0 7rem;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    background-image: url('images/hero.avif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.7);
}

.video-filter {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(37, 149, 190, 0.205);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-content {
    margin-bottom: 4rem;
}

.hero-title {
    color: var(--white);
    font-size: 3.5rem;
}

.hero-title::after {
    background-color: var(--white);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto 3rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.stat-card {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    background-color: rgba(255, 255, 255, 1);
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.stat-content {
    text-align: left;
}

.stat-number {
    font-size: 2.2rem;
    margin-bottom: 0.25rem;
    color: var(--dark-gray);
    transition: all 0.5s ease-in-out;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 0;
}


/* ========== HERO MOBILE ========== */
/* 992px and below */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
}

/* 768px and below */
@media (max-width: 768px) {
    .hero {
        padding: 9rem 0 4rem;
    }
    
    .hero-title {
        font-size: 2.1rem !important;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        gap: 0.8rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        margin-top: 3rem;
        padding: 0 0.5rem;
    }
    
    .stat-card {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
        min-height: auto;
    }
    
    .stat-icon {
        font-size: 1.8rem;
        margin-bottom: 0;
    }
    
    .stat-content {
        text-align: center;
    }
    
    .stat-number {
        font-size: 1.5rem;
        margin-bottom: 0.2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
}

/* 480px and below */
@media (max-width: 480px) {
    h1 {
        font-size: 2.2rem;
    }
    
    .hero {
        padding: 8rem 0 3rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .hero-stats {
        gap: 0.8rem;
    }
    
    .stat-card {
        padding: 0.8rem 0.5rem;
    }
    
    .stat-icon {
        font-size: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
}


/* ========== SERVICES SECTION ========== */
.services {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-title {
    color: var(--dark-gray);
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    align-items: stretch; /* This makes all cards same height */
}

.service-card {
    background-color: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%; /* Make card take full height of grid cell */
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-card:hover::before {
    transform: scaleX(1);
}

/* Service header with icon and title on same line */
.service-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-shrink: 0;
    padding-bottom: 0.8rem; /* Space for underline */
    position: relative; /* For underline positioning */
    border-bottom: 1px solid rgba(37, 150, 190, 0.15); /* Subtle underline */
}

.service-icon-wrapper {
    flex-shrink: 0;
}

.service-icon {
    font-size: 1.8rem;
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-color: rgba(37, 150, 190, 0.1);
    border-radius: 50%;
}

.service-title {
    color: var(--dark-gray);
    font-size: 1.4rem;
    margin: 0;
    flex-grow: 1;
    line-height: 1.3;
    text-align: left;
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 3.5em;
}

/* Add extra items to cards with fewer bullets */
.service-list::after {
    content: '';
    flex-grow: 1;
    display: block;
    min-height: 0;
}

/* Make the standard cleaning card (6 items) as reference height */
.service-card:nth-child(2) .service-list::after {
    display: none; /* This card doesn't need extra space */
}

/* Add extra space to cards with 5 items (cards 1 and 3) */
.service-card:nth-child(1) .service-list::after,
.service-card:nth-child(3) .service-list::after {
    min-height: 4em; /* Height of 1 bullet item (2 lines) */
}

.service-list {
    list-style: none;
    text-align: left;
    flex-grow: 1;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.service-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem; /* Fixed margin */
    min-height: 4em; /* FIXED HEIGHT FOR 2 LINES */
    line-height: 1.4;
    color: var(--text-light);
}

/* Bullet icon with background */
.bullet-icon {
    color: var(--primary-color);
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-color: rgba(37, 150, 190, 0.1);
    border-radius: 50%;
    margin-right: 0.9rem;
    margin-top: 0.3rem;
    font-size: 0.9rem;
}

.bullet-text {
    display: block;
    flex: 1;
    line-height: 1.4;
    padding-top: 0.2rem;
    /* Force exactly 2 lines for all items */
    height: 3.2em; /* 2 lines * 1.6 line-height */
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* ========== SERVICES MOBILE ========== */
/* 992px and below */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .service-title {
        min-height: auto;
        -webkit-line-clamp: none;
        display: block;
    }
    
    .service-item {
        min-height: auto; /* Remove fixed height on mobile */
    }
    
    .bullet-text {
        height: auto; /* Remove fixed height on mobile */
        -webkit-line-clamp: none;
        display: block;
    }
    
    /* Remove the extra space on mobile */
    .service-card:nth-child(1) .service-list::after,
    .service-card:nth-child(3) .service-list::after {
        display: none;
    }
}

/* 768px and below */
@media (max-width: 768px) {
    .services {
        padding: 4rem 0;
    }
    
    .service-header {
        gap: 0.8rem;
        margin-bottom: 1.5rem;
        padding-bottom: 0.7rem;
        border-bottom: 1px solid rgba(37, 150, 190, 0.1);
    }
    
    .service-icon {
        font-size: 1.6rem;
        width: 45px;
        height: 45px;
    }
    
    .service-title {
        font-size: 1.3rem;
    }
    
    .service-item {
        margin-bottom: 0.8rem;
        min-height: auto;
    }
    
    .bullet-icon {
        width: 24px;
        height: 24px;
        font-size: 0.8rem;
        margin-right: 0.8rem;
    }
}

/* 480px and below */
@media (max-width: 480px) {
    .service-card {
        padding: 1.8rem 1.5rem;
    }
    
    .service-header {
        gap: 0.6rem;
        margin-bottom: 1.2rem;
        padding-bottom: 0.6rem;
    }
    
    .service-icon {
        font-size: 1.5rem;
        width: 40px;
        height: 40px;
    }
    
    .service-title {
        font-size: 1.2rem;
    }
    
    .service-item {
        margin-bottom: 0.7rem;
        font-size: 0.9rem;
    }
    
    .bullet-icon {
        width: 22px;
        height: 22px;
        font-size: 0.75rem;
        margin-right: 0.7rem;
    }
}

/* ========== TESTIMONIALS SECTION ========== */
.testimonials {
    padding: 5rem 0;
    background-color: var(--light-color);
    position: relative;
    overflow: hidden;
}

.testimonials-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 4rem; /* Space for arrows on desktop */
}

.testimonials-slider {
    overflow: hidden;
    position: relative;
    margin: 0 auto;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 2rem;
}

.testimonial-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    flex: 0 0 calc(33.333% - 1.34rem); /* Show 3 cards on desktop */
    min-height: 300px; /* Increased from 280px */
    height: 300px; /* Increased from 280px - ADDED 1 LINE */
    border: 1px solid rgba(37, 150, 190, 0.1);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, #4a90e2 100%);
    opacity: 0.8;
}

/* Header - make it subtle */
.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    min-height: 40px; /* Fixed header height */
}

.google-badge {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    background-color: rgba(37, 150, 190, 0.05);
    padding: 0.3rem 0.6rem;
    border-radius: 15px;
    font-size: 0.75rem; /* Smaller font */
    font-weight: 500; /* Less bold */
    color: #4285f4; /* GOOGLE BLUE AS BEFORE */
}

.google-badge i {
    font-size: 0.75rem;
    color: #4285f4; /* GOOGLE BLUE AS BEFORE */
}

.rating {
    color: #ffc107;
    font-size: 0.8rem; /* Smaller stars */
}

/* Content - focus area */
.testimonial-content {
    flex-grow: 1;
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: var(--text-color);
    position: relative;
    padding-left: 1rem;
    font-size: 0.95rem;
    overflow: hidden; /* Hide overflow */
    display: -webkit-box;
    -webkit-line-clamp: 6; /* INCREASED from 5 to 6 lines */
    -webkit-box-orient: vertical;
}

.testimonial-content::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -0.3rem;
    font-size: 1.8rem;
    color: var(--primary-color);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

/* Author */
.testimonial-author {
    margin-top: auto;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    min-height: 45px; /* Fixed footer height */
}

.author-info h4 {
    margin-bottom: 0.15rem;
    color: var(--dark-gray);
    font-size: 0.95rem; /* Smaller name */
    font-weight: 600;
}

.review-time {
    margin: 0;
    font-size: 0.75rem; /* Smaller time */
    color: var(--text-light);
    font-style: italic;
}

/* Slider Controls - ARROWS OUTSIDE CARDS ON DESKTOP */
.slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 2;
}

/* Position arrows outside the container on desktop */
.slider-prev {
    position: absolute;
    left: -60px; /* Outside the container */
    background-color: var(--white);
    border: 1px solid rgba(37, 150, 190, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--primary-color);
    font-size: 1.2rem;
    pointer-events: all;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.slider-next {
    position: absolute;
    right: -60px; /* Outside the container */
    background-color: var(--white);
    border: 1px solid rgba(37, 150, 190, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--primary-color);
    font-size: 1.2rem;
    pointer-events: all;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.slider-prev:hover,
.slider-next:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

/* ========== TESTIMONIALS MOBILE ========== */
/* 992px and below */
@media (max-width: 992px) {
    .testimonials-container {
        padding: 0 3.5rem; /* Keep space for side arrows */
    }
    
    .testimonial-card {
        flex: 0 0 calc(50% - 1rem); /* Show 2 cards on tablet */
        height: 300px; /* Same height */
    }
    
    /* Bring arrows inside but still on sides */
    .slider-prev {
        left: -15px;
    }
    
    .slider-next {
        right: -15px;
    }
}

/* 768px and below - MOBILE */
@media (max-width: 768px) {
    .testimonials {
        padding: 4rem 0;
    }
    
    .testimonials-container {
        padding: 0 3rem; /* Keep space for side arrows on mobile */
    }
    
    .testimonial-card {
        flex: 0 0 100%; /* Show 1 card on mobile */
        height: 280px; /* Slightly smaller on mobile but still tall enough */
        padding: 2rem;
    }
    
    .testimonial-content {
        -webkit-line-clamp: 5; /* INCREASED from 4 to 5 lines on mobile */
    }
    
    /* KEEP ARROWS ON SIDES FOR MOBILE - centered vertically */
    .slider-prev {
        left: -10px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .slider-next {
        right: -10px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    /* Remove the static positioning for mobile - keep absolute */
    .slider-controls {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        justify-content: space-between;
        pointer-events: none;
        margin-top: 0;
        gap: 0;
    }
}

/* 480px and below */
@media (max-width: 480px) {
    .testimonials-container {
        padding: 0 2.5rem;
    }
    
    .testimonial-card {
        height: 260px;
        padding: 1.8rem;
    }
    
    .testimonial-content {
        font-size: 0.9rem;
        -webkit-line-clamp: 4; /* INCREASED from 3 to 4 lines on very small screens */
    }
    
    .slider-prev {
        left: -8px;
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
    
    .slider-next {
        right: -8px;
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
}

/* Small mobile devices */
@media (max-width: 360px) {
    .testimonials-container {
        padding: 0 2rem;
    }
    
    .testimonial-card {
        height: 250px;
        padding: 1.5rem;
    }
    
    .testimonial-content {
        -webkit-line-clamp: 4;
    }
    
    .slider-prev {
        left: -5px;
    }
    
    .slider-next {
        right: -5px;
    }
}


/* ========== FAQ SECTION ========== */
.faq {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--white);
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-hover);
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    margin-bottom: 0;
    font-size: 1.2rem;
    color: var(--dark-gray);
}

.faq-toggle {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer p {
    padding-bottom: 1.5rem;
    color: var(--text-light);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

/* ========== FAQ MOBILE ========== */
/* 992px and below */
@media (max-width: 992px) {
    /* Add specific 992px FAQ styles if needed */
}

/* 768px and below */
@media (max-width: 768px) {
    .faq {
        padding: 4rem 0;
    }
}

/* 480px and below */
@media (max-width: 480px) {
    /* Add specific 480px FAQ styles if needed */
}

/* ========== FOOTER ========== */
.footer {
    background-color: var(--dark-gray);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
    text-align: center;
    align-items: start;
}

.footer-logo {
    text-align: center;
    margin-top: -2rem; /* Add this line to pull logo up */
}

.footer-logo-image {
    display: block !important;
    margin: 0 auto !important;
    padding: 0 !important;
    line-height: 0 !important;
    height: auto !important;
}

.footer-logo-image img {
    width: 100px !important;
    height: auto !important;
    max-width: 100% !important;
    display: block !important;
    margin: 0 auto !important;
    padding: 0 !important;
}

.footer-logo-text {
    color: rgba(255, 255, 255, 0.7) !important;
    line-height: 1.6 !important;
    margin-top: 11px !important;
    padding: 0 !important;
    font-size: 0.9rem !important;
}

.footer-links h3,
.footer-services h3,
.footer-contact h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    text-decoration: underline;
    text-decoration-color: var(--primary-color);
    text-underline-offset: 8px;
}

.footer-links ul,
.footer-services ul {
    list-style: none;
    padding: 0;
}

.footer-links li,
.footer-services li {
    margin-bottom: 0.8rem;
}

.footer-links a,
.footer-services a,
.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links a:hover,
.footer-services a:hover,
.footer-contact a:hover {
    color: var(--primary-color);
}

.footer-links a:hover {
    padding-left: 5px;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-contact i {
    margin-right: 0.8rem;
    color: var(--white);
}

.footer-contact a:hover i {
    color: var(--primary-color);
}

.footer-social-icons {
    display: flex !important;
    justify-content: center !important;
    gap: 0.8rem !important;
    margin-top: 1.5rem !important;
    padding: 0 !important;
}

.social-circle-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 36px !important;
    height: 36px !important;
    background-color: rgba(255, 255, 255, 0.1) !important;
    border-radius: 50% !important;
    transition: var(--transition) !important;
    text-decoration: none !important;
    margin: 0 !important;
    padding: 0 !important;
    position: relative !important;
}

.social-icon-inner {
    color: var(--white) !important;
    font-size: 16px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 100% !important;
    transition: var(--transition) !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1 !important;
}

.social-circle-btn:hover {
    background-color: var(--white) !important;
}

.social-circle-btn:hover .social-icon-inner {
    color: var(--dark-gray) !important;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
}

.copyright {
    margin-bottom: 0;
    text-align: center;
    flex: 1;
}

.built-by {
    margin-bottom: 0;
    position: absolute;
    right: 8%;
    transform: translateX(50%);
}

.built-by a {
    color: var(--primary-color);
    font-weight: 500;
    transition: var(--transition);
}

.built-by a:hover {
    color: #fff;
}

/* Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== FOOTER MOBILE ========== */
/* 992px and below */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        text-align: center;
    }
    
    .footer-contact p {
        justify-content: center;
    }
}

/* 768px and below */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    
    .footer-links ul,
    .footer-services ul {
        display: inline-block;
        text-align: center;
    }
    
    .footer-links li,
    .footer-services li {
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        position: relative;
    }
    
    .built-by {
        position: static;
        order: 2;
        margin-bottom: 0;
        width: 100%;
        text-align: center;
        transform: none;
        right: auto;
    }
    
    .copyright {
        order: 1;
        margin-bottom: 0.5rem;
    }
}

/* 480px and below */
@media (max-width: 480px) {
    h2 {
        font-size: 1.8rem;
    }
    
    .footer-bottom {
        text-align: center;
    }
    
    .footer-links ul,
    .footer-services ul {
        display: block;
        text-align: center;
    }
}
/* ========== GLOBAL MOBILE ========== */
/* 992px and below */
@media (max-width: 992px) {
    h1 {
        font-size: 2.8rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
}

/* 768px and below */
@media (max-width: 768px) {
    /* General container padding */
    .container {
        padding: 0 1.5rem;
    }
}

/* 480px and below */
@media (max-width: 480px) {
    /* Global 480px styles already handled in sections above */
}


/* Location Content Section */
.location-content {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

.location-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.location-info {
    padding-right: 2rem;
}

.location-info h2 {
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.location-info h2::after {
    left: 0 !important;
    transform: none !important;
}

.location-info p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
}

.location-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.location-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.location-image:hover img {
    transform: scale(1.03);
}

/* Responsive Design */
@media (max-width: 992px) {
    .location-info h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .location-content {
        padding: 4rem 0;
    }

    .location-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .location-info {
        padding-right: 0;
        order: 2;
    }

    .location-image {
        order: 1;
    }
}

@media (max-width: 480px) {
    .location-info h2 {
        font-size: 1.8rem;
    }
    
    .location-info p {
        font-size: 1rem;
    }
}

/* ========== ABOUT HERO SECTION ========== */
.about-hero {
    padding: 9rem 0 6rem;
    background-color: var(--light-gray);
    position: relative;
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.about-hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-hero-content {
    padding-right: 2rem;
}

.about-hero-title {
    font-size: 3rem;
    color: var(--dark-gray);
    margin-bottom: 2rem;
    position: relative;
    display: inline-block; /* Add this */
    width: 100%; /* Add this */
}

.about-hero-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 22%; /* Center horizontally */
    transform: translateX(-50%); /* Adjust to perfectly center */
    width: 222px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.about-hero-text {
    line-height: 1.8;
    color: var(--text-color);
}

.about-hero-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-hero-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    height: 500px;
}

.image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 150, 190, 0.1) 0%, rgba(25, 25, 35, 0.05) 100%);
    z-index: 1;
}

.about-hero-image:hover .about-image {
    transform: scale(1.03);
}

/* ========== ABOUT HERO MOBILE ========== */
/* 992px and below */
@media (max-width: 992px) {
    .about-hero {
        padding: 8rem 0 4rem;
        min-height: auto;
    }
    
    .about-hero-container {
        gap: 3rem;
    }
    
    .about-hero-title {
        font-size: 2.5rem;
    }
    
    .about-hero-image {
        height: 400px;
    }
}

/* 768px and below */
@media (max-width: 768px) {
    .about-hero {
        padding: 7rem 0 3rem;
    }
    
    .about-hero-container {
        grid-template-columns: 1fr;
        gap: 0rem;
    }
    
    .about-hero-content {
        padding-right: 0;
        /* REMOVED order: 2 - content stays first on mobile */
    }
    
    .about-hero-image {
        /* REMOVED order: 1 - image comes after content on mobile */
        height: 350px;
    }
    
    .about-hero-title {
        font-size: 2.2rem;
        text-align: center;
        width: 100%; /* Ensure full width for centering */
    }
    
    .about-hero-title::after {
        left: 50% !important; /* Force center alignment on mobile */
        transform: translateX(-50%) !important; /* Center it */
        width: 150px;
    }
    
    .about-hero-text p {
        font-size: 1rem;
        text-align: center; /* Center text on mobile */
    }
}

/* 480px and below */
@media (max-width: 480px) {
    .about-hero {
        padding: 6rem 0 2rem;
    }
    
    .about-hero-title {
        font-size: 1.8rem;
    }
    
    .about-hero-image {
        height: 280px;
    }
    
    .about-hero-text p {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    /* Completely reset any scaling on mobile menu */
    .nav-menu,
    .nav-menu.active {
        transform: none !important;
        transform-origin: top right !important;
        height: 100vh !important;
        width: 250px !important;
        right: -280px;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    /* Remove parent scaling on mobile */
    .navbar.sticky .nav-container {
        transform: none !important;
    }
}

/* ========== CTA SECTION - CONSISTENT WITH OTHER SECTIONS ========== */
.contact-cta {
    padding: 5rem 0;
     background-color: var(--light-gray);
    position: relative;
}

.contact-cta .container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 4rem;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

/* Use the SAME styling as other sections */
.contact-cta .section-title {
    /* These will inherit from base h2 styles */
    text-align: center;
    display: inline-block;
    width: 100%;
}

/* Make sure underline is centered */
.contact-cta .section-title::after {
    left: 50% !important;
    transform: translateX(-50%) !important;
    right: auto !important;
}

/* Subtitle styling - matches other sections */
.contact-cta .section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-cta .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(37, 150, 190, 0.2);
}

.contact-cta .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 150, 190, 0.3);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
    .contact-cta .container {
        padding: 0 3.5rem;
    }
}

@media (max-width: 768px) {
    .contact-cta {
        padding: 4rem 0;
    }
    
    .contact-cta .container {
        padding: 0 3rem;
    }
    
    .contact-cta .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .contact-cta .btn-primary {
        padding: 1rem 2.5rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .contact-cta {
        padding: 3rem 0;
    }
    
    .contact-cta .container {
        padding: 0 2.5rem;
    }
    
    .contact-cta .section-subtitle {
        font-size: 1rem;
    }
    
    .contact-cta .btn-primary {
        padding: 0.9rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
    }
}


@media (max-width: 768px) {
    /* Keep the visual sticky effect without transform */
    .navbar.sticky {
        transform: none !important; /* Remove problematic transform */
        height: 75px;
        background-color: rgba(255, 255, 255, 0.98);
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
        /* Alternative visual effect without breaking positioning */
        padding-top: 0; /* Instead of translateY(-10px) */
    }
    
    /* Keep the menu positioning simple */
    .nav-menu {
        position: fixed;
        top: 0;
        /* ... rest of styles */
    }
}