/* Clearview Screens & Liberty Awnings - Main Stylesheet */

:root { 
    --navy: #1a3a5c; 
    --navy-dark: #0f2840; 
    --gold: #c9a227; 
    --gold-light: #e8c84a; 
    --cream: #faf8f3; 
    --white: #ffffff; 
    --gray: #6b7280; 
    --text: #2d3748; 
    --shadow: 0 4px 20px rgba(26, 58, 92, 0.12); 
    --shadow-lg: 0 10px 40px rgba(26, 58, 92, 0.18); 
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--cream); }
body { font-family: 'Source Sans 3', sans-serif; font-size: 18px; line-height: 1.7; color: var(--text); background: var(--cream); }

/* Skip Link - Hidden until focused (accessibility) */
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--navy);
    color: var(--white);
    padding: 10px 20px;
    z-index: 10000;
    text-decoration: none;
    font-weight: 600;
}
.skip-link:focus {
    top: 0;
}

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; font-weight: 600; color: var(--navy); }

/* Top Bar */
.top-bar { background: var(--navy-dark); color: var(--white); padding: 10px 15px; text-align: center; font-size: 14px; }
.top-bar a { color: var(--gold-light); text-decoration: none; font-weight: 600; margin: 0 10px; }

/* Header */
header { background: var(--white); padding: 5px 20px; position: sticky; top: 0; z-index: 1000; box-shadow: var(--shadow); height: 70px; }
.header-content { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; height: 100%; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-img { height: 150px; width: auto; margin-top: 10px; }
.logo-text { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: var(--navy); display: none; }

/* Navigation */
nav { display: flex; gap: 5px; position: relative; align-items: center; }
nav a { color: var(--navy); text-decoration: none; font-weight: 600; padding: 10px 14px; border-radius: 6px; transition: all 0.3s; font-size: 15px; border: 2px solid transparent; }
nav a:hover { background: var(--cream); color: var(--gold); border-color: var(--gold); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(201, 162, 39, 0.3); }
nav a.nav-stacked { display: flex; flex-direction: column; align-items: center; line-height: 1.2; padding: 6px 14px; }
nav a.nav-stacked span { display: block; }
nav a.nav-stacked:hover { background: var(--gold); color: var(--navy-dark); }
nav a.nav-stacked:hover span { color: var(--navy-dark); }
.nav-cta { background: var(--gold) !important; color: var(--navy-dark) !important; font-weight: 700 !important; border-color: var(--gold) !important; animation: ctaPulse 2s ease-in-out infinite; }
.nav-cta:hover { background: var(--gold-light) !important; border-color: var(--gold-light) !important; animation: none; }
.menu-toggle { display: none; }

/* Hero with Sliding Images */
.hero { position: relative; height: 500px; overflow: hidden; }
.hero-slideshow { position: absolute; inset: 0; }
.hero-slide { 
    position: absolute; 
    inset: 0; 
    opacity: 0; 
    transition: opacity 1.2s ease-in-out; 
    background-size: cover; 
    background-position: center; 
}
.hero-slide.active { opacity: 1; }
.hero-content { 
    position: relative; 
    z-index: 10; 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 100px 20px; 
    color: var(--white); 
}
.hero-badge { 
    display: inline-block; 
    background: rgba(201, 162, 39, 0.25); 
    border: 1px solid var(--gold); 
    color: var(--gold-light); 
    padding: 6px 16px; 
    border-radius: 50px; 
    font-size: 12px; 
    font-weight: 600; 
    text-transform: uppercase; 
    letter-spacing: 2px; 
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}
.hero h1 { font-size: 36px; color: var(--white); margin-bottom: 15px; max-width: 600px; line-height: 1.2; text-shadow: 2px 2px 8px rgba(0,0,0,0.9), 0 0 20px rgba(0,0,0,0.7); }
.hero p { font-size: 17px; max-width: 500px; margin-bottom: 25px; opacity: 0.95; text-shadow: 1px 1px 6px rgba(0,0,0,0.9), 0 0 15px rgba(0,0,0,0.6); }
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-indicators { 
    position: absolute; 
    bottom: 25px; 
    left: 50%; 
    transform: translateX(-50%); 
    display: flex; 
    gap: 10px; 
    z-index: 20; 
}
.hero-indicator { 
    width: 10px; 
    height: 10px; 
    border-radius: 50%; 
    background: rgba(255,255,255,0.4); 
    cursor: pointer; 
    transition: all 0.3s; 
}
.hero-indicator.active { 
    background: var(--gold); 
    transform: scale(1.3); 
}

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; border-radius: 8px; font-size: 15px; font-weight: 600; text-decoration: none; transition: all 0.3s; border: none; cursor: pointer; }
.btn-primary { background: var(--gold); color: var(--navy-dark); animation: ctaPulse 2s ease-in-out infinite; }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); animation: none; }

/* Pulse animation for CTA buttons */
@keyframes ctaPulse {
    0%, 100% {
        box-shadow: 0 2px 8px rgba(201, 162, 39, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 6px 20px rgba(201, 162, 39, 0.6);
        transform: scale(1.03);
    }
}

.btn-secondary { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-secondary:hover { background: var(--white); color: var(--navy); }
.btn-call { background: #22c55e; color: white; }
.btn-call:hover { background: #16a34a; transform: translateY(-2px); }

/* Floating Call Button - Hidden on Desktop */
.floating-call { 
    display: none;
}

/* Trust Bar */
.trust-bar { background: var(--white); padding: 20px 15px; border-bottom: 1px solid #e5e5e5; }
.trust-items { max-width: 900px; margin: 0 auto; display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--navy); font-weight: 500; }
.trust-item svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 2; }

/* Services Section */
.services { padding: 50px 15px; max-width: 1100px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 35px; }
.section-header h2 { font-size: 30px; margin-bottom: 10px; }
.section-header p { color: var(--gray); font-size: 16px; }

/* Desktop Tagline Banner */
.tagline-desktop {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 12px 25px;
    background: linear-gradient(135deg, #0f2840 0%, #1a3a5c 100%);
    border-radius: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.tagline-desktop span {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.tagline-desktop .divider {
    color: #c9a227;
    font-size: 10px;
}

/* Service Cards */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.service-card { background: var(--white); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); transition: transform 0.3s, box-shadow 0.3s; text-decoration: none; display: block; }
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.service-image { height: 160px; overflow: hidden; }
.service-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.service-card:hover .service-image img { transform: scale(1.05); }
.service-content { padding: 20px; }
.service-content h3 { font-size: 18px; margin-bottom: 8px; }
.service-content p { font-size: 14px; color: var(--gray); margin-bottom: 12px; }
.service-link { color: var(--gold); text-decoration: none; font-weight: 600; font-size: 14px; }

/* About Section */
.about-us { padding: 60px 15px; background: var(--cream); }
.about-header { text-align: center; margin-bottom: 40px; }
.about-header h2 { font-size: 36px; margin-bottom: 10px; }
.about-tagline { font-size: 20px; color: var(--gold); font-weight: 600; }

/* About Slideshow */
.about-slideshow-container {
    max-width: 1100px;
    margin: 0 auto 50px;
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    background-size: cover;
    background-position: center;
}
.about-slide.active { opacity: 1; }
.about-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
}
.about-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 0 5px rgba(0,0,0,0.3);
}
.about-indicator.active {
    background: var(--gold);
    transform: scale(1.3);
}

/* About Content */
.about-content { max-width: 1100px; margin: 0 auto 50px; display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.about-story h3 { font-size: 24px; margin-bottom: 15px; color: var(--navy); }
.about-story p { font-size: 16px; color: var(--gray); margin-bottom: 20px; line-height: 1.8; }

.about-products h3 { font-size: 24px; margin-bottom: 20px; color: var(--navy); }
.product-list { display: flex; flex-direction: column; gap: 15px; }
.product-item { display: flex; gap: 15px; padding: 15px; background: var(--white); border-radius: 12px; box-shadow: var(--shadow); transition: transform 0.3s; }
.product-item:hover { transform: translateX(5px); }
.product-icon { width: 50px; height: 50px; background: var(--navy); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.product-icon svg { width: 24px; height: 24px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.product-item h4 { font-size: 16px; color: var(--navy); margin-bottom: 5px; font-family: 'Source Sans 3', sans-serif; font-weight: 700; }
.product-item p { font-size: 13px; color: var(--gray); line-height: 1.5; }

/* Why Us Grid */
.why-us-grid { max-width: 1100px; margin: 0 auto 50px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }
.why-card { background: var(--white); padding: 30px 20px; border-radius: 16px; text-align: center; box-shadow: var(--shadow); transition: transform 0.3s; }
.why-card:hover { transform: translateY(-5px); }
.why-icon { width: 60px; height: 60px; background: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 15px; }
.why-icon svg { width: 28px; height: 28px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.why-card h4 { font-size: 18px; color: var(--navy); margin-bottom: 10px; font-family: 'Playfair Display', serif; }
.why-card p { font-size: 14px; color: var(--gray); line-height: 1.6; }

/* About CTA */
.about-cta { max-width: 1100px; margin: 0 auto; background: var(--navy); border-radius: 20px; display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; }
.cta-content { padding: 50px 40px; color: var(--white); }
.cta-content h3 { font-size: 28px; color: var(--white); margin-bottom: 15px; }
.cta-content > p { font-size: 16px; opacity: 0.9; margin-bottom: 30px; line-height: 1.7; }

.cta-stats { display: flex; gap: 30px; margin-bottom: 30px; }
.stat { text-align: center; }
.stat-number { display: block; font-size: 36px; font-weight: 700; color: var(--gold); font-family: 'Playfair Display', serif; }
.stat-label { font-size: 13px; opacity: 0.8; }

.contact-methods { display: flex; flex-direction: column; gap: 12px; }
.contact-method { display: flex; align-items: center; gap: 12px; color: var(--white); text-decoration: none; padding: 12px 15px; background: rgba(255,255,255,0.1); border-radius: 10px; transition: background 0.3s; }
.contact-method:hover { background: rgba(255,255,255,0.2); }
.contact-method svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 2; flex-shrink: 0; }
.contact-method div { font-size: 15px; }

/* USA Badge */
.usa-badge { margin-top: 25px; text-align: center; }
.usa-badge img { max-width: 150px; height: auto; filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2)); }

/* Contact Form */
.contact-form-wrapper { background: var(--white); padding: 40px; }
.contact-form { max-width: 100%; }
.contact-form h3 { font-size: 24px; margin-bottom: 25px; text-align: center; color: var(--navy); }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 6px; color: var(--navy); }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 16px; border: 2px solid #e5e5e5; border-radius: 8px; font-size: 15px; font-family: inherit; transition: border-color 0.3s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--gold); }
.form-group textarea { min-height: 100px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.submit-btn { width: 100%; display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 10px; }
.form-note { text-align: center; font-size: 12px; color: var(--gray); margin-top: 15px; }

/* Testimonials */
.testimonials { padding: 50px 15px; background: var(--cream); }
.testimonials .section-header p { color: var(--gray); margin-top: 10px; }
.google-reviews-container { max-width: 1100px; margin: 0 auto; }
.google-reviews-header { display: flex; align-items: center; justify-content: center; gap: 30px; margin-bottom: 30px; padding: 20px; background: var(--white); border-radius: 12px; box-shadow: var(--shadow); }
.google-logo { height: 30px; }
.google-rating { display: flex; align-items: center; gap: 10px; }
.google-rating .stars { color: #fbbc04; font-size: 24px; letter-spacing: 2px; }
.google-rating span { font-size: 18px; font-weight: 600; color: var(--navy); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 30px; }
.review-card { background: var(--white); padding: 25px; border-radius: 12px; box-shadow: var(--shadow); }
.review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 15px; }
.reviewer-avatar { width: 45px; height: 45px; background: var(--navy); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 18px; }
.reviewer-info { flex: 1; }
.reviewer-name { font-weight: 600; color: var(--navy); font-size: 15px; }
.review-stars { color: #fbbc04; font-size: 14px; letter-spacing: 1px; }
.review-source { width: 20px; height: 20px; }
.review-text { color: var(--gray); font-size: 15px; line-height: 1.6; font-style: italic; }
.review-cta { text-align: center; display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; }
.review-cta .btn-primary { background: var(--gold); color: var(--navy-dark); }
.review-cta .btn-primary:hover { background: var(--gold-light); }
.review-cta .btn-secondary { background: var(--navy); color: var(--white); border: 2px solid var(--navy); }
.review-cta .btn-secondary:hover { background: var(--navy-dark); border-color: var(--navy-dark); }
.testimonial-card { background: var(--white); padding: 25px; border-radius: 16px; box-shadow: var(--shadow); }
.stars { color: var(--gold); font-size: 18px; margin-bottom: 12px; }
.testimonial-card blockquote { font-size: 14px; margin-bottom: 15px; font-style: italic; line-height: 1.6; }
.testimonial-author { font-weight: 600; color: var(--navy); font-size: 14px; }
.testimonial-location { font-size: 12px; color: var(--gray); }

/* Service Areas */
.service-areas { padding: 50px 15px; background: linear-gradient(rgba(26, 58, 92, 0.92), rgba(15, 40, 64, 0.95)), url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=1200'); background-size: cover; text-align: center; color: var(--white); }
.service-areas h2 { color: var(--white); font-size: 28px; margin-bottom: 12px; }
.service-areas > p { opacity: 0.9; margin-bottom: 25px; font-size: 15px; }
.areas-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; max-width: 800px; margin: 0 auto; }
.area-tag { background: rgba(255,255,255,0.15); padding: 8px 18px; border-radius: 25px; font-size: 13px; }

/* Contact Section */
.contact { padding: 50px 15px; background: var(--white); }
.contact-wrapper { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-info h2 { font-size: 28px; margin-bottom: 15px; }
.contact-info > p { color: var(--gray); margin-bottom: 25px; font-size: 15px; }
.contact-detail { display: flex; gap: 12px; margin-bottom: 20px; }
.contact-detail-icon { width: 45px; height: 45px; background: var(--navy); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-detail-icon svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 2; }
.contact-detail h4 { font-size: 15px; margin-bottom: 3px; font-family: 'Source Sans 3', sans-serif; font-weight: 600; color: var(--navy); }
.contact-detail a, .contact-detail p { font-size: 14px; color: var(--gray); text-decoration: none; }

/* Footer */
footer { background: var(--navy-dark); color: var(--white); padding: 40px 15px 20px; }
.footer-content { max-width: 1100px; margin: 0 auto; }
.footer-brand { text-align: center; margin-bottom: 30px; padding-bottom: 25px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand .logo-text { color: var(--white); font-size: 24px; margin-bottom: 10px; }
.footer-brand p { opacity: 0.7; font-size: 14px; }
.footer-columns { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.footer-section h4 { color: var(--gold); font-size: 13px; margin-bottom: 15px; text-transform: uppercase; letter-spacing: 1px; }
.footer-section ul { list-style: none; }
.footer-section li { margin-bottom: 8px; }
.footer-section a { color: var(--white); opacity: 0.7; text-decoration: none; font-size: 13px; }
.footer-bottom { text-align: center; padding-top: 20px; margin-top: 25px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 12px; opacity: 0.6; }

/* =============================================
   MOBILE STYLES (max-width: 768px)
   ============================================= */
@media (max-width: 768px) {
    /* Base Mobile Adjustments */
    body { font-size: 16px; }
    
    /* Hide desktop top bar */
    .top-bar { display: none; }
    
    /* Mobile Header */
    header { 
        padding: 8px 15px; 
        height: 60px;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
    }
    .logo-img { height: 50px; margin-top: 0; }
    
    /* Hamburger Menu */
    .menu-toggle { 
        display: flex; 
        flex-direction: column; 
        gap: 5px; 
        padding: 10px; 
        cursor: pointer;
        z-index: 1001;
    }
    .menu-toggle span { 
        width: 28px; 
        height: 3px; 
        background: var(--navy); 
        border-radius: 2px;
        transition: all 0.3s;
    }
    
    /* Mobile Navigation */
    nav { 
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        flex-direction: column;
        padding: 0;
        overflow-y: auto;
        z-index: 999;
    }
    nav.active { display: flex; }
    nav a { 
        padding: 18px 25px; 
        border-bottom: 1px solid #eee; 
        font-size: 18px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    nav a::after {
        content: '→';
        color: var(--gold);
        font-size: 20px;
    }
    nav a.nav-stacked {
        flex-direction: row;
        line-height: 1.4;
    }
    nav a.nav-stacked span:first-child::after {
        content: ' ';
    }
    nav a.nav-cta {
        background: var(--gold);
        color: var(--navy-dark);
        margin: 20px;
        border-radius: 12px;
        justify-content: center;
        font-size: 20px;
        padding: 20px;
    }
    nav a.nav-cta::after { display: none; }
    
    /* Mobile Hero */
    .hero { 
        height: 100vh;
        min-height: 600px;
        max-height: 800px;
        margin-top: 60px;
    }
    .hero-content { 
        padding: 40px 20px 120px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        height: 100%;
    }
    .hero-badge {
        font-size: 11px;
        padding: 8px 16px;
        margin-bottom: 15px;
    }
    .hero h1 { 
        font-size: 32px; 
        line-height: 1.2;
        max-width: 100%;
        margin-bottom: 15px;
    }
    .hero p { 
        font-size: 16px; 
        max-width: 100%;
        margin-bottom: 30px;
        opacity: 1;
    }
    .hero-buttons { 
        flex-direction: column; 
        gap: 12px;
        width: 100%;
        max-width: 300px;
    }
    .hero-buttons .btn { 
        width: 100%; 
        justify-content: center; 
        padding: 16px 24px;
        font-size: 16px;
        border-radius: 12px;
    }
    .hero-buttons .btn-call {
        background: #22c55e;
        font-size: 18px;
        padding: 18px 24px;
    }
    .hero-indicators { bottom: 80px; }
    .hero-indicator { width: 12px; height: 12px; }
    
    /* Trust Bar */
    .trust-bar { padding: 15px 10px; overflow-x: auto; }
    .trust-items { 
        display: flex; 
        gap: 20px; 
        justify-content: flex-start;
        min-width: max-content;
        padding: 0 10px;
    }
    .trust-item { font-size: 13px; white-space: nowrap; }
    .trust-item svg { width: 18px; height: 18px; }
    
    /* Mobile Sections */
    .section-header { margin-bottom: 25px; }
    .section-header h2 { font-size: 28px; }
    .section-header p { font-size: 15px; }
    
    /* Hide desktop tagline on mobile */
    .tagline-desktop { display: none; }
    
    /* Services - Card Stack */
    .services { padding: 50px 15px; }
    .services-grid { 
        grid-template-columns: 1fr; 
        gap: 15px;
    }
    .service-card {
        display: flex;
        flex-direction: row;
        border-radius: 12px;
        overflow: hidden;
    }
    .service-image { 
        width: 120px; 
        min-height: 120px;
        flex-shrink: 0;
    }
    .service-content { 
        padding: 15px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .service-content h3 { font-size: 16px; margin-bottom: 5px; }
    .service-content p { font-size: 13px; margin-bottom: 8px; }
    .service-link { font-size: 13px; }
    
    /* About Section */
    .about-us { padding: 50px 15px; }
    .about-header h2 { font-size: 26px; }
    .about-tagline { font-size: 16px; }
    .about-slideshow-container { 
        height: 250px; 
        margin-bottom: 30px;
        border-radius: 12px;
    }
    .about-content { 
        grid-template-columns: 1fr; 
        gap: 30px;
    }
    .about-story h3 { font-size: 20px; }
    .about-story p { font-size: 15px; }
    .about-products h3 { font-size: 20px; }
    .product-item { padding: 12px; }
    .product-item h4 { font-size: 15px; }
    .product-item p { font-size: 12px; }
    .product-icon { width: 40px; height: 40px; }
    
    /* Why Us Grid - 2 columns */
    .why-us-grid { 
        grid-template-columns: 1fr 1fr; 
        gap: 12px;
    }
    .why-card { 
        padding: 20px 12px;
        border-radius: 12px;
    }
    .why-icon { width: 50px; height: 50px; margin-bottom: 10px; }
    .why-icon svg { width: 24px; height: 24px; }
    .why-card h4 { font-size: 14px; margin-bottom: 8px; }
    .why-card p { font-size: 12px; line-height: 1.5; }
    
    /* Contact CTA Section */
    .about-cta { 
        grid-template-columns: 1fr;
        border-radius: 16px;
    }
    .cta-content { 
        padding: 30px 20px;
        text-align: center;
    }
    .cta-content h3 { font-size: 24px; }
    .cta-content > p { font-size: 15px; }
    .cta-stats { 
        justify-content: center;
        gap: 25px;
    }
    .stat-number { font-size: 28px; }
    .stat-label { font-size: 11px; }
    .contact-methods { align-items: center; }
    .contact-method { 
        width: 100%;
        justify-content: center;
        padding: 15px;
        font-size: 16px;
    }
    
    /* Contact Form */
    .contact-form-wrapper { padding: 25px 20px; }
    .contact-form h3 { font-size: 22px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .form-group input, 
    .form-group select, 
    .form-group textarea { 
        padding: 14px 16px;
        font-size: 16px;
        border-radius: 10px;
    }
    .submit-btn {
        padding: 18px 24px;
        font-size: 18px;
        border-radius: 12px;
    }
    
    /* Reviews Section */
    .testimonials { padding: 50px 15px; }
    .google-reviews-header { 
        flex-direction: column; 
        gap: 15px;
        padding: 15px;
    }
    .google-logo { height: 24px; }
    .google-rating .stars { font-size: 20px; }
    .google-rating span { font-size: 16px; }
    .reviews-grid { 
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .review-card { padding: 20px; }
    .reviewer-avatar { width: 40px; height: 40px; font-size: 16px; }
    .reviewer-name { font-size: 14px; }
    .review-text { font-size: 14px; }
    .review-cta { 
        flex-direction: column;
        gap: 12px;
    }
    .review-cta .btn {
        width: 100%;
        justify-content: center;
        padding: 16px 20px;
    }
    
    /* Service Areas */
    .service-areas { padding: 40px 15px; }
    .service-areas h2 { font-size: 22px; }
    .service-areas p { font-size: 14px; }
    .areas-list { gap: 8px; }
    .area-tag { padding: 8px 14px; font-size: 13px; }
    
    /* Footer */
    .footer-columns { 
        grid-template-columns: 1fr; 
        text-align: center;
        gap: 25px;
    }
    .footer-brand { margin-bottom: 20px; padding-bottom: 20px; }
    .footer-section h4 { margin-top: 10px; }
    .footer-section ul { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
    .footer-section li { margin: 0; }
    .footer-section a { padding: 5px 10px; }
    
    /* Sticky Mobile Call Button */
    .floating-call {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
        color: white;
        padding: 16px 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        font-size: 18px;
        font-weight: 700;
        text-decoration: none;
        z-index: 1000;
        box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    }
    .floating-call svg {
        width: 24px;
        height: 24px;
        animation: pulse 2s infinite;
    }
    @keyframes pulse {
        0%, 100% { transform: scale(1); }
        50% { transform: scale(1.1); }
    }
    
    /* Add padding to body for fixed elements */
    body {
        padding-bottom: 70px;
    }
}

/* Extra small phones */
@media (max-width: 380px) {
    .hero h1 { font-size: 26px; }
    .hero p { font-size: 14px; }
    .section-header h2 { font-size: 24px; }
    .why-us-grid { grid-template-columns: 1fr; }
    .cta-stats { flex-direction: column; gap: 15px; }
}

/* Brochure Download Button */
.btn-brochure {
    background: var(--navy);
    color: var(--white);
}
.btn-brochure:hover {
    background: var(--navy-dark);
    transform: translateY(-2px);
}
.cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}
.cta-buttons .btn {
    margin-top: 0;
}\n
/* Review Button Styles */
.btn-review {
    background: var(--navy);
    color: var(--white);
    border: 2px solid var(--gold);
    animation: ctaPulse 2s ease-in-out infinite;
}
.btn-review:hover {
    background: var(--navy-dark);
    border-color: var(--gold-light);
    transform: translateY(-2px);
    animation: none;
}
.btn-review svg {
    fill: var(--gold);
    stroke: var(--gold);
}
.btn-review-large {
    font-size: 1.2em;
    padding: 15px 30px;
}
.review-cta-section {
    text-align: center;
    margin: 40px 0;
    padding: 30px 0;
}
\n\n
/* Landing Page Resources Section */
.landing-resources {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    padding: 50px 20px;
    text-align: center;
    margin-top: 60px;
}
.resources-container {
    max-width: 800px;
    margin: 0 auto;
}
.landing-resources h3 {
    color: var(--white);
    font-size: 1.8em;
    margin-bottom: 30px;
    font-weight: 600;
}
.resources-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-resource {
    background: var(--white);
    color: var(--navy-dark);
    border: 2px solid var(--gold);
    padding: 16px 32px;
    font-size: 1.05em;
    transition: all 0.3s ease;
}
.btn-resource:hover {
    background: var(--gold);
    border-color: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(201, 162, 39, 0.4);
}
.btn-resource svg {
    stroke: var(--navy);
}
.btn-resource:hover svg {
    stroke: var(--navy-dark);
}
.btn-review-landing svg {
    fill: var(--gold);
    stroke: var(--gold);
}
.btn-review-landing:hover svg {
    fill: var(--gold-light);
    stroke: var(--gold-light);
}
@media (max-width: 600px) {
    .resources-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    .btn-resource {
        width: 100%;
    }
}
\n