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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #1a1a2e;
    font-size: 16px;
    font-weight: 400;
    background: #f8f9fa;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Modern Layout Components */
.hero-container,
.about-container,
.services-container,
.work-container,
.deals-container,
.contact-container,
.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    width: 100%;
}

@media (max-width: 768px) {
    .container,
    .hero-container,
    .about-container,
    .services-container,
    .work-container,
    .deals-container,
    .contact-container,
    .footer-container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .container,
    .hero-container,
    .about-container,
    .services-container,
    .work-container,
    .deals-container,
    .contact-container,
    .footer-container {
        padding: 0 0.75rem;
    }
}

/* ================================
   UNIVERSAL RESPONSIVE NAVIGATION
   REPLACEMENT FOR IAK CONTRACTORS
   ================================ */

/* Navbar Foundation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    height: clamp(70px, 8vh, 90px);
    transition: height 0.3s ease;
}

/* Responsive Container System */
.nav-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0 clamp(0.75rem, 2.5vw, 2rem);
    max-width: 100vw;
    margin: 0;
    height: 100%;
    gap: clamp(0.5rem, 1vw, 1.5rem);
    overflow: hidden;
    box-sizing: border-box;
}

/* Scalable Logo System */
.nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    z-index: 10;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    z-index: 10;
    position: relative;
    height: clamp(70px, 8vh, 90px);
    overflow: hidden;
}

.logo-link:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

.logo-image {
    height: auto !important;
    width: clamp(240px, 25vw, 400px) !important;
    max-width: none !important;
    object-fit: contain !important;
    object-position: left center !important;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1)) !important;
    display: block !important;
    transition: all 0.3s ease;
    transform: none;
}

/* Adaptive Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: clamp(0.3rem, 0.8vw, 1rem);
    align-items: center;
    margin: 0 0 0 auto;
    padding: 0;
    flex-wrap: nowrap;
    overflow: hidden;
    flex-shrink: 1;
    min-width: 0;
}

/* Scalable Typography System */
.nav-link {
    font-family: 'Inter', sans-serif;
    font-size: clamp(11px, 1vw, 13px);
    font-weight: 500;
    color: #1a1a2e;
    text-decoration: none;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
    padding: 0.25rem 0;
}

.nav-link:hover {
    color: #e74c3c;
    transform: translateY(-1px);
}

/* Responsive CTA Button */
.nav-cta {
    background: #e74c3c;
    color: white !important;
    padding: clamp(0.4rem, 0.8vw, 0.6rem) clamp(0.6rem, 1vw, 0.8rem);
    border-radius: 8px;
    font-weight: 600;
    font-size: clamp(10px, 0.9vw, 12px);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nav-cta:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

/* Responsive Navigation Actions Container */
.nav-actions {
    display: flex;
    align-items: center;
    gap: clamp(0.25rem, 0.5vw, 0.75rem);
    flex-shrink: 0;
    min-width: 0;
    overflow: hidden;
}

/* Smart Phone CTA System */
.nav-phone {
    display: var(--phone-display, flex);
    transition: all 0.3s ease;
}

/* Responsive Phone CTA Component */
.phone-cta {
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: clamp(8px, 1.5vw, 12px) clamp(12px, 2vw, 16px);
    background: rgba(39, 174, 96, 0.1);
    border: 2px solid #27ae60;
    border-radius: 8px;
    transition: all 0.3s ease;
    color: #27ae60;
    font-weight: 600;
    white-space: nowrap;
    min-width: 0;
    overflow: hidden;
    flex-shrink: 0;
}

.phone-cta:hover {
    background: #27ae60;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
}

.phone-cta i {
    font-size: clamp(12px, 1.5vw, 16px);
    margin-right: clamp(4px, 1vw, 8px);
    flex-shrink: 0;
}

.phone-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
    overflow: hidden;
}

.phone-label {
    font-size: clamp(0.45rem, 0.7vw, 0.65rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.phone-number {
    font-size: clamp(0.6rem, 0.9vw, 0.8rem);
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Universal Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
    gap: 4px;
    z-index: 1001;
    transition: all 0.3s ease;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: #1a1a2e;
    border-radius: 1px;
    transition: all 0.3s ease;
}

.nav-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ================================
   COMPREHENSIVE RESPONSIVE BREAKPOINTS
   ================================ */

/* Large Desktop (1440px+) - Full featured layout */
@media (min-width: 1440px) {
    .nav-container {
        gap: 2rem;
        padding: 0 2rem;
    }
    
    .nav-actions {
        gap: 1rem;
    }
    
    .nav-cta {
        padding: 14px 28px;
        font-size: 0.875rem;
    }
}

/* Standard Desktop (1200px-1439px) - Optimized spacing */
@media (min-width: 1200px) and (max-width: 1439px) {
    .nav-container {
        gap: 1.5rem;
        padding: 0 1.5rem;
    }
    
    .nav-actions {
        gap: 0.75rem;
    }
    
    .nav-cta {
        padding: 12px 24px;
        font-size: 0.8rem;
    }
}

/* Small Laptop Optimization (1000px-1200px) - Critical spacing fix */
@media (min-width: 1000px) and (max-width: 1200px) {
    .nav-container {
        gap: 0.75rem;
        padding: 0 1rem;
    }

    .nav-menu {
        gap: 0.5rem;
    }

    .nav-actions {
        gap: 0.25rem;
    }

    .nav-cta {
        font-size: 10px;
        padding: 0.4rem 0.6rem;
    }

    .nav-link {
        font-size: 11px;
    }

    .nav-phone {
        --phone-display: flex;
    }
}

/* Laptop (1101px-1199px) - Compact but full featured */
@media (min-width: 1101px) and (max-width: 1199px) {
    .nav-container {
        gap: 1rem;
        padding: 0 1rem;
    }

    .nav-actions {
        gap: 0.5rem;
    }

    .nav-cta {
        padding: 10px 20px;
        font-size: 0.75rem;
    }

    .nav-phone {
        --phone-display: flex;
    }
}

/* Small Laptop (768px-1100px) - Hide phone, keep CTA */
@media (min-width: 768px) and (max-width: 1100px) {
    .nav-container {
        gap: 0.75rem;
        padding: 0 0.75rem;
    }
    
    .nav-actions {
        gap: 0.5rem;
    }
    
    .nav-cta {
        padding: 8px 16px;
        font-size: 0.7rem;
    }
    
    .nav-phone {
        --phone-display: none;
    }
}

/* Tablet (481px-767px) - Simplified layout */
@media (min-width: 481px) and (max-width: 767px) {
    .nav-container {
        gap: 0.5rem;
        padding: 0 0.75rem;
    }
    
    .nav-actions {
        gap: 0.25rem;
    }
    
    .nav-cta {
        padding: 8px 12px;
        font-size: 0.65rem;
    }
    
    .nav-phone {
        --phone-display: none;
    }
}

/* Default phone visibility rules */
@media (max-width: 1100px) {
    .nav-phone {
        --phone-display: none;
    }
}

@media (min-width: 1101px) {
    .nav-phone {
        --phone-display: flex;
    }
}

/* Mobile Menu Transition - Updated breakpoint */
@media (max-width: 1100px) {
    .nav-toggle {
        display: flex;
        order: 3;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: clamp(70px, 8vh, 90px);
        flex-direction: column;
        background: white;
        width: 100%;
        min-height: calc(100vh - clamp(70px, 8vh, 90px));
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
        gap: 2rem;
        z-index: 999;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        font-size: 1.1rem;
        padding: 1rem 0;
        width: 100%;
        display: block;
    }
    
    .nav-cta {
        font-size: 1rem;
        padding: 1.5rem 3rem;
        margin: 1rem 2rem;
        align-self: center;
    }
    
    .nav-logo {
        order: 1;
    }
    
    .nav-phone {
        order: 2;
        margin-left: auto;
        margin-right: 1rem;
    }
}

/* Tablet and Small Laptop Logo Optimization */
@media (min-width: 481px) and (max-width: 1100px) {
    .logo-image {
        width: clamp(300px, 20vw, 350px) !important;
    }
}

/* Logo layout optimization for all non-mobile screens */
@media (min-width: 481px) {
    .nav-logo {
        flex: 0 0 auto;
        justify-content: flex-start;
    }
    
    .logo-image {
        transform: translateY(-10px) translateX(-20px);
    }
}

/* Mobile (≤480px) - Minimal layout */
@media (max-width: 480px) {
    .nav-container {
        padding: 0 0.5rem;
        gap: 0.25rem;
    }
    
    .nav-logo {
        flex: 1;
        display: flex;
        justify-content: center;
    }
    
    .logo-image {
        width: clamp(200px, 50vw, 240px) !important;
        transform: none;
    }
    
    .nav-actions {
        display: none;
    }
    
    .nav-menu {
        padding: 1.5rem 0;
        gap: 1.5rem;
    }
    
    .nav-link {
        font-size: 1rem;
        padding: 0.75rem 0;
    }
}

/* Accessibility and Focus States */
.nav-link:focus,
.nav-cta:focus,
.phone-cta:focus,
.nav-toggle:focus {
    outline: 2px solid #e74c3c;
    outline-offset: 2px;
    border-radius: 4px;
}

/* Smooth transitions for all interactive elements */
.navbar *,
.navbar *::before,
.navbar *::after {
    box-sizing: border-box;
}

/* Prevent horizontal scroll from oversized elements */
.navbar,
.nav-container,
.nav-menu,
.nav-logo {
    overflow: visible;
}

.logo-image,
.phone-cta,
.nav-link,
.nav-cta {
    max-width: 100%;
}



/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    z-index: -2;
}

.hero-blueprint {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    opacity: 0.6;
}

/* Unified Blueprint Grid */
.blueprint-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px),
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 80px 80px, 80px 80px, 20px 20px, 20px 20px;
    background-position: 0 0, 0 0, 0 0, 0 0;
    animation: blueprint-drift 30s linear infinite;
}

@keyframes blueprint-drift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(20px, 20px); }
}

/* Service-Focused Blueprint Design */
.roof-plan {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Service-Focused Layout */
.service-blueprint-layout {
    position: relative;
    width: 400px;
    height: 250px;
    opacity: 0.8;
}

.service-zone {
    position: absolute;
    width: 85px;
    height: 85px;
    border: 2px solid rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: rgba(255,255,255,0.8);
    transition: all 0.4s ease;
    backdrop-filter: blur(8px);
}

.service-zone:hover {
    transform: scale(1.05);
    background: rgba(255,255,255,0.15);
}

.service-zone.roofing {
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    border-color: #e74c3c;
    color: #e74c3c;
}

.service-zone.roofing:hover {
    border-color: #c0392b;
    color: #c0392b;
    transform: translateX(-50%) scale(1.05);
}

.service-zone.gutters {
    bottom: 80px;
    left: 50px;
    border-color: #3498db;
    color: #3498db;
}

.service-zone.gutters:hover {
    border-color: #2980b9;
    color: #2980b9;
}

.service-zone.siding {
    bottom: 80px;
    right: 50px;
    border-color: #27ae60;
    color: #27ae60;
}

.service-zone.siding:hover {
    border-color: #229954;
    color: #229954;
}

/* Technical Blueprint Connections */
.blueprint-connections {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.connection-line {
    position: absolute;
    background: rgba(255,255,255,0.3);
    height: 1px;
    opacity: 0.6;
}

.connection-line::before {
    content: '';
    position: absolute;
    left: -3px;
    top: -2px;
    width: 6px;
    height: 6px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
}

.connection-line::after {
    content: '';
    position: absolute;
    right: -3px;
    top: -2px;
    width: 6px;
    height: 6px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
}

.line-1 {
    top: 105px;
    left: 50%;
    width: 140px;
    transform: translateX(-50%) rotate(30deg);
    transform-origin: left center;
}

.line-2 {
    top: 105px;
    left: 50%;
    width: 140px;
    transform: translateX(-50%) rotate(-30deg);
    transform-origin: left center;
}

/* Service Labels */
.service-labels {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.service-label {
    position: absolute;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    background: rgba(26, 26, 46, 0.8);
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.2);
}

.roofing-label {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.gutters-label {
    bottom: 55px;
    left: 15px;
}

.siding-label {
    bottom: 55px;
    right: 15px;
}

/* Simple House Outline */
.roof-outline {
    position: relative;
    width: 280px;
    height: 200px;
    opacity: 0.6;
}

/* House Base */
.house-base {
    position: absolute;
    bottom: 20px;
    left: 40px;
    right: 40px;
    height: 120px;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 4px;
    background: rgba(255,255,255,0.05);
}

/* Roof Shape - Simple Gabled Roof */
.house-roof {
    position: absolute;
    bottom: 135px;
    left: 30px;
    right: 30px;
    height: 60px;
    background: transparent;
}

.house-roof::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(255,255,255,0.5);
}

.house-roof::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 110px solid transparent;
    border-right: 110px solid transparent;
    border-bottom: 60px solid rgba(255,255,255,0.3);
    border-radius: 4px 4px 0 0;
}

/* Chimney */
.house-chimney {
    position: absolute;
    top: 25px;
    right: 70px;
    width: 16px;
    height: 35px;
    background: rgba(255,255,255,0.4);
    border-radius: 2px;
}

/* Enhanced Trust Badge Overlays */
.trust-badges {
    position: absolute;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-badges.enhanced {
    bottom: -120px;
    gap: 20px;
}

.trust-badge {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    min-width: 80px;
    justify-content: center;
}

.trust-badge.premium {
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 12px;
    min-width: 140px;
    flex-direction: column;
    gap: 4px;
    text-align: center;
}

.badge-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
    align-items: center;
}

.badge-title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.8px;
    color: rgba(255,255,255,0.95);
    text-transform: uppercase;
}

.badge-detail {
    font-size: 10px;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.trust-badge:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.6);
    transform: translateY(-2px);
}

.trust-badge.premium:hover {
    background: rgba(255,255,255,0.25);
    border-color: rgba(255,255,255,0.7);
    transform: translateY(-3px) scale(1.02);
}

.trust-badge i {
    font-size: 18px;
    color: #e74c3c;
    margin-bottom: 2px;
}

.trust-badge.licensed i {
    color: #27ae60;
}

.trust-badge.emergency i {
    color: #f39c12;
    animation: emergency-pulse 2s ease-in-out infinite;
}

.trust-badge.experience i {
    color: #3498db;
}

.trust-badge.projects i {
    color: #3498db;
}

@keyframes emergency-pulse {
    0%, 100% { 
        opacity: 0.8; 
        transform: scale(1); 
    }
    50% { 
        opacity: 1; 
        transform: scale(1.05); 
    }
}

/* Alternative Blueprint Design Variations for A/B Testing */

/* Option 2: Minimal Geometric Patterns */
.roof-plan.minimal {
    opacity: 0.4;
}

.roof-plan.minimal .roof-outline {
    width: 200px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.roof-plan.minimal .geometric-pattern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px;
}

.roof-plan.minimal .pattern-element {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    position: relative;
}

.roof-plan.minimal .pattern-element::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 1px;
    background: rgba(255,255,255,0.6);
}

.roof-plan.minimal .pattern-element::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(90deg);
    width: 20px;
    height: 1px;
    background: rgba(255,255,255,0.6);
}

/* Option 3: Pure Professional Grid (No architectural elements) */
.roof-plan.pure-grid .roof-outline {
    display: none;
}

.roof-plan.pure-grid .trust-badges {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    bottom: auto;
}

/* Service Icons Integration */
.service-icons {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 30px;
    justify-content: center;
}

.service-icon-blueprint {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.8);
    font-size: 24px;
    transition: all 0.3s ease;
}

.service-icon-blueprint:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.5);
    transform: scale(1.1);
    color: #e74c3c;
}


.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.1), rgba(192, 57, 43, 0.05));
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: -2s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    top: 30%;
    right: 30%;
    animation-delay: -4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    color: white;
    text-align: left;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-badge i {
    font-size: 14px;
    color: #e74c3c;
}

.hero-logo {
    margin-bottom: 2rem;
    text-align: center;
}

.hero-logo-image {
    height: 150px;
    width: 450px;
    max-width: 900px;
    object-fit: cover;
    object-position: center;
    filter: drop-shadow(2px 2px 4px rgba(255, 255, 255, 1)) drop-shadow(-2px -2px 4px rgba(255, 255, 255, 1)) drop-shadow(2px -2px 4px rgba(255, 255, 255, 1)) drop-shadow(-2px 2px 4px rgba(255, 255, 255, 1));
    animation: logoFloat 6s ease-in-out infinite;
    mix-blend-mode: screen;
}

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

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.title-line {
    display: block;
}

.highlight {
    color: #e74c3c;
    position: relative;
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

/* Unified Button System */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    text-align: center;
    justify-content: center;
}

.btn-primary {
    background: #ff6b35;
    color: white;
}

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

.btn-emergency {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    animation: pulse-emergency 2s infinite;
}

.btn-emergency:hover {
    background: linear-gradient(135deg, #b91c1c, #991b1b);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

.btn-large {
    padding: 20px 40px;
    font-size: 18px;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    align-items: center;
}

.cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ff6b35;
    color: white;
    padding: 18px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.cta-primary:hover {
    background: #e55a2e;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.cta-emergency {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    padding: 18px 28px;
    border: 2px solid rgba(220, 38, 38, 0.3);
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulse-emergency 2s infinite;
}

.cta-emergency:hover {
    background: linear-gradient(135deg, #b91c1c, #991b1b);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

.discount-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    opacity: 0.9;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    line-height: 1;
}

.discount-offer {
    display: block;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

@keyframes pulse-emergency {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(220, 38, 38, 0.5);
    }
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.hero-features .feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
}

.hero-features .feature i {
    font-size: 18px;
    color: #ff6b35;
}

.cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    color: white;
    padding: 18px 32px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.phone-label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    opacity: 0.8;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.phone-number {
    display: block;
    font-size: 18px;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
}

.hero-form {
    flex-shrink: 0;
    max-width: 400px;
}

.hero-form-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 2rem;
    color: white;
}

.hero-form h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
    text-align: center;
}

.form-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin-bottom: 1.5rem;
}

.hero-contact-form .form-group {
    margin-bottom: 1rem;
}

.hero-contact-form input,
.hero-contact-form select,
.hero-contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    backdrop-filter: blur(5px);
}

.hero-contact-form input::placeholder,
.hero-contact-form select option,
.hero-contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.hero-contact-form select {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.hero-form-btn {
    width: 100%;
    padding: 14px 20px;
    background: #e74c3c;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.hero-form-btn:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.form-privacy {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin-top: 1rem;
    line-height: 1.4;
}

/* Hide honeypot fields from humans */
.honeypot-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    tabindex: -1;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce 2s infinite;
    color: white;
    text-decoration: none;
}

/* Emergency Banner */
.emergency-banner {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border: 2px solid #fff;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: white;
    box-shadow: 0 4px 20px rgba(231, 76, 60, 0.3);
}

.emergency-banner i {
    font-size: 24px;
    color: #FFD700;
    animation: flash 2s infinite;
}

.emergency-banner span {
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
}

.emergency-cta {
    background: #fff;
    color: #e74c3c;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.emergency-cta:hover {
    background: #f8f8f8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

@keyframes flash {
    0%, 50%, 100% { opacity: 1; }
    25%, 75% { opacity: 0.5; }
}

/* License Badges */
.license-badges {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

.license-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    color: white;
}

.license-badge i {
    font-size: 24px;
    color: #4CAF50;
}

.license-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.license-title {
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
}

.license-numbers {
    font-size: 12px;
    opacity: 0.9;
    font-family: 'Courier New', monospace;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-5px); }
    60% { transform: translateY(-3px); }
}

/* Section Layout */
.about,
.services,
.work,
.contact,
.reviews {
    padding: 120px 0;
    margin: 0;
}

.services {
    background: #f8f9fa;
}

.contact {
    background: #f8f9fa;
}

.section-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.section-label span {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #e74c3c;
}

.label-line {
    width: 40px;
    height: 2px;
    background: #e74c3c;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    color: #1a1a2e;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.title-accent {
    color: #e74c3c;
}

.section-subtitle {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #666;
    max-width: 600px;
    margin-bottom: 3rem;
}

/* About Section Styles */
.about {
    background: #f8f9fa;
}

.about-header {
    text-align: center;
    margin-bottom: 2rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.content-block {
    margin-bottom: 2rem;
}

.content-block h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.content-block p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
}

.expertise-grid {
    display: grid;
    gap: 1.5rem;
}

.expertise-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.expertise-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.expertise-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}

.expertise-content h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 0.25rem;
    letter-spacing: -0.01em;
}

.expertise-content p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-element {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.metric-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.metric-card.featured {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    transform: scale(1.05);
}

.metric-card.featured:hover {
    transform: scale(1.1) translateY(-10px);
}

.metric-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.metric-card:not(.featured) .metric-number {
    color: #e74c3c;
}

.metric-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.8;
}

.metric-note {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    opacity: 0.7;
    margin-top: 0.25rem;
}

/* Services Section */
.services-intro {
    text-align: center;
    margin-bottom: 2rem;
}

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

.service-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.service-card.primary {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
}

.service-card.primary .service-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.service-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: #f8f9fa;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #e74c3c;
    flex-shrink: 0;
}

.service-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
    letter-spacing: -0.01em;
}

.service-card:not(.primary) h3 {
    color: #1a1a2e;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-card:not(.primary) p {
    color: #666;
}

.service-card.primary p {
    color: rgba(255, 255, 255, 0.9);
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.service-features span {
    font-size: 12px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.05);
    color: #666;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.service-card.primary .service-features span {
    background: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
}

/* Work Section */
.work {
    background: #f8f9fa;
}

.work-header {
    text-align: center;
    margin-bottom: 2rem;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.work-item {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    aspect-ratio: 4/3;
}

.work-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.work-item.featured {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}

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

.work-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #adb5bd;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    gap: 1rem;
}

.image-placeholder i {
    font-size: 48px;
}

.work-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(26, 26, 46, 0.9), transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 2.5rem 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.work-item:hover .work-overlay {
    opacity: 0;
}

.work-info {
    color: white;
    margin-bottom: 0.5rem;
}

.work-info h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.work-info p {
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.9;
    margin-bottom: 0;
}

.work-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.work-tags span {
    font-size: 11px;
    font-weight: 500;
    padding: 4px 8px;
    background: rgba(231, 76, 60, 0.8);
    border-radius: 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.work-cta {
    text-align: center;
}

.view-portfolio {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #e74c3c;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    padding: 16px 32px;
    border: 2px solid #e74c3c;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.view-portfolio:hover {
    background: #e74c3c;
    color: white;
    transform: translateY(-2px);
}

/* Deals Section */
.deals {
    padding: 120px 0;
    background: #f8f9fa;
}

.deals-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    width: 100%;
}

.deals-header {
    text-align: center;
    margin-bottom: 2rem;
}

.deals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 900px;
    margin: 0 auto 3rem auto;
}

.deal-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    border: 2px dashed #e74c3c;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.deal-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(231, 76, 60, 0.2);
    border-color: #c0392b;
}

.deal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e74c3c, #c0392b);
}

.deal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.deal-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
}

.deal-discount {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #e74c3c;
    text-align: center;
    line-height: 1;
}

.deal-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.deal-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 1.5rem;
}

.deal-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.deal-details span {
    font-size: 14px;
    color: #666;
    padding-left: 0;
}

.deal-code {
    background: #f8f9fa;
    border: 1px dashed #e74c3c;
    border-radius: 6px;
    padding: 12px;
    text-align: center;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    color: #e74c3c;
    font-size: 16px;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.deal-expires {
    text-align: center;
    font-size: 12px;
    color: #666;
    font-weight: 500;
    font-style: italic;
}

.deals-disclaimer {
    text-align: center;
    margin-top: 2rem;
}

.deals-disclaimer p {
    font-size: 12px;
    color: #666;
    line-height: 1.5;
    max-width: 800px;
    margin: 0 auto;
}

/* Photo Gallery Modal */
.gallery-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    z-index: 10000;
    overflow-y: auto;
}

.gallery-modal.active {
    display: flex;
    flex-direction: column;
}

.gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    background: rgba(26, 26, 46, 0.9);
}

.gallery-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin: 0;
    letter-spacing: -0.01em;
}

.gallery-close {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-close:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.gallery-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    gap: 2rem;
}

.gallery-nav {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    align-self: flex-start;
    margin-top: 30vh;
}

.gallery-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.gallery-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
}

.gallery-main {
    flex: 1;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.gallery-image {
    width: 100%;
    height: 60vh;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
}

.gallery-info {
    text-align: center;
    color: white;
}

.gallery-info h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.gallery-info p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 0;
    max-width: 500px;
}


.gallery-thumbnails {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: rgba(26, 26, 46, 0.9);
}

.thumbnail {
    width: 80px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.thumbnail.active {
    opacity: 1;
    border-color: #e74c3c;
    transform: scale(1.1);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-counter {
    text-align: center;
    padding: 1rem;
    background: rgba(26, 26, 46, 0.9);
    color: white;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
}

/* Mobile Gallery Styles */
@media (max-width: 768px) {
    .gallery-container {
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
    }
    
    .gallery-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10001;
    }
    
    .gallery-nav.prev {
        left: 1rem;
    }
    
    .gallery-nav.next {
        right: 1rem;
    }
    
    .gallery-main {
        max-width: none;
    }
    
    .gallery-image {
        max-height: 50vh;
    }
    
    .gallery-thumbnails {
        padding: 1rem;
        gap: 0.5rem;
    }
    
    .thumbnail {
        width: 60px;
        height: 45px;
    }
}

/* Google Reviews Section */
.reviews {
    padding: 120px 0;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}


.reviews-container {
    position: relative;
    z-index: 1;
}

.reviews-header {
    text-align: center;
    margin-bottom: 2rem;
}

.reviews-summary {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.overall-rating {
    text-align: center;
}

.rating-stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 12px;
}

.rating-stars .star {
    font-size: 28px;
    color: #f39c12;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.rating-info {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
}

.rating-score {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1;
}

.rating-text {
    font-size: 16px;
    color: #666;
    font-weight: 500;
}

.review-count {
    font-size: 14px;
    color: #888;
    font-weight: 400;
}

.google-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 12px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e5e5;
}

.google-logo {
    height: 24px;
    width: auto;
}

.google-badge span {
    font-weight: 600;
    color: #4285f4;
    font-size: 16px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.reviews-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    color: #666;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    margin: 0 auto 1rem;
    border: 3px solid #e5e5e5;
    border-top: 3px solid #e74c3c;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.reviews-fallback {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.review-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e74c3c, #f39c12);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.review-card:hover::before {
    opacity: 1;
}

.review-card.featured {
    border-color: #e74c3c;
    box-shadow: 0 8px 30px rgba(231, 76, 60, 0.15);
}

.review-card.featured::before {
    opacity: 1;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e74c3c, #f39c12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}

.reviewer-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-details h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0 0 2px 0;
}

.review-location {
    font-size: 13px;
    color: #888;
    font-weight: 400;
}

.review-rating {
    text-align: right;
    flex-shrink: 0;
}

.stars {
    display: flex;
    gap: 2px;
    margin-bottom: 4px;
    justify-content: flex-end;
}

.stars i {
    font-size: 16px;
    color: #f39c12;
}

.review-date {
    font-size: 12px;
    color: #888;
    font-weight: 400;
}

.review-content {
    margin-bottom: 16px;
}

.review-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #444;
    margin: 0;
    font-style: italic;
}

.review-content p::before {
    content: '"';
    color: #e74c3c;
    font-size: 24px;
    font-weight: 700;
    margin-right: 4px;
    line-height: 1;
    vertical-align: top;
}

.review-content p::after {
    content: '"';
    color: #e74c3c;
    font-size: 24px;
    font-weight: 700;
    margin-left: 4px;
    line-height: 1;
    vertical-align: top;
}

.review-source {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #888;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.review-source i {
    font-size: 14px;
    color: #4285f4;
}

.reviews-cta {
    text-align: center;
    margin-top: 2rem;
}

.view-all-reviews {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.view-all-reviews:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 26, 46, 0.3);
    background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
}

.view-all-reviews i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.view-all-reviews:hover i {
    transform: translateX(4px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .reviews {
        padding: 80px 0;
    }
    
    .reviews-summary {
        gap: 2rem;
        flex-direction: column;
    }
    
    .reviews-grid,
    .reviews-fallback {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .review-card {
        padding: 20px;
    }
    
    .rating-score {
        font-size: 28px;
    }
    
    .rating-stars .star {
        font-size: 24px;
    }
    
    .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .review-rating {
        text-align: left;
    }
    
    .stars {
        justify-content: flex-start;
    }
    
    .google-badge {
        padding: 10px 16px;
    }
    
    .google-badge span {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .reviews-header {
        margin-bottom: 3rem;
    }
    
    .review-card {
        padding: 16px;
    }
    
    .reviewer-avatar {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .view-all-reviews {
        padding: 14px 24px;
        font-size: 13px;
    }
}

/* Reviews Section */
.reviews {
    background: #f8f9fa;
}

.reviews-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    width: 100%;
}

.reviews-header {
    text-align: center;
    margin-bottom: 2rem;
}

.reviews-summary {
    margin-top: 2rem;
}

.rating-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.stars {
    display: flex;
    gap: 4px;
}

.star-filled {
    color: #ffc107;
    font-size: 20px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.rating-text {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

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

.reviewer-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.reviewer-details h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0;
    line-height: 1.2;
}

.review-date {
    font-size: 12px;
    color: #666;
    font-weight: 400;
}

.review-rating {
    display: flex;
    gap: 2px;
}

.review-rating .star-filled {
    font-size: 16px;
    color: #ffc107;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.review-text {
    font-size: 14px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 1rem;
    font-style: italic;
}


.reviews-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.reviews-cta p {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

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

@media (max-width: 640px) {
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-buttons a {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .reviews-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 1rem;
        padding: 0 1rem;
        margin: 0 -1rem;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .reviews-grid::-webkit-scrollbar {
        display: none;
    }
    
    .review-card {
        flex: 0 0 85%;
        scroll-snap-align: start;
        padding: 1.5rem;
        margin-right: 1rem;
    }
    
    .review-card:last-child {
        margin-right: 1rem;
    }
    
    .reviews-cta {
        padding: 2rem 1rem;
    }
    
    .rating-display {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    /* Add swipe indicator below reviews */
    .reviews-container::after {
        content: "← Swipe to see more reviews →";
        display: block;
        text-align: center;
        margin-top: 1rem;
        font-size: 0.75rem;
        color: #666;
        font-style: italic;
    }
}

/* Contact Section */
.contact-header {
    text-align: center;
    margin-bottom: 2rem;
}

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

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

.contact-info .info-card:last-child {
    margin-bottom: 0;
}

.info-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.info-card.primary {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    transform: scale(1.02);
}

.info-card.primary:hover {
    transform: scale(1.05) translateY(-5px);
}

.info-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.info-header i {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
    border-radius: 10px;
    font-size: 24px;
    flex-shrink: 0;
}

.info-card.primary .info-header i {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.info-header h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0;
    letter-spacing: -0.01em;
}

.info-card:not(.primary) .info-header h3 {
    color: #1a1a2e;
}

.info-header p {
    font-size: 14px;
    opacity: 0.8;
    margin: 0;
    line-height: 1.4;
}

.contact-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a2e;
    text-decoration: none;
    transition: color 0.3s ease;
    line-height: 1.4;
}

/* Reduce padding for business hours card specifically */
.info-card:has(.ph-clock) {
    padding: 2rem 2rem 1rem 2rem;
}

.info-card.primary .contact-value {
    color: white;
}

.contact-value:hover {
    color: #e74c3c;
}

.info-card.primary .contact-value:hover {
    color: rgba(255, 255, 255, 0.9);
}

.contact-form-container {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    min-height: 600px;
    display: flex;
    flex-direction: column;
}

/* Contact Form Wrapper */
.contact-form {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-header {
    margin-bottom: 2.5rem;
    flex-shrink: 0;
}

.form-header h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.form-header p {
    color: #666;
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.form-field {
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
}

.form-field label {
    font-size: 12px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 18px;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: #fafafa;
    box-sizing: border-box;
    min-height: 44px;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #e74c3c;
    background: white;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.form-field textarea {
    min-height: 140px;
    resize: vertical;
}

/* Form Help Text */
.form-help {
    display: block;
    font-size: 12px;
    color: #666;
    margin-top: 6px;
    font-weight: 400;
    line-height: 1.4;
}

.form-field.has-error .form-help {
    color: #e74c3c;
}

.form-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #e74c3c;
    color: white;
    padding: 18px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
    margin-bottom: 2rem;
    min-height: 54px;
}

.form-submit:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
}

.form-note {
    font-size: 12px;
    color: #666;
    text-align: center;
    line-height: 1.5;
    margin: 0;
}

/* Form Success/Error Messages */
.form-success, .form-error {
    text-align: center;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.form-success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.form-error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.success-icon, .error-icon {
    font-size: 24px;
    margin-bottom: 0.5rem;
}

.form-success h4, .form-error h4 {
    margin: 0.5rem 0;
    font-size: 18px;
}

.form-success p, .form-error p {
    margin: 0;
    font-size: 14px;
}

.form-error a {
    color: #721c24;
    text-decoration: underline;
}

/* Privacy Consent Checkbox */
.privacy-consent {
    margin-bottom: 1.5rem !important;
    padding: 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    margin: 0;
    padding: 0;
}

.checkbox-text {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    text-transform: none;
    letter-spacing: normal;
    font-weight: 400;
    flex: 1;
    min-width: 0;
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    width: 0;
    height: 0;
}

.checkbox-custom {
    position: relative;
    width: 20px;
    height: 20px;
    border: 2px solid #e5e5e5;
    border-radius: 4px;
    background: white;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-custom:after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    background-color: #e74c3c;
    border-color: #e74c3c;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom:after {
    display: block;
}

.checkbox-label input[type="checkbox"]:focus + .checkbox-custom {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.privacy-link {
    color: #e74c3c;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.privacy-link:hover {
    color: #c0392b;
    text-decoration: underline;
}

/* Form field error states */
.form-field.has-error input,
.form-field.has-error select,
.form-field.has-error textarea {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.2);
}

.field-error {
    color: #e74c3c;
    font-size: 12px;
    margin-top: 6px;
    font-weight: 500;
    display: block;
    animation: fadeInError 0.3s ease;
}

@keyframes fadeInError {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Blueprint Drawings */
.blueprint-drawings {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.blueprint-element {
    position: absolute;
    opacity: 0.6;
}

/* House Cross-Section */
.house-section {
    top: 20%;
    left: 15%;
    width: 200px;
    height: 120px;
}

.foundation-line {
    position: absolute;
    bottom: 0;
    left: 10%;
    right: 10%;
    height: 3px;
    background: rgba(255,255,255,0.8);
}

.wall-left {
    position: absolute;
    bottom: 3px;
    left: 10%;
    width: 2px;
    height: 60px;
    background: rgba(255,255,255,0.7);
}

.wall-right {
    position: absolute;
    bottom: 3px;
    right: 10%;
    width: 2px;
    height: 60px;
    background: rgba(255,255,255,0.7);
}

.roof-line-left {
    position: absolute;
    bottom: 63px;
    left: 10%;
    width: 90px;
    height: 1px;
    background: rgba(255,255,255,0.7);
    transform: rotate(25deg);
    transform-origin: left center;
}

.roof-line-right {
    position: absolute;
    bottom: 63px;
    right: 10%;
    width: 90px;
    height: 1px;
    background: rgba(255,255,255,0.7);
    transform: rotate(-25deg);
    transform-origin: right center;
}

.roof-peak {
    position: absolute;
    bottom: 95px;
    left: 50%;
    width: 4px;
    height: 4px;
    background: rgba(255,255,255,0.8);
    border-radius: 2px;
    transform: translateX(-50%);
}

.dimension-line {
    position: absolute;
    bottom: -25px;
    left: 10%;
    right: 10%;
}

.dim-line {
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.5);
    position: relative;
}

.dim-line::before,
.dim-line::after {
    content: '';
    position: absolute;
    width: 1px;
    height: 10px;
    background: rgba(255,255,255,0.5);
    top: -5px;
}

.dim-line::before { left: 0; }
.dim-line::after { right: 0; }

.dim-text {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Courier New', monospace;
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    background: rgba(0,0,0,0.2);
    padding: 2px 4px;
    border-radius: 2px;
}

/* Detail Callout */
.detail-callout {
    top: 15%;
    right: 20%;
    width: 100px;
    height: 80px;
}

.callout-circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255,255,255,0.6);
    border-radius: 50%;
}

.callout-leader {
    position: absolute;
    top: 10px;
    left: 20px;
    width: 40px;
    height: 1px;
    background: rgba(255,255,255,0.5);
}

.detail-box {
    position: absolute;
    top: 5px;
    right: 0;
    width: 35px;
    height: 30px;
    border: 1px solid rgba(255,255,255,0.5);
}

.detail-line {
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.4);
    margin: 3px 0;
}

.detail-label {
    position: absolute;
    bottom: -20px;
    right: 0;
    font-family: 'Courier New', monospace;
    font-size: 10px;
    color: rgba(255,255,255,0.6);
}

/* Construction Notes */
.construction-notes {
    bottom: 20%;
    left: 10%;
    width: 180px;
    height: 80px;
}

.note-line {
    width: 120px;
    height: 1px;
    background: rgba(255,255,255,0.4);
    margin: 2px 0;
}

.note-text {
    font-family: 'Courier New', monospace;
    font-size: 10px;
    color: rgba(255,255,255,0.6);
    margin: 2px 0;
}

.note-text.small {
    font-size: 8px;
    color: rgba(255,255,255,0.5);
}

/* Floor Plan Element */
.floor-plan {
    bottom: 15%;
    right: 15%;
    width: 100px;
    height: 80px;
}

.room-outline {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 2px solid rgba(255,255,255,0.6);
}

.wall-thickness {
    position: absolute;
    background: rgba(255,255,255,0.4);
}

.wall-top {
    top: 8px;
    left: 8px;
    right: 8px;
    height: 4px;
}

.wall-right {
    top: 8px;
    right: 8px;
    bottom: 8px;
    width: 4px;
}

.wall-bottom {
    bottom: 8px;
    left: 8px;
    right: 8px;
    height: 4px;
}

.wall-left {
    top: 8px;
    left: 8px;
    bottom: 8px;
    width: 4px;
}

.door-swing {
    position: absolute;
    bottom: 12px;
    left: 35px;
    width: 20px;
    height: 1px;
    background: rgba(255,255,255,0.5);
}

.door-swing::before {
    content: '';
    position: absolute;
    right: 0;
    top: -10px;
    width: 20px;
    height: 20px;
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 50%;
    border-left: none;
    border-bottom: none;
}

.room-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Courier New', monospace;
    font-size: 8px;
    color: rgba(255,255,255,0.5);
}

/* Legal Pages Styling */
.legal-page {
    padding: 120px 0 4rem 0;
    background: #f8f9fa;
    min-height: 100vh;
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    background: white;
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.legal-page h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.legal-page h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    color: #1a1a2e;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-page p, .legal-page li {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 1rem;
}

.legal-page ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.last-updated {
    color: #666;
    font-style: italic;
    margin-bottom: 2rem;
}

.legal-contact-info {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.legal-contact-info a {
    color: #e74c3c;
    text-decoration: none;
}

.legal-contact-info a:hover {
    text-decoration: underline;
}

.back-link {
    margin-top: 3rem;
    text-align: center;
}

.back-link a {
    color: #e74c3c;
    text-decoration: none;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border: 2px solid #e74c3c;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.back-link a:hover {
    background: #e74c3c;
    color: white;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    margin-bottom: 1.5rem;
    text-align: left;
}

.footer-logo-image {
    height: 150px;
    width: 450px;
    max-width: 1000px;
    object-fit: cover;
    object-position: left;
    filter: invert(1);
    transition: filter 0.3s ease;
    margin-left: -95px;
}

.footer-logo:hover .footer-logo-image {
    filter: invert(1);
    opacity: 0.8;
}

.footer-tagline {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.footer-contact-primary {
    margin-bottom: 2rem;
}

.footer-phone {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: white;
    text-decoration: none;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-phone:hover {
    color: #e74c3c;
}

.footer-phone i {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e74c3c;
    color: white;
    border-radius: 10px;
    font-size: 20px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

@media (max-width: 768px) {
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .social-links {
        gap: 0.5rem;
    }
    
    .social-link {
        padding: 6px 0;
        font-size: 13px;
    }
}

.footer-column h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.footer-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #e74c3c;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
}

.contact-item i {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e74c3c;
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #e74c3c;
}

.contact-item span {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

/* Social Media Links */
.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    padding: 8px 0;
}

.social-link:hover {
    color: #e74c3c;
    transform: translateX(4px);
}

.social-link i {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.social-link span {
    font-weight: 500;
}

/* Social Media Links in Contact Section */
.social-links-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.social-link-contact {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #1a1a2e;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    padding: 8px 0;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
}

.social-link-contact:hover {
    color: #e74c3c;
    transform: translateX(4px);
}

.social-link-contact i {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    color: #e74c3c;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin: 0;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #e74c3c;
}

.footer-legal span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-weight: 500;
}

/* Trust-Focused House Responsive Design */
@media (max-width: 1024px) {
    .roof-outline {
        width: 240px;
        height: 170px;
    }
    
    .house-roof::after {
        border-left: 95px solid transparent;
        border-right: 95px solid transparent;
        border-bottom: 50px solid rgba(255,255,255,0.3);
    }
    
    .trust-badges {
        gap: 15px;
    }
    
    .trust-badge {
        font-size: 10px;
        padding: 6px 10px;
    }
}

@media (max-width: 768px) {
    .blueprint-grid {
        background-size: 60px 60px, 60px 60px, 15px 15px, 15px 15px;
        animation-duration: 40s;
    }
    
    .service-blueprint-layout {
        width: 300px;
        height: 200px;
    }
    
    .service-zone {
        width: 70px;
        height: 70px;
        font-size: 28px;
        border-radius: 10px;
    }
    
    .service-zone.gutters {
        bottom: 60px;
        left: 40px;
    }
    
    .service-zone.siding {
        bottom: 60px;
        right: 40px;
    }
    
    .line-1, .line-2 {
        width: 120px;
        top: 85px;
    }
    
    .service-label {
        font-size: 9px;
        padding: 3px 6px;
    }
    
    .gutters-label {
        bottom: 40px;
        left: 10px;
    }
    
    .siding-label {
        bottom: 40px;
        right: 10px;
    }
    
    .trust-badges.enhanced {
        bottom: -100px;
        gap: 15px;
        flex-direction: row;
    }
    
    .trust-badge.premium {
        padding: 8px 12px;
        min-width: 110px;
        font-size: 10px;
    }
    
    .badge-title {
        font-size: 10px;
    }
    
    .badge-detail {
        font-size: 8px;
    }
    
    .trust-badge i {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .blueprint-grid {
        background-size: 40px 40px, 40px 40px, 10px 10px, 10px 10px;
        opacity: 0.4;
    }
    
    .service-blueprint-layout {
        width: 250px;
        height: 160px;
        opacity: 0.7;
    }
    
    .service-zone {
        width: 55px;
        height: 55px;
        font-size: 22px;
        border-radius: 8px;
        border-width: 1px;
    }
    
    .service-zone.roofing {
        top: 10px;
    }
    
    .service-zone.gutters {
        bottom: 50px;
        left: 30px;
    }
    
    .service-zone.siding {
        bottom: 50px;
        right: 30px;
    }
    
    .line-1, .line-2 {
        width: 100px;
        top: 65px;
    }
    
    .service-label {
        font-size: 8px;
        padding: 2px 4px;
        letter-spacing: 0.5px;
    }
    
    .roofing-label {
        top: -5px;
    }
    
    .gutters-label {
        bottom: 30px;
        left: 5px;
    }
    
    .siding-label {
        bottom: 30px;
        right: 5px;
    }
    
    .trust-badges.enhanced {
        bottom: -90px;
        gap: 8px;
        flex-direction: column;
        align-items: center;
    }
    
    .trust-badge.premium {
        padding: 6px 10px;
        min-width: 120px;
        font-size: 9px;
    }
    
    .badge-title {
        font-size: 9px;
    }
    
    .badge-detail {
        font-size: 7px;
    }
    
    .trust-badge i {
        font-size: 14px;
    }
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-content {
        text-align: center;
        max-width: none;
    }
    
    .hero-form {
        max-width: 100%;
        margin-top: 2rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .visual-element {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .metric-card {
        flex: 1;
        min-width: 120px;
        padding: 1.5rem 1rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: left;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

/* Standard tablet and mobile layout adjustments (non-navigation) */
@media (max-width: 768px) {
    .hero {
        min-height: 80vh;
        padding-top: 100px;
    }
    
    .hero-container {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-logo-image {
        height: 125px;
        width: 375px;
        max-width: 750px;
    }
    
    .cta-primary,
    .cta-secondary,
    .cta-discount {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .hero-form-container {
        padding: 1.5rem;
    }
    
    .about,
    .services,
    .work,
    .deals,
    .contact {
        padding: 60px 0;
    }
    
    .about-container,
    .services-container,
    .work-container,
    .deals-container,
    .contact-container {
        padding: 0 1rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .deals-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 1rem;
        padding: 0 1rem;
        margin: 0 -1rem;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .deals-grid::-webkit-scrollbar {
        display: none;
    }
    
    .deal-card {
        flex: 0 0 85%;
        scroll-snap-align: start;
        margin-right: 1rem;
    }
    
    .deal-card:last-child {
        margin-right: 1rem;
    }
    
    .work-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 1rem;
        padding: 0 calc((100vw - 85vw) / 2);
        margin: 0 0 2rem 0;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .work-grid::-webkit-scrollbar {
        display: none;
    }
    
    .work-item {
        flex: 0 0 85%;
        scroll-snap-align: center;
        margin-right: 0;
        margin-bottom: 0;
    }
    
    .work-item:last-child {
        margin-right: 0;
    }
    
    .work-item.featured {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .view-portfolio {
        margin-top: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    /* Our universal navigation system handles all nav styling */
    
    .footer-logo-image {
        height: 130px;
        width: 390px;
        max-width: 900px;
    }
    
    .hero {
        min-height: 60vh;
        padding-top: 80px;
    }
    
    .hero-container {
        gap: 2rem;
    }
    
    .hero-badge {
        font-size: 10px;
        padding: 6px 12px;
    }

    .hero-title {
        font-size: clamp(1.75rem, 10vw, 2.5rem);
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-actions {
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-logo-image {
        height: 100px;
        width: 300px;
        max-width: 600px;
    }
    
    .cta-primary,
    .cta-secondary,
    .cta-discount {
        padding: 16px 32px;
        font-size: 14px;
        max-width: none;
    }
    
    .discount-offer {
        font-size: 16px;
    }
    
    .hero-form-container {
        padding: 1rem;
    }
    
    .hero-form h3 {
        font-size: 1.25rem;
    }
    
    .hero-contact-form input,
    .hero-contact-form select,
    .hero-contact-form textarea {
        padding: 10px 14px;
        font-size: 13px;
    }
    
    .about,
    .services,
    .work,
    .deals,
    .contact {
        padding: 30px 0;
    }
    
    .section-title {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
        margin-bottom: 1.5rem;
    }
    
    .service-card {
        padding: 1rem;
        text-align: center;
    }
    
    .service-header {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        margin-bottom: 0.75rem;
    }
    
    .service-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .service-card h3 {
        font-size: 0.9rem;
        line-height: 1.2;
        margin: 0;
    }
    
    .service-card p {
        font-size: 0.8rem;
        line-height: 1.3;
        margin-bottom: 0.75rem;
    }
    
    .service-features {
        display: none; /* Hide features on mobile to save space */
    }
    
    .expertise-grid {
        display: none; /* Hide expertise items on mobile */
    }
    
    /* Gallery thumbnail centering fix for mobile */
    .work-grid {
        padding: 0 calc((100vw - 85vw) / 2);
        scroll-snap-align: center;
    }
    
    /* Contact info cards are now visible on mobile - removed display:none rule */
    
    .expertise-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .metric-card {
        padding: 1.5rem;
    }
    
    .metric-number {
        font-size: 2.5rem;
    }
    
    .info-card {
        padding: 1.5rem;
    }
    
    .info-card:has(.ph-clock) {
        padding: 1.5rem 1.5rem 1rem 1.5rem;
    }
    
    .info-header {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .contact-form-container {
        padding: 2rem;
        min-height: 500px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .form-field {
        margin-bottom: 1.5rem;
    }
    
    .footer {
        padding: 60px 0 30px;
    }
    
    .footer-container {
        padding: 0 1rem;
    }
    
    .footer-phone {
        font-size: 18px;
    }
    
    .scroll-indicator {
        display: none;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Additional utility classes */
.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* Focus styles for accessibility */
.nav-link:focus,
.nav-cta:focus,
.cta-primary:focus,
.cta-secondary:focus,
.cta-discount:focus,
.view-portfolio:focus {
    outline: none;
}

.form-submit:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid #e74c3c;
    outline-offset: 2px;
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Loading animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .hero-badge,
    .service-card,
    .info-card,
    .metric-card {
        border: 2px solid;
    }
    
    .cta-primary,
    .cta-secondary,
    .cta-discount,
    .nav-cta {
        border: 2px solid;
    }
}

/* Print styles */
@media print {
    .navbar,
    .hero-shapes,
    .scroll-indicator,
    .contact-form-container {
        display: none;
    }
    
    .hero {
        min-height: auto;
        padding: 2rem 0;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
        color: #000;
        background: #fff;
    }
    
    .hero-title {
        font-size: 24pt;
        color: #000;
    }
    
    .section-title {
        font-size: 18pt;
        color: #000;
    }
}

/* ================================
   Form Security Styling
   ================================ */

/* Honeypot field - hidden from users */
.hidden {
    display: none !important;
    visibility: hidden !important;
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
}

/* reCAPTCHA styling */
[data-netlify-recaptcha="true"] {
    margin: 2rem 0;
    display: flex;
    justify-content: center;
}

/* Ensure reCAPTCHA is properly spaced in the form */
.contact-form [data-netlify-recaptcha="true"] {
    margin: 2rem 0;
    padding: 1rem 0;
}

/* ================================
   Cookie Consent Banner Styles
   ================================ */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    border-top: 3px solid #ff6b35;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 1.5rem;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-banner-text h3 {
    margin: 0 0 0.5rem 0;
    color: #1a1a2e;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cookie-banner-text h3 i {
    color: #ff6b35;
    font-size: 1.2rem;
}

.cookie-banner-text p {
    margin: 0 0 0.5rem 0;
    color: #4a5568;
    font-size: 0.9rem;
    line-height: 1.4;
}

.cookie-banner-text a {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 500;
}

.cookie-banner-text a:hover {
    text-decoration: underline;
}

.cookie-banner-buttons {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.75rem 1.25rem;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.cookie-btn-accept {
    background: #ff6b35;
    color: white;
}

.cookie-btn-accept:hover {
    background: #e55a2e;
    transform: translateY(-1px);
}

.cookie-btn-decline {
    background: #e2e8f0;
    color: #4a5568;
}

.cookie-btn-decline:hover {
    background: #cbd5e0;
}

.cookie-btn-settings {
    background: transparent;
    color: #4a5568;
    border: 2px solid #e2e8f0;
}

.cookie-btn-settings:hover {
    background: #f7fafc;
    border-color: #cbd5e0;
}

/* Cookie Settings Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 1rem;
}

.cookie-modal.show {
    opacity: 1;
    visibility: visible;
}

.cookie-modal-content {
    background: white;
    border-radius: 16px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    padding: 2rem;
}

.cookie-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: #718096;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.cookie-modal-close:hover {
    background: #f7fafc;
    color: #4a5568;
}

.cookie-modal-header {
    margin-bottom: 2rem;
    padding-right: 3rem;
}

.cookie-modal-header h2 {
    margin: 0 0 0.5rem 0;
    color: #1a1a2e;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.cookie-modal-header h2 i {
    color: #ff6b35;
}

.cookie-modal-header p {
    margin: 0;
    color: #4a5568;
    line-height: 1.6;
}

.cookie-category {
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.cookie-category:hover {
    border-color: #cbd5e0;
}

.cookie-category.expanded {
    border-color: #ff6b35;
}

.cookie-category-header {
    padding: 1.25rem;
    background: #f7fafc;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background-color 0.3s ease;
}

.cookie-category.expanded .cookie-category-header {
    background: #fff5f2;
}

.cookie-category-header h4 {
    margin: 0;
    color: #1a1a2e;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.cookie-category-header h4 i {
    color: #ff6b35;
}

.cookie-category-toggle {
    width: 50px;
    height: 26px;
    background: #e2e8f0;
    border-radius: 13px;
    position: relative;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-category-toggle::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 22px;
    height: 22px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cookie-category-toggle.active {
    background: #ff6b35;
}

.cookie-category-toggle.active::after {
    transform: translateX(24px);
}

.cookie-category-content {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.cookie-category.expanded .cookie-category-content {
    padding: 1.25rem;
    max-height: 200px;
}

.cookie-category-content p {
    margin: 0 0 1rem 0;
    color: #4a5568;
    line-height: 1.6;
}

.cookie-category-content p:last-child {
    margin-bottom: 0;
}

.cookie-modal-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: flex-end;
}

/* Responsive Design for Cookie Banner */
@media (max-width: 768px) {
    .cookie-banner-content {
        flex-direction: column;
        align-items: stretch;
        gap: 1.5rem;
    }

    .cookie-banner-buttons {
        justify-content: center;
    }

    .cookie-btn {
        flex: 1;
        justify-content: center;
    }

    .cookie-modal-content {
        margin: 1rem;
        padding: 1.5rem;
    }

    .cookie-modal-buttons {
        flex-direction: column;
    }

    .cookie-modal-header {
        padding-right: 2rem;
    }
}

/* ================================
   Mobile Sticky Contact Bar
   ================================ */

.mobile-contact-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    display: none; /* Hidden on desktop */
    z-index: 9999; /* Below cookie banner but high enough for everything else */
    padding: 12px 16px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

.mobile-call-btn,
.mobile-text-btn,
.mobile-quote-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 8px;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    min-height: 60px;
}

.mobile-call-btn {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
}

.mobile-call-btn:hover {
    background: linear-gradient(135deg, #229954, #27ae60);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4);
}

.mobile-text-btn {
    background: linear-gradient(135deg, #3498db, #5dade2);
    color: white;
}

.mobile-text-btn:hover {
    background: linear-gradient(135deg, #2980b9, #3498db);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.mobile-quote-btn {
    background: linear-gradient(135deg, #e74c3c, #ec7063);
    color: white;
}

.mobile-quote-btn:hover {
    background: linear-gradient(135deg, #c0392b, #e74c3c);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

.mobile-contact-bar i {
    font-size: 20px;
    margin-bottom: 4px;
}

.mobile-contact-bar span {
    font-size: 10px;
    line-height: 1;
}

/* Show mobile contact bar only on mobile devices */
@media (max-width: 768px) {
    .mobile-contact-bar {
        display: flex !important;
    }

    /* Hide contact section on mobile since we have sticky contact bar */
    .contact {
        display: none !important;
    }

    /* Ensure footer doesn't overlap with mobile contact bar */
    .footer {
        padding-bottom: 80px;
    }
}