
        /* --- CORE DESIGN ENGINE VARIABLES (Hydrated by JSON) --- */
        :root {

            /* Brand Colors (The main thematic colors) */
            --color-primary: #8C6A50;       /* Old: --color-primary (Main accent/brand color) */
            --color-primary-dark: #4A3525;  /* Old: --color-primary-dark (Hover states/darker brand accents) */
            --color-primary-light: #FAF6F0; /* Old: --color-primary-light (Very soft brand background tint) */

            /* Neutrals (For structure, cards, borders, text, and backgrounds) */
            --color-text-main: #2C1A11;     /* Old: --color-text-main (Dark body text/headings) */
            --color-neutral-dark: #4A3525;  /* Secondary dark/muted text */
            --color-neutral-mid: #EADBC8;   /* Old: --color-neutral-mid (Borders, dividers, card backdrops) */
            --color-bg-main: #FAF6F0;       /* Old: --color-primary-light (Page background) */
            
            /* Utility & Highlights */
            --color-white: #FFFFFF;
            --color-accent: #F1C40F;        /* Old: --color-accent (Highlights, stars, alerts) */


            /* --color-text-main: #2C1A11;
            --color-primary-dark: #4A3525;
            --color-primary: #8C6A50;
            --color-neutral-mid: #EADBC8;
            --color-primary-light: #FAF6F0;
            --color-white: #FFFFFF;
            --color-accent: #F1C40F; */


            --font-display: 'Cormorant Garamond', serif;
            --font-body: 'Plus Jakarta Sans', sans-serif;
            --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            --max-width: 1200px;

            /* ... your colors ... */
            --font-body: 'Inter', sans-serif;
            --font-display: 'Inter', sans-serif;
        }

        /* --- BASE STYLES --- */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html, body {
            overflow-x: hidden;
            scroll-behavior: smooth;
            background-color: var(--color-primary-light);
            color: var(--color-text-main);
            font-family: var(--font-body);
            line-height: 1.6;
        }

        .container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 2rem;
        }

        .section-padding {
            padding: 6rem 0;
        }

        .text-center {
            text-align: center;
        }

        .section-title {
            font-family: var(--font-display);
            font-size: 3rem;
            color: var(--color-text-main);
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: var(--color-primary);
            max-width: 600px;
            margin: 0 auto 4rem auto;
            font-weight: 400;
        }

        /* --- UI COMPONENTS --- */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 1rem 2.25rem;
            font-size: 0.95rem;
            font-weight: 600;
            text-decoration: none;
            border-radius: 50px;
            transition: var(--transition-smooth);
            cursor: pointer;
            border: none;
            gap: 0.5rem;
        }

        .btn-primary {
            background-color: var(--color-text-main);
            color: var(--color-primary-light);
        }

            .btn-primary:hover {
                background-color: var(--color-primary);
                transform: translateY(-2px);
                box-shadow: 0 10px 20px rgba(74, 53, 37, 0.15);
            }

        .btn-secondary {
            background-color: transparent;
            color: var(--color-text-main);
            border: 2px solid var(--color-text-main);
        }

            .btn-secondary:hover {
                background-color: var(--color-text-main);
                color: var(--color-primary-light);
                transform: translateY(-2px);
            }

        /* Update this in style.css if your content sections are hidden! */
        main-section {
            display: block !important;
            opacity: 1 !important;
            visibility: visible !important;
            }

            main-section.active {
                display: block;
                opacity: 1;
                transform: translateY(0);
            }

        /* --- BRAND BRANDING LOGO COMPONENT --- */
        /* 1. This forces the logo image and text to sit side-by-side in a row */
        .brand-logo {
            display: flex !important;
            flex-direction: row !important;
            align-items: center !important;
            gap: 0px !important; /* Perfect breathing room right next to thistle wings */
            text-decoration: none !important;

            /* 1. Prevents the entire logo link block from compressing */
            flex-shrink: 0 !important;
        }

        .logo-text {
            display: flex !important;
            flex-direction: column !important;
            text-transform: none !important; /* Breaks the uppercase lock cleanly */
            text-align: left !important;
            margin-left: -45px !important; /* Gives just a hair of breathing room (change to 0px if you want literal zero contact) */
        
            /* 2. FORCES the text wrapper to remain on a single horizontal line */
            white-space: nowrap !important;
            flex-shrink: 0 !important;
        }

        #lbl-logo-main {
            font-family: 'Inter', sans-serif !important;
            font-size: 1.5rem !important;
            font-weight: 700 !important;
            color: var(--color-primary-dark) !important;
            /*color: #2563EB !important; /* Electric Blue */
            text-transform: none !important;
            line-height: 1.1 !important;
        }

        #lbl-logo-sub {
            font-family: 'Inter', sans-serif !important;
            font-size: 0.8rem !important;
            font-weight: 500 !important;
            color: var(--color-primary) !important;
            text-transform: none !important;
            margin-top: 1px !important;
        }






        


        /* --- HEADER NAVIGATION --- */
        .header-sticky {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background-color: rgba(250, 246, 250, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            z-index: 1000;
            border-bottom: 1px solid rgba(74, 53, 37, 0.06);
            transition: var(--transition-smooth);
        }

        .nav-container {
            display: flex !important;
            flex-direction: row !important;
            align-items: center !important;
            justify-content: space-between !important; /* Forces Logo Left, Menu Right */
            width: 100%;
        }

        .nav-menu {
            display: flex !important;
            gap: 20px;
            list-style: none;
            margin: 0;
            padding: 0;
    
            /* Allows links to stay horizontal and hide if they run out of room */
            flex-wrap: nowrap !important; 
            overflow: hidden !important;
        }

        .nav-link {
            text-decoration: none;
            color: var(--color-primary-dark);
            font-size: 0.95rem;
            font-weight: 500;
            position: relative;
            padding: 0.5rem 0;
            transition: var(--transition-smooth);
        }

            .nav-link:hover {
                color: var(--color-text-main);
            }

            .nav-link::after {
                content: '';
                position: absolute;
                bottom: 0;
                left: 0;
                width: 0;
                height: 2px;
                background-color: var(--color-primary);
                transition: var(--transition-smooth);
            }

            .nav-link.active {
                color: var(--color-text-main);
                font-weight: 600;
            }

                .nav-link.active::after {
                    width: 100%;
                }







        /* --- HERO AREA --- */

        /*SKSK07/06/26 ADDED code below for transitional hero panel*/
        .hero-section {
            position: relative;
            height: 100vh;
            min-height: 750px;
            display: flex;
            align-items: center;
            color: var(--color-white);
            background-repeat: no-repeat;
            background-position: center center;
            background-size: cover;
            overflow: hidden;
        }

        /* NEW: The overlapping layer that handles the buttery smooth cross-fade */
        .hero-bg-secondary {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-repeat: no-repeat;
            background-position: center center;
            background-size: cover;
            opacity: 0;
            transition: opacity 1.5s ease-in-out; /* Control the cross-fade speed here! */
            z-index: 1;
        }

        /* The master cross-fade keyframe loop */
        @keyframes heroFadeLoop {
            0% {
                opacity: 1; 
                filter: brightness(1);
            }

            8% {
                opacity: 0.1;
                filter: brightness(0.6);
            }
            /* Smooth dip down to swap image */
            20% {
                opacity: 1;
                filter: brightness(1);
            }
            /* Fades back up into full glory */
            100% {
                opacity: 1;
                filter: brightness(1);
            }
        }

        /*SKSK08/06/26 ADDED code below*/
        /* Smoothly handles the text dip during image transitions */
        .hero-content {
            transition: opacity 1.0s ease-in-out, transform 1.0s ease-in-out;
            opacity: 1; /* Ensure base state is fully visible */
        }

        .hero-content.fade-out {
            opacity: 0 !important;
            transform: translateY(-30px); /* Gives it a slight upward float as it vanishes */
        }


        .hero-logo-box {
            display: inline-flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            gap: 1rem;
            margin-bottom: 2rem;
        }

            .hero-logo-box .logo-text {
                color: var(--color-white);
            }

                .hero-logo-box .logo-text span {
                    color: var(--color-neutral-mid);
                }

        /* --- CLEANED HERO TYPOGRAPHY TIMELINES --- */
        .hero-title {
            font-family: var(--font-display);
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            font-weight: 700;
            color: var(--color-white);
            margin-bottom: 1.5rem;
            line-height: 1.1;
            letter-spacing: -0.02em;
            /* Removed the blocking hardcoded CSS keyframe animation */
        }

        .hero-desc {
            font-family: var(--font-sans);
            font-size: clamp(1.1rem, 2vw, 1.35rem);
            color: rgba(255, 255, 255, 0.8);
            max-width: 650px;
            margin: 0 auto 2.5rem auto;
            line-height: 1.6;
            font-weight: 300;
            /* Removed the blocking hardcoded CSS keyframe animation */
        }
        .hero-actions {
            display: flex;
            gap: 1rem;
        }

            .hero-actions .btn-secondary {
                color: var(--color-white);
                border-color: var(--color-white);
            }

                .hero-actions .btn-secondary:hover {
                    background-color: var(--color-white);
                    color: var(--color-text-main);
                }






        /* --- HIGHLIGHT ROW --- */
        .quick-highlights {
            background-color: var(--color-neutral-mid);
            padding: 3rem 0;
        }

        .highlights-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem;
        }

        .highlight-item {
            display: flex;
            gap: 1rem;
            align-items: flex-start;
        }

        .highlight-icon {
            background: var(--color-white);
            padding: 0.75rem;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 10px rgba(74, 53, 37, 0.05);
            color: var(--color-text-main);
        }

        .highlight-text h4 {
            font-size: 1.1rem;
            margin-bottom: 0.25rem;
            color: var(--color-text-main);
        }

        .highlight-text p {
            font-size: 0.9rem;
            color: var(--color-primary-dark);
        }

        /* --- SOCIAL PROOF REVIEWS ROW --- */
        .reviews-section {
            background-color: var(--color-white);
            padding: 6rem 0;
        }

        .google-summary-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            background: var(--color-primary-light);
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            margin-bottom: 1.5rem;
            border: 1px solid rgba(74, 53, 37, 0.05);
        }

        .google-g-icon {
            width: 20px;
            height: 20px;
        }

        .reviews-rating-stars {
            color: var(--color-accent);
            letter-spacing: 2px;
            font-weight: bold;
        }

        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 2rem;
        }

        .review-card {
            background: var(--color-primary-light);
            border-radius: 20px;
            padding: 2rem;
            border: 1px solid rgba(74, 53, 37, 0.04);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transition: var(--transition-smooth);
        }

            .review-card:hover {
                transform: translateY(-4px);
                box-shadow: 0 15px 30px rgba(74, 53, 37, 0.04);
            }

        .review-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
        }

        .reviewer-info {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .reviewer-avatar {
            width: 40px;
            height: 40px;
            background: var(--color-neutral-mid);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.9rem;
            color: var(--color-text-main);
        }

        .reviewer-name {
            font-size: 0.95rem;
            font-weight: 600;
        }

        .reviewer-meta {
            font-size: 0.75rem;
            color: var(--color-primary);
        }

        .review-text {
            font-size: 0.95rem;
            color: var(--color-primary-dark);
            font-style: italic;
            line-height: 1.5;
        }

        /* --- ABOUT ENGINE LAYOUT --- */
        .about-layout {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 4rem;
            align-items: center;
        }

        .about-story {
            padding-right: 2rem;
        }

            .about-story h3 {
                font-family: var(--font-display);
                font-size: 2.5rem;
                margin-bottom: 1.5rem;
            }

        #container-about-paragraphs {
            /* 1. Limit the text width so lines don't stretch too wide */
            max-width: 750px !important;
            
            /* 2. Center the entire container perfectly in the middle of the page */
            margin: 0 auto !important;
            
            /* 3. Add internal padding so it breathes away from the edge on mobile phones */
            padding: 0 20px !important;
            
            /* 4. Optional but recommended: Add spacious padding between the paragraphs */
            display: flex !important;
            flex-direction: column !important;
            gap: 1.5rem !important;
        }

        .about-p {
            margin-bottom: 1.5rem;
            color: var(--color-primary-dark);
        }

        .features-box {
            background-color: var(--color-white);
            border-radius: 24px;
            padding: 3rem;
            box-shadow: 0 20px 40px rgba(74, 53, 37, 0.03);
            border: 1px solid rgba(74, 53, 37, 0.04);
        }

        .feature-row {
            display: flex;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

            .feature-row:last-child {
                margin-bottom: 0;
            }

        .feature-badge {
            font-size: 2rem;
            line-height: 1;
        }

        .feature-info h4 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            color: var(--color-text-main);
        }

        .feature-info p {
            font-size: 0.95rem;
            color: var(--color-primary-dark);
        }

        /* --- GRID CONTAINER CARDS --- */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }

        .service-card {
            background-color: var(--color-white);
            border-radius: 20px;
            padding: 2.5rem 2rem;
            text-align: center;
            transition: var(--transition-smooth);
            border: 1px solid rgba(74, 53, 37, 0.03);
            position: relative;
            overflow: hidden;
        }

            .service-card::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 4px;
                background-color: var(--color-neutral-mid);
                transition: var(--transition-smooth);
            }

            .service-card:hover {
                transform: translateY(-8px);
                box-shadow: 0 20px 30px rgba(74, 53, 37, 0.06);
            }

                .service-card:hover::before {
                    background-color: var(--color-primary);
                }

        .service-emoji {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            display: inline-block;
            transition: var(--transition-smooth);
        }

        .service-card:hover .service-emoji {
            transform: scale(1.15) rotate(5deg);
        }

        .service-card h3 {
            font-size: 1.25rem;
            color: var(--color-text-main);
            font-weight: 600;
        }

        /* --- SYSTEM CONNECTIONS --- */
        .contact-card {
            max-width: 700px;
            margin: 0 auto;
            background-color: var(--color-white);
            border-radius: 32px;
            padding: 4rem;
            text-align: center;
            box-shadow: 0 30px 60px rgba(74, 53, 37, 0.04);
            border: 1px solid rgba(74, 53, 37, 0.02);
        }

        .contact-icon-wrap {
            width: 80px;
            height: 80px;
            background-color: var(--color-primary-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 2rem auto;
            color: var(--color-primary);
        }

        .contact-card h3 {
            font-family: var(--font-display);
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .contact-card p {
            color: var(--color-primary-dark);
            max-width: 480px;
            margin: 0 auto 2.5rem auto;
            font-size: 1.05rem;
        }

        .info-strip {
            display: flex;
            justify-content: center;
            gap: 3rem;
            margin-top: 3rem;
            padding-top: 2.5rem;
            border-top: 1px solid rgba(74, 53, 37, 0.08);
        }

        .info-chunk h5 {
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--color-primary);
            margin-bottom: 0.25rem;
        }

        .info-chunk p {
            font-size: 1rem;
            color: var(--color-text-main);
            margin: 0;
            font-weight: 500;
        }

        /* --- FOOTER REGION --- */
        .footer {
            background-color: var(--color-text-main);
            color: var(--color-primary-light);
            padding: 4rem 0 3rem 0;
            margin-top: auto;
            border-top: 1px solid rgba(255,255,255,0.05);
        }

        .footer-grid {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: none !important;
            padding-bottom: 0 !important;
            margin-bottom: 2.5rem;
        }

        .footer-brand h4 {
            font-family: var(--font-display);
            font-size: 1.6rem;
            margin-bottom: 0.25rem;
        }

        .footer-brand p {
            font-size: 0.85rem;
            opacity: 0.6;
        }

        .footer-meta {
            text-align: right;
            font-size: 0.9rem;
        }

            .footer-meta a {
                color: var(--color-neutral-mid);
                text-decoration: none;
                transition: var(--transition-smooth);
            }

                .footer-meta a:hover {
                    color: var(--color-white);
                }

        .copyright {
            font-size: 0.8rem;
            opacity: 0.4;
            text-align: center;
        }

        /* Master container splits the space 50/50 on desktop screens */
.contact-grid-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 3rem; /* Creates a nice generous space between text and map */
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 20px;
    
}

/* Ensure each column takes up equal half width */
.contact-details-col, 
.contact-map-col {
    flex: 1;
    width: 50%;
    
}

.contact-item {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}


        /* --- SCALING DISPLAYS --- */
        @keyframes fadeInStack {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 1024px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .reviews-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .about-layout {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .about-story {
                padding-right: 0;
            }
        }

    /* =========================================================================
   MASTER ALL-IN-ONE MOBILE RESPONSIVE UMBRELLA (768px and down)
   ========================================================================= */
    @media (max-width: 768px) {
    
    /* --- 1. Fix the Header & Navigation Layout --- */
    .nav-container {
        height: auto !important; 
        padding: 12px 10px !important;
        display: flex !important;
        flex-direction: column !important; 
        align-items: center !important;
        justify-content: center !important;
        gap: 0.5rem !important;
    }

    .nav-menu {
        display: flex !important;
        flex-direction: row !important; 
        justify-content: center !important;
        flex-wrap: wrap !important; 
        gap: 1rem !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        padding: 4px 0 !important;
    }

    /* Generous buffer space so the hero content starts completely below the menu */
    .nav-buffer {
        height: 130px !important;
    }

    /* --- 2. Fix Hero Container & Force Auto-Wrapping --- */
    .hero-section {
        padding: 3rem 0 4rem 0 !important; 
        min-height: auto !important;
        height: auto !important;
        background-size: 100% cover  !important; 
        background-position: center center !important;
        background-repeat: no-repeat !important;
        overflow: hidden !important; 
        width: 100% !important;
        max-width: 100% !important;
    }

    .hero-content {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        padding: 0 20px !important; 
        box-sizing: border-box !important; 
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }

    /* Overpowers any desktop IDs forcing the glass pill to stay visible */
    .hero-section #hero-logo-box,
    .hero-section #hero-logo-pill,
    .hero-section .hero-logo-box,
    div[class*="hero-logo-box"] {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        height: 0 !important;
        width: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
        overflow: hidden !important;
        position: absolute !important;
    }
    
    
    


    
    /* --- 3. Scale & Snap Typography Within Screen Boundaries --- */
    .hero-title, #lbl-hero-title {
        font-size: 1.65rem !important; /* Optimized sweet spot for long sentences on mobile */
        line-height: 1.3 !important;
        margin-top: 9rem !important;
        margin-bottom: 1rem !important;
        width: 100% !important;
        max-width: 100% !important;
        white-space: normal !important; /* Prevents text from forcing its way onto a single line */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }

    .hero-desc, #lbl-hero-desc {
        font-size: 0.95rem !important; 
        line-height: 1.5 !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 5px !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    /* --- 4. Action Buttons --- */
    .hero-actions {
        display: flex !important;
        flex-direction: column !important; 
        gap: 12px !important;
        width: 100% !important;
        max-width: 260px !important; 
        margin: 1.5rem auto 0 auto !important;
    }

    .hero-actions .btn {
        width: 100% !important;
        text-align: center !important;
    }

    /* --- 5. Base Structural Layouts --- */
    .section-title {
        font-size: 2.4rem !important;
    }

    .highlights-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    .info-strip {
        flex-direction: column !important;
        gap: 1.5rem !important;
    }

    .footer-grid {
        flex-direction: column !important;
        text-align: center !important;
        gap: 1.5rem !important;
    }

    .footer-meta {
        text-align: center !important;
    }
               
    .contact-card {
        padding: 2.5rem 1.5rem !important;
    }

    .about-layout {
        display: flex !important;
        flex-direction: column !important; 
        gap: 2rem !important;
    }

    #container-about-paragraphs {
        padding: 0 15px !important; 
    }


    /* Mobile Override: Stacks the columns vertically on top of each other */
    .contact-grid-container {
        flex-direction: column !important;
        gap: 1.5rem !important;
        text-align: center !important;
    }

    .contact-details-col, 
    .contact-map-col {
        width: 100% !important;
    }

    .contact-map-col iframe {
        height: 250px !important; /* Makes it slightly more compact on phone displays */
    }

    .contact-section {
    padding-top: 4rem;
    padding-bottom: 1.5rem !important; /* Shrings the dead space beneath the map card */
    }



    /* =========================================================================
       End of the Mobile Media Query
       ========================================================================= */
    } /* <-- This bracket closes the mobile media query cleanly! */

    /* --- Keep the baseline desktop buffer outside the media query --- */
    .nav-buffer {
        height: 90px;
        display: block;
    }

    /* ==========================================================================
       COPPERWHEATS FAQ SECTION (GLOBAL ACCORDION ENGINE)
       ========================================================================== */

    .faq-section {
        padding: 5rem 2rem !important;
        background-color: #faf6f0 !important; /* Matches clean tan layout background */
        width: 100% !important;
        box-sizing: border-box !important;
        display: block !important;
    }

    /* Force the container to wrap tight and center itself on desktop views */
    .faq-container {
        max-width: 1050px !important; /* Caps width so it never stretches out of control */
        margin: 0 auto !important; /* Centers it perfectly horizontally */
        padding: 0 1.5rem !important;
        box-sizing: border-box !important;
        display: block !important;
    }

    /* Force the main FAQ title to look balanced */
    .faq-container h2 {
        text-align: center !important;
        font-size: 2.5rem !important;
        color: #4a3b32 !important;
        margin-top: 0 !important;
        margin-bottom: 1rem !important;
    }

    /* Center and beautifully pad the subtitle text block */
    .faq-subtitle {
        color: #6e5d4f !important;
        font-size: 1.1rem !important;
        line-height: 1.6 !important;
        text-align: center !important;
        max-width: 600px !important;
        margin: 0 auto 4rem auto !important;
    }

    /* Base grid settings (stacks on mobile, switches to columns on laptop) */
    .faq-grid {
        display: grid !important;
        grid-template-columns: 1fr !important; /* Single column layout for mobile */
        gap: 1.5rem !important;
        align-items: start !important;
        text-align: left !important;
        width: 100% !important;
    }

    /* Update your .faq-item card wrapper */
    .faq-item {
        background: #ffffff !important;
        border-radius: 12px !important;
        box-shadow: 0 4px 12px rgba(0,0,0,0.03) !important;
        border: 1px solid rgba(110, 93, 79, 0.05) !important;
        margin-bottom: 0 !important;
        overflow: hidden !important;
        transition: all 0.3s ease !important;
        display: block !important;
    }

    /* Style the clickable question bar */
    .faq-question {
        padding: 1.5rem !important;
        color: #4a3b32 !important;
        font-size: 1.15rem !important;
        font-weight: 600 !important;
        cursor: pointer !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        list-style: none !important;
        user-select: none !important;
    }

    /* Hides default browser triangles */
    .faq-question::-webkit-details-marker {
        display: none !important;
    }

    /* Style the hidden answer box container */
    .faq-answer-content {
        padding: 0 1.5rem 1.5rem 1.5rem !important;
        border-top: 1px solid rgba(110, 93, 79, 0.03) !important;
        display: block !important;
    }

    .faq-answer {
        color: #555555 !important;
        margin: 0 !important;
        line-height: 1.6 !important;
        font-size: 1rem !important;
    }

    /* Style the toggle icon */
    .faq-icon {
        font-size: 1rem !important;
        color: #8c6a50 !important;
        transition: transform 0.3s ease !important;
        padding-left: 1rem !important;
    }

    /* --- CLICK INTERACTIVE STATES --- */
    .faq-item[open] {
        box-shadow: 0 6px 16px rgba(140, 106, 80, 0.08) !important;
        border-color: rgba(140, 106, 80, 0.2) !important;
    }

    .faq-item[open] .faq-icon {
        transform: rotate(45deg) !important;
        color: #2c1a11 !important;
    }

    /* --- LAPTOP SCREEN RESPONSIVE UPGRADE --- */
    @media screen and (min-width: 768px) {
        .faq-grid {
            grid-template-columns: 1fr 1fr !important; /* Beautiful side-by-side layout on laptops! */
            gap: 2rem !important;
        }
    }

    /* Default for Mobile / Tablets: Center everything smoothly */
    @media (max-width: 768px) {
        .contact-details-col a.btn {
            margin-left: auto !important;
            margin-right: auto !important;
        }
    }

    /* Laptop mode: Force text inside buttons to stay centered */
    .contact-details-col a.btn {
        justify-content: center !important;
        text-align: center !important;
    }

    
    /* NEW: TripAdvisor Hover State (Slightly darker vibrant green) */
    .contact-details-col a.btn-tripadvisor:hover {
        background-color: #2bc48c !important;
        border-color: #2bc48c !important;
        color: #000000 !important;
    }

    /* Strip interactive "button" behavior from services cards */
    .service-card {
        cursor: default !important; /* Removes the clickable hand pointer */
        pointer-events: none;      /* Disables any click/tap states entirely */
        transform: none !important; /* Stops the card from lifting up on hover */
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03) !important; /* Softens shadow so it doesn't look like a button */
        transition: none !important; /* Removes transition animations */
    }

    

    

    /* The Direction button on Contacts page */
    /* Container layout */
    .contact-map-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%; /* Ensures container fills available column space */
    }

    /* Full-width justified button */
    .directions-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px; /* Space between icon and text */
    width: 100%; /* Spans exact width of the map above */
    box-sizing: border-box; /* Prevents border padding overflow */
    padding: 12px 16px;
    
    }
  
    


    /* Container for copyright + ad */
    .footer-ad-container {
        margin-top: 2rem;
        padding-top: 1.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.15);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.2rem;
    }

    .footer-copyright-text {
        font-size: 0.85rem;
        opacity: 0.75;
    }





    /* ################################################# */
    /* ####### BEGINNING OF Promotional Ad Card ######## */
    /* ################################################# */
    .largs-ad-banner {
        width: 100%;
        max-width: 850px;
        background: transparent;
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 12px;
        padding: 10px 18px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
        transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .largs-ad-banner:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
    }

    .largs-ad-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        text-decoration: none;
        color: #ffffff;
        gap: 0px;
        flex-wrap: wrap;
    }

    /* Logo Styling */
    .largs-logo {
        height: 140px;
        width: auto;
        object-fit: contain;
        margin-bottom: 0px; /* Negative margin pulls the text UP towards the icon */
        margin-right: -80px;  /* Pulls text horizontally closer on desktop */
        display: block;
    }

    /* Optional: Slight zoom effect on hover */
    .largs-ad-banner:hover .largs-logo {
        transform: scale(1.15);
    }

    /* Text Block */
    .largs-ad-text {
        display: flex;
        flex-direction: column;
        flex: 1;
        min-width: 180px;
        margin-top: 0;
        padding-top: 0;
    }

    .largs-tag {
        font-size: 0.72rem;
        text-transform: uppercase;
        letter-spacing: 0.8px;
        color: #3b82f6; /* Accent blue */
        font-weight: 700;
        margin-bottom: 2px; /* Keeps tag right next to title */
    }

    .largs-title {
        font-size: 0.9rem;
        font-weight: 600;
        margin-top: 0;
    }

    /* Price Badge */
    .largs-price-tag {
        background: rgba(255, 255, 255, 0.1);
        padding: 5px 12px;
        border-radius: 20px;
        font-size: 0.85rem;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .largs-price-tag strong {
        color: #22c55e; /* Green price text */
        font-size: 1rem;
    }

    /* Stacked Action Group Container */
    .largs-action-group {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 6px; /* 6px vertical gap between price and button */
    }

    /* CTA Button */
    .largs-btn {
        background: #2563eb;
        color: #ffffff;
        padding: 6px 14px;
        border-radius: 6px;
        font-size: 0.82rem;
        font-weight: 600;
        margin-top: 2px;
        display: inline-block;
        transition: background 0.2s;
    }

    .largs-ad-banner:hover .largs-price-tag {
        background: #1d4ed8;
    }

    .copyright,
    .footer-ad-container,
    #lbl-footer-copyright {
        border-top: none !important;
        border-bottom: none !important;
        padding-top: 1rem !important; /* Adjust padding for clean spacing */
    }


    /* Mobile Responsive Styling for Largs Web Design Ad */
    @media (max-width: 768px) {
        .largs-ad-link {
            flex-direction: column;
            text-align: center;
            align-items: center;
            gap: 0px; /* Reduced from 14px to eliminate mobile gap */
        }

        .largs-logo {
            height: 110px; /* Scaled down slightly on mobile so it doesn't overpower */
            margin-bottom: -10px; /* Negative margin to pull mobile text right up under the thistle */
            margin-right: 0;
        }

        .largs-ad-text {
            align-items: center;
            text-align: center;
            margin-bottom: 12px; /* Adds space before the price tag */
        }

        .largs-action-group {
            width: 100%;
            max-width: 220px;
            align-items: center;
        }

        .largs-price-tag {
            width: 100%;
            text-align: center;
        }

        .largs-btn {
            width: 100%;
        }
    }

    /* ########################################### */
    /* ####### END OF Promotional Ad Card ######## */
    /* ########################################### */




    /* =========================================================================
    +++++++++++ Beginning of COPPERWHEATS GIFTS & SOUVENIRS GRID +++++++++++++++
    ========================================================================== */

.gifts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.gift-card {
    background: var(--color-white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(74, 53, 37, 0.06);
    box-shadow: 0 4px 12px rgba(74, 53, 37, 0.04);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gift-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(74, 53, 37, 0.1);
}





/* Image Wrapper & Zoom Effect */
/* 1. Outer container: holds the white space and centers content */
.gift-image-wrap {
  position: relative;
  width: 100%;
  height: 250px;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center; /* Keeps the photo centered in the card */
  overflow: hidden;
  border-radius: 8px 8px 0 0;
}

/* 2. Inner wrapper: MUST shrink-wrap to the image width */
.img-badge-box {
  position: relative;
  display: inline-block; /* 🌟 Crucial: shrink-wraps horizontally to exact photo width */
  max-width: 100%;
  max-height: 100%;
  margin: 0 auto;        /* Ensures it centers inside flex container */
}

/* 3. Image inside */
.gift-image {
  display: block;        /* Removes inline space under images */
  max-width: 100%;
  max-height: 250px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* 4. Badge pinned relative to .img-badge-box */
.gift-badge {
  position: absolute;
  top: 8px;
  left: 8px;            /* Locks to 8px inside the top-left corner of the photo */
  z-index: 5;
  
  /* Styling */
  background: var(--color-text-main);
  color: var(--color-primary-light);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  padding: 4px 10px;
  border-radius: 30px;
  pointer-events: none;
}

.gift-card:hover .gift-image {
    transform: scale(1.06);
}


/* Card Body Content */
.gift-details {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.gift-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--color-text-main);
    margin-bottom: 0.5rem;
}

.gift-desc {
    font-size: 0.9rem;
    color: var(--color-primary-dark);
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

/* Card Footer: Price & Action */
.gift-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid rgba(74, 53, 37, 0.08);
}

.gift-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text-main);
}

.gift-buy-btn {
    padding: 0.6rem 1.25rem !important;
    font-size: 0.85rem !important;
    border-radius: 25px !important;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .gifts-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gift-image-wrap {
        height: 200px;
    }


    
}


/* --- IMAGE LIGHTBOX MODAL --- */
.image-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(5px);
  z-index: 999999; /* Sit on top of everything */
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.modal-content {
  /* 🌟 Tell it to stretch to 70% of the screen width/height, but max out at 85% */
  width: 70vw; 
  height: auto;
  max-width: 85vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
  cursor: default;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: var(--color-white);
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  user-select: none;
}

.modal-close:hover {
  color: #dddddd;
}

    /* ########################################### */
    /* ######### END OF Gifts Page CSS ########### */
    /* ########################################### */





    /* ########################################### */
    /* ######## BEGIN OF Gifts Summary Bar CSS ######### */
    /* ########################################### */
    /* Floating Bottom Summary Bar */
    /* Ensure the bar floats fixed above all other page layers */
    /* Base floating bar styles */
    #reservation-summary-bar {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        max-width: 600px;
        background-color: #ffffff;
        color: #222222;
        border-radius: 12px;
        padding: 16px 24px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
        z-index: 99999;
        
        /* Smooth visibility transitions */
        display: block; 
        opacity: 1;
        visibility: visible;
        transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    }

    /* Hidden state: Hide gracefully using opacity & pointer-events */
    #reservation-summary-bar.hidden {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translate(-50%, 20px); /* Slightly slides down when hiding */
    }

    /* Flex layout for the content inside */
    .reservation-bar-content {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 15px !important;
    }

    /* Info Section */
    .reservation-info {
    display: flex;
    align-items: center;
    gap: 12px;
    }

    .reservation-badge {
    background-color: var(--color-text-main, #222);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.9rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    }

    .reservation-text {
    display: flex;
    flex-direction: column;
    }

    .reservation-title {
    font-size: 0.95rem;
    color: var(--color-text-main, #222);
    }

    .reservation-subtitle {
    font-size: 0.75rem;
    color: #666;
    }

    /* Actions Section */
    .reservation-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    }

    .reservation-total-box {
    text-align: right;
    }

    .total-label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    color: #777;
    }

    .total-amount {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--color-text-main, #222);
    }

    /* Itemized Preview List */
    .reservation-items-preview {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #eee;
    max-height: 180px;
    overflow-y: auto;
    }

    /* .reservation-items-preview.hidden {
    display: none;
    } */

    .reserved-list {
    list-style: none;
    padding: 0;
    margin: 8px 0 0 0;
    }

    /* List preview styling */
    #reserved-items-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 10px 0 0 0 !important;
    }

    .reserved-item-row {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 6px 0 !important;
    border-bottom: 1px solid #eee !important;
    }

    .remove-item-btn {
    background: none;
    border: none;
    color: #d9534f;
    cursor: pointer;
    font-weight: bold;
    padding: 0 5px;
    }

    


    /* ########################################### */
    /* ######## END OF Gift Summary Bar CSS ######### */
    /* ########################################### */