/* ================================================
   RUSH CREEK ELECTRIC - Light Theme
   Clean, Professional, Trustworthy
   ================================================ */

/* CSS Variables */
:root {
    /* Colors - Rich dark reds matching hero */
    --primary: #8b0000;
    --primary-dark: #6b0000;
    --primary-light: #a01830;
    --primary-bright: #c41e3a;
    --secondary: #1a1a2e;
    --secondary-light: #2d2d44;
    
    --white: #ffffff;
    --off-white: #fafafa;
    --gray-50: #f8f9fa;
    --gray-100: #f1f3f5;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    
    --text-primary: #1a1a2e;
    --text-secondary: #495057;
    --text-muted: #6c757d;
    
    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --section-padding: 100px;
    --container-width: 1200px;
    
    /* Effects */
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -1px rgba(0,0,0,0.04);
    --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -2px rgba(0,0,0,0.04);
    --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.08), 0 10px 10px -5px rgba(0,0,0,0.03);
    --shadow-xl: 0 25px 50px -12px rgba(0,0,0,0.15);
    
    --radius-sm: 4px;
    --radius: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    
    --transition: all 0.3s ease;
    --transition-fast: all 0.15s ease;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ================================================
   TYPOGRAPHY
   ================================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-primary);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p {
    color: var(--text-secondary);
}

.lead {
    font-size: 1.125rem;
    line-height: 1.7;
}

/* ================================================
   NAVIGATION
   ================================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: #000;
}

.navbar.scrolled {
    background: #000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    padding: 12px 0;
}

.nav-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.nav-logo img {
    height: 48px;
    width: auto;
    transition: var(--transition);
}

.navbar.scrolled .nav-logo img {
    height: 40px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-link {
    padding: 10px 16px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--white);
    border-radius: var(--radius);
    transition: var(--transition-fast);
}

.navbar.scrolled .nav-link {
    color: var(--white);
}

.nav-link:hover,
.nav-link.active {
    background: rgba(255, 255, 255, 0.15);
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.nav-cta {
    padding: 12px 24px;
    background: var(--primary);
    color: var(--white);
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius);
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 12px;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 1001;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
    border-radius: var(--radius);
}

.mobile-toggle:hover,
.mobile-toggle:focus {
    background: rgba(255, 255, 255, 0.1);
    outline: none;
}

.mobile-toggle:active {
    background: rgba(255, 255, 255, 0.2);
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
    pointer-events: none;
}

.navbar.scrolled .mobile-toggle span {
    background: var(--white);
}

/* ================================================
   HERO SECTION
   ================================================ */

.hero {
    position: relative;
    min-height: 100vh; /* Fallback for older browsers */
    min-height: 100svh; /* Small viewport height - accounts for mobile browser chrome */
    min-height: -webkit-fill-available; /* iOS Safari fallback */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000;
    padding: 120px 0 40px; /* Account for navbar (80px) plus extra breathing room */
}

.hero-video-container {
    display: none;
}

.hero-overlay {
    display: none;
}

/* Main moving red gradient */
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    z-index: 1;
    background: 
        radial-gradient(ellipse 80% 50% at 30% 50%, rgba(196, 30, 58, 0.6) 0%, transparent 50%),
        radial-gradient(ellipse 60% 80% at 70% 70%, rgba(139, 0, 0, 0.5) 0%, transparent 50%),
        radial-gradient(ellipse 70% 60% at 50% 30%, rgba(180, 20, 40, 0.4) 0%, transparent 50%);
    animation: gradientFloat 20s ease-in-out infinite;
}

/* Second layer moving opposite */
.hero::after {
    content: '';
    position: absolute;
    top: -30%;
    left: -30%;
    width: 160%;
    height: 160%;
    z-index: 1;
    background: 
        radial-gradient(ellipse 50% 70% at 80% 40%, rgba(196, 30, 58, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse 60% 50% at 20% 60%, rgba(150, 20, 40, 0.45) 0%, transparent 50%);
    animation: gradientFloat2 15s ease-in-out infinite;
}

@keyframes gradientFloat {
    0% {
        transform: translate(0%, 0%) rotate(0deg);
    }
    25% {
        transform: translate(10%, -10%) rotate(5deg);
    }
    50% {
        transform: translate(-5%, 15%) rotate(-3deg);
    }
    75% {
        transform: translate(-15%, -5%) rotate(3deg);
    }
    100% {
        transform: translate(0%, 0%) rotate(0deg);
    }
}

@keyframes gradientFloat2 {
    0% {
        transform: translate(0%, 0%) rotate(0deg);
    }
    33% {
        transform: translate(-12%, 8%) rotate(-5deg);
    }
    66% {
        transform: translate(8%, -12%) rotate(4deg);
    }
    100% {
        transform: translate(0%, 0%) rotate(0deg);
    }
}

.hero-glow {
    display: none;
}

.hero-content {
    text-align: center;
    padding: 0 24px;
    max-width: 800px;
    position: relative;
    z-index: 10;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(192, 192, 192, 0.6);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 24px;
    animation: fadeInUp 1s ease-out 0.2s both, silverGlow 3s ease-in-out infinite;
    box-shadow: 
        0 0 10px rgba(192, 192, 192, 0.3),
        0 0 20px rgba(192, 192, 192, 0.2),
        0 0 30px rgba(192, 192, 192, 0.1),
        inset 0 0 10px rgba(192, 192, 192, 0.05);
}

@keyframes silverGlow {
    0%, 100% {
        box-shadow: 
            0 0 10px rgba(192, 192, 192, 0.3),
            0 0 20px rgba(192, 192, 192, 0.2),
            0 0 30px rgba(192, 192, 192, 0.1),
            inset 0 0 10px rgba(192, 192, 192, 0.05);
        border-color: rgba(192, 192, 192, 0.6);
    }
    50% {
        box-shadow: 
            0 0 15px rgba(220, 220, 220, 0.5),
            0 0 30px rgba(192, 192, 192, 0.3),
            0 0 45px rgba(192, 192, 192, 0.15),
            inset 0 0 15px rgba(192, 192, 192, 0.1);
        border-color: rgba(220, 220, 220, 0.8);
    }
}

.hero h1 {
    color: var(--white);
    margin-bottom: 24px;
    animation: fadeInUp 1s ease-out 0.3s both;
    white-space: nowrap;
}

.hero h1 span {
    color: #ffffff;
}

.hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-scroll-indicator {
    display: none; /* Hidden to prevent overlap with hero buttons */
}

.hero-scroll-indicator span {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(0.5); opacity: 0.5; }
}

/* ================================================
   BUTTONS
   ================================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(139, 0, 0, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.btn-secondary-light {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary-light:hover {
    background: var(--white);
    color: var(--primary);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-large {
    padding: 18px 36px;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
}

/* ================================================
   TRUST BAR
   ================================================ */

.trust-bar {
    background: var(--secondary);
    padding: 32px 0;
}

.trust-items {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
}

.trust-item {
    text-align: center;
    padding: 0 32px;
}

.trust-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.trust-label {
    display: block;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 4px;
}

.trust-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

/* ================================================
   SECTION STYLES
   ================================================ */

section {
    padding: var(--section-padding) 0;
}

.section-tag {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    margin-bottom: 12px;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.125rem;
}

/* ================================================
   ABOUT PREVIEW
   ================================================ */

.about-preview {
    background: var(--gray-50);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-img-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-img-accent {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 200px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 6px solid var(--white);
}

.about-img-accent img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    top: 30px;
    left: -30px;
    background: var(--primary);
    color: var(--white);
    padding: 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.exp-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.exp-text {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 4px;
    line-height: 1.3;
}

.about-content h2 {
    margin-bottom: 24px;
}

.about-content p {
    margin-bottom: 16px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 32px 0;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: var(--text-primary);
}

.feature svg {
    color: var(--primary);
    flex-shrink: 0;
}

/* ================================================
   SERVICES SECTION
   ================================================ */

.services {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 40px;
    transition: var(--transition);
}

.service-card:hover {
    border-color: transparent;
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.service-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border-radius: var(--radius);
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--primary);
}

.service-icon svg {
    color: var(--primary);
    transition: var(--transition);
}

.service-card:hover .service-icon svg {
    color: var(--white);
}

.service-card h3 {
    font-family: var(--font-body);
    font-weight: 600;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.9375rem;
    margin-bottom: 16px;
}

.service-list {
    margin-bottom: 20px;
}

.service-list li {
    font-size: 0.875rem;
    color: var(--text-secondary);
    padding: 6px 0;
    padding-left: 16px;
    position: relative;
}

.service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
}

.service-link {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--primary);
}

.service-link:hover {
    color: var(--primary-dark);
}

/* Emergency Service Card */
.service-card-highlight {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    border-color: transparent;
    color: var(--white);
}

.service-card-highlight h3,
.service-card-highlight p {
    color: var(--white);
}

.service-card-highlight .service-icon {
    background: rgba(255, 255, 255, 0.1);
}

.service-card-highlight .service-icon svg {
    color: var(--primary-light);
}

.service-card-highlight:hover {
    transform: translateY(-4px);
}

.emergency-phone {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin: 16px 0 12px;
}

.available-badge {
    display: inline-block;
    padding: 6px 12px;
    background: var(--primary);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 50px;
}

.services-cta {
    text-align: center;
    margin-top: 48px;
}

/* ================================================
   GALLERY PREVIEW - FIXED VERSION
   ================================================ */

.gallery-preview {
    background: var(--gray-50);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item-large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: rgba(0, 0, 0, 0.85);
    transform: translateY(100%);
    transition: transform 0.3s ease;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-category {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #ff6b6b;
    display: block;
    transform: translateZ(0);
    -webkit-font-smoothing: subpixel-antialiased;
}

.gallery-overlay h4 {
    color: #ffffff;
    font-family: var(--font-body);
    font-weight: 600;
    margin-top: 4px;
    transform: translateZ(0);
    -webkit-font-smoothing: subpixel-antialiased;
}

.gallery-cta {
    text-align: center;
    margin-top: 48px;
}

/* ================================================
   TESTIMONIALS
   ================================================ */

.testimonials {
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.testimonial-card {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.stars {
    color: #f59e0b;
    font-size: 1.125rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.testimonial-card p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.125rem;
}

.author-info strong {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
}

.author-info span {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.testimonials-cta {
    text-align: center;
    margin-top: 48px;
}

/* ================================================
   CTA SECTION
   ================================================ */

.cta-section {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ================================================
   FOOTER
   ================================================ */

.footer {
    background: var(--gray-900);
    color: var(--white);
    padding: 80px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo {
    height: 48px;
    width: auto;
    margin-bottom: 16px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary-light);
}

.footer-contact ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
}

.footer-contact svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--primary-light);
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ================================================
   PAGE HERO (for sub-pages)
   ================================================ */

.page-hero {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    text-align: center;
}

.page-hero h1 {
    color: var(--white);
    margin-bottom: 16px;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ================================================
   ANIMATIONS
   ================================================ */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ================================================
   SERVICES PAGE STYLES
   ================================================ */

.services-detail {
    padding: var(--section-padding) 0;
}

.service-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

.service-block:last-child {
    margin-bottom: 0;
}

.service-block-reverse {
    direction: rtl;
}

.service-block-reverse > * {
    direction: ltr;
}

.service-block-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.service-block-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.service-block-content {
    padding: 20px 0;
}

.service-number {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--gray-200);
    line-height: 1;
    margin-bottom: 16px;
}

.service-block-content h2 {
    margin-bottom: 20px;
}

.service-block-content .lead {
    color: var(--text-primary);
    margin-bottom: 16px;
}

.service-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 32px 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.service-features svg {
    color: var(--primary);
    flex-shrink: 0;
}

/* Emergency Banner */
.emergency-banner {
    background: var(--primary);
    padding: 60px 0;
}

.emergency-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.emergency-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.emergency-icon svg {
    color: var(--white);
}

.emergency-text {
    flex: 1;
}

.emergency-text h2 {
    color: var(--white);
    margin-bottom: 8px;
    font-size: 1.75rem;
}

.emergency-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.emergency-cta .btn {
    background: var(--white);
    color: var(--primary);
}

.emergency-cta .btn:hover {
    background: var(--gray-100);
}

/* Additional Services Grid */
.additional-services {
    background: var(--gray-50);
    padding: var(--section-padding) 0;
}

.additional-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.additional-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}

.additional-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: transparent;
}

.additional-icon {
    width: 60px;
    height: 60px;
    background: var(--gray-100);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.additional-card:hover .additional-icon {
    background: var(--primary);
}

.additional-icon svg {
    color: var(--primary);
    transition: var(--transition);
}

.additional-card:hover .additional-icon svg {
    color: var(--white);
}

.additional-card h3 {
    font-family: var(--font-body);
    font-weight: 600;
    margin-bottom: 8px;
}

.additional-card p {
    font-size: 0.9375rem;
}

/* Why Choose Grid */
.why-choose {
    padding: var(--section-padding) 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-card {
    padding: 32px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.why-card:hover {
    border-color: var(--primary);
}

.why-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

.why-card h3 {
    font-family: var(--font-body);
    font-weight: 600;
    margin-bottom: 8px;
}

.why-card p {
    font-size: 0.9375rem;
}

/* ================================================
   ABOUT PAGE STYLES
   ================================================ */

.about-story {
    padding: var(--section-padding) 0;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-content h2 {
    margin-bottom: 24px;
}

.story-content .lead {
    color: var(--text-primary);
    margin-bottom: 16px;
}

.story-content p {
    margin-bottom: 16px;
}

.story-images {
    position: relative;
}

.story-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.story-img-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.story-img-accent {
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 220px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 6px solid var(--white);
}

.story-img-accent img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

/* About Stats */
.about-stats {
    background: var(--secondary);
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.stat-card {
    text-align: center;
}

.stat-card .stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.stat-card .stat-label {
    display: block;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 8px;
}

/* Our Values */
.our-values {
    background: var(--gray-50);
    padding: var(--section-padding) 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.value-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.value-card:hover .value-icon {
    background: var(--primary);
}

.value-icon svg {
    color: var(--primary);
    transition: var(--transition);
}

.value-card:hover .value-icon svg {
    color: var(--white);
}

.value-card h3 {
    font-family: var(--font-body);
    font-weight: 600;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 0.9375rem;
}

/* Why Us Detailed */
.why-us-detailed {
    padding: var(--section-padding) 0;
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-us-content h2 {
    margin-bottom: 20px;
}

.why-us-content .lead {
    margin-bottom: 32px;
}

.why-us-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.why-us-item {
    display: flex;
    gap: 20px;
}

.why-us-number {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    flex-shrink: 0;
    width: 40px;
}

.why-us-text h4 {
    font-weight: 600;
    margin-bottom: 4px;
}

.why-us-text p {
    font-size: 0.9375rem;
}

.why-us-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.why-us-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

/* Service Area */
.service-area {
    background: var(--gray-50);
    padding: var(--section-padding) 0;
}

.area-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.area-content h2 {
    margin-bottom: 20px;
}

.area-content p {
    margin-bottom: 16px;
}

.area-content .btn {
    margin-top: 16px;
}

/* ================================================
   GALLERY PAGE STYLES
   ================================================ */

.gallery-full {
    padding: var(--section-padding) 0;
    background: var(--gray-50);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 24px;
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.gallery-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.gallery-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.gallery-card-image {
    position: relative;
    overflow: hidden;
}

.gallery-card-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-card:hover .gallery-card-image img {
    transform: scale(1.05);
}

.gallery-card-content {
    padding: 24px;
}

.gallery-card-category {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary);
    margin-bottom: 8px;
}

.gallery-card-content h3 {
    font-family: var(--font-body);
    font-weight: 600;
    margin-bottom: 8px;
}

.gallery-card-content p {
    font-size: 0.9375rem;
}

/* ================================================
   REVIEWS PAGE STYLES
   ================================================ */

.rating-overview {
    padding: 60px 0;
    background: var(--gray-50);
}

.rating-card {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow);
}

.rating-main {
    text-align: center;
    border-right: 1px solid var(--gray-200);
    padding-right: 60px;
}

.rating-score {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

.rating-stars {
    font-size: 1.5rem;
    color: #f59e0b;
    letter-spacing: 4px;
    margin: 12px 0;
}

.rating-main p {
    font-size: 0.9375rem;
}

.rating-breakdown {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
}

.rating-bar {
    display: flex;
    align-items: center;
    gap: 16px;
}

.rating-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    width: 60px;
    flex-shrink: 0;
}

.rating-bar-track {
    flex: 1;
    height: 8px;
    background: var(--gray-200);
    border-radius: 4px;
    overflow: hidden;
}

.rating-bar-fill {
    height: 100%;
    background: #f59e0b;
    border-radius: 4px;
}

.rating-percent {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    width: 40px;
    text-align: right;
}

/* Reviews Grid */
.reviews-section {
    padding: var(--section-padding) 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.review-card {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
}

.review-card:hover {
    box-shadow: var(--shadow-md);
}

.review-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.review-avatar {
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.review-meta {
    flex: 1;
}

.review-meta strong {
    display: block;
    font-weight: 600;
}

.review-meta span {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.review-rating {
    color: #f59e0b;
    font-size: 0.875rem;
}

.review-text {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.review-date {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* Trust Badges */
.trust-badges {
    background: var(--gray-50);
    padding: var(--section-padding) 0;
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.badge-item {
    text-align: center;
    padding: 32px;
    background: var(--white);
    border-radius: var(--radius-lg);
}

.badge-icon {
    width: 70px;
    height: 70px;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.badge-icon svg {
    color: var(--primary);
}

.badge-item h4 {
    font-weight: 600;
    margin-bottom: 4px;
}

.badge-item p {
    font-size: 0.875rem;
}

/* ================================================
   CONTACT PAGE STYLES
   ================================================ */

.contact-info-section {
    padding: 60px 0;
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.contact-info-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.contact-info-icon {
    width: 60px;
    height: 60px;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.contact-info-icon svg {
    color: var(--primary);
}

.contact-info-card h3 {
    font-family: var(--font-body);
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-info-value {
    display: block;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
}

.contact-info-card p {
    font-size: 0.875rem;
    line-height: 1.5;
}

/* Contact Form Section */
.contact-form-section {
    padding: var(--section-padding) 0;
    background: var(--gray-50);
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.contact-form-info h2 {
    margin-bottom: 16px;
}

.contact-form-info > p {
    margin-bottom: 32px;
}

.contact-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.contact-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.contact-feature svg {
    color: var(--primary);
    flex-shrink: 0;
}

.emergency-box {
    background: var(--secondary);
    padding: 24px;
    border-radius: var(--radius-lg);
    color: var(--white);
}

.emergency-box h4 {
    color: var(--white);
    margin-bottom: 8px;
}

.emergency-box p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 16px;
    font-size: 0.9375rem;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-primary);
    transition: var(--transition-fast);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(139, 0, 0, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-checkbox {
    flex-direction: row;
    align-items: center;
}

.form-checkbox label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
}

.form-note {
    font-size: 0.8125rem;
    color: var(--text-muted);
    text-align: center;
}

/* Why Contact */
.why-contact {
    padding: var(--section-padding) 0;
}

.why-contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-contact-card {
    text-align: center;
    padding: 32px 24px;
}

.why-contact-icon {
    width: 70px;
    height: 70px;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.why-contact-icon svg {
    color: var(--primary);
}

.why-contact-card h3 {
    font-family: var(--font-body);
    font-weight: 600;
    margin-bottom: 8px;
}

.why-contact-card p {
    font-size: 0.9375rem;
}

/* ================================================
   SUBMIT REVIEW SECTION
   ================================================ */

.submit-review-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.submit-review-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: start;
}

.submit-review-info h2 {
    margin-bottom: 16px;
}

.submit-review-info > p {
    margin-bottom: 32px;
    font-size: 1.0625rem;
}

.review-guidelines {
    background: var(--gray-50);
    padding: 24px;
    border-radius: var(--radius-lg);
}

.review-guidelines h4 {
    font-family: var(--font-body);
    font-weight: 600;
    margin-bottom: 16px;
}

.review-guidelines ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.review-guidelines li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.review-guidelines svg {
    color: var(--primary);
    flex-shrink: 0;
}

.submit-review-form-wrapper {
    background: var(--gray-50);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.review-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Star Rating Input */
.star-rating-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 4px;
}

.star-rating-input input {
    display: none;
}

.star-rating-input label {
    font-size: 2rem;
    color: var(--gray-300);
    cursor: pointer;
    transition: var(--transition-fast);
}

.star-rating-input label:hover,
.star-rating-input label:hover ~ label,
.star-rating-input input:checked ~ label {
    color: #f59e0b;
}

.star-rating-input label:hover {
    transform: scale(1.1);
}

/* Review Success State */
.review-success {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: rgba(139, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.success-icon svg {
    color: var(--primary);
}

.review-success h3 {
    font-family: var(--font-body);
    font-weight: 600;
    margin-bottom: 12px;
}

.review-success p {
    margin-bottom: 24px;
}

/* ================================================
   RESPONSIVE DESIGN
   ================================================ */

@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }
    
    .about-grid {
        gap: 48px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 180px);
    }
    
    .gallery-item-large {
        grid-column: span 1;
        grid-row: span 2;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-block {
        gap: 40px;
    }
    
    .service-features {
        grid-template-columns: 1fr;
    }
    
    .additional-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .story-grid {
        gap: 48px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-us-grid {
        gap: 48px;
    }
    
    .gallery-masonry {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .rating-card {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .rating-main {
        border-right: none;
        border-bottom: 1px solid var(--gray-200);
        padding-right: 0;
        padding-bottom: 40px;
    }
    
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .badges-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .why-contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .submit-review-grid {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }
    
    .nav-menu,
    .nav-cta {
        display: none;
        visibility: hidden;
        pointer-events: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .nav-menu.active {
        display: flex;
        visibility: visible;
        pointer-events: auto;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 24px;
        box-shadow: var(--shadow-lg);
        transform: none; /* Reset the desktop centering transform */
        z-index: 1000;
    }
    
    .nav-menu.active .nav-link {
        color: var(--text-primary);
        padding: 12px 16px;
        width: 100%;
        text-align: left;
    }
    
    .nav-menu.active .nav-link:hover,
    .nav-menu.active .nav-link.active {
        background: var(--gray-100);
        color: var(--primary);
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    /* Mobile hero adjustments for iOS Safari */
    .hero {
        min-height: 100svh;
        min-height: -webkit-fill-available;
        padding: 100px 0 40px; /* Adjusted padding for mobile - accounts for navbar */
    }
    
    .hero-content {
        padding: 0 20px;
        padding-bottom: 20px;
    }
    
    /* Hide scroll indicator on mobile - not enough space */
    .hero-scroll-indicator {
        display: none;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 6px 16px;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .trust-items {
        flex-direction: column;
        gap: 16px;
    }
    
    .trust-divider {
        display: none;
    }
    
    .trust-item {
        padding: 16px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
    }
    
    .trust-item:last-child {
        border-bottom: none;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-images {
        order: -1;
    }
    
    .about-img-accent {
        right: 20px;
        bottom: -20px;
        width: 150px;
    }
    
    .about-img-accent img {
        height: 180px;
    }
    
    .experience-badge {
        left: 20px;
        top: 20px;
        padding: 16px;
    }
    
    .exp-number {
        font-size: 2rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 160px);
    }
    
    .gallery-item-large {
        grid-row: span 1;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .service-block {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 60px;
    }
    
    .service-block-reverse {
        direction: ltr;
    }
    
    .service-block-image img {
        height: 300px;
    }
    
    .emergency-content {
        flex-direction: column;
        text-align: center;
    }
    
    .additional-grid {
        grid-template-columns: 1fr;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .story-grid {
        grid-template-columns: 1fr;
    }
    
    .story-img-main img {
        height: 350px;
    }
    
    .story-img-accent {
        width: 160px;
        left: 20px;
        bottom: -30px;
    }
    
    .story-img-accent img {
        height: 200px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .stat-card .stat-number {
        font-size: 2.5rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .why-us-grid {
        grid-template-columns: 1fr;
    }
    
    .why-us-image {
        order: -1;
    }
    
    .why-us-image img {
        height: 350px;
    }
    
    .gallery-masonry {
        grid-template-columns: 1fr;
    }
    
    .gallery-card-image img {
        height: 240px;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .badges-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 24px;
    }
    
    .why-contact-grid {
        grid-template-columns: 1fr;
    }
    
    .submit-review-grid {
        grid-template-columns: 1fr;
    }
    
    .submit-review-form-wrapper {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    /* More flexible hero for very small screens */
    .hero {
        min-height: auto;
        padding: 100px 0 50px;
    }
    
    .hero h1 {
        font-size: 1.875rem;
        line-height: 1.2;
        margin-bottom: 16px;
    }
    
    .hero p {
        font-size: 0.9375rem;
        line-height: 1.5;
        margin-bottom: 24px;
    }
    
    .hero-content {
        padding: 0 16px;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 14px;
        margin-bottom: 16px;
    }
    
    .hero-buttons .btn {
        padding: 14px 24px;
        font-size: 0.9375rem;
    }
    
    .about-img-main img {
        height: 350px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 200px);
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .badges-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-filters {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-btn {
        width: 100%;
    }
}

/* ================================================
   MOBILE FIXED CONTACT BUTTON
   ================================================ */

.mobile-fixed-cta {
    display: none; /* Hidden by default on desktop */
}

@media (max-width: 768px) {
    .mobile-fixed-cta {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 999;
        padding: 12px 16px;
        padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px)); /* Account for iPhone home indicator */
        background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.9) 100%);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
        gap: 10px;
    }
    
    .mobile-fixed-cta a {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 14px 20px;
        border-radius: var(--radius);
        font-size: 0.9375rem;
        font-weight: 600;
        text-align: center;
        transition: var(--transition);
    }
    
    .mobile-fixed-cta .cta-call {
        background: var(--primary);
        color: var(--white);
    }
    
    .mobile-fixed-cta .cta-call:hover,
    .mobile-fixed-cta .cta-call:active {
        background: var(--primary-dark);
    }
    
    .mobile-fixed-cta .cta-estimate {
        background: var(--white);
        color: var(--primary);
    }
    
    .mobile-fixed-cta .cta-estimate:hover,
    .mobile-fixed-cta .cta-estimate:active {
        background: var(--gray-100);
    }
    
    .mobile-fixed-cta svg {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
    }
    
    /* Add padding to body/footer so content isn't hidden behind fixed button */
    body {
        padding-bottom: 80px;
    }
    
    .footer {
        padding-bottom: 100px;
    }
}