@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;700&family=Playfair+Display:wght@400;600;700&display=swap");

:root {
    --primary-color: #bfa15f; /* Elegant muted gold */
    --secondary-color: #9c8045; /* Darker gold */
    --bg-color: #ffffff; /* Clean white */
    --bg-color-alt: #f9f9f9; /* Off-white */
    --section-offerings: #f5f5f5; /* Subtle grey */
    --section-brands: #ececec; /* Soft grey */
    --section-footer: #151515; /* Near black */
    --text-main: #1c1c1c; /* Deep Charcoal for premium legibility */
    --text-muted: #555555; /* Sophisticated mid-grey with improved contrast */
    --accent-color: #e4e4e4;
    --font-body: "Outfit", sans-serif;
    --font-heading: "Playfair Display", serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    letter-spacing: 1px;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
}

.section {
    padding: 6rem 0;
}

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

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    cursor: pointer;
    background: transparent;
    border-radius: 8px;
    transition: var(--transition);
}

.btn:hover {
    background: var(--primary-color);
    color: var(--bg-color);
}

.btn-solid {
    background: var(--primary-color);
    color: var(--bg-color);
}

.btn-solid:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

/* Navigation */
header {
    position: sticky;
    top: 0;
    width: 100%;
    padding: 1.5rem 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);

    /* --- THE GLITCH FIXES --- */
    transform: translateZ(0); /* Forces GPU Layer isolation */
    will-change: transform; /* Pre-allocates graphics resources */
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0.8rem;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.logo span {
    color: var(--primary-color);
}

.logo img {
    height: 70px !important; /* Larger for strictly horizontal logo */
    width: auto !important;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.02);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-phone-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.2rem;
    border: 1px solid var(--primary-color);
    color: var(--primary-color) !important;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.85rem !important;
    letter-spacing: 0.5px;
}

.nav-phone-btn:hover {
    background: var(--primary-color);
    color: var(--bg-color) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-main);
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    margin-top: 0;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 0 20px;
    transform: translateY(20px);
    transition:
        transform 1s ease,
        opacity 1s ease;
}

.slide.active .slide-content {
    transform: translateY(0);
}

.slide-content h1 {
    font-size: 3.5rem;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 2rem;
    letter-spacing: 2px;
    font-family: var(--font-body);
    font-weight: 700;
    line-height: 1.2;
}

.slider-dots {
    position: absolute;
    bottom: 40px;
    width: 100%;
    text-align: center;
    z-index: 4;
}

.dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 5px;
    background-color: transparent;
    border: 2px solid white;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

@media screen and (max-width: 768px) {
    /* 1. Prevent parent layout from spilling sideways */
    html,
    body {
        width: 100%;
        overflow-x:clip;
    }

    header {
        padding: 1rem 0;
    }

    /* 2. Reveal the hamburger toggle icon on mobile viewports */
    .menu-toggle {
        display: block;
        font-size: 1.6rem;
        z-index: 1001; /* Keeps toggle button on top of drawer layers */
    }

    /* 3. Re-structure horizontal row into an absolute mobile screen tray overlay */
    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: rgba(
            255,
            255,
            255,
            0.98
        ); /* Luxury backdrop to match your desktop palette */
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        gap: 1.8rem;
        padding: 2rem;
        z-index: 1000;

        /* Complete off-screen state controls */
        opacity: 0;
        visibility: hidden;
        transform: translateX(100%);
        transition:
            transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
            opacity 0.3s ease,
            visibility 0.3s ease;
    }

    /* 4. Active state matched cleanly against your JS .toggle() logic */
    .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateX(0); /* Slides fluidly into view center */
    }

    /* Adjust nav items sizing layouts specifically for mobile touch points */
    .nav-links a {
        font-size: 1.2rem;
        font-weight: 500;
        width: 100%;
        text-align: center;
        display: block;
    }

    /* 1. Modify the dropdown parent li to accommodate structural expansion */
    .nav-links li.dropdown {
        width: 100%;
        text-align: center;
    }

    /* 2. Rotate the chevron arrow dynamically when open */
    .nav-links li.dropdown.open > a i {
        transform: rotate(180deg);
        transition: transform 0.3s ease;
    }
    .nav-links li.dropdown > a i {
        transition: transform 0.3s ease;
    }

    /* 3. REPLACED: Hide the dropdown drawer naturally by default using max-height */
    .dropdown-menu {
        position: static !important;
        box-shadow: none !important;
        background: rgba(0, 0, 0, 0.03) !important;
        width: 100% !important;
        text-align: center;
        padding: 0 !important;

        /* Collapsed baseline structural states */
        max-height: 0;
        overflow: hidden;
        opacity: 0 !important;
        visibility: hidden !important;
        transition:
            max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1),
            opacity 0.25s ease;
        border-radius: 6px;
        margin-top: 5px;
    }

    /* 4. NEW: Activation hook triggered by JavaScript */
    .nav-links li.dropdown.open .dropdown-menu {
        max-height: 300px; /* Ample safe layout breathing room to expand into */
        opacity: 1 !important;
        visibility: visible !important;
        padding: 0.5rem 0 !important;
    }

    .dropdown-menu a {
        font-size: 1rem !important;
        padding: 0.6rem 0 !important;
    }

    .nav-phone-btn {
        margin-top: 1rem;
        font-size: 1rem !important;
        padding: 0.7rem 2rem;
    }

    /* Hero Slider Spacing Overrides */
    .hero-slider {
        height: 56.25vw;
        margin-top: 82px;
    }
    .slide-content {
        padding: 0 15px;
    }
    .slide-content h1 {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
        letter-spacing: 1px;
    }
    .slide-content .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
    #hero-video {
        object-fit: cover !important;
        background-color: transparent;
    }
    #mute-toggle {
        bottom: 10px !important;
        right: 10px !important;
        padding: 6px 12px !important;
        font-size: 0.75rem !important;
    }
    .slider-dots {
        bottom: 10px;
    }
    .dot {
        width: 8px;
        height: 8px;
        margin: 0 4px;
    }
}
/* Offerings Grid */
.offerings {
    background: var(--section-offerings);
}

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

.card {
    background: var(--bg-color);
    border: none;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}

.card-img {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.card:hover .card-img img {
    transform: scale(1.05);
}

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

.card-body {
    padding: 2rem;
    text-align: center;
}

.card-body h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--text-main);
}

.card-body p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* Intro Section */
.intro {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.intro-text {
    flex: 1;
}

.intro-image {
    flex: 1;
    position: relative;
}

.intro-image img {
    border-radius: 16px;
    box-shadow: -20px 20px 0px rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Brands Section */
.brands-section {
    background: var(--section-brands);
}

.brand-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 4rem;
    margin-top: 3rem;
}

.brand-logos h4 {
    font-size: 2rem;
    color: var(--text-muted);
    font-family: var(--font-body);
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.brand-logos h4:hover {
    opacity: 1;
    color: var(--primary-color);
}

/* Footer Section */
footer {
    background: var(--section-footer);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

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

.footer-col h3 {
    color: var(--text-main);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-col p,
.footer-col a {
    color: var(--text-muted);
    margin-bottom: 0.8rem;
    display: block;
}

.footer-col a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Animations Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-in-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Generic Header for Subpages */
.page-header {
    padding: 10rem 0 5rem;
    background: var(--section-offerings);
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.page-header h1 {
    font-size: 3rem;
    color: var(--primary-color);
}

/* Responsive */
@media screen and (max-width: 900px) {
    h1 {
        font-size: 2.5rem;
    }
    .intro {
        flex-direction: column;
    }
}

@media screen and (max-width: 768px) {
    .logo {
        font-size: 1.2rem;
    }
    .logo img {
        height: 50px !important;
    }
    .nav-links {
        position: fixed;
        right: -100%;
        top: 82px;
        flex-direction: column;
        background: var(--bg-color);
        width: 60%;
        height: 100vh;
        padding: 2rem;
        transition: right 0.3s ease;
        border-left: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-links.active {
        right: 0;
    }

    .menu-toggle {
        display: block;
    }
}

/* Professional Dropdown Menu Styles */
.dropdown {
    position: relative;
}

/* Invisible bridge so mouse doesn't fall off when moving to dropdown */
.dropdown::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 20px;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--bg-color);
    min-width: 240px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    list-style: none;
    border-top: 3px solid var(--primary-color);
}

/* Upward pointing triangle for dropdown */
.dropdown-menu::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--primary-color);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu a {
    display: flex !important;
    align-items: center;
    padding: 0.8rem 1.5rem !important;
    color: var(--text-main) !important;
    text-transform: capitalize !important;
    font-size: 0.95rem !important;
    font-weight: 500 !important;
    letter-spacing: 0.3px !important;
    transition: all 0.2s ease !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

.dropdown-menu a:hover {
    background: var(--section-offerings) !important;
    color: var(--primary-color) !important;
    padding-left: 2rem !important;
}

/* Nav Item Hover Effects */
.nav-links > li > a:not(.nav-phone-btn) {
    position: relative;
    transition: color 0.3s ease;
}

.nav-links > li > a:not(.nav-phone-btn)::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links > li:hover > a:not(.nav-phone-btn)::after {
    width: 100%;
}

/* Update Footer Colors for Dark Background */
footer {
    color: #eeeeee;
    border-top: none;
}
.footer-col h3 {
    color: #ffffff;
}
.footer-col p,
.footer-col a {
    color: #aaaaaa;
}
.footer-col a:hover {
    color: var(--primary-color);
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #888888;
}
.social-icons a i {
    color: #aaaaaa !important;
}
.social-icons a:hover i {
    color: var(--primary-color) !important;
}
.footer-col strong {
    color: #ffffff !important;
}

/* Mobile Adjustments for Dropdown */
@media screen and (max-width: 768px) {
    .dropdown-menu {
        position: static;
        transform: none !important;
        box-shadow: none;
        border-radius: 0;
        border-top: none;
        padding: 0;
        margin-top: 1rem;
        opacity: 1;
        visibility: visible;
        display: none;
        background: transparent;
    }
    .dropdown-menu::before {
        display: none;
    }
    .dropdown:hover .dropdown-menu,
    .dropdown:focus-within .dropdown-menu {
        display: flex;
    }
    .dropdown-menu a {
        padding: 0.8rem 1rem !important;
        border-bottom: none;
        color: var(--text-muted) !important;
    }
    .dropdown-menu a:hover {
        padding-left: 1.5rem !important;
        background: transparent !important;
    }
}

/* Testimonials Section */
.testimonials-section {
    position: relative;
    background: var(--bg-color-alt);
    padding: 6rem 0;
    overflow: hidden;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
}

.bg-watermark {
    position: absolute;
    top: -20px;
    left: -20px;
    font-size: 15vw;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.02);
    line-height: 1;
    pointer-events: none;
    z-index: 0;
    white-space: nowrap;
}

.testimonials-title {
    color: var(--primary-color);
    font-size: 2.8rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
    text-align: left;
    font-weight: 700;
}

.reviews-header {
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
    text-align: center;
}

.reviews-rating-text {
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.reviews-stars-main {
    color: #fbbc05;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.reviews-count {
    font-size: 0.95rem;
    color: var(--text-main);
    margin-bottom: 1rem;
}

.google-logo {
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: -1px;
}

.reviews-carousel-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.review-nav {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-muted);
    transition: all 0.2s ease;
    flex-shrink: 0;
    z-index: 10;
}

.review-nav:hover {
    color: var(--primary-color);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.reviews-carousel {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 1rem 0.5rem;
    scroll-behavior: smooth;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
    width: 100%;
}

.reviews-carousel::-webkit-scrollbar {
    display: none;
}

.review-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    min-width: 300px;
    max-width: 320px;
    flex: 0 0 auto;
    scroll-snap-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
    text-align: left;
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.8rem;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info {
    flex: 1;
}

.author-info h5 {
    font-size: 0.95rem;
    color: var(--text-main);
    margin-bottom: 0.1rem;
    font-weight: 600;
}

.author-info span {
    font-size: 0.8rem;
    color: #999;
}

.google-icon {
    width: 20px;
    height: 20px;
}

.review-stars {
    color: #fbbc05;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 2px;
}

.verified-icon {
    color: #34a853;
    margin-left: 6px;
    font-size: 0.9rem;
}

.review-text {
    font-size: 0.9rem;
    color: var(--text-main);
    line-height: 1.6;
    margin-bottom: 0.8rem;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more {
    font-size: 0.85rem;
    color: #888;
    cursor: pointer;
}

@media screen and (max-width: 768px) {
    .testimonials-title {
        text-align: center;
        font-size: 2rem;
    }
    .bg-watermark {
        font-size: 25vw;
        top: 0;
    }
    .review-nav {
        display: none; /* Hide arrows on mobile, rely on swipe */
    }
    .review-card {
        min-width: 260px;
    }
}

/* ==========================================================================
   Gallery Section & Lightbox
   ========================================================================== */

/* Filter Controls */
.filter-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
    margin-top: 1.5rem;
}

.filter-btn {
    padding: 0.6rem 1.5rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: transparent;
    color: var(--text-main);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(191, 161, 95, 0.2);
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;

    /* --- THE GLITCH FIXES --- */
    contain: layout style; /* Isolates layout changes from affecting the rest of the DOM tree */
    transform: translateZ(0); /* Pushes the entire grid structure to a hardware-accelerated composite layer */
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    height: 280px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 1;
    transform: scale(1);

    /* --- THE GLITCH FIXES --- */
    transform: translateZ(0); /* Isolates each element's internal graphics render plane */
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    will-change: transform;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    /* --- THE GLITCH FIXES --- */
    image-rendering: -webkit-optimize-contrast; /* Keeps things sharp during transforms */
    transform: translateZ(0);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0) 100%
    );
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    transition: all 0.3s ease;
    pointer-events: none;

    /* --- THE GLITCH FIXES --- */
    transform: translate3d(0, 0, 0); 
    will-change: opacity, transform;
}

.gallery-overlay h4 {
    color: white;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 0.3rem;
    transform: translateY(15px);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-overlay span {
    color: var(--primary-color);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transform: translateY(15px);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.05s;
}

/* Gallery Item Hover Effects */
.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay h4,
.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.96);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

.lightbox-modal.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content-wrapper {
    position: relative;
    width: 90%;
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-img-container {
    width: 100%;
    max-height: 75vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    background: #000;
}

.lightbox-img-container img {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    animation: zoomIn 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.lightbox-info {
    width: 100%;
    text-align: center;
    margin-top: 1.5rem;
    color: white;
}

.lightbox-category {
    color: var(--primary-color);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 0.3rem;
    display: block;
}

.lightbox-caption {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 500;
}

/* Lightbox Controls */
.lightbox-close {
    position: absolute;
    top: -45px;
    right: 0;
    background: transparent;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition:
        transform 0.3s,
        color 0.3s;
}

.lightbox-close:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10000;
}

.lightbox-nav:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.lightbox-prev {
    left: -80px;
}

.lightbox-next {
    right: -80px;
}

.lightbox-prev:hover {
    transform: translateY(-50%) translateX(-5px);
}

.lightbox-next:hover {
    transform: translateY(-50%) translateX(5px);
}

/* Mobile Adjustments for Lightbox */
@media screen and (max-width: 1100px) {
    .lightbox-prev {
        left: 10px;
        background: rgba(0, 0, 0, 0.6);
    }
    .lightbox-next {
        right: 10px;
        background: rgba(0, 0, 0, 0.6);
    }
}

@media screen and (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    .gallery-item {
        height: 220px;
    }
    .lightbox-caption {
        font-size: 1.2rem;
    }
    .lightbox-close {
        top: -40px;
        right: 10px;
    }
}

/* ==========================================================================
   Blog Listing & Details
   ========================================================================== */

/* Blog Layout Header & Search Bar */
.blog-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: var(--bg-color-alt);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.blog-search-container {
    position: relative;
    flex: 1;
    min-width: 280px;
    max-width: 400px;
}

.blog-search-container input {
    width: 100%;
    padding: 0.8rem 1.2rem 0.8rem 2.8rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 30px;
    background: var(--bg-color);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-main);
    transition: all 0.3s;
}

.blog-search-container input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(191, 161, 95, 0.1);
}

.blog-search-container i {
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.blog-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.blog-category-btn {
    padding: 0.5rem 1.2rem;
    font-family: var(--font-body);
    font-size: 0.8rem;
    text-transform: capitalize;
    background: transparent;
    color: var(--text-muted);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.blog-category-btn:hover,
.blog-category-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Blog Cards Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
}

.blog-card {
    background: var(--bg-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.03);
    transition:
        transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        box-shadow 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card-img {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.blog-card-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-meta {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.blog-meta .cat {
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    line-height: 1.4;
    margin-bottom: 1rem;
    color: var(--text-main);
    transition: color 0.3s;
}

.blog-excerpt {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.blog-readmore {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: auto;
}

.blog-readmore i {
    font-size: 0.8rem;
    transition: transform 0.3s;
}

/* Blog Hover State */
.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.05);
}

.blog-card:hover h3 {
    color: var(--primary-color);
}

.blog-card:hover .blog-readmore i {
    transform: translateX(5px);
}

@media screen and (max-width: 768px) {
    .blog-controls {
        flex-direction: column;
        align-items: stretch;
    }
    .blog-search-container {
        max-width: 100%;
    }
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ==========================================================================
   Single Blog Post Page Styles
   ========================================================================== */
.post-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 8rem 1.5rem 6rem;
}

.post-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-family: var(--font-body);
    font-weight: 500;
    margin-bottom: 2rem;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.post-back-btn i {
    transition: transform 0.3s;
}

.post-back-btn:hover i {
    transform: translateX(-4px);
}

.post-header {
    margin-bottom: 3rem;
    text-align: center;
}

.post-category {
    color: var(--primary-color);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: block;
}

.post-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    line-height: 1.2;
    color: var(--text-main);
    margin-bottom: 1.5rem;
}

.post-meta-details {
    font-family: var(--font-body);
    color: var(--text-muted);
    font-size: 0.9rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.post-meta-details span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.post-featured-img {
    width: 100%;
    max-height: 500px;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 4rem;
}

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

.post-content {
    font-family: var(--font-body);
    color: var(--text-main);
    font-size: 1.1rem;
    line-height: 1.8;
}

.post-content p {
    margin-bottom: 2rem;
}

.post-content h2,
.post-content h3 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-top: 3rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
}

.post-content h2 {
    font-size: 2rem;
}

.post-content h3 {
    font-size: 1.5rem;
}

.post-content ul,
.post-content ol {
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.post-content li {
    margin-bottom: 0.8rem;
}

.post-content blockquote {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.4rem;
    color: var(--primary-color);
    border-left: 4px solid var(--primary-color);
    padding-left: 2rem;
    margin: 3rem 0;
    line-height: 1.5;
}

@media screen and (max-width: 768px) {
    .post-container {
        padding-top: 6rem;
    }
    .post-title {
        font-size: 2.2rem;
    }
    .post-content {
        font-size: 1rem;
    }
    .post-content blockquote {
        font-size: 1.2rem;
        padding-left: 1.5rem;
    }
}
/* ==========================================================================
   About Page Custom Section Expansions
   ========================================================================== */

/* Counter Metrics Banner Section */
.counter-banner-section {
    position: relative;
    padding: 6rem 0;
    background-image: url("../images/granite_display.avif");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #ffffff;
    z-index: 1;
    text-align: center;
}

.counter-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(26, 26, 26, 0.68), rgba(15, 15, 15, 0.62));
    z-index: 2;
}

.counter-banner-container {
    position: relative;
    z-index: 3;
}

.counter-banner-title {
    color: #ffffff !important;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 2.2rem;
    margin-bottom: 4rem;
    letter-spacing: 0.5px;
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem;
}

.counter-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.counter-icon {
    color: var(--primary-color);
    margin-bottom: 1rem;
    opacity: 0.9;
}

.counter-number {
    font-family: var(--font-body);
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.counter-label {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
    color: #cccccc;
    text-transform: capitalize;
}

/* Purpose, Mission, Vision Grid Layout styling */
.pmv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-top: 1rem;
}

.pmv-card {
    background: var(--bg-color);
    border-radius: 16px;
    padding: 3rem 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition:
        transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
}

.pmv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(191, 161, 95, 0.08);
    border-color: rgba(191, 161, 95, 0.3);
}

.pmv-icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(191, 161, 95, 0.08);
    color: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: var(--transition);
}

.pmv-card:hover .pmv-icon-wrapper {
    background: var(--primary-color);
    color: var(--bg-color);
    transform: scale(1.05);
}

.pmv-icon-wrapper svg {
    width: 28px;
    height: 28px;
}

.pmv-card h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-main);
    margin-bottom: 1.2rem;
    font-weight: 600;
}

.pmv-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 1.2rem;
}

.pmv-card p:last-child {
    margin-bottom: 0;
}

/* Luxury Showcase Layout Header Controls */
.section-title-premium {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 1rem;
}

.title-accent-line {
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    margin: 0 auto 1.5rem;
    border-radius: 2px;
}

/* Comprehensive Grid Layout Framework */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.5rem;
}

/* Highly Polish Feature/USP Block Styling */
.feature-card-premium {
    background: var(--bg-color);
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid rgba(0, 0, 0, 0.02);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.01);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.feature-card-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
    border-color: rgba(191, 161, 95, 0.25);
}

.feature-icon-box {
    width: 50px;
    height: 50px;
    color: var(--primary-color);
    background: rgba(191, 161, 95, 0.05);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.feature-icon-box.small {
    width: 40px;
    height: 40px;
    margin-bottom: 0;
}

.feature-icon-box svg {
    width: 24px;
    height: 24px;
}

.feature-icon-box.small svg {
    width: 20px;
    height: 20px;
}

.feature-card-premium:hover .feature-icon-box {
    background: rgba(191, 161, 95, 0.12);
}

.feature-header-inline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 1.5rem;
}

.usp-badge {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary-color);
    background: rgba(191, 161, 95, 0.1);
    padding: 0.3rem 0.7rem;
    border-radius: 30px;
    letter-spacing: 0.5px;
}

.feature-card-premium h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--text-main);
    margin-bottom: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.feature-card-premium p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
}

/* Elegant History Block Line Segment Alignment */
.history-block {
    max-width: 850px;
    margin: 0 auto;
    border-left: 3px solid var(--primary-color);
    padding: 0.5rem 0 0.5rem 3rem;
}

.history-content h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
}

/* Responsive Structural Fallbacks */
@media screen and (max-width: 768px) {
    .section-title-premium {
        font-size: 2.1rem;
    }
    .pmv-grid,
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .pmv-card {
        padding: 2.5rem 2rem;
    }
    .feature-card-premium {
        padding: 2rem;
    }
    .history-block {
        padding-left: 1.5rem;
        margin-left: 0.5rem;
    }
}

/* ==========================================================================
   Premium FAQ Section
   ========================================================================== */
.faq-section {
    background: var(--bg-color-alt);
    border-top: 1px solid rgba(0, 0, 0, 0.02);
}

.faq-header-block {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-dual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.faq-item {
    background: var(--bg-color);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.01);
    overflow: hidden;
    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(191, 161, 95, 0.25);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.03);
}

.faq-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-main);
    transition: color 0.3s ease;
}

.faq-trigger:focus {
    outline: none;
}

.faq-item.active {
    border-color: var(--primary-color);
}

.faq-item.active .faq-trigger {
    color: var(--primary-color);
}

/* Elegant CSS Plus/Minus Transform Icon */
.faq-icon {
    position: relative;
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
    content: "";
    position: absolute;
    background-color: currentColor;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Horizontal Line */
.faq-icon::before {
    top: 6px;
    left: 0;
    width: 14px;
    height: 2px;
}

/* Vertical Line */
.faq-icon::after {
    top: 0;
    left: 6px;
    width: 2px;
    height: 14px;
}

/* Rotate vertical bar out of sight when open to make a perfect minus sign */
.faq-item.active .faq-icon::after {
    transform: rotate(90deg);
    opacity: 0;
}

.faq-item.active .faq-icon::before {
    transform: rotate(180deg);
}

/* CSS Grid Transition Method for Dynamic Auto-Height Panels */
.faq-panel {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.active .faq-panel {
    grid-template-rows: 1fr;
}

.faq-content {
    overflow: hidden;
}

.faq-content p {
    padding: 0 1.5rem 1.5rem 1.5rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
}

/* Responsive Structural Breakdown */
@media screen and (max-width: 992px) {
    .faq-dual-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
}

@media screen and (max-width: 768px) {
    .faq-trigger {
        padding: 1.2rem;
        font-size: 0.95rem;
    }
    .faq-content p {
        padding: 0 1.2rem 1.2rem 1.2rem;
        font-size: 0.9rem;
    }
}
/* Footer Logo (Transparent SVG) */
.footer-logo {
    display: inline-block;
    margin-bottom: 1.5rem;
    max-width: 240px;
    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}

.footer-logo:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.footer-logo img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    object-fit: contain;
    margin: 0;
}

/* Granite Grid */
.premium-lazy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.8rem;
}

/* Cards */
.granite-grid-card {
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    overflow: hidden;
    background: #ffffff;
    display: flex;
    flex-direction: column;

    /* Lightweight reveal */
    opacity: 0;
    transition: opacity 0.25s ease;

    /* Better rendering performance */
    will-change: opacity;
}

/* Reveal state */
.granite-grid-card.revealed {
    opacity: 1;
}

/* Hover effects only on devices that actually support hover */
@media (hover: hover) and (pointer: fine) {
    .granite-grid-card {
        transition:
            opacity 0.25s ease,
            transform 0.2s ease,
            box-shadow 0.2s ease;
    }

    .granite-grid-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    }
}

/* Image wrapper */
.card-image-wrapper {
    aspect-ratio: 1 / 1;
    width: 100%;
    overflow: hidden;
    background: #f8f9fa;
    border-bottom: 1px solid #cbd5e1;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* Images */
.lazy-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;

    /*
      Show image immediately once decoded.
      No image fade animation.
    */
    opacity: 1;
}

/* Optional image fade-in */
.lazy-img.fade {
    opacity: 0;
    transition: opacity 0.2s ease;
}

.lazy-img.fade.loaded {
    opacity: 1;
}

/* Title */
.card-title-box {
    padding: 1.2rem 1rem;
    min-height: 4.5rem;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;
    background: #ffffff;
}

.card-title-box h4 {
    margin: 0;

    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.3;

    color: var(--text-main);
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .premium-lazy-grid {
        gap: 1rem;
    }

    /*
      Disable transitions on mobile
      for maximum scrolling smoothness.
    */
    .granite-grid-card,
    .lazy-img {
        transition: none !important;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .granite-grid-card,
    .lazy-img {
        transition: none !important;
        animation: none !important;
    }
}
/* ==========================================================================
   Fixed Floating WhatsApp Button
   ========================================================================== */
.whatsapp-btn-fixed {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background-color: #25d366; /* Official WhatsApp Green */
    color: #ffffff !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    height: 56px;
    min-width: 56px;
    border-radius: 28px;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
    z-index: 9999;
    text-decoration: none !important;
    font-family: inherit;
    font-weight: 600;
    font-size: 15px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    white-space: nowrap;
}

/* WhatsApp Icon Styling */
.whatsapp-btn-fixed i {
    font-size: 24px;
    display: inline-block;
}

/* Text Element Hidden State (Mobile Baseline) */
.whatsapp-btn-text {
    max-width: 0;
    opacity: 0;
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    padding-left: 0;
}

/* Smooth Click/Tap Shrink Effect */
.whatsapp-btn-fixed:active {
    transform: scale(0.95);
}

/* ==========================================================================
   Desktop-Specific Hover Interaction (Screens over 768px wide)
   ========================================================================== */
@media screen and (min-width: 768px) {
    /* Expand Container Width on Hover */
    .whatsapp-btn-fixed:hover {
        padding: 0 24px;
        background-color: #128c7e; /* WhatsApp Darker Teal Shade */
        box-shadow: 0 6px 20px rgba(18, 140, 126, 0.4);
    }

    /* Reveal Hidden Text Component smoothly */
    .whatsapp-btn-fixed:hover .whatsapp-btn-text {
        max-width: 200px; /* Ample space to render string */
        opacity: 1;
        padding-left: 10px;
    }
}

/* ==========================================================================
   Premium Bathware & Kitchenware Extended Styles
   ========================================================================== */

/* 1. Header & Hero Layout Overrides */
.header-content {
    text-align: center;
    padding: 4rem 0;
}

.header-content h1 {
    font-family: var(--font-heading), serif;
    font-size: 3.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.header-content p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    color: white;
    opacity: 0.6;
    line-height: 1.5;
}

/* 2. Grid Structures for Inner Sections */
.intro-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

/* Modernized Feature Blocks Layout */
.features-bg-section {
    background-color: #fcfbfa; /* Soft luxury warming cream undertone tint */
    padding: 5rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: -1rem;
    margin-bottom: 3rem;
}

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

.feature-card-compact {
    background: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    border: 1px solid #f1effc;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.feature-card-compact:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(191, 161, 95, 0.08);
}

.feature-card-compact i {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1.2rem;
    display: inline-block;
}

.feature-card-compact h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-main);
    letter-spacing: 0.5px;
}

.feature-card-compact p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* 3. Banner Image Separators Framework */
.middle-parallax-banner {
    background-size: cover;
    background-position: center;
    background-attachment: scroll; /* Smooth performance configuration across devices */
    padding: 8rem 1rem;
    color: #ffffff;
    text-align: center;
}

.middle-parallax-banner h2 {
    color: #ffffff !important;
    font-size: 2.8rem;
    font-family: var(--font-heading);
    margin-bottom: 1rem;
}

.middle-parallax-banner p {
    font-size: 1.15rem;
    letter-spacing: 1px;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
}

/* 4. Split Item Content Explorer rows */
.split-explorer-row {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 5rem;
    align-items: center;
}

.split-explorer-text {
    flex: 1;
}

.split-explorer-text h3 {
    font-size: 1.8rem;
    color: var(--text-main);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.split-explorer-text p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.luxury-bullet-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.luxury-bullet-list li {
    font-size: 1rem;
    color: var(--text-main);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.luxury-bullet-list li i {
    color: var(--primary-color);
    font-size: 0.85rem;
    margin-right: 12px;
}

/* 5. Image Boxes Controls */
.content-showcase-img {
    flex: 1;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 8px;
    background-color: #f5f5f5;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
}

.content-showcase-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.content-showcase-img:hover img {
    transform: scale(1.03);
}

/* 6. Deep Footer Banner Component */
.page-footer-banner {
    background-size: cover;
    background-position: center;
    padding: 6rem 1rem;
    color: #ffffff;
}

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

.banner-grid-col h3 {
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.banner-bullet-list {
    list-style: none;
    padding: 0;
}

.banner-bullet-list li {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    opacity: 0.9;
}

.banner-bullet-list li i {
    color: var(--primary-color);
    font-size: 0.8rem;
    margin-right: 15px;
}

.banner-grid-col p {
    line-height: 1.7;
    opacity: 0.85;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.brand-signature-text {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.95rem !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Closing Callout Block */
.showroom-closing-card {
    display: flex;
    flex-direction: column-reverse;
    background: #1c1d1f;
    color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
}

.closing-text {
    padding: 3rem 2rem;
    flex: 1.2;
}

.closing-text h3 {
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.closing-text p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.minimized-height {
    flex: 0.8;
    aspect-ratio: 16 / 9;
    border-radius: 0;
}

/* ==========================================================================
   Responsive Viewport Overrides (768px and up)
   ========================================================================== */
@media screen and (min-width: 768px) {
    .intro-grid {
        grid-template-columns: 1.2fr 0.8fr;
        gap: 4rem;
    }

    .split-explorer-row {
        flex-direction: row;
        gap: 5rem;
    }

    .split-explorer-row.row-reverse {
        flex-direction: row-reverse;
    }

    .footer-banner-grid {
        grid-template-columns: 0.9fr 1.1fr;
        gap: 6rem;
    }

    .text-right-desktop {
        text-align: right;
    }

    .text-right-desktop .btn {
        float: right;
    }

    .showroom-closing-card {
        flex-direction: row;
        align-items: center;
    }

    .closing-text {
        padding: 4rem;
    }

    .minimized-height {
        height: 100%;
        aspect-ratio: auto;
        align-self: stretch;
    }

    .middle-parallax-banner {
        background-attachment: fixed; /* Activates pure luxury parallax behavior on desktop */
        padding: 10rem 0;
    }
}

@media screen and (max-width: 480px) {
    .header-content h1 {
        font-size: 2.2rem;
    }
    .middle-parallax-banner h2 {
        font-size: 1.8rem;
    }
    .banner-grid-col h3 {
        font-size: 1.6rem;
    }
}

/* Custom Stone Layout Adjustments */
.split-row-layout {
    align-items: center;
}

@media screen and (min-width: 768px) {
    .split-row-layout {
        flex-direction: row !important;
    }
    .split-row-layout.row-reverse-desktop {
        flex-direction: row-reverse !important;
    }
}

@media screen and (max-width: 767px) {
    .split-row-layout {
        gap: 1.5rem !important;
    }
    .content-showcase-box {
        aspect-ratio: 16 / 10 !important;
        margin-top: 0.5rem;
    }
}

/* ==========================================================================
   Modern Fixed Schedule Booking Dialog
   ========================================================================== */
.booking-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 16, 17, 0.6);
    backdrop-filter: blur(8px); /* Frosted glass effect */
    z-index: 10000; /* Stays securely above header arrays and WhatsApp badge */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;

    /* Initial hidden state setup */
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.4s ease,
        visibility 0.4s ease;
}

/* Open Animation Dynamic State trigger */
.booking-modal-overlay.is-visible {
    opacity: 1;
    visibility: visible;
}

.booking-modal-card {
    background: #ffffff;
    width: 100%;
    max-width: 550px;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    position: relative;
    border: 1px solid rgba(191, 161, 95, 0.1);

    /* Slide transition mechanics */
    transform: translateY(30px) scale(0.98);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.booking-modal-overlay.is-visible .booking-modal-card {
    transform: translateY(0) scale(1);
}

/* Close Exit Icon button */
.booking-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    color: var(--text-muted, #777777);
    transition: color 0.2s ease;
}

.booking-modal-close:hover {
    color: var(--primary-color, #bfa15f);
}

/* Layout Header Branding */
.booking-modal-header {
    margin-bottom: 1.8rem;
    text-align: center;
}

.booking-modal-header h3 {
    font-family: var(--font-heading), serif;
    font-size: 1.8rem;
    color: var(--text-main, #1c1c1c);
    margin-bottom: 0.4rem;
}

.booking-modal-header p {
    font-size: 0.95rem;
    color: var(--text-muted, #666666);
}

/* Form Fields Core Framework */
.booking-modal-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-group-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.2rem;
}

.form-input-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-input-field label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-main, #1c1c1c);
}

.form-input-field select{
    width: 100%;
    padding: 1rem;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: transparent;
    font: inherit;
    transition: all 0.3s ease;
}

.form-input-field input,
.form-input-field textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #e2e2e2;
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.95rem;
    background-color: #fafafa;
    transition:
        border-color 0.25s ease,
        background-color 0.25s ease;
}

.form-input-field select:focus,
.form-input-field input:focus,
.form-input-field textarea:focus {
    outline: none;
    border-color: var(--primary-color, #bfa15f);
    background-color: #ffffff;
}

.submit-booking-btn {
    width: 100%;
    margin-top: 0.5rem;
    padding: 1rem;
    font-weight: 600;
    text-align: center;
}

/* Responsive breakpoint layout rules */
@media screen and (min-width: 576px) {
    .form-group-grid {
        grid-template-columns: 1fr 1fr; /* Split email and phone rows on bigger devices */
    }
}

.contact-section {
    padding-block: 6rem;
}

.section-heading {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-subtitle {
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.85rem;
    font-weight: 600;
}

.section-heading h2 {
    margin: 0.75rem 0 1rem;
}

.section-heading p {
    color: var(--text-muted);
    line-height: 1.8;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: start;
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card,
.contact-form,
.branch-card {
    background: var(--card-bg, #fff);
    border: 1px solid rgba(191, 161, 95, 0.15);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.contact-card:hover,
.contact-form:hover,
.branch-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary-color);
}

.studio-badge {
    display: inline-block;
    background: rgba(191, 161, 95, 0.12);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.flagship-card h3 {
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

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

.info-item i {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-top: 4px;
    flex-shrink: 0;
}

.info-item strong,
.info-item a {
    display: block;
    margin-top: 0.35rem;
}

.info-item p {
    margin-top: 0.5rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.info-item span {
    color: var(--text-muted);
}

.info-item a {
    color: inherit;
    text-decoration: none;
}

.info-item a:hover {
    color: var(--primary-color);
}

.contact-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.branches h3 {
    margin-bottom: 1.5rem;
}

.branch-card {
    margin-bottom: 1rem;
}

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

.branch-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.branch-card p {
    color: var(--text-muted);
    line-height: 1.8;
}

.branch-footer {
    margin-top: 1rem;
    font-weight: 600;
}

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

.form-description {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.trust-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.trust-strip span {
    background: rgba(191, 161, 95, 0.08);
    color: var(--text-main);
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    font-size: 0.85rem;
}

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

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 1rem;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: transparent;
    font: inherit;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.map-section {
    margin-top: 5rem;
}

.map-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.map-header span {
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.85rem;
}

.map-container {
    overflow: hidden;
    border-radius: 24px;
    height: 450px;
    border: 1px solid rgba(191, 161, 95, 0.15);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        order: -1;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding-block: 4rem;
    }

    .contact-card,
    .contact-form,
    .branch-card {
        padding: 1.5rem;
        border-radius: 20px;
    }

    .contact-actions {
        flex-direction: column;
    }

    .contact-actions .btn {
        width: 100%;
    }

    .map-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .map-header .btn {
        width: 100%;
    }

    .map-container {
        height: 320px;
    }
}

@media (max-width: 480px) {
    .section-heading {
        margin-bottom: 3rem;
    }

    .contact-card,
    .contact-form,
    .branch-card {
        padding: 1.25rem;
        border-radius: 18px;
    }

    .info-item {
        gap: 0.75rem;
    }

    .info-item i {
        font-size: 1.1rem;
    }

    .trust-strip {
        flex-direction: column;
    }

    .map-container {
        height: 260px;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
}

.form-group select,
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: transparent;
    font: inherit;
    transition: all 0.3s ease;
}

.form-group select:focus,
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* ==========================================================================
   Premium Product Showcase Sheet & Dynamic Zoom Utilities
   ========================================================================== */

.product-viewer-container {
    padding: 2rem 0 6rem 0;
    background-color: var(--bg-color, #ffffff);
}

.breadcrumb-trail {
    font-size: 0.9rem;
    color: var(--text-muted, #777777);
    margin-bottom: 2.5rem;
}

.breadcrumb-trail a {
    color: var(--text-muted, #777777);
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb-trail a:hover {
    color: var(--primary-color, #bfa15f);
}

/* 2-Column Showcase Core Grid Layout */
.product-showcase-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: start;
}

@media screen and (min-width: 992px) {
    .product-showcase-layout {
        grid-template-columns: 1.1fr 0.9fr; /* Left-weighted visual layout tracking focus */
    }
}

/* Left Panel Viewport Layout & Dynamic Magnification Physics */
.product-gallery-view {
    width: 100%;
}

.zoom-lens-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1; /* Forced elegant square viewport ratio profile mapping */
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    background-color: #f7f7f7;
    cursor: zoom-in;
    position: relative;

    /* --- Force the container box to respect its own boundary layer --- */
    transform: translateZ(0);
}

.zoom-target,
#showcaseMainImg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.15s cubic-bezier(0.25, 1, 0.5, 1);
    transform-origin: center center;

    /* --- Force GPU layer activation on both hooks --- */
    transform: translateZ(0);
    -webkit-transform: translateZ(0); /* Crucial fallback for iOS Safari flickers */
    will-change: transform, transform-origin;
}

.zoom-instructions-hint {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted, #888888);
    margin-top: 1rem;
    letter-spacing: 0.5px;
}

/* Right Panel Typography Layout & Metrics */
.product-specs-details .product-badge-tag {
    display: inline-block;
    background-color: rgba(191, 161, 95, 0.1);
    color: var(--primary-color, #bfa15f);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.product-specs-details h1 {
    font-size: 2.8rem;
    font-family: var(--font-heading);
    color: var(--text-main, #111111);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.short-accent-intro {
    font-size: 1.1rem;
    color: var(--primary-color, #bfa15f);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.specs-divider {
    width: 60px;
    height: 3px;
    background-color: var(--primary-color, #bfa15f);
    margin-bottom: 1.5rem;
}

.long-profile-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-muted, #555555);
    margin-bottom: 2rem;
}

/* Component Pillboxes & Unordered Lists */
.features-pill-box h3,
.applications-check-grid h3 {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    color: var(--text-main, #111111);
}

.pills-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 2rem;
}

.spec-pill {
    background-color: #f7f5f0;
    border: 1px solid #e8e4da;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    color: var(--text-main, #333333);
    font-weight: 500;
}

.check-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.8rem;
    margin-bottom: 2.5rem;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.98rem;
    color: var(--text-muted, #444444);
}

.check-list li i {
    color: #25d366; /* Clean active checking confirmation tone color */
    font-size: 1.1rem;
}

/* Large CTA Interactive Form Submission Triggers */
.chat-order-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #25d366 !important;
    color: #ffffff !important;
    border-color: #25d366 !important;
    font-weight: 600;
    padding: 1.2rem 2.5rem;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.25);
    font-size: 1rem;
}

.chat-order-btn:hover {
    background-color: #128c7e !important;
    border-color: #128c7e !important;
}

/* Related Items Footer Grid Row Blocks */
.related-products-section {
    margin-top: 6rem;
    padding-top: 4rem;
    border-top: 1px solid #eee;
}

.related-section-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

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

.related-card {
    cursor: pointer;
    transition:
        transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.3s ease !important;
}

.related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}
