/* GLOBAL FULL WIDTH FIX */
.container,
.container-sm,
.container-md,
.container-lg,
.container-xl,
.container-xxl {
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/********** Template CSS **********/
:root {
    --primary: #6222CC;
    --secondary: #FBA504;
    --light: #F6F4F9;
    --dark: #04000B;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}
/* WhatsApp button positioned above Back to Top */
.whatsapp-float {
    position: fixed;
    right: 45px;        /* same as back-to-top */
    bottom: 45px;     /* stacked above it */
    z-index: 99;

    background-color: #25D366;
    border-color: #25D366;
     display: none; 
}

.whatsapp-float:hover {
    background-color: #1ebe5d;
    border-color: #1ebe5d;
}


/*** Heading ***/
h1,
h2,
.fw-bold {
    font-weight: 700 !important;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 600 !important;
}

h5,
h6,
.fw-medium {
    font-weight: 500 !important;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, .5);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}

/* Default desktop padding */
.about-page .sticky-container {
    padding-top: 68px; /* keep as is for desktop and larger screens */
}

/* Mobile screens only */
@media (max-width: 576px) {
    .about-page .sticky-container {
        padding-top: 5px; /* reduce padding for mobile */
    }
}
/* Product page spacing below navbar */
body.product-page .wd-p-section-wrapper {
    padding-top: 95px !important; /* desktop */
}

@media (max-width: 576px) {
    body.product-page .wd-p-section-wrapper {
        padding-top: 70px !important; /* mobile */
    }
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f067";
    font-family: "Font Awesome 5 Free";
    font-size: 10px;
    font-weight: bold;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    font-family: 'Jost', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--light) !important;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--secondary) !important;
}

.navbar-light .navbar-brand h1 {
    color: #FFFFFF;
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--dark) !important;
    }

    .navbar-light .navbar-brand h1 {
        color: var(--primary);
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .1);
        z-index: 999;
    }
    
    .sticky-top.navbar-light {
        position: fixed;
        background: #FFFFFF;
    }

    .sticky-top.navbar-light .navbar-brand h1 {
        color: var(--primary);
    }

    .navbar-light .navbar-nav .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }

    .navbar-light .btn {
        color: var(--dark);
        background: #FFFFFF;
    }

    .sticky-top.navbar-light .btn {
        color: var(--dark);
        background: var(--secondary);
    }
}


/* NEW CSS */

/* --- Navbar & Logo --- */
/* --- Logo Switch Fix --- */
.logo-scroll {
    display: none;
}

/* When navbar is scrolled */
.navbar.navbar-scrolled .logo-hero {
    display: none;
}

.navbar.navbar-scrolled .logo-scroll {
    display: inline-block;
}

.custom-logo {
    height: 25px !important; 
    width: auto;
    transition: .5s;
}

/* Navbar "Get Started" Rectangle Styling & Hover */
.navbar .btn {
    border-radius: 0 !important; /* Forces perfect rectangle corners */
    transition: all 0.4s ease; /* Smooth transition for hover */
}

.navbar .btn:hover {
    background-color: #f1f1f1 !important; /* Light grey shift on hover */
    color: #333 !important; /* Darker text for contrast */
    transform: translateY(-2px); /* Slight lift effect */
}

/* --- Hero Section Height & Wave --- */
.hero-header {
    position: relative;
    padding: 0;
    /* Height at 120vh keeps curve hidden below the screen fold */
    height: 120vh; 
    min-height: 120vh; 
    display: flex;
    align-items: center;
    overflow: hidden;
    /* Black background prevents purple flash during transitions */
    background: #000000; 
}

/* --- Carousel Background Scaling --- */
#heroCarousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#heroCarousel .carousel-inner, 
#heroCarousel .carousel-item, 
#heroCarousel img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/* --- The Black Shade Overlay & Exact Curvy Wave --- */
.hero-header::before {
    content: "";
    position: absolute;
    inset: 0;
    /* Dark shade for better text readability */
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.2));
    /* Pins curvy wave to the bottom of the section */
    background-image: url('../img/bg-bottom.png'); 
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: 100% auto;
    z-index: 2;
}
.hero-title span {
  display: block;
}
.hero-title {
    max-width: 720px;   /* controls wrapping */
    line-height: 1.15;
}

.hero-title .line-1,
.hero-title .line-2 {
    white-space: nowrap;
}

@media (max-width: 991px) {
    .hero-title {
        max-width: 100%;
    }

    .hero-title .line-1,
    .hero-title .line-2 {
        white-space: normal;
    }
}
/* --- Optimized Mobile Sticky Navbar --- */
@media (max-width: 991.98px) {
    .navbar {
        position: fixed !important; /* Fixed works better than sticky for mobile browsers */
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1050; 
        background-color: #ffffff !important; 
        box-shadow: 0 2px 15px rgba(0,0,0,0.1); /* Adds depth */
        padding: 15px 15px !important;
    }

    /* Force the Green Logo to show and White to hide */
    .logo-hero {
        display: none !important;
    }
    .logo-scroll {
        display: inline-block !important;
    }
    
    .custom-logo {
        height: 25px !important; /* Made slightly larger for better mobile branding */
    }

    /* PREVENT OVERLAP: Push the Hero section down so the navbar doesn't cover the title */
    .hero-header {
        margin-top: 60px; /* Adjust this to match your navbar height */
        height: calc(100vh - 60px); 
    }

  
   
}
/* --- Navbar Scaling for Ultra-Wide Screens --- */
@media (min-width: 1600px) {
    /* 1. Increase the overall height of the navbar for better presence */
    .navbar {
        padding: 25px 8% !important; /* Matches the 8% breathing room we added to the products */
    }

    /* 2. Scale the Logo */
    .custom-logo {
        height: 45px !important; /* significantly larger on big screens */
    }

    /* 3. Scale the Navigation Links */
    .navbar-nav .nav-link {
        font-size: 1.25rem !important; /* Approx 22px */
        font-weight: 500;
        margin-left: 25px !important; /* More space between menu items */
        letter-spacing: 1px;
    }

    /* 4. Scale the "Get Started" / Action Button */
    .navbar .btn {
        padding: 15px 35px !important; /* Larger hit area */
        font-size: 1.2rem !important;
        letter-spacing: 1.5px;
    }
}

/* --- Specific Extra Scaling for 1920px + --- */
@media (min-width: 1920px) {
    /* 1. Slim down the navbar height */
    .navbar {
        padding-top: 10px !important;    /* Reduced from 20px */
        padding-bottom: 10px !important; /* Reduced from 20px */
        padding-left: 8% !important;     /* Adjusted to use screen width better */
        padding-right: 8% !important;
    }

    /* 2. Keep the links readable but not bulky */
    .navbar-nav .nav-link {
        font-size: 1.2rem !important; 
    }

    /* 3. Logo scaling */
    .custom-logo {
        height: 45px !important;
    }

    /* 4. THE KEY FIX: Push the heading down so it doesn't touch the navbar */
    .container-xxl.py-5:first-of-type {
        margin-top: 40px !important; 
    }
    
    h2.display-4, h1 {
        margin-top: 20px !important;
        margin-bottom: 30px !important;
    }
}
/* --- Hero Content Layering --- */
.hero-content-overlay {
    position: relative;
    z-index: 3;
    width: 100%;
}
/* --- Premium Hero Buttons --- */
.hero-header .btn {
    border-radius: 0 !important;
    border: 1.5px solid rgba(255, 255, 255, 0.9);
    background: transparent !important;
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 14px 34px;
    transition: all 0.35s ease;
}

/* Primary Button – Explore Veneer */
.hero-header .btn:first-child:hover {
    background-color: #28533c !important; /* premium wood green */
    border-color: #28533c;
    color: #ffffff;
}

/* Secondary Button – Contact Us */
.hero-header .btn:last-child:hover {
    background-color: rgba(255, 255, 255, 0.15) !important;
    border-color: #ffffff;
    color: #ffffff;
}


/* Fade Transition Speed */
.carousel-fade .carousel-item {
    transition-duration: 1.5s;
}

/* --- Responsive for Mobile --- */
@media (max-width: 991.98px) {
    .hero-header {
        height: 100vh; 
    }
}
/* Mobile & smaller screens: show green logo, hide white */
@media (max-width: 991.98px) {
    .logo-hero {
        display: none !important;   /* hide white logo */
    }
    .logo-scroll {
        display: inline-block !important; /* show green logo */
    }
}

/* Hero & Navbar Full Width Fix for Ultra-wide Screens */
@media (min-width: 1600px) {
  .container-xxl.hero-header,
  .container-xxl.position-relative.p-0 {
    max-width: 100% !important; /* Stretch full width */
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}





/* --- Massive Luxury Product Section --- */
.luxury-product-section {
    background-color: #ffffff;
    padding-left: 2% !important;
    padding-right: 2% !important;
}

/* Remove Bootstrap's default container constraints */
.luxury-product-section .container-fluid {
    max-width: 100% !important;
    padding: 0 15px;
}

/* Product Card Wrapper - REDUCED GAP */
.product-card {
    position: relative;
    overflow: hidden;
    transition: 0.5s;
    margin-bottom: 10px; /* Reduced from 40px to 10px to tighten the row gap */
}

/* Massive Image Box */
.product-img-wrapper {
    width: 100%;
    height: 600px; 
    overflow: hidden;
    background: #111;
}

.product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
    filter: brightness(0.95);
}

/* Hover Effect */
.product-card:hover .product-img-wrapper img {
    transform: scale(1.04);
    filter: brightness(1.05);
}

/* Left Aligned Sub-headings */
.product-info {
    text-align: left;
    padding: 15px 0; /* Tightened padding above/below text */
}

.product-info h4 {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.6rem;
    color: #1a1a1a;
    margin-bottom: 5px; /* Reduced spacing between title and paragraph */
}

.product-info p {
    color: #666;
    font-size: 1.05rem;
    line-height: 1.4; /* Tighter line height for luxury feel */
    max-width: 85%;
}

/* Tighten the Bootstrap Grid Gutter */
.luxury-product-section .row.g-4 {
    --bs-gutter-y: 1rem; /* Specifically reduces the vertical gap between rows */
}
.section-intro {
    max-width: 760px;
    font-size: 1.05rem;
    line-height: 1.9;
    letter-spacing: 0.2px;
}
@media (max-width: 575.98px) {
    .section-intro {
        max-width: 95%;        /* almost full width on mobile */
        font-size: 0.95rem;    /* slightly smaller for better stacking */
        line-height: 1.85;     /* more spacing for vertical balance */
        margin: 0 auto;        /* center horizontally */
        text-align: justify;   /* makes paragraph edges aligned, square-ish */
        word-wrap: break-word; /* prevents overflow of long words */
    }
}

/* --- Media Queries --- */

@media (max-width: 1199px) {
    .product-img-wrapper {
        height: 550px;
    }
    .product-info h4 {
        font-size: 1.3rem;
    }
}

@media (max-width: 767px) {
    .product-img-wrapper {
        height: 450px;
    }
    .product-info h4 {
        font-size: 1.2rem;
    }
    .luxury-product-section {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}
.woodit-green {
    color: #28533c; /* Dark wood green */
}

/* Luxury Product Section Full Width Fix on Ultra-wide Screens */
@media (min-width: 1600px) {
    .luxury-product-section {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .luxury-product-section .container-fluid {
        padding-left: 20px !important;  /* small breathing room */
        padding-right: 20px !important; /* optional */
        max-width: 100% !important;     /* stretch full width */
    }

    /* Optional: increase image height for large screens */
    .luxury-product-section .product-img-wrapper {
        height: 650px; 
    }
}
/* Mobile responsive tweaks for Luxury Product Section Heading */
@media (max-width: 575.98px) {
    /* H1 heading */
    .luxury-product-section h1 {
        font-size: 1.2rem;       /* smaller to fit in one line */
        line-height: 1.3;        /* tighter spacing */
        text-align: center;      /* center on mobile */
        word-break: keep-all;    /* prevent breaking in the middle of words */
    }

    /* H5 subheading */
    .luxury-product-section h5 {
        font-size: 0.75rem;      /* slightly smaller for mobile */
        letter-spacing: 1px;     /* keep spacing balanced */
        text-align: center;      /* center align */
    }

    /* Paragraph */
    .luxury-product-section .section-intro {
        font-size: 0.95rem;      /* slightly smaller text */
        line-height: 1.7;        /* comfortable vertical spacing */
        max-width: 95%;          /* almost full width */
        margin: 0 auto;          /* center horizontally */
        text-align: justify;     /* neat square edges */
        word-wrap: break-word;   /* prevent overflow */
    }
}

/* --- Ultra-Wide Screen Breathing Room Fix --- */
@media (min-width: 1600px) {
    /* 1. Add significant padding to the main section */
    .luxury-product-section {
        padding-left: 8% !important;  /* Creates the breathing space you need */
        padding-right: 8% !important; 
        background-color: #ffffff;
    }

    /* 2. Constrain the container so it doesn't stretch to infinity */
    .luxury-product-section .container-fluid {
        max-width: 1600px !important; /* Limits the content width */
        margin: 0 auto !important;    /* Centers the whole block */
        padding: 0 40px !important;   /* Extra internal padding */
    }

    /* 3. Adjust the gutter (space between the two product cards) */
    .luxury-product-section .row.g-4 {
        --bs-gutter-x: 4rem !important; /* More space between Left and Right card */
        --bs-gutter-y: 4rem !important;
    }

    /* 4. Keep the image height proportional to the new width */
    .product-img-wrapper {
        height: 700px !important; 
    }
}

/* Specific adjustment for exactly 1920px screens */
@media (min-width: 1920px) {
    .luxury-product-section {
        padding-left: 12% !important; /* Even more space for the largest monitors */
        padding-right: 12% !important;
    }
}


/* ===============================
   MATERIAL ASSURANCES SECTION
   =============================== */

/* Section Background */
.veneer-assurance-section {
    background-color: #28533c; /* deep premium green */
}

/* Section Heading */
.assurance-title {
    color: #ECECEC;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.assurance-subtitle {
    color: #B8C1B9;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* Card */
.assurance-card {
    height: 100%;
    padding: 2.8rem 2.2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: transform 0.45s ease, border-color 0.45s ease;
}

/* Card Hover */
.assurance-card:hover {
    transform: translateY(-8px);
    border-color: rgba(186, 194, 102, 0.6);
}

/* Icon Wrapper */
.assurance-icon {
    margin-bottom: 1.6rem;
    display: flex;
    justify-content: center;
}

/* Icon */
.assurance-icon img {
    width: 48px;
    height: 48px;
    opacity: 0.75;
   
    transition: opacity 0.4s ease, filter 0.4s ease;
}

/* Icon Hover */
.assurance-card:hover .assurance-icon img {
    opacity: 1;
    filter: brightness(0) saturate(100%)
            invert(45%) sepia(28%)
            saturate(520%) hue-rotate(95deg);
}

/* Title */
.assurance-card h5 {
    color: #bac266; /* logo green */
    font-weight: 500;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

/* Title Hover */
.assurance-card:hover h5 {
    color: #d0d88a;
}

/* Text */
.assurance-card p {
    color: #E0E4E0;
    font-size: 0.95rem;
    line-height: 1.65;
}

/* Mobile Adjustments */
@media (max-width: 991px) {
    .assurance-card {
        padding: 2.4rem 2rem;
    }
}






/* Custom Spinner Color */
.veneer-spinner {
    width: 3rem;
    height: 3rem;
    color: #28533c;
}

/* 1. CONTAINER: Wider and shorter layout */
.comparison-container {
    position: relative;
    width: 100%;
    /* Higher number = wider/shorter box. 2.2 / 1 is a professional wide look. */
    aspect-ratio: 2 / 1; 
    overflow: hidden;
    border-radius: 2px;
    border: 1px solid #eee;
    background-color: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .comparison-container {
        /* Square-ish on mobile for better visibility */
        aspect-ratio: 1.4 / 1; 
    }
}

/* 2. IMAGE ALIGNMENT: The "Anti-Zoom" Fix */
.comparison-container img {
    position: absolute;
    top: 0;
    left: 0; 
    height: 100%;
    /* We remove 'width: 100%' here so the JS can force the pixel width */
    object-fit: cover; 
    pointer-events: none;
    display: block;
}

.image-after {
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Ensure the background image is always full width */
.image-after img {
    width: 100% !important;
}

.image-before {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%; 
    height: 100%;
    overflow: hidden;
    z-index: 2;
    border-right: 3px solid #fff; 
}

.image-before img {
    /* Use the same height as the container */
    height: 100%;
    /* This is the secret: prevent it from shrinking with the parent div */
    width: auto; 
    /* Anchor it to the left so it doesn't move when you slide */
    left: 0;
    top: 0;
    object-fit: cover;
    /* This ensures it doesn't look zoomed compared to the bottom layer */
    max-width: none !important; 
}

/* 3. LABELS (FLOATING BUTTONS) */
.image-after::after, .image-before::after {
    position: absolute;
    bottom: 20px;
    padding: 10px 0;
    width: 130px;
    text-align: center;
    border-radius: 1px;
    font-size: 11px;
    font-weight: 700;
    z-index: 3;
    white-space: nowrap;
    transition: opacity 0.3s ease;
}

/* Smooth fade out logic */
.hide-label::after {
    opacity: 0 !important;
    pointer-events: none;
}

.image-after::after {
    content: "VENEER FINISH";
    right: 20px;
    background: #28533c; 
    color: #fff;
}

.image-before::after {
    content: "PLAIN WALL";
    left: 20px;
    background: #fff;
    color: #28533c;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* 4. SLIDER CONTROLS & UI */
.slider-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 3px;
    height: 100%;
    background: #fff;
    z-index: 5;
    transform: translateX(-50%);
    pointer-events: none;
}

.slider-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
    z-index: 11;
}

/* Icon Fix: Only one arrow set */
.slider-icon::before {
    content: '\f337'; 
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #28533c;
    font-size: 18px;
}

/* Invisible Range Input Overlay */
.comparison-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    appearance: none;
    -webkit-appearance: none;
    cursor: ew-resize;
    z-index: 12;
}

/* Thumb needs enough width for easy grabbing on touch devices */
.comparison-slider::-webkit-slider-thumb {
    appearance: none;
    width: 40px;
    height: 1000px; /* High enough to cover full box height */
}

/* Hide labels on small screens */
@media (max-width: 768px) {
    .image-after::after, 
    .image-before::after {
        display: none !important;
    }
    

}


/* Deep Dark Green Footer Theme */
.footer-veneer {
    background-color: #28533c !important; 
    margin-top: 6rem;
    color: #f8f9fa;
}

/* Titles with Wood-Gold Underline */
.footer-veneer .section-title {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.footer-veneer .section-title::after {
    content: "";
    position: absolute;
    width: 45px;
    height: 2px;
    bottom: 0;
    left: 0;
    background: #c5a059; /* Gold/Wood tone underline */
}

/* Contact Info Styling (The 4 Elite Columns) */
.footer-veneer p {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-veneer .fw-bold {
    color: #ffffff !important;
    letter-spacing: 0.5px;
    font-size: 1rem;
}

/* Social Buttons */
.footer-veneer .btn.btn-social {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f8f9fa;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    transition: .3s;
}

.footer-veneer .btn.btn-social:hover {
    background: #c5a059;
    color: #1a3325;
    border-color: #c5a059;
}
/* Gallery Styling - Sharp square box */
.footer-veneer img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center;

    transition: 0.3s;
   
    cursor: pointer;
    border-radius: 0 !important;   /* No rounding */
}


.footer-veneer img:hover {
    transform: translateY(-5px);
    border-color: #c5a059;
}


/* Copyright & Ninetysix Branding */
.footer-veneer .copyright {
    padding: 25px 0;
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.footer-veneer .copyright a {
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s;
}

.ninetysix-link {
    font-weight: 700;
    color: #ffffff !important;
    text-decoration: none;
    padding-left: 5px;
    transition: 0.3s ease-in-out;
}

.ninetysix-link:hover {
    color: #c5a059 !important; /* Changes to gold on hover */
    text-decoration: underline !important;
}

/* Sub-border for the top section */
.border-bottom {
    border-color: rgba(255, 255, 255, 0.1) !important;
}
@media (max-width: 991.98px) {
    /* 1. Force the columns to center their content */
    .footer-veneer .col-md-6.col-lg-3 {
        text-align: center !important; 
        display: flex;
        flex-direction: column;
        align-items: center; /* This centers the flex items */
        margin-bottom: 3rem;
    }

    /* 2. Create a wrapper effect for the text so it stays left-aligned */
    .footer-veneer .col-md-6.col-lg-3 p {
        text-align: left; /* Keeps the text lines starting from the same point */
        width: 100%;
        max-width: 250px; /* Adjust this width to fit your longest address */
        margin-left: auto;
        margin-right: auto;
    }

    /* 3. Center the Section Title and its underline */
    .footer-veneer .section-title {
        text-align: left;
        width: 100%;
        max-width: 250px; /* Must match the P tags above */
    }

    .footer-veneer .section-title::after {
        left: 0 !important; /* Keeps underline starting from the left of the title */
        transform: none !important;
    }
}


/* --- GLOBAL TYPOGRAPHY --- */
p, .veneer-description, .toggle-btn, .custom-text {
    font-family: 'Jost', sans-serif !important;
}

/* --- SECTION CONTAINER --- */
.veneer-showcase { 
    background-color: #ffffff; 
    padding: 60px 0;
    width: 100%;
}

/* --- THE SLIM & WIDE TOGGLE BAR --- */
.veneer-toggle-bar {
    display: flex;
    position: relative;
    background-color: #28533c; 
    border-radius: 2px;
    padding: 3px;          
    width: 520px;         
    max-width: 95%;       
    z-index: 10;
    margin: 0 auto 30px auto; 
}

.toggle-pill {
    position: absolute;
    width: calc(50% - 3px);
    height: calc(100% - 6px);
    background-color: #ffffff;
    border-radius: 2px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    top: 3px;
    left: 3px;
}

.toggle-btn {
    flex: 1;
    border: none;
    background: transparent;
    color: #ffffff;
    padding: 8px 5px;     
    font-weight: 600;
    cursor: pointer;
    position: relative;
    z-index: 2;
    text-transform: uppercase;
    font-size: 0.75rem;    
    letter-spacing: 1.5px;
}

.toggle-btn.active { color: #28533c; }

/* --- THE DESCRIPTION (Desktop) --- */
.veneer-description {
    text-align: center;
    max-width: 850px;
    margin: 20px auto 40px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
}

/* --- THE 4-IMAGE ROW GRID --- */
.veneer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    max-width: 1300px;
    margin: 0 auto;
}

.veneer-item {
    height: 300px;
    overflow: hidden;
    border-radius: 2px; 
}

.veneer-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* --- MOBILE & TABLET REFINEMENT (The Rectangle Shape Fix) --- */
@media (max-width: 991px) {
    .veneer-showcase {
        /* Reduced side padding so the "rectangle" is wider */
        padding-left: 15px; 
        padding-right: 15px;
    }

    .veneer-toggle-bar { 
        width: 100%; 
        max-width: 360px;
    }

    .veneer-description {
        /* --- THE RECTANGLE FORMULA --- */
        text-align: justify !important;
        text-justify: inter-word;
        hyphens: auto;      /* CRITICAL: Breaks words to prevent huge gaps */
        word-break: break-word;
        
        /* Ensures the rectangle is clean */
        font-size: 0.95rem;
        line-height: 1.6;
        padding: 0; 
        max-width: 100%;
        margin-bottom: 30px;
        color: #444;
    }
    
    .veneer-grid { 
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .veneer-item { height: 220px; }
}

@media (max-width: 576px) {
    .veneer-grid { 
        grid-template-columns: 1fr; 
    }
    .veneer-item { margin-bottom: 10px; }
}
:root {
    --forest-green: #28533c;
    --timber-gold: #ffb800;
}

/* Perfect Bottom Alignment Fix */
.about-timber-section .row.align-items-end {
    align-items: flex-end !important;
}

/* Left Column Styling */
.custom-progress { background: #eee; height: 8px; border-radius: 20px; overflow: hidden; }
.bar {
    width: 0;                 /* START EMPTY */
    height: 100%;
    border-radius: 20px;
    transition: width 1.8s ease-in-out;
}


.bar-1 { background: var(--forest-green); }
.bar-2 { background: var(--timber-gold); }
.bar-3 { background: #333; }

/* Bento Grid Alignment Logic */
.timber-bento-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px; /* Tighter gap for better alignment */
}

.bento-col {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.bento-item {
    border-radius: 2px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.07);
    width: 100%;
}

/* REDUCED HEIGHT FOR STRAIGHT ALIGNMENT */
.tall-img { 
    height: 280px; /* Reduced from 380px to align with your text height */
}

.tall-img img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
}

.small-box {
    padding: 20px;
    height: 130px; /* Fixed height for small boxes to keep grid square */
    display: flex;
    align-items: center;
}

/* Stat Text Styling */
.stat-inner h2 { font-size: 2rem; font-weight: 800; margin: 0; color: #000; }
.stat-inner p { font-size: 0.75rem; color: #666; margin: 5px 0 0 0; line-height: 1.3; }
.growth-arrow { color: #28a745; font-size: 1.2rem; }
.badge-inner p { font-weight: 700; color: var(--forest-green); margin: 0; font-size: 0.85rem; }

/* Hover Effect for Premium Feel */
.bento-item { transition: transform 0.3s ease; }
.bento-item:hover { transform: translateY(-5px); }

@media (max-width: 991px) {
    .tall-img { height: 220px; }
    .small-box { height: auto; }
}
/* About Timber Section Full Width Fix on Ultra-wide Screens */
@media (min-width: 1600px) {
    .about-timber-section .container {
        padding-left: 20px !important;   /* small breathing room */
        padding-right: 20px !important;  /* optional */
        max-width: 100% !important;      /* stretch full width */
    }

    /* Optional: increase image height for large screens */
    .about-timber-section .tall-img {
        height: 340px; /* make bento items larger */
    }
}

.about-timber-section,
.about-timber-section h1,
.about-timber-section h2,
.about-timber-section h3,
.about-timber-section h4,
.about-timber-section h5,
.about-timber-section h6,
.about-timber-section p,
.about-timber-section span,
.about-timber-section small,
.about-timber-section .custom-badge {
    font-family: 'Jost', sans-serif;
}
/* Apply Jost font to navbar and hero text */
.navbar,
.navbar .nav-link,
.navbar .btn,
.hero-header,
.hero-header h1,
.hero-header p,
.hero-header a {
    font-family: 'Jost', sans-serif;
}

/* Apply Jost font to all text in Service and About sections */
.luxury-product-section,
.luxury-product-section * ,
.about-timber-section,
.about-timber-section * {
    font-family: 'Jost', sans-serif !important;
}
/* Apply Jost font to the Newsletter section */
.container-xxl.py-5,
.container-xxl.py-5 * {
    font-family: 'Jost', sans-serif !important;
}
/* Apply Jost font to Premium Veneer / Texture section */
.premium-veneer-section,
.premium-veneer-section * {
    font-family: 'Jost', sans-serif !important;
}
/* Add white space above Premium Veneer section */
.premium-veneer-section {
    margin-top: 100px; /* Adjust this value as needed */
}



/* Override Bootstrap primary button to dark green */
.btn-primary {
    background-color: #28533c;   /* dark green */
    border-color: #1f4d3a;
    font-family: 'Jost', sans-serif;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: #16392b;   /* darker green on hover */
    border-color: #16392b;
}


/* Apply Jost font to entire footer */
.footer-veneer,
.footer-veneer * {
    font-family: 'Jost', sans-serif !important;
}

/* Contact form rounded corners */
.form-control,
.form-floating textarea,
.form-floating input,
.btn {
    border-radius: 2px !important;
}



/*** Footer ***/
.footer {
    margin-top: 6rem;
    padding-top: 9rem;
    background:
        url(../img/bg-top.png),
        url(../img/map.png);
    background-position:
        center top,
        center center;
    background-repeat: no-repeat;
}
/* --- Large Monitor Fix (1400px and up) --- */
@media (min-width: 1400px) {
    .footer {
        /* Prevents the 'zebra stripe' repeat effect */
        background-repeat: no-repeat, no-repeat !important;
        
        /* Forces the wave to span 100% of the wide monitor width */
        /* 'auto' keeps the height natural so it doesn't look stretched vertically */
        background-size: 100% auto, cover !important;
        
        /* Ensures the wave stays at the very top */
        background-position: center top, center center !important;
        
        /* Ensures the solid green fills everything below the wave */
        background-color: #28533c !important;
    }
}
.footer .btn.btn-social {
    margin-right: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid rgba(256, 256, 256, .1);
    border-radius: 40px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 10px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
    color: var(--secondary);
}

.footer .copyright {
    padding: 25px 0;
    font-size: 14px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

.footer .copyright a:hover,
.footer .footer-menu a:hover {
    color: var(--secondary);
}

/* Social Buttons Default State */
.btn-social {
    color: #ffffff !important;
    border-color: #ffffff !important;
    transition: all 0.3s ease;
}

/* Social Buttons Hover State (The Green Fix) */
.btn-social:hover {
    background-color: #28533c !important; /* Your brand green */
    color: #ffffff !important;
    border-color: #28533c !important;
    transform: translateY(-3px); /* Subtle lift effect */
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Specifically target the icons inside to ensure they don't turn violet */
.btn-social i {
    color: inherit;
}



/* --- 1. THE OUTER WRAPPER (Side White Space) --- */
.sticky-container {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    background-color: #f8f8f8; 
    margin: 0 5%; 
    max-width: 1800px; 
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: visible !important; 
}

/* --- 2. LEFT SIDE (The Sticky Text) --- */
.sticky-left-content {
    flex: 1;
    min-width: 50%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    padding: 5% 8%;
    z-index: 10;
}

.content-wrapper {
    max-width: 480px;
    text-align: left;
}

.custom-title {
    font-family: 'Jost', sans-serif !important;
    font-size: 2.2rem;
    color: #28533c; 
    margin-bottom: 20px;
    font-weight: 700 !important;
    text-transform: uppercase;
    line-height: 1.2;
}

.custom-text {
    font-family: 'Jost', sans-serif !important;
    line-height: 1.8;
    color: #444; 
    font-size: 1rem;
    text-align: left; /* Default for desktop */
}

.custom-subtitle {
    font-family: 'Jost', sans-serif !important;
    font-weight: 600;
    color: #FBA504;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

/* --- 3. RIGHT SIDE (The Scrolling Images) --- */
.scroll-right-images {
    flex: 1;
    min-width: 50%;
    background-color: #28533c; 
    display: flex;
    flex-direction: column;
}

.scroll-right-images img {
    width: 100%;
    height: auto;
    display: block;
    padding: 20px 40px; 
    object-fit: cover;
}

/* --- MOBILE REFINEMENT --- */
@media (max-width: 992px) {
    .sticky-container {
        display: block; 
        margin: 0;
        max-width: 100%;
        background-color: #f8f8f8;
    }

    .sticky-left-content {
        position: relative; 
        height: auto;
        width: 100%;
        padding: 60px 25px 40px 25px; 
        display: block; 
        z-index: 1;
    }

    .content-wrapper {
        width: 100%;
        text-align: left;
    }

    /* THE RECTANGLE PARAGRAPH FIX */
    .custom-text {
        font-size: 1rem !important;
        line-height: 1.6;
        text-align: justify !important; /* Forces left and right alignment */
        text-justify: inter-word !important; /* Distributes spacing for a clean rectangle */
        hyphens: auto; /* Prevents awkward gaps in the rectangle shape */
        padding-right: 5px; /* Slight buffer for the right edge */
    }

    .scroll-right-images {
        position: -webkit-sticky;
        position: sticky;
        top: 0; 
        height: 100vh; 
        overflow-y: auto; 
        scrollbar-width: none; 
        background-color: #28533c;
        z-index: 10;
    }

    .scroll-right-images::-webkit-scrollbar {
        display: none; 
    }

    .scroll-right-images img {
        width: 100%;
        height: 100vh; 
        padding: 0;
        scroll-snap-align: start; 
    }

    .custom-title {
        font-size: 1.8rem !important;
        margin-bottom: 15px;
    }
}

/* --- DESKTOP REMAINS THE SAME --- */
@media (min-width: 993px) {
    .sticky-container {
        display: flex;
        margin: 0 5%;
        max-width: 1800px;
        margin-left: auto;
        margin-right: auto;
    }
    .sticky-left-content {
        position: sticky;
        top: 0;
        height: 100vh;
        width: 50%;
        display: flex;
        align-items: center;
        padding: 5% 8%;
    }
    .scroll-right-images {
        width: 50%;
    }
}

/* WOW.js Logic */
.sticky-left-content .wow {
    visibility: hidden; 
}

@media (max-width: 992px) {
    .content-wrapper.wow {
        animation-duration: 1.2s;
    }
}






@import url('https://fonts.googleapis.com/css2?family=Jost:wght@400;700&display=swap');

/* Main Wrapper */
.wd-p-section-wrapper {
    padding: 20px;
    font-family: 'Jost', sans-serif;
    background-color: #ffffff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}
.wd-p-section-wrapper {
  padding-top: 100px; /* Default for desktop */
}

/* Medium screens (tablets) */
@media (max-width: 1024px) {
  .wd-p-section-wrapper {
    padding-top: 60px;
  }
}

/* Small screens (mobile) */
@media (max-width: 768px) {
  .wd-p-section-wrapper {
    padding-top: 40px;
  }
}

/* Extra small screens (very small phones) */
@media (max-width: 480px) {
  .wd-p-section-wrapper {
    padding-top: 30px;
  }
}

/* Title Styling */
.wd-p-top-title {
    text-align: center;
    font-weight: 300;
    margin-bottom: 20px;
    font-size: clamp(2rem, 4vw, 2.5rem); /* Scales between mobile and laptop */
    
    color: #1a1a1a;
}

/* Bento Layout - Desktop & Tablet */
.wd-p-bento-layout {
    display: flex;
    gap: 15px;
    height: 75vh; 
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.wd-p-card-item {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

/* Default Size Ratio (Tablet & Laptop) */
.wd-p-type-narrow { flex: 1; }
.wd-p-type-wide { flex: 2; }

/* HOVER SWAP LOGIC (Active for everything above 768px - Tablets included) */
@media (min-width: 768px) {
    .wd-p-bento-layout:has(.wd-p-type-narrow:hover) .wd-p-type-narrow { flex: 2; }
    .wd-p-bento-layout:has(.wd-p-type-narrow:hover) .wd-p-type-wide { flex: 1; }
}

/* Image Stack & Fade */
.wd-p-image-stack {
    position: absolute;
    inset: 0;
}

.wd-p-image-stack img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 1s ease, transform 1.2s ease;
}

.wd-p-img-overlay { opacity: 0; }

.wd-p-card-item:hover .wd-p-img-base { opacity: 0; }
.wd-p-card-item:hover .wd-p-img-overlay { opacity: 1; }
.wd-p-card-item:hover .wd-p-image-stack img { transform: scale(1.08); }

/* Dark Gradient for Text Visibility */
.wd-p-card-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 60%);
    z-index: 1;
}

/* Content layer */
.wd-p-content-layer {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 20px;
    color: white;
    z-index: 10;
    pointer-events: none;
}

.wd-p-tagline {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    margin-bottom: 5px;
    font-weight: 400;
}

.wd-p-hero-text {
    font-size: clamp(1rem, 3vw, 1.5rem) !important;
    line-height: 1;
    font-weight: 400 !important;
    margin: 0;
   
    color: #ffffff !important;
}

/* MOBILE ONLY (Stacking behavior) */
@media (max-width: 767px) {
    .wd-p-section-wrapper {
        height: auto;
        padding: 40px 15px;
    }
    
    .wd-p-bento-layout {
        flex-direction: column;
        height: auto;
    }
    
    .wd-p-card-item {
        flex: none !important;
        height: 300px; /* Fixed height for mobile cards */
        width: 100%;
    }

    /* On mobile, we can trigger the image fade on tap instead of hover */
    .wd-p-card-item:active .wd-p-img-base { opacity: 0; }
    .wd-p-card-item:active .wd-p-img-overlay { opacity: 1; }
}

/* Ensure WOW.js doesn't break the flex layout visibility */
.wd-p-card-item.wow {
    visibility: hidden;
}

.wd-p-card-item.animated {
    visibility: visible;
}

/* --- THE LOCATION BOXES --- */
/* --- THE LOCATION BOXES (DESKTOP) --- */

.location-group-wrapper {
    display: flex;
    background: #28533c; /* Brand Green */
    border-radius: 4px;
    height: 170px; 
    align-items: center;
    position: relative;
    z-index: 1;
    overflow: visible;
}

.location-box {
    flex: 1;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.location-box h6 {
    color: #ffffff !important; 
    text-transform: uppercase; 
    font-weight: 700;
    margin-bottom: 5px;
    letter-spacing: 1px;
    font-size: 1.2rem;
}

.location-box p.address-text {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 1rem;
    margin-bottom: 4px;
}

.phone-text {
    font-family: 'Jost', sans-serif;
    color: #FBA504 !important; /* Yellow color */
    font-weight: 600;
    font-size: 1rem;
    display: block;
}

.location-box:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.location-box.active {
    background: #ffffff;
    height: 180px; 
    margin-top: -10px; 
    margin-bottom: -10px;
    border-radius: 4px;
    z-index: 10;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    border-right: none; 
}

.location-box.active h6 { color: #28533c !important; }
.location-box.active p.address-text { color: #444 !important; }

.location-box i {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 10px;
    display: block;
}
.location-box.active i { color: #28533c; }

/* --- MAP SECTION (DESKTOP) --- */

.map-wrapper-custom iframe {
    width: 100%;
    height: 400px;
    display: block;
}
/* --- MOBILE CONTACT CARDS (UNDER 768px) --- */
@media (max-width: 767.98px) {
    /* Adding breathing space to the sides of the mobile container */
    .mobile-location-wrapper {
        padding-left: 15px;
        padding-right: 15px;
    }

    .mobile-contact-card {
        border-radius: 2px !important; /* Slightly rounder for modern look */
        overflow: hidden;
        background: #fff;
        border: 1px solid #eee;
        margin-bottom: 20px; /* Space between cards */
    }
    /* THIS FIXES THE GREEN BOX ROUNDING */
    .mobile-card-header {
        border-radius: 2px !important; /* This kills the 8px rounding in your inline style */
    }
    .mobile-card-header h6 {
        font-size: 1.1rem;
        letter-spacing: 1px;
        font-weight: 700;
    }

    .mobile-card-header a.phone-text {
        text-decoration: none;
        transition: 0.3s;
        display: inline-block;
        margin-top: 5px;
    }

    .mobile-map-body iframe {
        display: block;
        height: 220px; /* Optimized height for mobile screens */
    }
}

/* --- TABLET SCALING (768px to 1199px) --- */
@media (max-width: 1199px) and (min-width: 768px) {
    /* Adding breathing space so the bar doesn't hit the screen edges */
    .desktop-location-wrapper {
        padding-left: 40px !important;
        padding-right: 40px !important;
    }

    .location-group-wrapper {
        height: 140px; /* Slightly shorter for tablet proportions */
        border-radius: 2px;
    }

    /* Fixing the Active Box Height to "Pop" properly on Tablets */
    .location-box.active {
        height: 150px !important; /* Taller than the 140px bar */
        margin-top: -12px;
        margin-bottom: -13px;
        z-index: 10;
    }

    .location-box h6 {
        font-size: 0.85rem !important;
        margin-bottom: 4px !important;
    }
    
    .location-box p.address-text, 
    .location-box .phone-text {
        font-size: 0.75rem !important;
    }

    .location-box i {
        font-size: 1rem !important;
        margin-bottom: 5px !important;
    }
}

/* --- LARGE SCREEN SCALING (1600px+) --- */
@media (min-width: 1600px) {
    html { font-size: 18px; }

    .desktop-location-wrapper {
        padding-left: 5% !important; /* Reduced from 10%: spread it out more */
        padding-right: 5% !important;
    }

    /* Reduced height for the map so it doesn't take over the whole screen */
    .map-wrapper-custom iframe {
        height: 450px !important; /* Reduced from 600px */
    }

    h1 { font-size: 3.5rem !important; } /* Slightly smaller h1 to look sharper */
    
    .location-group-wrapper { height: 180px; } /* Reduced from 220px */
    .location-box.active { height: 210px; } 
}

/* --- ULTRA-WIDE SCALING (1920px+) --- */
@media (min-width: 1920px) {
    .desktop-location-wrapper {
        padding-left: 8% !important; /* Reduced from 15%: Use more of that big screen */
        padding-right: 8% !important;
    }

    .map-wrapper-custom iframe {
        height: 500px !important; /* Reduced from 700px */
    }

    h1 { font-size: 4rem !important; }
}
/* --- ULTRA-WIDE SCALING (1920px+) --- */

@media (min-width: 1920px) {
    h1 { font-size: 2.8rem !important; }
    p { font-size: 1.3rem !important; }

    .map-wrapper-custom iframe {
        height: 500px !important; 
    }

    .location-group-wrapper { height: 240px; }
    .location-box.active { height: 250px; }
}

