/* ============================================
   CSS Reset & Base Styles
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette - Professional Cleaning Service Theme */
    --primary-color: #2c5f8d;
    --primary-dark: #1e4262;
    --primary-light: #4a7ba7;
    --secondary-color: #4caf50;
    --accent-color: #ff6b35;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 5px 20px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    
    /* Spacing */
    --section-padding: 80px 0;
    --section-padding-mobile: 50px 0;
    --container-max-width: 1200px;
    --container-padding: 20px;
    --container-padding-mobile: 16px;
    
    /* Touch Targets */
    --touch-target-size: 44px;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --scroll-transition: scroll-behavior 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-regular);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    width: 100%;
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--container-padding-mobile);
    }
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo h2 {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary-color);
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: var(--font-weight-medium);
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    gap: 5px;
    min-width: var(--touch-target-size);
    min-height: var(--touch-target-size);
    justify-content: center;
    align-items: center;
    -webkit-tap-highlight-color: transparent;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
    border-radius: 2px;
    display: block;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ============================================
   Hero Section with Parallax
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 80px;
    background-image: url('https://images.unsplash.com/photo-1563453392212-326f5e854473?w=1920&q=80&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    color: var(--bg-white);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 95, 141, 0.85), rgba(30, 66, 98, 0.9));
    z-index: 1;
}

/* Faded background text elements */
.hero::before {
    content: 'COMMERCIAL CLEANING\A RESIDENTIAL CLEANING\A LIGHT CONSTRUCTION\A MOVE IN/MOVE OUT\A REGULAR CLEANING\A DEEP CLEANING';
    position: absolute;
    left: 8%;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.4rem;
    font-weight: var(--font-weight-bold);
    color: rgba(255, 255, 255, 0.12);
    white-space: pre-line;
    line-height: 2.2;
    z-index: 2;
    letter-spacing: 3px;
    text-transform: uppercase;
    pointer-events: none;
    opacity: 0.6;
}

.hero::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(74, 123, 167, 0.3) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    animation: fadeInLeft 1s ease-out;
    text-align: left;
    position: relative;
    z-index: 3;
}

.hero-services-heading {
    font-size: 1.8rem;
    font-weight: var(--font-weight-semibold);
    color: var(--primary-light);
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.5);
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 4.2rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 0, 0, 0.5);
    letter-spacing: -1px;
    color: #ffffff;
}

.hero-subtitle {
    font-size: 1.6rem;
    font-weight: var(--font-weight-semibold);
    margin-bottom: 1.5rem;
    color: #ffd700;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.6);
    letter-spacing: 0.5px;
}

.hero-description {
    font-size: 1.15rem;
    line-height: 1.9;
    max-width: 650px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7), 0 0 15px rgba(0, 0, 0, 0.5);
    color: #ffffff;
    margin-bottom: 2.5rem;
}

.hero-phone-cta {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    padding: 18px 32px;
    background: linear-gradient(135deg, var(--accent-color), #e55a2b);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: var(--font-weight-bold);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4), 0 0 0 0 rgba(255, 107, 53, 0.7);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-phone-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.hero-phone-cta:hover::before {
    width: 300px;
    height: 300px;
}

.hero-phone-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.5), 0 0 0 4px rgba(255, 107, 53, 0.2);
    background: linear-gradient(135deg, #ff7a4a, var(--accent-color));
}

.hero-phone-cta:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.phone-icon {
    font-size: 1.8rem;
    filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.3));
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.phone-text {
    font-size: 1.2rem;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
}

.phone-number {
    font-size: 1.3rem;
    letter-spacing: 1px;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

/* Hero Form */
.hero-form-wrapper {
    animation: fadeInRight 1s ease-out;
}

.hero-form-container {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(44, 95, 141, 0.1);
    border: 2px solid rgba(44, 95, 141, 0.2);
    position: relative;
    z-index: 3;
}

.hero-form-title {
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
    letter-spacing: -0.5px;
}

.hero-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-form .form-group {
    display: flex;
    flex-direction: column;
}

.hero-form .form-group label {
    font-weight: var(--font-weight-medium);
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.hero-form .form-group input,
.hero-form .form-group select,
.hero-form .form-group textarea {
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--bg-white);
    color: var(--text-dark);
    width: 100%;
}

.hero-form .form-group input:hover,
.hero-form .form-group select:hover,
.hero-form .form-group textarea:hover {
    border-color: var(--primary-light);
}

.hero-form .form-group input:focus,
.hero-form .form-group select:focus,
.hero-form .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(44, 95, 141, 0.15);
}

.hero-form .form-group input::placeholder,
.hero-form .form-group textarea::placeholder {
    color: var(--text-light);
    opacity: 0.7;
}

.hero-form .form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-hero-form {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: var(--font-weight-semibold);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    margin-top: 0.5rem;
    box-shadow: 0 4px 15px rgba(44, 95, 141, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-hero-form::before {
    content: '\f1d8';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
}

.btn-hero-form:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 95, 141, 0.6);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    cursor: pointer;
}

.scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid var(--bg-white);
    border-radius: 25px;
    position: relative;
    opacity: 0.9;
    transition: var(--transition);
}

.scroll-indicator:hover span {
    opacity: 1;
    transform: scale(1.1);
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--bg-white);
    border-radius: 50%;
    animation: scroll 2s infinite;
}

@media (max-width: 768px) {
    .scroll-indicator {
        bottom: 30px;
    }
    
    .scroll-indicator span {
        width: 26px;
        height: 44px;
    }
    
    .scroll-indicator span::before {
        width: 5px;
        height: 5px;
        top: 8px;
    }
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-block;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: var(--font-weight-semibold);
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
    min-width: 200px;
    min-height: var(--touch-target-size);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:active::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--bg-white);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.btn-primary:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--bg-white);
    border: 2px solid var(--bg-white);
}

.btn-secondary:hover {
    background: var(--bg-white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* ============================================
   Section Styles
   ============================================ */
section {
    padding: var(--section-padding);
    position: relative;
}

@media (max-width: 768px) {
    section {
        padding: var(--section-padding-mobile);
    }
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .section-header {
        margin-bottom: 2rem;
    }
}

.section-title {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   Services Section
   ============================================ */
.services {
    background: var(--bg-white);
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--bg-white);
    padding: 0;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

@media (max-width: 768px) {
    .service-card:hover {
        transform: translateY(-4px);
    }
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-card > .service-icon {
    font-size: 3.5rem;
    margin: 1rem 0 0.5rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.service-card:hover > .service-icon {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: var(--font-weight-semibold);
    color: var(--primary-color);
    margin-bottom: 1rem;
    padding: 0 2rem;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.8;
    padding: 0 2rem 2rem;
}

/* ============================================
   Why Choose Us Section
   ============================================ */
.why-choose-us {
    background: var(--bg-light);
}

.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
}

.feature-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    margin: 0 auto 1.5rem;
    box-shadow: 0 6px 20px rgba(44, 95, 141, 0.3);
    transition: var(--transition);
}

.feature-item:hover .feature-number {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(44, 95, 141, 0.4);
}

.feature-item h3 {
    font-size: 1.5rem;
    font-weight: var(--font-weight-semibold);
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-item p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ============================================
   Heavy Cleaning CTA Section
   ============================================ */
.heavy-cleaning-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--bg-white);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 1.5rem;
    color: var(--bg-white);
}

.cta-content h2 i {
    margin-left: 0.5rem;
    color: var(--accent-color);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.cta-content .btn-primary {
    background: var(--accent-color);
}

/* ============================================
   Gallery Section
   ============================================ */
.gallery {
    background: linear-gradient(180deg, var(--bg-white) 0%, #f0f4f8 50%, var(--bg-light) 100%);
    padding: 100px 0;
    position: relative;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.gallery .section-header {
    position: relative;
    margin-bottom: 3rem;
}

.gallery-featured-container {
    position: relative;
    margin-bottom: 2rem;
}

.gallery-toggle-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 16px 32px;
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: var(--font-weight-semibold);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(44, 95, 141, 0.3);
    min-height: var(--touch-target-size);
    font-family: var(--font-primary);
    -webkit-tap-highlight-color: transparent;
    margin: 2rem auto 0;
    width: 100%;
    max-width: 300px;
}

.gallery-toggle-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 95, 141, 0.4);
}

.gallery-toggle-btn:active {
    transform: translateY(0);
}

.gallery-toggle-btn .toggle-icon {
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

.gallery-toggle-btn .toggle-text {
    letter-spacing: 0.3px;
}

.gallery .section-title {
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

.gallery .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.gallery .section-subtitle {
    margin-top: 1rem;
    font-size: 1.25rem;
    color: var(--text-dark);
    font-weight: var(--font-weight-medium);
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, margin-top 0.3s ease;
    max-height: 5000px;
    opacity: 1;
}

.gallery-container.collapsed {
    max-height: 0;
    margin-top: 0;
    margin-bottom: 0;
    opacity: 0;
    padding: 0;
    overflow: hidden;
}

.gallery-container:not(.collapsed) {
    margin-top: 2rem;
}

/* All gallery items base styles */
.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    background: var(--bg-white);
    border: 2px solid transparent;
    cursor: pointer;
}


/* Regular gallery items (excluding before-after) - portrait mode, taller */
.gallery-item:not(.before-after) {
    aspect-ratio: 3/4;
}

.gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 40px rgba(44, 95, 141, 0.2);
    border-color: var(--primary-color);
}

.gallery-image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover img {
    transform: scale(1.15);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.4), transparent);
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 3;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-caption {
    color: var(--bg-white);
    font-size: 1.1rem;
    font-weight: var(--font-weight-semibold);
    margin: 0;
    text-align: center;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.gallery-item.before-after {
    grid-column: 1 / -1;
    aspect-ratio: 21/9;
    min-height: 450px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border: 3px solid var(--primary-color);
}

.gallery-item.before-after.featured {
    box-shadow: 0 25px 70px rgba(44, 95, 141, 0.35);
    border-width: 4px;
}

.gallery-item.before-after:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: 0 30px 80px rgba(44, 95, 141, 0.4);
}

.gallery-item.before-after .gallery-overlay {
    background: linear-gradient(to top, rgba(44, 95, 141, 0.95), rgba(44, 95, 141, 0.6), transparent);
    padding: 1.5rem;
}

.before-after-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100%;
    position: relative;
    gap: 0;
}

.before-section,
.after-section {
    position: relative;
    overflow: hidden;
}

.before-section::after,
.after-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 95, 141, 0.15), transparent);
    z-index: 1;
    pointer-events: none;
    transition: var(--transition);
}

.after-section::after {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.15), transparent);
}

.gallery-item:hover .before-section::after,
.gallery-item:hover .after-section::after {
    opacity: 0.8;
}

.before-section h4,
.after-section h4 {
    position: absolute;
    top: 25px;
    left: 25px;
    background: rgba(0, 0, 0, 0.9);
    color: var(--bg-white);
    padding: 14px 28px;
    border-radius: 35px;
    font-size: 1.15rem;
    font-weight: var(--font-weight-bold);
    z-index: 4;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    letter-spacing: 1px;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.gallery-item:hover .before-section h4,
.gallery-item:hover .after-section h4 {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.after-section h4 {
    background: rgba(76, 175, 80, 0.95);
    border-color: rgba(76, 175, 80, 0.5);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.5);
}

.before-section img,
.after-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover .before-section img,
.gallery-item:hover .after-section img {
    transform: scale(1.08);
}

/* ============================================
   About Section
   ============================================ */
.about {
    background: var(--bg-light);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 2px solid var(--border-color);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: var(--font-weight-medium);
}

/* ============================================
   Contact Section
   ============================================ */
.contact {
    background: var(--bg-light);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.contact-item h3 {
    font-size: 1.3rem;
    font-weight: var(--font-weight-semibold);
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-item a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
    display: block;
    word-break: break-word;
    font-size: 1.05rem;
}

.contact-item a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.contact-item p {
    color: var(--text-light);
    margin: 0;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.social-links a {
    padding: 12px 24px;
    background: var(--primary-color);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transition);
    font-weight: var(--font-weight-medium);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: var(--touch-target-size);
}

.social-links a:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 95, 141, 0.3);
}

.contact-form-wrapper {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.contact-form-wrapper:hover {
    box-shadow: var(--shadow-lg);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: var(--font-weight-medium);
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition);
    min-height: var(--touch-target-size);
    background: var(--bg-white);
    -webkit-appearance: none;
    appearance: none;
}

@media (max-width: 768px) {
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 16px;
    }
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(44, 95, 141, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    color: var(--bg-white);
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--secondary-color), var(--primary-color));
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(44, 95, 141, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.footer-section {
    position: relative;
}

.footer-section:first-child {
    padding-right: 2rem;
}

.footer-section h3 {
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 1.5rem;
    color: var(--bg-white);
    position: relative;
    padding-bottom: 1.25rem;
    letter-spacing: -0.5px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    border-radius: 2px;
}

.footer-section h4 {
    font-size: 1.4rem;
    font-weight: var(--font-weight-semibold);
    margin-bottom: 1.75rem;
    color: var(--bg-white);
    position: relative;
    padding-bottom: 1rem;
    letter-spacing: 0.3px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 45px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    border-radius: 2px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.footer-section p i {
    margin-right: 0.5rem;
    color: var(--accent-color);
}

.footer-section:first-child p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
}

.footer-section:first-child p:first-of-type {
    margin-top: 1.5rem;
    font-weight: var(--font-weight-medium);
    font-size: 1.15rem;
}

.footer-section:first-child p:last-of-type {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    font-style: italic;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    position: relative;
}

.footer-section a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-section a[href^="tel:"],
.footer-section a[href^="mailto:"] {
    font-weight: var(--font-weight-semibold);
    font-size: 1.1rem;
    padding: 0.5rem 0;
    display: inline-block;
}

.footer-section a[href^="tel:"]:hover,
.footer-section a[href^="mailto:"]:hover {
    color: var(--accent-color);
    transform: translateX(0);
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.footer-section ul li {
    margin-bottom: 1rem;
}

.footer-section ul li a {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 0;
    position: relative;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    transition: var(--transition);
}

.footer-section ul li a::before {
    content: '→';
    position: absolute;
    left: -25px;
    opacity: 0;
    transition: var(--transition);
    color: var(--accent-color);
    font-weight: var(--font-weight-bold);
    transform: translateX(-5px);
}

.footer-section ul li a:hover {
    color: var(--accent-color);
    padding-left: 10px;
}

.footer-section ul li a:hover::before {
    opacity: 1;
    left: -20px;
    transform: translateX(0);
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.social-links a {
    padding: 14px 28px;
    background: linear-gradient(135deg, rgba(44, 95, 141, 0.2), rgba(255, 107, 53, 0.2));
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: var(--font-weight-semibold);
    border: 2px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1.05rem;
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.social-links a:hover::before {
    left: 100%;
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-color: var(--accent-color);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 25px rgba(44, 95, 141, 0.5);
    color: var(--bg-white);
}

.footer-bottom {
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    margin: 0;
    letter-spacing: 0.5px;
}

/* ============================================
   Mobile Menu Backdrop
   ============================================ */
.mobile-menu-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-backdrop.active {
    display: block;
    opacity: 1;
}

/* ============================================
   Mobile Responsive Styles
   ============================================ */
@media (max-width: 768px) {
    /* Navigation Mobile */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: var(--bg-white);
        width: 100%;
        max-width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: var(--shadow-lg);
        padding: 1rem 0;
        gap: 0;
        z-index: 1000;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        padding: 0;
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav-link {
        display: block;
        padding: 1.25rem 1rem;
        min-height: var(--touch-target-size);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.1rem;
        -webkit-tap-highlight-color: transparent;
    }
    
    /* Hero Mobile */
    .hero {
        background-attachment: scroll;
        padding: 100px 20px 60px;
        min-height: auto;
    }
    
    .hero::before,
    .hero::after {
        display: none;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-content {
        text-align: center;
        animation: fadeInUp 1s ease-out;
    }
    
    .hero-form-wrapper {
        animation: fadeInUp 1s ease-out 0.2s;
        animation-fill-mode: both;
    }
    
    .hero-services-heading {
        font-size: 1.4rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-description {
        font-size: 1rem;
        max-width: 100%;
    }
    
    .hero-phone-cta {
        margin-top: 1.5rem;
        padding: 16px 28px;
        font-size: 0.95rem;
        width: 100%;
        justify-content: center;
    }
    
    .phone-icon {
        font-size: 1.6rem;
    }
    
    .phone-text {
        font-size: 1.1rem;
    }
    
    .phone-number {
        font-size: 1.1rem;
    }
    
    .hero-form-container {
        padding: 2rem 1.5rem;
    }
    
    .hero-form-title {
        font-size: 1.5rem;
    }
    
    /* Services Mobile - Swipeable */
    .services-container {
        grid-template-columns: 1fr;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        display: flex;
        padding: 1rem 0 2rem;
        margin: 0 calc(-1 * var(--container-padding-mobile));
        padding-left: var(--container-padding-mobile);
        padding-right: var(--container-padding-mobile);
        gap: 1.25rem;
        scrollbar-width: none;
        -ms-overflow-style: none;
        scroll-padding: 0 1rem;
        overscroll-behavior-x: contain;
        will-change: scroll-position;
    }
    
    .services-container::-webkit-scrollbar {
        display: none;
    }
    
    .services-container {
        transition: scroll-behavior 0.3s ease;
    }
    
    .service-card {
        min-width: 88%;
        max-width: 88%;
        scroll-snap-align: start;
        flex-shrink: 0;
    }
    
    .service-image {
        height: 200px;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
        padding: 0 1.5rem;
        margin-top: 0.5rem;
    }
    
    .service-card p {
        padding: 0 1.5rem 1.5rem;
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    /* Features Mobile - Swipeable */
    .features-container {
        grid-template-columns: 1fr;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        display: flex;
        padding: 1rem 0 2rem;
        margin: 0 calc(-1 * var(--container-padding-mobile));
        padding-left: var(--container-padding-mobile);
        padding-right: var(--container-padding-mobile);
        gap: 1.25rem;
        scrollbar-width: none;
        -ms-overflow-style: none;
        scroll-padding: 0 1rem;
        overscroll-behavior-x: contain;
        will-change: scroll-position;
    }
    
    .features-container::-webkit-scrollbar {
        display: none;
    }
    
    .features-container {
        transition: scroll-behavior 0.3s ease;
    }
    
    .feature-item {
        min-width: 88%;
        max-width: 88%;
        scroll-snap-align: start;
        flex-shrink: 0;
        padding: 1.5rem;
    }
    
    .feature-item h3 {
        font-size: 1.25rem;
    }
    
    .feature-item p {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    /* Section Titles Mobile */
    .section-title {
        font-size: 1.875rem;
        line-height: 1.3;
        margin-bottom: 0.75rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        line-height: 1.6;
        padding: 0 16px;
    }
    
    /* CTA Mobile */
    .cta-content {
        padding: 0 16px;
    }
    
    .cta-content h2 {
        font-size: 1.75rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .cta-content p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    /* Contact Mobile */
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .contact-item {
        padding: 1.5rem;
    }
    
    .contact-icon {
        font-size: 2.25rem;
        margin-bottom: 0.75rem;
    }
    
    .contact-item h3 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    
    .contact-item a,
    .contact-item p {
        font-size: 1rem;
    }
    
    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .form-group {
        margin-bottom: 1.25rem;
    }
    
    .form-group label {
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
    }
    
    /* About Mobile */
    .about-text p {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 1.25rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
        padding-top: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 0.95rem;
    }
    
    /* Gallery Mobile */
    .gallery {
        padding: 60px 0;
    }
    
    .gallery-featured-container {
        margin-bottom: 1.5rem;
    }
    
    .gallery-toggle-btn {
        max-width: 100%;
        padding: 16px 24px;
        margin: 1.5rem auto 0;
    }
    
    .gallery-container {
        grid-template-columns: repeat(2, 1fr);
        display: grid;
        gap: 1rem;
        margin-top: 1rem;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
        will-change: scroll-position;
    }
    
    .gallery-item {
        grid-column: auto !important;
        grid-row: auto !important;
        aspect-ratio: 3/4;
        border-radius: 12px;
        min-height: auto !important;
    }
    
    .gallery-item.before-after {
        grid-column: 1 / -1 !important;
        aspect-ratio: 16/9;
        min-height: 200px;
    }
    
    .gallery-item:not(.before-after) {
        aspect-ratio: 3/4;
    }
    
    .gallery-item.before-after.featured {
        border-width: 2px;
    }
    
    .before-after-wrapper {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr;
        gap: 0;
    }
    
    .before-section h4,
    .after-section h4 {
        font-size: 1rem;
        padding: 10px 20px;
        top: 15px;
        left: 15px;
        border-radius: 25px;
        border-width: 1px;
    }
    
    .gallery-overlay {
        padding: 1.5rem 1rem 1rem;
        transform: translateY(0);
    }
    
    .gallery-caption {
        font-size: 1rem;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 50px 0 25px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .footer-section {
        padding: 0 16px;
    }
    
    .footer-section:first-child {
        padding-right: 16px;
    }
    
    .footer-section h3 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    .footer-section h4 {
        font-size: 1.25rem;
        margin-bottom: 1.25rem;
    }
    
    .footer-section h3::after,
    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-section:first-child p {
        font-size: 1.05rem;
    }
    
    .footer-section:first-child p:first-of-type {
        font-size: 1.1rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-section ul li a::before {
        display: none;
    }
    
    .footer-section ul li a:hover {
        padding-left: 0;
    }
    
    .footer-section p,
    .footer-section a {
        font-size: 1rem;
    }
    
    .social-links a {
        padding: 12px 24px;
        font-size: 1rem;
        gap: 0.75rem;
    }
    
    .social-links a {
        padding: 12px 24px;
        font-size: 0.95rem;
        min-height: var(--touch-target-size);
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 90px 12px 50px;
    }
    
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: 1.65rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    .service-card,
    .feature-item,
    .gallery-item {
        min-width: 92%;
        max-width: 92%;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem 1.25rem;
    }
    
    .contact-item {
        padding: 1.25rem;
    }
    
    .logo-img {
        height: 38px;
    }
    
    .logo h2 {
        font-size: 1.15rem;
    }
    
    .nav-wrapper {
        padding: 0.75rem 0;
    }
    
    .cta-content h2 {
        font-size: 1.5rem;
    }
    
    .btn {
        font-size: 1rem;
        padding: 16px 20px;
    }
}

/* ============================================
   Accessibility Improvements
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hero {
        background-attachment: scroll;
    }
}

/* Focus styles for keyboard navigation */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

/* Skip to main content link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 8px;
    text-decoration: none;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}

