
/* BASE STYLES */
:root { --primary: #FF6B00; --dark: #1A1A1A; --light: #F8F9FA; --text: #333333; }
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }
body { background-color: var(--light); color: var(--text); line-height: 1.7; overflow-x: hidden; } 

/* PROMO FLYER STYLES */
.promo-container {
    text-align: center;
    padding: 50px 20px 20px;
    margin: -30px auto 30px;
    max-width: 900px;
    position: relative;
    z-index: 15; /* sits above trust banner */
}
.promo-flyer {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 5px;
    box-shadow: 10px 15px 30px rgba(0,0,0,0.3);
    transform: rotate(-2deg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 8px solid #fff; /* white border to look like printed paper */
}
.promo-flyer:hover {
    transform: rotate(0deg) scale(1.03);
    box-shadow: 0 25px 50px rgba(0,0,0,0.4);
}

/* MOBILE MENU ADDITIONS */
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    padding: 5px 10px;
}

@media(max-width: 768px) {
    header {
        flex-wrap: nowrap !important;
        justify-content: space-between !important;
    }
    .brand-container {
        flex: 1;
    }
    .mobile-menu-toggle {
        display: block;
    }
    .nav-links {
        display: none; 
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background: var(--dark);
        padding: 20px;
        box-shadow: 0 10px 10px rgba(0,0,0,0.3);
        z-index: 99;
    }
    .nav-links.active {
        display: flex !important;
    }
    .nav-links a {
        padding: 10px 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        text-align: center;
    }
    .nav-links .call-btn {
        margin-top: 15px;
        border-bottom: none;
    }
    
    /* General padding fix for mobile */
    .content-section, .story-section, .contrast-section, .brands-section {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}

/* Styles from about.html */

    :root { --primary: #FF6B00; --dark: #1A1A1A; --light: #F8F9FA; --text: #333333; }
    * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }
    
    body { background-color: var(--light); color: var(--text); line-height: 1.7; overflow-x: hidden; } 
    
    header { background: var(--dark); padding: 15px 5%; position: sticky; top: 0; z-index: 100; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 15px; box-shadow: 0 4px 10px rgba(0,0,0,0.3); }
    
    .brand-container { display: flex; align-items: center; gap: 12px; text-decoration: none; }
    .logo { color: #ffd700; font-size: clamp(1.2rem, 4vw, 1.5rem); font-weight: 800; text-transform: uppercase; letter-spacing: 1px; line-height: 1.1; }
    .logo span { color: var(--primary); }
    .header-badge { height: 45px; width: auto; display: block; transition: transform 0.3s ease; }
    .brand-container:hover .header-badge { transform: scale(1.08); }
    .brand-text { display: flex; flex-direction: column; }
    .tagline { color: #ccc; font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-top: 2px; }
    
    nav { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
    nav a { color: #ffd700; text-decoration: none; font-size: 0.95rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; transition: color 0.3s ease; }
    nav a:hover { color: var(--primary); }
    nav a.current-page { color: var(--primary); font-weight: 800; }
    
    .call-btn { background: var(--primary); color: #fff !important; text-decoration: none; padding: 10px 20px; border-radius: 50px; font-weight: bold; font-size: 0.9rem; text-align: center; box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4); transition: all 0.3s ease; }
    .call-btn:hover { background: #e66000; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255, 107, 0, 0.6); }

    /* Hero */
    .about-hero { background: var(--dark); color: #fff; padding: 70px 5%; display: flex; flex-wrap: wrap; gap: 50px; align-items: center; justify-content: center; border-bottom: 5px solid var(--primary); }
    .about-hero-text { flex: 1 1 450px; max-width: 600px; }
    .about-hero-text h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 800; line-height: 1.1; margin-bottom: 20px; }
    .about-hero-text h1 span { color: var(--primary); }
    .about-hero-text p.lede { font-size: 1.25rem; color: #ddd; margin-bottom: 25px; }
    .about-hero-img { flex: 1 1 350px; display: flex; justify-content: center; }
    .about-hero-img img { max-width: 100%; height: auto; max-height: 480px; object-fit: cover; aspect-ratio: 4/5; border-radius: 15px; filter: drop-shadow(0 15px 25px rgba(0,0,0,0.5)); }

    /* Story sections */
    .story-section { max-width: 900px; margin: 0 auto; padding: 70px 20px; }
    .story-section h2 { font-size: 2.1rem; font-weight: 800; color: var(--dark); margin-bottom: 25px; border-bottom: 3px solid var(--primary); display: inline-block; padding-bottom: 10px; }
    .story-section p { font-size: 1.1rem; margin-bottom: 20px; color: #333; }
    .story-section p.shane-quote { background: #fff; border-left: 5px solid var(--primary); padding: 25px 30px; font-style: italic; font-size: 1.15rem; color: var(--dark); border-radius: 0 8px 8px 0; box-shadow: 0 5px 20px rgba(0,0,0,0.05); margin: 30px 0; }

    .alt-band { background: #fff; }
    .alt-band-dark { background: var(--dark); color: #fff; }
    .alt-band-dark h2 { color: #fff; }
    .alt-band-dark p { color: #ddd; }
    .alt-band-dark p.shane-quote { background: rgba(255,255,255,0.05); color: #fff; border-left-color: var(--primary); box-shadow: none; }

    /* Contrast within About */
    .contrast-section { padding: 70px 20px; }
    .contrast-wrap { max-width: 1000px; margin: 0 auto; }
    .contrast-wrap h2 { text-align: center; font-size: 2.1rem; margin-bottom: 40px; font-weight: 800; color: var(--dark); }
    .contrast-wrap h2 span { color: var(--primary); }
    .contrast-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; }
    .contrast-col { background: #fff; padding: 30px; border-radius: 10px; border-top: 4px solid #ccc; box-shadow: 0 5px 20px rgba(0,0,0,0.05); }
    .contrast-col.summit { border-top-color: var(--primary); }
    .contrast-col h3 { font-size: 1.3rem; margin-bottom: 20px; color: var(--dark); }
    .contrast-col.summit h3 { color: var(--primary); }
    .contrast-col ul { list-style: none; padding: 0; }
    .contrast-col li { padding: 9px 0 9px 28px; position: relative; color: #333; line-height: 1.5; border-bottom: 1px solid #eee; }
    .contrast-col li:last-child { border-bottom: none; }
    .contrast-col li::before { content: "✕"; position: absolute; left: 0; color: #999; font-weight: bold; }
    .contrast-col.summit li::before { content: "✓"; color: var(--primary); }

    /* Brands strip */
    .brands-section { background: var(--light); padding: 60px 20px; text-align: center; }
    .brands-section h3 { font-size: 1.7rem; margin-bottom: 12px; color: var(--dark); font-weight: 800; }
    .brands-section .brands-sub { color: #666; max-width: 700px; margin: 0 auto 30px; font-size: 1rem; }
    .brands-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; max-width: 1000px; margin: 0 auto; }
    .brand-pill { background: #fff; border: 1px solid #ddd; padding: 10px 20px; border-radius: 50px; font-weight: bold; color: var(--dark); font-size: 0.95rem; letter-spacing: 0.5px; }

    /* Credentials stat strip */
    .creds-section { background: #fff; padding: 70px 20px; border-top: 1px solid #eee; border-bottom: 1px solid #eee; }
    .creds-wrap { max-width: 1100px; margin: 0 auto; }
    .creds-wrap h2 { text-align: center; font-size: 2.1rem; font-weight: 800; color: var(--dark); margin-bottom: 12px; }
    .creds-wrap h2 span { color: var(--primary); }
    .creds-sub { text-align: center; color: #666; max-width: 700px; margin: 0 auto 45px; font-size: 1.05rem; }
    .creds-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
    .cred-card { background: var(--light); border-top: 4px solid var(--primary); padding: 30px 22px; border-radius: 8px; text-align: center; box-shadow: 0 4px 15px rgba(0,0,0,0.04); transition: transform 0.3s ease, box-shadow 0.3s ease; }
    .cred-card:hover { transform: translateY(-4px); box-shadow: 0 8px 25px rgba(0,0,0,0.08); }
    .cred-number { font-size: 2.6rem; font-weight: 800; color: var(--primary); line-height: 1; margin-bottom: 8px; letter-spacing: -1px; }
    .cred-label { font-size: 0.95rem; font-weight: 700; color: var(--dark); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px; }
    .cred-desc { font-size: 0.88rem; color: #666; line-height: 1.5; }

    /* Field-proven callout */
    .field-callout { background: var(--light); border-left: 5px solid var(--primary); padding: 28px 32px; margin: 35px 0; border-radius: 0 8px 8px 0; box-shadow: 0 5px 20px rgba(0,0,0,0.04); }
    .field-callout strong { color: var(--primary); }

    /* Big closing CTA */
    .closing-cta { padding: 80px 20px; text-align: center; background: var(--dark); color: #fff; border-top: 5px solid var(--primary); }
    .closing-cta h2 { font-size: 2rem; margin-bottom: 25px; font-weight: 800; }
    .closing-cta .big-cta { background: var(--primary); color: #fff; text-decoration: none; padding: 16px 38px; font-size: 1.2rem; font-weight: bold; border-radius: 50px; display: inline-block; box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4); transition: all 0.3s ease; text-transform: uppercase; letter-spacing: 1px; margin: 0 6px 12px; }
    .closing-cta .big-cta:hover { background: #e66000; transform: translateY(-3px); }
    .closing-cta .outline-cta { background: transparent; color: var(--primary); border: 2px solid var(--primary); box-shadow: none; }
    .closing-cta .outline-cta:hover { background: rgba(255, 107, 0, 0.1); }

    footer { background: var(--dark); color: #fff; padding: 60px 20px 40px; text-align: center; }
    footer .areas { font-size: 0.95rem; color: #aaa; margin-top: 20px; line-height: 2; }

    /* MOBILE */
    @media(max-width: 768px) {
        header { flex-direction: column; text-align: center; padding: 15px; }
        .brand-container { justify-content: center; margin-bottom: 10px; flex-wrap: wrap; }
        nav { justify-content: center; width: 100%; gap: 10px; }

        .about-hero { padding: 50px 20px; text-align: center; gap: 30px; }
        .about-hero-text, .about-hero-img { flex: 1 1 100%; max-width: 100%; }
        .about-hero-text h1 { font-size: clamp(2rem, 8vw, 2.5rem); }

        .story-section { padding: 50px 20px; }
        .story-section h2 { font-size: 1.6rem; }

        .contrast-grid { grid-template-columns: 1fr; gap: 18px; }
        .contrast-section { padding: 50px 20px; }
        .contrast-wrap h2 { font-size: 1.6rem; }

        .creds-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
        .creds-section { padding: 50px 20px; }
        .creds-wrap h2 { font-size: 1.6rem; }
        .cred-card { padding: 22px 14px; }
        .cred-number { font-size: 2rem; }

        .closing-cta { padding: 60px 20px; }
        .closing-cta h2 { font-size: 1.5rem; }
    }
    
/* Styles from contact.html */

    :root { --primary: #FF6B00; --dark: #1A1A1A; --light: #F8F9FA; --text: #333333; }
    * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }
    
    body { background-color: var(--light); color: var(--text); line-height: 1.7; overflow-x: hidden; } 
    
    header { background: var(--dark); padding: 15px 5%; position: sticky; top: 0; z-index: 100; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 15px; box-shadow: 0 4px 10px rgba(0,0,0,0.3); }
    
    .brand-container { display: flex; align-items: center; gap: 12px; text-decoration: none; }
    .logo { color: #fff; font-size: clamp(1.2rem, 4vw, 1.5rem); font-weight: 800; text-transform: uppercase; letter-spacing: 1px; line-height: 1.1; }
    .logo span { color: var(--primary); }
    .header-badge { height: 45px; width: auto; display: block; transition: transform 0.3s ease; }
    .brand-container:hover .header-badge { transform: scale(1.08); }
    .brand-text { display: flex; flex-direction: column; }
    .tagline { color: #ccc; font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-top: 2px; }
    
    nav { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
    nav a { color: #ffd700; text-decoration: none; font-size: 0.95rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; transition: color 0.3s ease; }
    nav a:hover { color: var(--primary); }
    nav a.current-page { color: var(--primary); font-weight: 800; }
    
    .call-btn { background: var(--primary); color: #fff !important; text-decoration: none; padding: 10px 20px; border-radius: 50px; font-weight: bold; font-size: 0.9rem; text-align: center; box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4); transition: all 0.3s ease; }
    .call-btn:hover { background: #e66000; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255, 107, 0, 0.6); }
    
    .hero { background: var(--dark); color: #fff; padding: 60px 5% 80px; display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 50px; border-bottom: 5px solid var(--primary); }
    .hero-content { flex: 1 1 400px; max-width: 600px; }
    .hero-content h1 { font-size: clamp(2.5rem, 5vw, 3.8rem); margin-bottom: 20px; font-weight: 800; line-height: 1.1; }
    .hero-content p { font-size: 1.2rem; margin-bottom: 40px; color: #ddd; }
    
    .hero-image { flex: 1 1 400px; display: flex; justify-content: center; }
    .hero-image img { max-width: 100%; height: auto; border-radius: 15px; max-height: 450px; filter: drop-shadow(0 15px 25px rgba(0,0,0,0.5)); transition: transform 0.4s ease; }
    .hero-image img:hover { transform: scale(1.03); }

    .hero-buttons { display: flex; gap: 15px; flex-wrap: wrap; }
    .hero .big-cta { background: var(--primary); color: #fff; text-decoration: none; padding: 15px 35px; font-size: 1.2rem; font-weight: bold; border-radius: 50px; display: inline-block; transition: all 0.3s ease; text-align: center; box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4); text-transform: uppercase; letter-spacing: 1px; }
    .hero .big-cta:hover { background: #e66000; transform: translateY(-3px); box-shadow: 0 8px 25px rgba(255, 107, 0, 0.6); }
    .hero .outline-cta { background: transparent; color: var(--primary); border: 2px solid var(--primary); box-shadow: none; }
    .hero .outline-cta:hover { background: rgba(255, 107, 0, 0.1); transform: translateY(-3px); }

    .trust-banner { background: #fff; color: var(--dark); padding: 30px 20px; text-align: center; display: flex; flex-wrap: wrap; justify-content: space-around; gap: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); margin-top: -30px; position: relative; z-index: 10; max-width: 900px; margin-left: auto; margin-right: auto; border-radius: 10px; }
    .trust-item { margin: 5px; font-weight: bold; flex: 1 1 200px; }
    .trust-item span { color: var(--primary); font-size: 2rem; display: block; font-weight: 800; }

    .content-section { padding: 80px 20px; max-width: 1100px; margin: 0 auto; }
    .split-layout { display: flex; flex-wrap: wrap; gap: 50px; align-items: center; margin-bottom: 50px; }
    
    .split-text { flex: 1 1 100%; min-width: 250px; } 
    .split-text h3 { margin-bottom: 20px; color: var(--dark); font-size: 2rem; font-weight: 800; border-bottom: 3px solid var(--primary); display: inline-block; padding-bottom: 10px; }
    .split-image { flex: 1 1 100%; min-width: 250px; } 
    .split-image img { width: 100%; height: auto; object-fit: cover; border-radius: 10px; box-shadow: 0 15px 30px rgba(0,0,0,0.15); transition: transform 0.3s ease; }
    .split-image img:hover { transform: scale(1.02); }

    .filler-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; max-width: 1100px; margin: 0 auto 80px; padding: 0 20px; }
    .filler-gallery img { width: 100%; height: 350px; object-fit: cover; border-radius: 10px; box-shadow: 0 10px 25px rgba(0,0,0,0.1); transition: transform 0.3s ease; }
    .filler-gallery img:hover { transform: translateY(-5px); }

    .form-container, .service-category { background: #fff; padding: 40px; border-radius: 10px; box-shadow: 0 10px 40px rgba(0,0,0,0.06); border-top: 5px solid var(--primary); margin-bottom: 40px; transition: transform 0.3s ease; }
    .service-category:hover { transform: translateY(-5px); }
    .form-group { margin-bottom: 25px; }
    .form-group label { display: block; margin-bottom: 8px; font-weight: bold; color: var(--dark); }
    .form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 4px; font-size: 1rem; }
    .submit-btn { background: var(--primary); color: #fff; border: none; padding: 18px; width: 100%; font-size: 1.3rem; font-weight: bold; border-radius: 4px; cursor: pointer; transition: background 0.3s ease; }
    .submit-btn:hover { background: #e66000; }

    .service-category h3 { color: var(--dark); font-size: 1.5rem; margin-bottom: 15px; }
    .service-category p { color: #555; margin-bottom: 15px; }
    .service-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 10px; list-style: none; }
    .service-list li { position: relative; padding-left: 20px; font-weight: bold; color: #333; }
    .service-list li::before { content: "✔"; position: absolute; left: 0; color: var(--primary); font-size: 1rem; }

    .gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
    .gallery-img-wrapper { position: relative; width: 100%; height: 250px; overflow: hidden; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
    .gallery-img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
    .gallery-img-wrapper:hover img { transform: scale(1.1); }
    .img-caption { position: absolute; bottom: 0; background: rgba(0,0,0,0.8); color: #fff; width: 100%; padding: 15px; font-size: 0.9rem; }

    .faq-item { margin-bottom: 30px; border-bottom: 1px solid #eee; padding-bottom: 20px; }
    .faq-item h3 { color: var(--primary); margin-bottom: 10px; font-size: 1.3rem; }

    footer { background: var(--dark); color: #fff; padding: 80px 20px 40px; text-align: center; border-top: 5px solid var(--primary); }
    footer .areas { font-size: 0.95rem; color: #aaa; margin-top: 30px; line-height: 2; }
    
    /* MOBILE VIEW FIXES */
    @media(max-width: 768px) { 
        header { flex-direction: column; text-align: center; padding: 15px; }
        .brand-container { justify-content: center; margin-bottom: 10px; flex-wrap: wrap; }
        nav { justify-content: center; width: 100%; gap: 10px; }
        
        .hero { padding: 40px 20px 60px; text-align: center; gap: 30px; }
        .hero-content, .hero-image { flex: 1 1 100%; max-width: 100%; min-width: 100%; } 
        .hero-content h1 { font-size: clamp(2rem, 8vw, 2.5rem); word-wrap: break-word; } 
        
        .hero-buttons { justify-content: center; flex-direction: column; width: 100%; }
        .hero .big-cta { width: 100%; display: block; }
        
        .trust-banner { margin-top: 0; border-radius: 0; box-shadow: none; border-bottom: 1px solid #ddd; }
        
        .split-layout { gap: 30px; }
        .split-text, .split-image { flex: 1 1 100%; min-width: 100%; } 
        .split-text h3 { font-size: 1.5rem; }
        
        .filler-gallery { grid-template-columns: 1fr; gap: 20px; margin-bottom: 50px; }
        .filler-gallery img { height: 250px; }
        
        .form-container, .service-category { padding: 25px; margin: 20px 0; }
    }

/* Styles from faq.html */

    :root { --primary: #FF6B00; --dark: #1A1A1A; --light: #F8F9FA; --text: #333333; }
    * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }
    
    body { background-color: var(--light); color: var(--text); line-height: 1.7; overflow-x: hidden; } 
    
    header { background: var(--dark); padding: 15px 5%; position: sticky; top: 0; z-index: 100; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 15px; box-shadow: 0 4px 10px rgba(0,0,0,0.3); }
    
    .brand-container { display: flex; align-items: center; gap: 12px; text-decoration: none; }
    .logo { color: #fff; font-size: clamp(1.2rem, 4vw, 1.5rem); font-weight: 800; text-transform: uppercase; letter-spacing: 1px; line-height: 1.1; }
    .logo span { color: var(--primary); }
    .header-badge { height: 45px; width: auto; display: block; transition: transform 0.3s ease; }
    .brand-container:hover .header-badge { transform: scale(1.08); }
    .brand-text { display: flex; flex-direction: column; }
    .tagline { color: #ccc; font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-top: 2px; }
    
    nav { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
    nav a { color: #ffd700; text-decoration: none; font-size: 0.95rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; transition: color 0.3s ease; }
    nav a:hover { color: var(--primary); }
    nav a.current-page { color: var(--primary); font-weight: 800; }
    
    .call-btn { background: var(--primary); color: #fff !important; text-decoration: none; padding: 10px 20px; border-radius: 50px; font-weight: bold; font-size: 0.9rem; text-align: center; box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4); transition: all 0.3s ease; }
    .call-btn:hover { background: #e66000; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255, 107, 0, 0.6); }
    
    .hero { background: var(--dark); color: #fff; padding: 60px 5% 80px; display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 50px; border-bottom: 5px solid var(--primary); }
    .hero-content { flex: 1 1 400px; max-width: 600px; }
    .hero-content h1 { font-size: clamp(2.5rem, 5vw, 3.8rem); margin-bottom: 20px; font-weight: 800; line-height: 1.1; }
    .hero-content p { font-size: 1.2rem; margin-bottom: 40px; color: #ddd; }
    
    .hero-image { flex: 1 1 400px; display: flex; justify-content: center; }
    .hero-image img { max-width: 100%; height: auto; border-radius: 15px; max-height: 450px; filter: drop-shadow(0 15px 25px rgba(0,0,0,0.5)); transition: transform 0.4s ease; }
    .hero-image img:hover { transform: scale(1.03); }

    .hero-buttons { display: flex; gap: 15px; flex-wrap: wrap; }
    .hero .big-cta { background: var(--primary); color: #fff; text-decoration: none; padding: 15px 35px; font-size: 1.2rem; font-weight: bold; border-radius: 50px; display: inline-block; transition: all 0.3s ease; text-align: center; box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4); text-transform: uppercase; letter-spacing: 1px; }
    .hero .big-cta:hover { background: #e66000; transform: translateY(-3px); box-shadow: 0 8px 25px rgba(255, 107, 0, 0.6); }
    .hero .outline-cta { background: transparent; color: var(--primary); border: 2px solid var(--primary); box-shadow: none; }
    .hero .outline-cta:hover { background: rgba(255, 107, 0, 0.1); transform: translateY(-3px); }

    .trust-banner { background: #fff; color: var(--dark); padding: 30px 20px; text-align: center; display: flex; flex-wrap: wrap; justify-content: space-around; gap: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); margin-top: -30px; position: relative; z-index: 10; max-width: 900px; margin-left: auto; margin-right: auto; border-radius: 10px; }
    .trust-item { margin: 5px; font-weight: bold; flex: 1 1 200px; }
    .trust-item span { color: var(--primary); font-size: 2rem; display: block; font-weight: 800; }

    .content-section { padding: 80px 20px; max-width: 1100px; margin: 0 auto; }
    .split-layout { display: flex; flex-wrap: wrap; gap: 50px; align-items: center; margin-bottom: 50px; }
    
    .split-text { flex: 1 1 100%; min-width: 250px; } 
    .split-text h3 { margin-bottom: 20px; color: var(--dark); font-size: 2rem; font-weight: 800; border-bottom: 3px solid var(--primary); display: inline-block; padding-bottom: 10px; }
    .split-image { flex: 1 1 100%; min-width: 250px; } 
    .split-image img { width: 100%; height: auto; object-fit: cover; border-radius: 10px; box-shadow: 0 15px 30px rgba(0,0,0,0.15); transition: transform 0.3s ease; }
    .split-image img:hover { transform: scale(1.02); }

    .filler-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; max-width: 1100px; margin: 0 auto 80px; padding: 0 20px; }
    .filler-gallery img { width: 100%; height: 350px; object-fit: cover; border-radius: 10px; box-shadow: 0 10px 25px rgba(0,0,0,0.1); transition: transform 0.3s ease; }
    .filler-gallery img:hover { transform: translateY(-5px); }

    .form-container, .service-category { background: #fff; padding: 40px; border-radius: 10px; box-shadow: 0 10px 40px rgba(0,0,0,0.06); border-top: 5px solid var(--primary); margin-bottom: 40px; transition: transform 0.3s ease; }
    .service-category:hover { transform: translateY(-5px); }
    .form-group { margin-bottom: 25px; }
    .form-group label { display: block; margin-bottom: 8px; font-weight: bold; color: var(--dark); }
    .form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 4px; font-size: 1rem; }
    .submit-btn { background: var(--primary); color: #fff; border: none; padding: 18px; width: 100%; font-size: 1.3rem; font-weight: bold; border-radius: 4px; cursor: pointer; transition: background 0.3s ease; }
    .submit-btn:hover { background: #e66000; }

    .service-category h3 { color: var(--dark); font-size: 1.5rem; margin-bottom: 15px; }
    .service-category p { color: #555; margin-bottom: 15px; }
    .service-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 10px; list-style: none; }
    .service-list li { position: relative; padding-left: 20px; font-weight: bold; color: #333; }
    .service-list li::before { content: "✔"; position: absolute; left: 0; color: var(--primary); font-size: 1rem; }

    .gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
    .gallery-img-wrapper { position: relative; width: 100%; height: 250px; overflow: hidden; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
    .gallery-img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
    .gallery-img-wrapper:hover img { transform: scale(1.1); }
    .img-caption { position: absolute; bottom: 0; background: rgba(0,0,0,0.8); color: #fff; width: 100%; padding: 15px; font-size: 0.9rem; }

    /* ── FAQ Styles ── */
    .faq-section-intro { text-align: center; max-width: 700px; margin: 0 auto 50px; color: #555; font-size: 1.1rem; }

    .faq-intro-layout { display: flex; flex-wrap: wrap; align-items: center; gap: 40px; margin-bottom: 50px; }
    .faq-intro-text { flex: 1 1 380px; }
    .faq-intro-text h2 { font-size: 2.5rem; margin-bottom: 16px; }
    .faq-intro-text .faq-section-intro { text-align: left; margin: 0; max-width: none; }
    .faq-intro-image { flex: 1 1 380px; display: flex; justify-content: center; }
    .faq-intro-image img { width: 100%; max-width: 500px; height: auto; border-radius: 10px; box-shadow: 0 15px 30px rgba(0,0,0,0.2); transition: transform 0.3s ease; }
    .faq-intro-image img:hover { transform: scale(1.02); }
    @media (max-width: 768px) {
      .faq-intro-text { text-align: center; }
      .faq-intro-text .faq-section-intro { text-align: center; }
    }

    .faq-category-label {
      font-size: 0.8rem;
      font-weight: 800;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--primary);
      margin-bottom: 8px;
      display: block;
    }

    .faq-item {
      background: #fff;
      border-radius: 8px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.06);
      border-left: 5px solid var(--primary);
      padding: 28px 32px;
      margin-bottom: 20px;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    .faq-item:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    }
    .faq-item h3 { color: var(--dark); margin-bottom: 10px; font-size: 1.2rem; font-weight: 700; }
    .faq-item p { color: #555; font-size: 0.97rem; line-height: 1.75; }

    .faq-cta-box {
      background: var(--dark);
      color: #fff;
      border-radius: 10px;
      padding: 40px;
      text-align: center;
      margin-top: 50px;
    }
    .faq-cta-box h3 { font-size: 1.8rem; margin-bottom: 12px; }
    .faq-cta-box p { color: #bbb; margin-bottom: 25px; }
    .faq-cta-box a {
      background: var(--primary);
      color: #fff;
      text-decoration: none;
      padding: 14px 35px;
      border-radius: 50px;
      font-weight: bold;
      font-size: 1.1rem;
      display: inline-block;
      box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4);
      transition: all 0.3s ease;
    }
    .faq-cta-box a:hover { background: #e66000; transform: translateY(-2px); }

    footer { background: var(--dark); color: #fff; padding: 80px 20px 40px; text-align: center; border-top: 5px solid var(--primary); }
    footer .areas { font-size: 0.95rem; color: #aaa; margin-top: 30px; line-height: 2; }
    
    /* MOBILE VIEW FIXES */
    @media(max-width: 768px) { 
        header { flex-direction: column; text-align: center; padding: 15px; }
        .brand-container { justify-content: center; margin-bottom: 10px; flex-wrap: wrap; }
        nav { justify-content: center; width: 100%; gap: 10px; }
        
        .hero { padding: 40px 20px 60px; text-align: center; gap: 30px; }
        .hero-content, .hero-image { flex: 1 1 100%; max-width: 100%; min-width: 100%; } 
        .hero-content h1 { font-size: clamp(2rem, 8vw, 2.5rem); word-wrap: break-word; } 
        
        .hero-buttons { justify-content: center; flex-direction: column; width: 100%; }
        .hero .big-cta { width: 100%; display: block; }
        
        .trust-banner { margin-top: 0; border-radius: 0; box-shadow: none; border-bottom: 1px solid #ddd; }
        
        .split-layout { gap: 30px; }
        .split-text, .split-image { flex: 1 1 100%; min-width: 100%; } 
        .split-text h3 { font-size: 1.5rem; }
        
        .filler-gallery { grid-template-columns: 1fr; gap: 20px; margin-bottom: 50px; }
        .filler-gallery img { height: 250px; }
        
        .form-container, .service-category { padding: 25px; margin: 20px 0; }
        .faq-item { padding: 22px 20px; }
        .faq-cta-box { padding: 30px 20px; }
    }

/* Styles from gallery.html */

    :root { --primary: #FF6B00; --dark: #1A1A1A; --light: #F8F9FA; --text: #333333; }
    * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }
    
    body { background-color: var(--light); color: var(--text); line-height: 1.7; overflow-x: hidden; } 
    
    header { background: var(--dark); padding: 15px 5%; position: sticky; top: 0; z-index: 100; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 15px; box-shadow: 0 4px 10px rgba(0,0,0,0.3); }
    
    .brand-container { display: flex; align-items: center; gap: 12px; text-decoration: none; }
    .logo { color: #fff; font-size: clamp(1.2rem, 4vw, 1.5rem); font-weight: 800; text-transform: uppercase; letter-spacing: 1px; line-height: 1.1; }
    .logo span { color: var(--primary); }
    .header-badge { height: 45px; width: auto; display: block; transition: transform 0.3s ease; }
    .brand-container:hover .header-badge { transform: scale(1.08); }
    .brand-text { display: flex; flex-direction: column; }
    .tagline { color: #ccc; font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-top: 2px; }
    
    nav { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
    nav a { color: #ffd700; text-decoration: none; font-size: 0.95rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; transition: color 0.3s ease; }
    nav a:hover { color: var(--primary); }
    nav a.current-page { color: var(--primary); font-weight: 800; }
    
    .call-btn { background: var(--primary); color: #fff !important; text-decoration: none; padding: 10px 20px; border-radius: 50px; font-weight: bold; font-size: 0.9rem; text-align: center; box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4); transition: all 0.3s ease; }
    .call-btn:hover { background: #e66000; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255, 107, 0, 0.6); }
    
    .hero { background: var(--dark); color: #fff; padding: 60px 5% 80px; display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 50px; border-bottom: 5px solid var(--primary); }
    .hero-content { flex: 1 1 400px; max-width: 600px; }
    .hero-content h1 { font-size: clamp(2.5rem, 5vw, 3.8rem); margin-bottom: 20px; font-weight: 800; line-height: 1.1; }
    .hero-content p { font-size: 1.2rem; margin-bottom: 40px; color: #ddd; }
    
    .hero-image { flex: 1 1 400px; display: flex; justify-content: center; }
    .hero-image img { max-width: 100%; height: auto; border-radius: 15px; max-height: 450px; filter: drop-shadow(0 15px 25px rgba(0,0,0,0.5)); transition: transform 0.4s ease; }
    .hero-image img:hover { transform: scale(1.03); }

    .hero-buttons { display: flex; gap: 15px; flex-wrap: wrap; }
    .hero .big-cta { background: var(--primary); color: #fff; text-decoration: none; padding: 15px 35px; font-size: 1.2rem; font-weight: bold; border-radius: 50px; display: inline-block; transition: all 0.3s ease; text-align: center; box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4); text-transform: uppercase; letter-spacing: 1px; }
    .hero .big-cta:hover { background: #e66000; transform: translateY(-3px); box-shadow: 0 8px 25px rgba(255, 107, 0, 0.6); }
    .hero .outline-cta { background: transparent; color: var(--primary); border: 2px solid var(--primary); box-shadow: none; }
    .hero .outline-cta:hover { background: rgba(255, 107, 0, 0.1); transform: translateY(-3px); }

    .trust-banner { background: #fff; color: var(--dark); padding: 30px 20px; text-align: center; display: flex; flex-wrap: wrap; justify-content: space-around; gap: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); margin-top: -30px; position: relative; z-index: 10; max-width: 900px; margin-left: auto; margin-right: auto; border-radius: 10px; }
    .trust-item { margin: 5px; font-weight: bold; flex: 1 1 200px; }
    .trust-item span { color: var(--primary); font-size: 2rem; display: block; font-weight: 800; }

    .content-section { padding: 80px 20px; max-width: 1100px; margin: 0 auto; }
    .split-layout { display: flex; flex-wrap: wrap; gap: 50px; align-items: center; margin-bottom: 50px; }
    
    .split-text { flex: 1 1 100%; min-width: 250px; } 
    .split-text h3 { margin-bottom: 20px; color: var(--dark); font-size: 2rem; font-weight: 800; border-bottom: 3px solid var(--primary); display: inline-block; padding-bottom: 10px; }
    .split-image { flex: 1 1 100%; min-width: 250px; } 
    .split-image img { width: 100%; height: auto; object-fit: cover; border-radius: 10px; box-shadow: 0 15px 30px rgba(0,0,0,0.15); transition: transform 0.3s ease; }
    .split-image img:hover { transform: scale(1.02); }

    .filler-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; max-width: 1100px; margin: 0 auto 80px; padding: 0 20px; }
    .filler-gallery img { width: 100%; height: 350px; object-fit: cover; border-radius: 10px; box-shadow: 0 10px 25px rgba(0,0,0,0.1); transition: transform 0.3s ease; }
    .filler-gallery img:hover { transform: translateY(-5px); }

    .form-container, .service-category { background: #fff; padding: 40px; border-radius: 10px; box-shadow: 0 10px 40px rgba(0,0,0,0.06); border-top: 5px solid var(--primary); margin-bottom: 40px; transition: transform 0.3s ease; }
    .service-category:hover { transform: translateY(-5px); }
    .form-group { margin-bottom: 25px; }
    .form-group label { display: block; margin-bottom: 8px; font-weight: bold; color: var(--dark); }
    .form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 4px; font-size: 1rem; }
    .submit-btn { background: var(--primary); color: #fff; border: none; padding: 18px; width: 100%; font-size: 1.3rem; font-weight: bold; border-radius: 4px; cursor: pointer; transition: background 0.3s ease; }
    .submit-btn:hover { background: #e66000; }

    .service-category h3 { color: var(--dark); font-size: 1.5rem; margin-bottom: 15px; }
    .service-category p { color: #555; margin-bottom: 15px; }
    .service-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 10px; list-style: none; }
    .service-list li { position: relative; padding-left: 20px; font-weight: bold; color: #333; }
    .service-list li::before { content: "✔"; position: absolute; left: 0; color: var(--primary); font-size: 1rem; }

    .gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
    .gallery-img-wrapper { position: relative; width: 100%; height: 250px; overflow: hidden; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
    .gallery-img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
    .gallery-img-wrapper:hover img { transform: scale(1.1); }
    .img-caption { position: absolute; bottom: 0; background: rgba(0,0,0,0.8); color: #fff; width: 100%; padding: 15px; font-size: 0.9rem; }

    .faq-item { margin-bottom: 30px; border-bottom: 1px solid #eee; padding-bottom: 20px; }
    .faq-item h3 { color: var(--primary); margin-bottom: 10px; font-size: 1.3rem; }

    footer { background: var(--dark); color: #fff; padding: 80px 20px 40px; text-align: center; border-top: 5px solid var(--primary); }
    footer .areas { font-size: 0.95rem; color: #aaa; margin-top: 30px; line-height: 2; }
    
    /* MOBILE VIEW FIXES */
    @media(max-width: 768px) { 
        header { flex-direction: column; text-align: center; padding: 15px; }
        .brand-container { justify-content: center; margin-bottom: 10px; flex-wrap: wrap; }
        nav { justify-content: center; width: 100%; gap: 10px; }
        
        .hero { padding: 40px 20px 60px; text-align: center; gap: 30px; }
        .hero-content, .hero-image { flex: 1 1 100%; max-width: 100%; min-width: 100%; } 
        .hero-content h1 { font-size: clamp(2rem, 8vw, 2.5rem); word-wrap: break-word; } 
        
        .hero-buttons { justify-content: center; flex-direction: column; width: 100%; }
        .hero .big-cta { width: 100%; display: block; }
        
        .trust-banner { margin-top: 0; border-radius: 0; box-shadow: none; border-bottom: 1px solid #ddd; }
        
        .split-layout { gap: 30px; }
        .split-text, .split-image { flex: 1 1 100%; min-width: 100%; } 
        .split-text h3 { font-size: 1.5rem; }
        
        .filler-gallery { grid-template-columns: 1fr; gap: 20px; margin-bottom: 50px; }
        .filler-gallery img { height: 250px; }
        
        .form-container, .service-category { padding: 25px; margin: 20px 0; }
    }

/* Styles from index.html */

    :root { --primary: #FF6B00; --dark: #1A1A1A; --light: #F8F9FA; --text: #333333; }
    * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }
    
    body { background-color: var(--light); color: var(--text); line-height: 1.7; overflow-x: hidden; } 
    
    header { background: var(--dark); padding: 15px 5%; position: sticky; top: 0; z-index: 100; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 15px; box-shadow: 0 4px 10px rgba(0,0,0,0.3); }
    
    .brand-container { display: flex; align-items: center; gap: 12px; text-decoration: none; }
    .logo { color: #fff; font-size: clamp(1.2rem, 4vw, 1.5rem); font-weight: 800; text-transform: uppercase; letter-spacing: 1px; line-height: 1.1; }
    .logo span { color: var(--primary); }
    .header-badge { height: 45px; width: auto; display: block; transition: transform 0.3s ease; }
    .brand-container:hover .header-badge { transform: scale(1.08); }
    .brand-text { display: flex; flex-direction: column; }
    .tagline { color: #ccc; font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-top: 2px; }
    
    nav { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
    nav a { color: #ffd700; text-decoration: none; font-size: 0.95rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; transition: color 0.3s ease; }
    nav a:hover { color: var(--primary); }
    nav a.current-page { color: var(--primary); font-weight: 800; }
    
    .call-btn { background: var(--primary); color: #fff !important; text-decoration: none; padding: 10px 20px; border-radius: 50px; font-weight: bold; font-size: 0.9rem; text-align: center; box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4); transition: all 0.3s ease; }
    .call-btn:hover { background: #e66000; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255, 107, 0, 0.6); }
    
    .hero { background: var(--dark); color: #fff; padding: 30px 5% 40px; display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 50px; border-bottom: 5px solid var(--primary); }
    .hero-content { flex: 1 1 400px; max-width: 600px; }
    .hero-content h1 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); margin-bottom: 15px; font-weight: 800; line-height: 1.1; }
    .hero-content p { font-size: 1rem; margin-bottom: 25px; color: #ddd; }
    
    .hero-image { flex: 1 1 400px; display: flex; justify-content: center; }
    .hero-image img { max-width: 100%; height: auto; border-radius: 15px; max-height: 225px; filter: drop-shadow(0 15px 25px rgba(0,0,0,0.5)); transition: transform 0.4s ease; }
    .hero-image img:hover { transform: scale(1.03); }

    .hero-buttons { display: flex; gap: 15px; flex-wrap: wrap; }
    .hero .big-cta { background: var(--primary); color: #fff; text-decoration: none; padding: 12px 28px; font-size: 1rem; font-weight: bold; border-radius: 50px; display: inline-block; transition: all 0.3s ease; text-align: center; box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4); text-transform: uppercase; letter-spacing: 1px; }
    .hero .big-cta:hover { background: #e66000; transform: translateY(-3px); box-shadow: 0 8px 25px rgba(255, 107, 0, 0.6); }
    .hero .outline-cta { background: transparent; color: var(--primary); border: 2px solid var(--primary); box-shadow: none; }
    .hero .outline-cta:hover { background: rgba(255, 107, 0, 0.1); transform: translateY(-3px); }

    .trust-banner { background: #fff; color: var(--dark); padding: 30px 20px; text-align: center; display: flex; flex-wrap: wrap; justify-content: space-around; gap: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); margin-top: -30px; position: relative; z-index: 10; max-width: 900px; margin-left: auto; margin-right: auto; border-radius: 10px; }
    .trust-item { margin: 5px; font-weight: bold; flex: 1 1 200px; }
    .trust-item span { color: var(--primary); font-size: 2rem; display: block; font-weight: 800; }

    .content-section { padding: 80px 20px; max-width: 1100px; margin: 0 auto; }
    .split-layout { display: flex; flex-wrap: wrap; gap: 50px; align-items: center; margin-bottom: 50px; }
    
    .split-text { flex: 1 1 100%; min-width: 250px; }
    .split-text p { font-size: 1.5rem; }
    .split-text h3 { margin-bottom: 20px; color: var(--dark); font-size: 2rem; font-weight: 800; border-bottom: 3px solid var(--primary); display: inline-block; padding-bottom: 10px; }
    .split-image { flex: 1 1 100%; min-width: 250px; } 
    .split-image img { width: 100%; height: auto; object-fit: cover; border-radius: 10px; box-shadow: 0 15px 30px rgba(0,0,0,0.15); transition: transform 0.3s ease; }
    .split-image img:hover { transform: scale(1.02); }

    .filler-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; max-width: 1100px; margin: 0 auto 80px; padding: 0 20px; }
    .filler-gallery img { width: 100%; height: 350px; object-fit: cover; border-radius: 10px; box-shadow: 0 10px 25px rgba(0,0,0,0.1); transition: transform 0.3s ease; }
    .filler-gallery img:hover { transform: translateY(-5px); }

    .form-container, .service-category { background: #fff; padding: 40px; border-radius: 10px; box-shadow: 0 10px 40px rgba(0,0,0,0.06); border-top: 5px solid var(--primary); margin-bottom: 40px; transition: transform 0.3s ease; }
    .service-category:hover { transform: translateY(-5px); }
    .form-group { margin-bottom: 25px; }
    .form-group label { display: block; margin-bottom: 8px; font-weight: bold; color: var(--dark); }
    .form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 4px; font-size: 1rem; }
    .submit-btn { background: var(--primary); color: #fff; border: none; padding: 18px; width: 100%; font-size: 1.3rem; font-weight: bold; border-radius: 4px; cursor: pointer; transition: background 0.3s ease; }
    .submit-btn:hover { background: #e66000; }

    .service-category h3 { color: var(--dark); font-size: 1.5rem; margin-bottom: 15px; }
    .service-category p { color: #555; margin-bottom: 15px; }
    .service-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 10px; list-style: none; }
    .service-list li { position: relative; padding-left: 20px; font-weight: bold; color: #333; }
    .service-list li::before { content: "✔"; position: absolute; left: 0; color: var(--primary); font-size: 1rem; }

    .gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
    .gallery-img-wrapper { position: relative; width: 100%; height: 250px; overflow: hidden; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
    .gallery-img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
    .gallery-img-wrapper:hover img { transform: scale(1.1); }
    .img-caption { position: absolute; bottom: 0; background: rgba(0,0,0,0.8); color: #fff; width: 100%; padding: 15px; font-size: 0.9rem; }

    .faq-item { margin-bottom: 30px; border-bottom: 1px solid #eee; padding-bottom: 20px; }
    .faq-item h3 { color: var(--primary); margin-bottom: 10px; font-size: 1.3rem; }

    /* Contrast section — "old way vs Summit way" */
    .contrast-section { background: var(--dark); color: #fff; padding: 80px 20px; }
    .contrast-wrap { max-width: 1100px; margin: 0 auto; }
    .contrast-wrap h2 { text-align: center; font-size: 2.2rem; margin-bottom: 50px; font-weight: 800; color: #fff; }
    .contrast-wrap h2 span { color: var(--primary); }
    .contrast-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
    .contrast-col { background: rgba(255,255,255,0.04); padding: 35px; border-radius: 10px; border-top: 4px solid #555; }
    .contrast-col.summit { border-top-color: var(--primary); background: rgba(255,107,0,0.08); }
    .contrast-col h3 { font-size: 1.15rem; margin-bottom: 20px; color: #fff; }
    .contrast-col.summit h3 { color: var(--primary); }
    .contrast-col ul { list-style: none; padding: 0; }
    .contrast-col li { padding: 10px 0 10px 28px; position: relative; color: #ddd; line-height: 1.5; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .contrast-col li:last-child { border-bottom: none; }
    .contrast-col li::before { content: "✕"; position: absolute; left: 0; color: #888; font-weight: bold; }
    .contrast-col.summit li::before { content: "✓"; color: var(--primary); }

    /* Pull quote */
    .pull-quote { max-width: 900px; margin: 0 auto; padding: 70px 30px; text-align: center; }
    .pull-quote blockquote { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-style: italic; color: var(--dark); line-height: 1.4; font-weight: 600; border: none; }
    .pull-quote blockquote::before { content: "\201C"; font-size: 4rem; color: var(--primary); display: block; line-height: 0.8; margin-bottom: 10px; }
    .pull-quote cite { display: block; margin-top: 25px; font-size: 1rem; color: #666; font-style: normal; font-weight: bold; letter-spacing: 1px; text-transform: uppercase; }

    /* Brands strip */
    .brands-section { background: #fff; padding: 60px 20px; text-align: center; border-top: 1px solid #eee; }
    .brands-section h3 { font-size: 1.8rem; margin-bottom: 12px; color: var(--dark); font-weight: 800; }
    .brands-section .brands-sub { color: #666; max-width: 700px; margin: 0 auto 30px; font-size: 1rem; }
    .brands-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; max-width: 1000px; margin: 0 auto 25px; }
    .brand-pill { background: var(--light); border: 1px solid #ddd; padding: 10px 20px; border-radius: 50px; font-weight: bold; color: var(--dark); font-size: 0.95rem; letter-spacing: 0.5px; }
    .brands-tagline { max-width: 700px; margin: 30px auto 0; font-style: italic; color: #555; font-size: 1.05rem; }

    /* Meet Shane preview card */
    .meet-shane { background: var(--light); padding: 70px 20px; }
    .meet-shane .split-layout { max-width: 1100px; margin: 0 auto; }
    .meet-shane h3 { color: var(--dark); font-size: 2rem; font-weight: 800; border-bottom: 3px solid var(--primary); display: inline-block; padding-bottom: 10px; margin-bottom: 20px; }
    .meet-shane .split-image img { max-width: 40%; height: auto; margin: 0 auto; display: block; }
    .meet-shane p { margin-bottom: 18px; }
    .meet-shane .read-more-btn { display: inline-block; margin-top: 10px; background: var(--primary); color: #fff; text-decoration: none; padding: 12px 28px; border-radius: 50px; font-weight: bold; transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4); }
    .meet-shane .read-more-btn:hover { background: #e66000; transform: translateY(-2px); }

    footer { background: var(--dark); color: #fff; padding: 80px 20px 40px; text-align: center; border-top: 5px solid var(--primary); }
    footer .areas { font-size: 0.95rem; color: #aaa; margin-top: 30px; line-height: 2; }
    
    /* MOBILE VIEW FIXES */
    @media(max-width: 768px) { 
        header { flex-direction: column; text-align: center; padding: 15px; }
        .brand-container { justify-content: center; margin-bottom: 10px; flex-wrap: wrap; }
        nav { justify-content: center; width: 100%; gap: 10px; }
        
        .hero { padding: 20px 20px 30px; text-align: center; gap: 30px; }
        .hero-content, .hero-image { flex: 1 1 100%; max-width: 100%; min-width: 100%; } 
        .hero-content h1 { font-size: clamp(2rem, 8vw, 2.5rem); word-wrap: break-word; } 
        
        .hero-buttons { justify-content: center; flex-direction: column; width: 100%; }
        .hero .big-cta { width: 100%; display: block; }
        
        .trust-banner { margin-top: 0; border-radius: 0; box-shadow: none; border-bottom: 1px solid #ddd; }
        
        .split-layout { gap: 30px; }
        .split-text, .split-image { flex: 1 1 100%; min-width: 100%; } 
        .split-text h3 { font-size: 1.5rem; }
        
        .filler-gallery { grid-template-columns: 1fr; gap: 20px; margin-bottom: 50px; }
        .filler-gallery img { height: 250px; }
        
        .form-container, .service-category { padding: 25px; margin: 20px 0; }

        .contrast-grid { grid-template-columns: 1fr; gap: 20px; }
        .contrast-section { padding: 50px 20px; }
        .pull-quote { padding: 50px 20px; }
        .meet-shane { padding: 50px 20px; }
    }

/* Styles from services.html */

    :root { --primary: #FF6B00; --dark: #1A1A1A; --light: #F8F9FA; --text: #333333; }
    * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }
    
    body { background-color: var(--light); color: var(--text); line-height: 1.7; overflow-x: hidden; } 
    
    header { background: var(--dark); padding: 15px 5%; position: sticky; top: 0; z-index: 100; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 15px; box-shadow: 0 4px 10px rgba(0,0,0,0.3); }
    
    .brand-container { display: flex; align-items: center; gap: 12px; text-decoration: none; }
    .logo { color: #fff; font-size: clamp(1.2rem, 4vw, 1.5rem); font-weight: 800; text-transform: uppercase; letter-spacing: 1px; line-height: 1.1; }
    .logo span { color: var(--primary); }
    .header-badge { height: 45px; width: auto; display: block; transition: transform 0.3s ease; }
    .brand-container:hover .header-badge { transform: scale(1.08); }
    .brand-text { display: flex; flex-direction: column; }
    .tagline { color: #ccc; font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-top: 2px; }
    
    nav { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
    nav a { color: #ffd700; text-decoration: none; font-size: 0.95rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; transition: color 0.3s ease; }
    nav a:hover { color: var(--primary); }
    nav a.current-page { color: var(--primary); font-weight: 800; }
    
    .call-btn { background: var(--primary); color: #fff !important; text-decoration: none; padding: 10px 20px; border-radius: 50px; font-weight: bold; font-size: 0.9rem; text-align: center; box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4); transition: all 0.3s ease; }
    .call-btn:hover { background: #e66000; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255, 107, 0, 0.6); }
    
    .hero { background: var(--dark); color: #fff; padding: 60px 5% 80px; display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 50px; border-bottom: 5px solid var(--primary); }
    .hero-content { flex: 1 1 400px; max-width: 600px; }
    .hero-content h1 { font-size: clamp(2.5rem, 5vw, 3.8rem); margin-bottom: 20px; font-weight: 800; line-height: 1.1; }
    .hero-content p { font-size: 1.2rem; margin-bottom: 40px; color: #ddd; }
    
    .hero-image { flex: 1 1 400px; display: flex; justify-content: center; }
    .hero-image img { max-width: 100%; height: auto; border-radius: 15px; max-height: 450px; filter: drop-shadow(0 15px 25px rgba(0,0,0,0.5)); transition: transform 0.4s ease; }
    .hero-image img:hover { transform: scale(1.03); }

    .hero-buttons { display: flex; gap: 15px; flex-wrap: wrap; }
    .hero .big-cta { background: var(--primary); color: #fff; text-decoration: none; padding: 15px 35px; font-size: 1.2rem; font-weight: bold; border-radius: 50px; display: inline-block; transition: all 0.3s ease; text-align: center; box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4); text-transform: uppercase; letter-spacing: 1px; }
    .hero .big-cta:hover { background: #e66000; transform: translateY(-3px); box-shadow: 0 8px 25px rgba(255, 107, 0, 0.6); }
    .hero .outline-cta { background: transparent; color: var(--primary); border: 2px solid var(--primary); box-shadow: none; }
    .hero .outline-cta:hover { background: rgba(255, 107, 0, 0.1); transform: translateY(-3px); }

    .trust-banner { background: #fff; color: var(--dark); padding: 30px 20px; text-align: center; display: flex; flex-wrap: wrap; justify-content: space-around; gap: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); margin-top: -30px; position: relative; z-index: 10; max-width: 900px; margin-left: auto; margin-right: auto; border-radius: 10px; }
    .trust-item { margin: 5px; font-weight: bold; flex: 1 1 200px; }
    .trust-item span { color: var(--primary); font-size: 2rem; display: block; font-weight: 800; }

    .content-section { padding: 80px 20px; max-width: 1100px; margin: 0 auto; }
    .split-layout { display: flex; flex-wrap: wrap; gap: 50px; align-items: center; margin-bottom: 50px; }
    
    .split-text { flex: 1 1 100%; min-width: 250px; } 
    .split-text h3 { margin-bottom: 20px; color: var(--dark); font-size: 2rem; font-weight: 800; border-bottom: 3px solid var(--primary); display: inline-block; padding-bottom: 10px; }
    .split-image { flex: 1 1 100%; min-width: 250px; } 
    .split-image img { width: 100%; height: auto; object-fit: cover; border-radius: 10px; box-shadow: 0 15px 30px rgba(0,0,0,0.15); transition: transform 0.3s ease; }
    .split-image img:hover { transform: scale(1.02); }

    .filler-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; max-width: 1100px; margin: 0 auto 80px; padding: 0 20px; }
    .filler-gallery img { width: 100%; height: 350px; object-fit: cover; border-radius: 10px; box-shadow: 0 10px 25px rgba(0,0,0,0.1); transition: transform 0.3s ease; }
    .filler-gallery img:hover { transform: translateY(-5px); }

    .form-container, .service-category { background: #fff; padding: 40px; border-radius: 10px; box-shadow: 0 10px 40px rgba(0,0,0,0.06); border-top: 5px solid var(--primary); margin-bottom: 40px; transition: transform 0.3s ease; }
    .service-category:hover { transform: translateY(-5px); }
    .form-group { margin-bottom: 25px; }
    .form-group label { display: block; margin-bottom: 8px; font-weight: bold; color: var(--dark); }
    .form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 4px; font-size: 1rem; }
    .submit-btn { background: var(--primary); color: #fff; border: none; padding: 18px; width: 100%; font-size: 1.3rem; font-weight: bold; border-radius: 4px; cursor: pointer; transition: background 0.3s ease; }
    .submit-btn:hover { background: #e66000; }

    .service-category h3 { color: var(--dark); font-size: 1.5rem; margin-bottom: 15px; }
    .service-category p { color: #555; margin-bottom: 15px; }
    .service-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 10px; list-style: none; }
    .service-list li { position: relative; padding-left: 20px; font-weight: bold; color: #333; }
    .service-list li::before { content: "✔"; position: absolute; left: 0; color: var(--primary); font-size: 1rem; }

    .gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
    .gallery-img-wrapper { position: relative; width: 100%; height: 250px; overflow: hidden; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
    .gallery-img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
    .gallery-img-wrapper:hover img { transform: scale(1.1); }
    .img-caption { position: absolute; bottom: 0; background: rgba(0,0,0,0.8); color: #fff; width: 100%; padding: 15px; font-size: 0.9rem; }

    .faq-item { margin-bottom: 30px; border-bottom: 1px solid #eee; padding-bottom: 20px; }
    .faq-item h3 { color: var(--primary); margin-bottom: 10px; font-size: 1.3rem; }

    .quote-with-images { display: flex; flex-wrap: wrap; gap: 30px; align-items: stretch; max-width: 1100px; margin: 0 auto 50px; }
    .services-pullquote { background: var(--dark); color: #fff; padding: 60px 30px; text-align: center; border-radius: 10px; border-left: 6px solid var(--primary); flex: 1 1 500px; display: flex; flex-direction: column; justify-content: center; }
    .services-pullquote blockquote { font-size: clamp(1.2rem, 2.4vw, 1.6rem); font-style: italic; line-height: 1.4; font-weight: 600; }
    .services-pullquote blockquote::before { content: "\201C"; font-size: 4rem; color: var(--primary); display: block; line-height: 0.6; margin-bottom: 10px; }
    .services-pullquote cite { display: block; margin-top: 22px; font-size: 0.95rem; color: #bbb; font-style: normal; font-weight: bold; letter-spacing: 1px; text-transform: uppercase; }
    .quote-image-stack { flex: 1 1 320px; display: flex; flex-direction: column; gap: 20px; }
    .quote-image-stack img { width: 100%; height: 100%; flex: 1 1 0; min-height: 180px; object-fit: cover; border-radius: 10px; box-shadow: 0 10px 25px rgba(0,0,0,0.18); transition: transform 0.4s ease; }
    .quote-image-stack img:hover { transform: scale(1.02); }

    footer { background: var(--dark); color: #fff; padding: 80px 20px 40px; text-align: center; border-top: 5px solid var(--primary); }
    footer .areas { font-size: 0.95rem; color: #aaa; margin-top: 30px; line-height: 2; }
    
    /* MOBILE VIEW FIXES */
    @media(max-width: 768px) { 
        header { flex-direction: column; text-align: center; padding: 15px; }
        .brand-container { justify-content: center; margin-bottom: 10px; flex-wrap: wrap; }
        nav { justify-content: center; width: 100%; gap: 10px; }
        
        .hero { padding: 40px 20px 60px; text-align: center; gap: 30px; }
        .hero-content, .hero-image { flex: 1 1 100%; max-width: 100%; min-width: 100%; } 
        .hero-content h1 { font-size: clamp(2rem, 8vw, 2.5rem); word-wrap: break-word; } 
        
        .hero-buttons { justify-content: center; flex-direction: column; width: 100%; }
        .hero .big-cta { width: 100%; display: block; }
        
        .trust-banner { margin-top: 0; border-radius: 0; box-shadow: none; border-bottom: 1px solid #ddd; }
        
        .split-layout { gap: 30px; }
        .split-text, .split-image { flex: 1 1 100%; min-width: 100%; } 
        .split-text h3 { font-size: 1.5rem; }
        
        .filler-gallery { grid-template-columns: 1fr; gap: 20px; margin-bottom: 50px; }
        .filler-gallery img { height: 250px; }
        
        .form-container, .service-category { padding: 25px; margin: 20px 0; }

        .quote-with-images { gap: 20px; }
        .services-pullquote { flex: 1 1 100%; padding: 40px 25px; }
        .quote-image-stack { flex: 1 1 100%; flex-direction: row; }
        .quote-image-stack img { height: 200px; }
    }

/* GLOBAL MOBILE FIXES (May 13) */
@media(max-width: 768px) {
    /* Increase font size of service list items */
    .service-list li {
        font-size: 1.15rem;
        padding-left: 30px;
        margin-bottom: 12px;
        line-height: 1.4;
    }
    .service-list li::before {
        font-size: 1.15rem;
    }

    /* Removed span block from here, placed globally below */

    /* Shrink overly large images on mobile screens */
    .hero-image img, .promo-flyer {
        max-width: 75% !important;
        height: auto !important;
        margin: 0 auto !important;
        display: block !important;
    }
}

/* Global span block fix for all devices (Tablets/Desktops/Mobile) */
.contrast-wrap h2 span {
    display: block;
    margin-top: 10px;
}

/* ==========================================
   GOOGLE REVIEWS STYLING
   ========================================== */
.reviews-section {
    padding: 80px 20px;
    background: #F8F9FA;
    border-top: 1px solid #eee;
}
.reviews-wrap {
    max-width: 1100px;
    margin: 0 auto;
}
.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 45px;
    border-bottom: 3px solid var(--primary);
    padding-bottom: 20px;
}
.reviews-header-left h2 {
    font-size: 2.1rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 8px;
}
.reviews-meta-summary {
    display: flex;
    align-items: center;
    gap: 15px;
}
.reviews-rating-num {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark);
}
.reviews-stars {
    display: flex;
    gap: 2px;
}
.star-gold {
    color: #FFD700;
    font-size: 1.3rem;
}
.reviews-count {
    color: #666;
    font-size: 0.95rem;
}
.write-review-btn {
    background: var(--primary);
    color: #fff !important;
    text-decoration: none;
    padding: 12px 26px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.write-review-btn:hover {
    background: #e66000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.5);
}
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.review-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.06);
    padding: 30px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-color: rgba(255, 107, 0, 0.2);
}
.review-card.ai-summary-card {
    background: linear-gradient(135deg, #1A1A1A 0%, #2A2A2A 100%);
    color: #fff;
    border-top: 5px solid var(--primary);
    grid-column: span 1;
}
.review-card.ai-summary-card:hover {
    box-shadow: 0 12px 35px rgba(255, 107, 0, 0.15);
    border-color: var(--primary);
}
.review-card.ai-summary-card h3 {
    color: var(--primary);
    font-size: 1.25rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.ai-summary-badge {
    background: rgba(255, 107, 0, 0.15);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.ai-summary-list {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
}
.ai-summary-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #ddd;
}
.ai-summary-list li::before {
    content: "✦";
    position: absolute;
    left: 0;
    color: var(--primary);
}
.review-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}
.review-author-info {
    display: flex;
    align-items: center;
    gap: 12px;
}
.review-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    text-transform: uppercase;
}
.avatar-n { background: #3a86c8; }
.avatar-j { background: #4caf50; }
.avatar-a { background: #ff9800; }

.review-author-meta h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2px;
}
.review-author-meta span {
    font-size: 0.8rem;
    color: #777;
    display: block;
}
.google-icon-svg {
    width: 18px;
    height: 18px;
}
.review-card-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}
.review-date {
    font-size: 0.8rem;
    color: #888;
}
.review-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #444;
    flex-grow: 1;
}
.review-text.truncated {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 10px;
}
.read-more-review {
    background: none;
    border: none;
    color: var(--primary);
    font-weight: bold;
    font-size: 0.9rem;
    cursor: pointer;
    padding: 0;
    display: inline-block;
    margin-top: 5px;
    text-align: left;
}
.read-more-review:hover {
    text-decoration: underline;
}

/* Responsive styles for reviews */
@media(max-width: 992px) {
    .reviews-grid {
        grid-template-columns: 1fr 1fr;
    }
    .review-card.ai-summary-card {
        grid-column: span 2;
    }
}
@media(max-width: 600px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    .review-card.ai-summary-card {
        grid-column: span 1;
    }
    .reviews-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .write-review-btn {
        width: 100%;
        justify-content: center;
    }
}

