/* ==========================================================================
   DESIGN TOKENS & ROOT VARIABLES
   ========================================================================== */
:root {
    --radius: .75rem;
    --background: oklch(96.7% .005 85);
    --foreground: oklch(20.5% 0 0);
    --card: oklch(98.5% .004 90);
    --card-foreground: oklch(20.5% 0 0);
    --popover: oklch(98.5% .004 90);
    --popover-foreground: oklch(20.5% 0 0);
    --primary: oklch(51% .045 115);
    --primary-foreground: oklch(98.5% .004 90);
    --secondary: oklch(93% .008 88);
    --secondary-foreground: oklch(31% .03 115);
    --muted: oklch(93% .008 88);
    --muted-foreground: oklch(52% .005 80);
    --accent: oklch(91% .02 80);
    --accent-foreground: oklch(31% .03 115);
    --destructive: oklch(50.5% .18 25);
    --destructive-foreground: oklch(98.5% .004 90);
    --border: oklch(90% .01 88);
    --input: oklch(90% .01 88);
    --ring: oklch(51% .045 115);
    --olive: oklch(51% .045 115);
    --olive-dark: oklch(39% .035 118);
    --gold: oklch(66% .07 75);
    --walnut: oklch(46% .06 60);
    --ink: oklch(20.5% 0 0);
    --stone: oklch(96.7% .005 85);
    --stone-border: oklch(90% .01 88);
    --sidebar: oklch(98.5% .004 90);
    --sidebar-foreground: oklch(20.5% 0 0);
    --sidebar-primary: oklch(51% .045 115);
    --sidebar-primary-foreground: oklch(98.5% .004 90);
    --sidebar-accent: oklch(93% .008 88);
    --sidebar-accent-foreground: oklch(31% .03 115);
    --sidebar-border: oklch(90% .01 88);
    --sidebar-ring: oklch(51% .045 115);
    --font-heading: "Playfair Display", serif;
    --font-body: "Manrope", sans-serif;
}

/* ==========================================================================
   GLOBAL BASE STYLES & TYPOGRAPHY
   ========================================================================== */
html {
    overflow-x: hidden;
    width: 100%;
}

body {
    margin: 0;
    overflow-x: hidden;
    width: 100%;
    font-family: var(--font-body);
    background-color: var(--background);
    color: var(--color-foreground);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
}

a {
    text-decoration: none;
}

.section-space {
    padding-top: 60px;
    padding-bottom: 60px;
}

.heading-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 80px;
}

.heading-flex > div {
    max-width: 720px;
    flex: 1;
}

.heading-flex .btn-outline {
    flex-shrink: 0;
    white-space: nowrap;
    margin-left: auto;
}

.heading-sub {
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    align-items: center;
    gap: .5rem;
    font-size: .72rem;
    font-weight: 600;
    display: inline-flex;
    margin-bottom: 10px;
}

.sub-p {
    color: var(--muted-foreground);
    font-size: 1.1rem;
}

.main-heading {
    font-size: 2.9rem;
    color: var(--foreground);
}

.heading-margin {
    margin-bottom: 30px;
}

.eyebrow {
    font-family: var(--font-body);
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .32em;
    color: var(--gold);
}

.alternate-sec {
    background-color: #FFFAF3;
}

/* ==========================================================================
   BUTTON STYLES
   ========================================================================== */
.btn-main,
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-main {
    background-color: var(--olive);
    color: var(--primary-foreground);
    border: 1px solid var(--olive);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.btn-main:hover {
    background-color: var(--olive-dark);
    border-color: var(--olive-dark);
    color: var(--primary-foreground);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.btn-outline:hover {
    background-color: var(--card);
    border-color: var(--gold);
    color: var(--olive-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.04);
}

.btn-outline:hover i {
    transform: translateX(3px);
    transition: transform 0.2s ease;
}

/* ==========================================================================
   PRELOADER
   ========================================================================== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--background, oklch(96.7% .005 85));
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s ease;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.loader-logo-wrapper {
    overflow: hidden;
    margin-bottom: 2rem;
}

.loader-logo img {
    height: auto;
    max-width: 260px;
    display: block;
    opacity: 0;
    transform: translateY(30px);
    animation: logoRevealUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.2s;
}

.loader-tagline {
    font-family: var(--font-body, "Manrope", sans-serif);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    color: var(--muted-foreground, oklch(52% .005 80));
    text-transform: uppercase;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeIn 1s ease forwards 0.5s;
}

.loader-progress-track {
    width: 180px;
    height: 1px;
    background-color: var(--border, oklch(90% .01 88));
    position: relative;
    overflow: hidden;
    margin-bottom: 1rem;
}

#loader-progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background-color: var(--gold, oklch(66% .07 75));
    transition: width 0.1s linear;
}

#loader-counter {
    font-family: var(--font-body, "Manrope", sans-serif);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--muted-foreground, oklch(52% .005 80));
    letter-spacing: 0.05em;
}

@keyframes logoRevealUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.navbar-sticky-wrapper {
    position: sticky;
    top: 0;
    z-index: 1030;
    transition: all 0.3s ease-in-out;
}

.navbar-nav {
    align-items: center;
}

/* --------------------------------------------------------------------------
   DEFAULT INNER PAGES STATE (White/Scrolled Header by Default)
   -------------------------------------------------------------------------- */
.navbar-sticky-wrapper .navbar {
    background-color: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease-in-out;
}

.navbar-sticky-wrapper .navbar-brand img {
    width: 120px;
    filter: none;
    transition: all 0.3s ease-in-out;
}

.navbar-sticky-wrapper .nav-link {
    color: #000 !important;
    font-family: var(--font-body);
    font-weight: 500;
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
    transition: color 0.2s ease;
    font-size: 0.9rem;
    position: relative;
    display: inline-block;
    line-height: 1.5;
    will-change: color;
}

.navbar-sticky-wrapper .nav-link:hover {
    color: var(--olive) !important;
}

.navbar-sticky-wrapper .search-icon {
    color: #000;
}

.navbar-sticky-wrapper .btn-request-quote {
    background: var(--olive);
}

.navbar-sticky-wrapper .btn-request-quote:hover {
    background: var(--olive-dark);
}

/* --------------------------------------------------------------------------
   INDEX PAGE OVERRIDES (#index-page present)
   Transparent initially, applies dark/light logic on scroll
   -------------------------------------------------------------------------- */
/* Unscrolled state on Index Page */
#index-page .navbar-sticky-wrapper .navbar {
    background-color: transparent;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

#index-page .navbar-sticky-wrapper .navbar-brand img {
    width: 165px;
    filter: brightness(0) invert(1);
}

#index-page .navbar-sticky-wrapper .nav-link {
    color: #fff !important;
}

#index-page .navbar-sticky-wrapper .nav-link:hover {
    color: #fff !important;
}

#index-page .navbar-sticky-wrapper .search-icon {
    color: #fff;
}

#index-page .navbar-sticky-wrapper .btn-request-quote {
    background-color: var(--gold);
}

#index-page .navbar-sticky-wrapper .btn-request-quote:hover {
    background-color: var(--olive-dark);
}

/* Scrolled / Hovered State on Index Page */
#index-page .navbar-sticky-wrapper.scrolled .navbar,
#index-page .navbar-sticky-wrapper.force-scrolled .navbar,
#index-page .navbar-sticky-wrapper:has(.dropdown-mega:hover) .navbar {
    background-color: rgba(255, 255, 255, 0.88) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
    border-bottom: 1px solid var(--border) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03) !important;
}

#index-page .navbar-sticky-wrapper.scrolled .navbar-brand img,
#index-page .navbar-sticky-wrapper.force-scrolled .navbar-brand img,
#index-page .navbar-sticky-wrapper:has(.dropdown-mega:hover) .navbar-brand img {
    width: 100px !important;
    filter: none !important;
}

#index-page .navbar-sticky-wrapper.scrolled .nav-link,
#index-page .navbar-sticky-wrapper.force-scrolled .nav-link,
#index-page .navbar-sticky-wrapper:has(.dropdown-mega:hover) .nav-link {
    color: #000 !important;
}

#index-page .navbar-sticky-wrapper.scrolled .nav-link:hover,
#index-page .navbar-sticky-wrapper.force-scrolled .nav-link:hover,
#index-page .navbar-sticky-wrapper:has(.dropdown-mega:hover) .nav-link:hover {
    color: var(--olive) !important;
}

#index-page .navbar-sticky-wrapper.scrolled .search-icon,
#index-page .navbar-sticky-wrapper.force-scrolled .search-icon,
#index-page .navbar-sticky-wrapper:has(.dropdown-mega:hover) .search-icon {
    color: #000 !important;
}

#index-page .navbar-sticky-wrapper.scrolled .btn-request-quote,
#index-page .navbar-sticky-wrapper.force-scrolled .btn-request-quote,
#index-page .navbar-sticky-wrapper:has(.dropdown-mega:hover) .btn-request-quote {
    background: var(--olive) !important;
}

/* --------------------------------------------------------------------------
   SHARED NAV ELEMENTS & MEGA MENU STYLES
   -------------------------------------------------------------------------- */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 1.5rem;
    right: 1.5rem;
    height: 2px;
    background-color: var(--gold);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.navbar-nav .nav-item {
    display: flex;
    align-items: center;
    height: 100%;
}

.search-form input {
    font-family: var(--font-heading);
}

.search-icon {
    font-size: 1.2rem;
    margin-right: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease, background-color 0.3s ease;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-icon:hover {
    color: oklch(1 0 0);
    background: #ffffff33;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.btn-request-quote {
    color: var(--primary-foreground);
    border: none;
    padding: 0.8rem 1.6rem;
    border-radius: 50px;
    font-weight: 600;
    font-family: var(--font-body);
    transition: background-color 0.2s ease;
    font-size: .875rem;
}

.dropdown-toggle::after {
    border-top: 0em solid;
    border-right: 0em solid transparent;
    border-bottom: 0;
    border-left: 0em solid transparent;
}

.nav-link .bi-chevron-down {
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: center center;
}

.nav-item.dropdown-mega:hover .bi-chevron-down,
.nav-link.dropdown-toggle:hover .bi-chevron-down,
.nav-item.dropdown:hover .bi-chevron-down {
    transform: rotate(180deg);
}

/* --- MEGA MENU LAYOUT & CONTENT --- */
.mega-menu-title-sm {
    color: var(--gold);
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.mega-menu-heading {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.25;
    color: var(--foreground);
    margin-bottom: 1.5rem;
}

.mega-menu-link-arrow {
    color: var(--olive);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.2s ease;
}

.mega-menu-link-arrow:hover {
    color: var(--olive-dark);
    transform: translateX(4px);
}

.btn-quick-enquiry {
    background-color: transparent;
    border: 1px solid var(--border);
    color: var(--foreground);
    border-radius: 50px;
    padding: 0.6rem 2rem;
    font-weight: 600;
    margin-top: 2rem;
    transition: all 0.2s ease;
}

.btn-quick-enquiry:hover {
    background-color: var(--accent);
    color: var(--accent-foreground);
    border-color: var(--accent);
}

.mega-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-menu-list li {
    margin-bottom: 1rem;
}

.mega-menu-list a {
    text-decoration: none;
    color: var(--muted-foreground);
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: .875rem;
    padding: 7px 12px;
    border-radius: .75rem;
    display: inline-block;
}

.mega-menu-list a:hover {
    color: var(--primary);
    background-color: var(--secondary);
}

.mega-menu-col-title {
    font-weight: 600;
    color: var(--foreground);
    display: block;
    margin-bottom: 0.2rem;
}

.mega-menu-col-desc {
    color: var(--muted-foreground);
    font-size: 0.85rem;
    display: block;
}

.mega-menu-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background-color: #fff;
    overflow: hidden;
    height: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mega-menu-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.mega-menu-card img {
    height: 160px;
    object-fit: cover;
}

.mega-menu-card-body {
    padding: 1rem;
}

.mega-menu-card-tag {
    color: var(--gold);
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 0.25rem;
    display: block;
}

.mega-menu-card-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--card-foreground);
    margin-bottom: 0;
}

.mega-menu-list.two-col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px 20px;
    padding-left: 0;
    list-style: none;
}

.mega-menu-list.two-col li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.mega-menu-list.two-col li a::after {
    content: '\F138';
    font-family: 'bootstrap-icons';
    font-size: 0.85rem;
    opacity: 0;
    transform: translateX(-6px);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.mega-menu-list.two-col li a:hover::after {
    opacity: 1;
}

/* --- SEARCH CANVAS & CLOSE BUTTON --- */
.search-canvas {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--card, #ffffff);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
        visibility 0.3s ease;
    z-index: 1020;
}

.search-canvas.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.btn-close-canvas {
    background: transparent;
    border: 1px solid var(--border, #e2ded7);
    border-radius: 30px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--foreground, #222);
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 2px 20px;
    font-size: 14px !important;
}

.btn-close-canvas:hover {
    background-color: var(--accent, #f3efe6);
    color: var(--olive-dark, #393b2f);
}
/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 850px;
    overflow: hidden;
}

.hero .hero-con-div {
    padding-top: 100px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('../../site_assets/img/hero-cinematic.jpg') center center/cover no-repeat;
    animation: heroZoom 28s ease-in-out infinite alternate;
    transform-origin: center center;
}

@keyframes heroZoom {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.4);
    }
}

.hero .overlay-1 {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgb(0 0 0 / 66%), rgb(0 0 0 / 28%), rgba(0, 0, 0, 0));
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.hero-content .btn-outline {
    border-color: var(--background);
    color: var(--background);
}

.hero-content .btn-outline:hover {
    color: var(--primary);
}

.hero h1 {
    color: var(--background);
    font-size: clamp(3.5rem, 6vw, 4.1rem);
    line-height: 1.05;
    margin-top: 10px;
    font-weight: 400;
    width: 90%;
}

.hero .btn-adv {
    background-color: #fff;
    color: var(--green-deep);
}

.hero .btn-adv:hover {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.hero .btn-ghost {
    border: 1px solid #fff;
    color: #ffff;
}

.hero .btn-ghost:hover {
    border: 1px solid var(--gold);
    color: var(--gold);
    background-color: transparent;
}

.hero p.lead-c {
    color: rgb(255 255 255 / 77%);
    font-weight: 500;
    max-width: 35rem;
}

.hero-banner {
    position: relative;
}

.hero-features {
    width: 100%;
    z-index: 10;
    background: transparent;
    border-top: 1px solid rgb(255 255 255 / 22%);
    padding-top: 20px;
    padding-bottom: 20px;
}

.hero-feature-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    text-align: left;
}

.hero-feature-item h2 {
    margin: 0;
    font-size: 2.25rem;
    line-height: 1;
    font-weight: 700;
    color: var(--background);
}

.hero-feature-item p {
    margin: 12px 0 0;
    font-size: .78rem;
    font-weight: 500;
    line-height: 1.5;
    color: rgb(255 255 255 / 77%);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.inner-hero {
    height: auto;
    min-height: auto;
    padding-top: 60px;
    padding-bottom: 60px;
}
.inner-hero .hero-bg{
    background: url('../../site_assets/img/collection-hero.png') center center/cover no-repeat;
}
.inner-hero .hero-con-div {
    padding-top: 80px;
}
.inner-hero-sol .hero-bg{
    background: url('../../site_assets/img/project-1.jpg') center center/cover no-repeat;
}
/* --- SCROLL TO EXPLORE INDICATOR --- */
.scroll-indicator {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    gap: 0.85rem;
    cursor: pointer;
    width: 100%;
    margin-bottom: 14px;
}

.scroll-pill {
    width: 22px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    position: relative;
    display: flex;
    justify-content: center;
    padding-top: 6px;
    transition: border-color 0.3s ease;
}

.scroll-dot {
    width: 6px;
    height: 6px;
    background-color: var(--gold, #c2a677);
    border-radius: 50%;
    animation: scrollDotAnim 2s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

.scroll-text {
    font-family: var(--font-body, "Manrope", sans-serif);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    color: #ffffff;
    text-transform: uppercase;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.scroll-indicator:hover .scroll-pill {
    border-color: var(--gold, #c2a677);
}

.scroll-indicator:hover .scroll-text {
    opacity: 1;
}

@keyframes scrollDotAnim {
    0% {
        opacity: 0;
        transform: translateY(0);
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 1;
        transform: translateY(20px);
    }
    100% {
        opacity: 0;
        transform: translateY(22px);
    }
}

/* ==========================================================================
   ADV-ABOUT SECTION
   ========================================================================== */
.adv-about {
    background-color: var(--background);
}

.adv-about-grid {
    display: grid;
    grid-template-columns: 1fr .9fr;
    gap: 70px;
    align-items: center;
}

.adv-about-content p {
    line-height: 1.5;
    max-width: 560px;
    color: var(--muted-foreground);
    font-weight: 500;
}

.adv-stats {
    display: flex;
    gap: 40px;
    padding-top: 30px;
    margin: 35px 0;
    border-top: 1px solid var(--border);
}

.adv-stats h3 {
    margin: 0;
    font-size: 1.875rem;
    color: var(--foreground);
}

.adv-stats span {
    font-size: .875rem;
    color: var(--muted-foreground);
}

.adv-about-image {
    position: relative;
}

.adv-about-image img {
    width: 100%;
    height: 720px;
    object-fit: cover;
    border-radius: 35px;
}

.adv-card {
    position: absolute;
    bottom: -15px;
    right: -25px;
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 22px 18px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .12);
}

.adv-card i {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--olive);
    color: white;
    border-radius: 50%;
    font-size: 22px;
}

.adv-card strong {
    display: block;
    font-size: 25px;
    font-family: var(--font-heading);
    line-height: 1;
}

.adv-card span {
    font-size: 13px;
    color: var(--muted-foreground);
    font-weight: 500;
}

/* ==========================================================================
   MARQUEE SECTION
   ========================================================================== */
.marquee-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    background-color: var(--background, #f7f5f0);
    padding: 2.5rem 0;
}

.marquee-wrapper::before,
.marquee-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--background, #f7f5f0), transparent);
}

.marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--background, #f7f5f0), transparent);
}

.marquee-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    animation: marqueeScroll 35s linear infinite;
}

.marquee-wrapper:hover .marquee-track {
    animation-play-state: paused;
}

.marquee-card {
    width: 240px;
    height: 130px;
    background-color: #ffffff;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.marquee-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.marquee-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(0%);
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ==========================================================================
   PROCESS SECTION
   ========================================================================== */
.process-section {
    background-color: var(--background, #f7f5f0);
}

.process-row {
    margin-bottom: 5rem;
}

.process-row:last-child {
    margin-bottom: 0;
}

.process-img-wrapper {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    background-color: var(--card, #ffffff);
}

.process-img-wrapper img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-img-wrapper:hover img {
    transform: scale(1.06);
}

.process-content {
    padding: 1rem 0;
}

.process-number {
    font-family: var(--font-heading, "Playfair Display", serif);
    font-size: 3rem;
    font-weight: 500;
    color: var(--gold, #c2a677);
    display: block;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.process-title {
    font-family: var(--font-heading, "Playfair Display", serif);
    font-size: 2rem;
    font-weight: 400;
    color: var(--foreground, #222222);
    margin-bottom: 1rem;
}

.process-desc {
    font-family: var(--font-body, "Manrope", sans-serif);
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--muted-foreground, #777777);
    margin-bottom: 0;
    max-width: 460px;
}

/* --- COLLECTION SLIDER STYLES --- */
.collection-slider-sec {
    background-color: var(--card);
}

.collection-card {
    background-color: var(--card, #f5f3ee);
    border: 1px solid var(--border, oklch(90% .01 88));
    border-radius: 24px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.collection-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

.collection-img-wrap {
    width: 100%;
    height: 280px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.collection-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.collection-card:hover .collection-img-wrap img {
    transform: scale(1.05);
}

.collection-body {
    padding: 1.75rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.collection-title {
    font-family: var(--font-heading, "Playfair Display", serif);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--foreground, #222222);
    line-height: 1.25;
    margin-bottom: 0;
    max-width: 80%;
    height: 60px;
}

.btn-circle-arrow {
    width: 44px;
    height: 44px;
    border: 1px solid var(--border, #e2ded7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--foreground, #222);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.collection-card:hover .btn-circle-arrow {
    background-color: var(--olive, #6d6e5c);
    border-color: var(--olive, #6d6e5c);
    color: #ffffff;
    transform: rotate(-45deg);
}

.collection-link {
    font-family: var(--font-body, "Manrope", sans-serif);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--muted-foreground, #666666);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.2s ease;
    margin-top: 1rem;
}

.collection-link i {
    transition: transform 0.2s ease;
}

.collection-card:hover .collection-link {
    color: var(--olive-dark, #393b2f);
}

.collection-card:hover .collection-link i {
    transform: translateX(4px);
}

/* --- OVERLAY NAVIGATION ARROWS --- */
.collection-nav-btn {
    width: 58px;
    height: 58px;
    background-color: var(--card, #ffffff);
    border: 1px solid var(--border, #e2ded7);
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    color: var(--foreground, #222);
    transition: all 0.3s ease;
    z-index: 10;
}

.div-nav-holder {
    display: block;
    position: absolute;
    top: 60%;
    width: 98.5%;
    height: auto;
}

.collection-nav-btn::after {
    display: none !important;
}

.collection-nav-btn i {
    font-size: 13px;
}

.collection-nav-btn:hover {
    background-color: var(--olive, #6d6e5c);
    border-color: var(--olive, #6d6e5c);
    color: #ffffff;
    transform: scale(1.08);
}

.swiper-button-prev.collection-nav-btn {
    left: -25px;
    top: 50%;
}

.swiper-button-next.collection-nav-btn {
    right: -25px;
}

.hb-sec {
    background-color: #f6f4f0;
}

/* --- FEATURE CHECKLIST --- */
.feature-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 2.5rem;
    align-items: center;
    margin-bottom: 3rem;
    margin-top: 3rem;
}

.feature-checklist li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-body, "Manrope", sans-serif);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--foreground);
    line-height: 1.35;
}

.check-icon {
    width: 36px;
    height: 36px;
    background-color: var(--accent, oklch(91% .02 80));
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gold, oklch(66% .07 75));
    font-size: 1.1rem;
}

/* --- UNIQUE FEATURE CARDS SECTION STYLES --- */
.adv-feat-section {
    background-color: var(--background, #f7f5f0);
}

.adv-feat-card {
    background-color: var(--card, #fcfbfa);
    border: 1px solid var(--border, oklch(90% .01 88));
    border-radius: 24px;
    padding: 3rem 2.25rem 2rem 2.25rem;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.3s ease;
}

.adv-feat-card:hover {
    transform: scale(1.03) translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.07);
    border-color: var(--gold, #c2a677);
}

.adv-feat-card-num {
    font-family: var(--font-heading, "Playfair Display", serif);
    font-size: 2.25rem;
    font-weight: 400;
    color: var(--gold, #c2a677);
    line-height: 1;
    margin-bottom: 1.75rem;
    display: block;
}

.adv-feat-card-title {
    font-family: var(--font-heading, "Playfair Display", serif);
    font-size: 1.65rem;
    font-weight: 400;
    color: var(--foreground, #222222);
    margin-bottom: 1rem;
    line-height: 1.25;
}

.adv-feat-card-desc {
    font-family: var(--font-body, "Manrope", sans-serif);
    font-size: 1rem;
    line-height: 1.65;
    color: var(--muted-foreground, #777777);
    margin-bottom: 3rem;
    flex-grow: 1;
}

.adv-feat-card-divider {
    margin-top: 60px;
    width: 100%;
    height: 1px;
    background-color: var(--border, #eae6df);
    transition: background-color 0.3s ease;
}

.adv-feat-card:hover .adv-feat-card-divider {
    background-color: var(--gold, #c2a677);
}

/* --- COUNTER SECTION STYLES --- */
.adv-counter-section {
    padding: 6rem 0;
    position: relative;
    background-color: var(--olive-dark, #393b2f);
}

.adv-counter-bg {
    position: absolute;
    inset: 0;
    background: url('../../site_assets/img/stats-bg.png') center center / cover no-repeat;
    z-index: 0;
}

.adv-counter-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(45, 48, 35, 0.88), rgba(45, 48, 35, 0.88));
    z-index: 1;
}

.adv-counter-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 0.5rem;
}

.adv-counter-line {
    width: 45px;
    height: 1px;
    background-color: var(--gold, #c2a677);
    opacity: 0.7;
    margin-bottom: 2rem;
}

.adv-counter-num {
    font-family: var(--font-heading, "Playfair Display", serif);
    font-size: clamp(3rem, 4.5vw, 4.25rem);
    font-weight: 400;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.counter-suffix {
    font-family: var(--font-heading, "Playfair Display", serif);
    color: #ffffff;
}

.adv-counter-label {
    font-family: var(--font-body, "Manrope", sans-serif);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    color: #d1c8b8;
    text-transform: uppercase;
    margin-bottom: 0;
}

/* ==========================================================================
   SOLUTION CARDS SECTION
   ========================================================================== */
.adv-sol-section {
    background-color: var(--background, #f7f5f0);
}

.adv-sol-card {
    display: block;
    position: relative;
    height: 420px;
    border-radius: 24px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.adv-sol-card-bg {
    position: absolute;
    inset: 0;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.adv-sol-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 25%,
        rgba(0, 0, 0, 0.55) 65%,
        rgba(0, 0, 0, 0.88) 100%
        );
    transition: opacity 0.4s ease;
}

.adv-sol-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.75rem;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.adv-sol-card-content .model-badge {
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.8);
    padding: 3px 10px;
    border-radius: 100px;
    font-size: .675rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
}

.adv-sol-card-icon {
    font-size: 1.5rem;
    color: var(--gold, #c2a677);
    margin-bottom: 0.85rem;
    line-height: 1;
    transition: transform 0.3s ease;
}

.adv-sol-card-title {
    font-family: var(--font-heading, "Playfair Display", serif);
    font-size: 1.2rem;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 0.65rem;
    transition: color 0.3s ease;
}

.adv-sol-card-link {
    font-family: var(--font-body, "Manrope", sans-serif);
    font-size: 0.825rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.adv-sol-card-link i {
    transition: transform 0.3s ease;
}

/* --- HOVER EFFECTS --- */
.adv-sol-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

.adv-sol-card:hover .adv-sol-card-bg {
    transform: scale(1.08);
}

.adv-sol-card:hover .adv-sol-card-icon {
    transform: translateY(-2px);
}

.adv-sol-card:hover .adv-sol-card-link {
    color: #ffffff;
}

.adv-sol-card:hover .adv-sol-card-link i {
    transform: translateX(5px);
}

/* ==========================================================================
   DESIGN PHILOSOPHY BANNER SECTION
   ========================================================================== */
.adv-philo-section {
    padding: 8rem 0;
    position: relative;
    background-color: var(--ink, #181818);
    color: #ffffff;
}

.adv-philo-bg {
    position: absolute;
    inset: 0;
    background: url('../../site_assets/img/philosophy.jpg') center center / cover no-repeat;
    z-index: 0;
}

.adv-philo-overlay {
    position: absolute;
    inset: 0;
    background: rgba(18, 16, 14, 0.85);
    z-index: 1;
}

.adv-philo-eyebrow {
    font-family: var(--font-body, "Manrope", sans-serif);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    color: var(--gold, #c2a677);
    text-transform: uppercase;
    display: block;
    margin-bottom: 2rem;
}

.adv-philo-heading {
    font-family: var(--font-heading, "Playfair Display", serif);
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    font-weight: 400;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 3rem;
    letter-spacing: -0.01em;
}

.adv-philo-keywords {
    font-family: var(--font-heading, "Playfair Display", serif);
    font-size: clamp(0.95rem, 1.5vw, 1.25rem);
    font-style: italic;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 0;
    letter-spacing: 0.02em;
}

.adv-philo-keywords span {
    display: inline-block;
    padding: 0 0.25rem;
}

/* ==========================================================================
   FOOTER STYLES
   ========================================================================== */
.adv-footer {
    background-color: var(--olive-dark, #434836);
    color: #d1d5db;
    font-family: var(--font-body, "Manrope", sans-serif);
}

.footer-logo {
    max-width: 180px;
    height: auto;
    filter: brightness(0) invert(1);
}

.footer-desc {
    font-size: 0.875rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 0;
}

.footer-text {
    font-size: 0.85rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
}

.footer-text-muted {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
}

.footer-heading {
    font-family: var(--font-body, "Manrope", sans-serif);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
}

.footer-icon {
    font-size: 1rem;
    color: var(--gold, #c2a677);
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-link {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.875rem;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.25s ease, transform 0.25s ease;
    line-height: 1.8;
}

.footer-nav-list li {
    margin-bottom: 0.5rem;
}

.footer-link:hover {
    color: #ffffff;
}

.footer-social-btn {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-btn:hover {
    background-color: var(--gold, #c2a677);
    border-color: var(--gold, #c2a677);
    color: #ffffff;
    transform: translateY(-2px);
}

.footer-map-card {
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background-color: #ffffff;
}

.footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    background-color: rgba(0, 0, 0, 0.08);
}

.footer-bottom-text,
.footer-bottom-link {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-bottom-link:hover {
    color: #ffffff;
}

/* ==========================================================================
   CALL TO ACTION BANNER
   ========================================================================== */
.cta-banner {
    background-color: var(--primary);
    color: var(--card);
    padding-top: 60px;
    padding-bottom: 60px;
}

.cta-heading {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.2;
    color: var(--card);
}

.cta-description {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: oklch(90% .01 88 / 85%);
    max-width: 600px;
}

.cta-banner .btn {
    padding: 0.875rem 2rem;
    border-radius: 9999px;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    transition: all 0.2s ease-in-out;
}

.btn-cta-primary {
    background-color: var(--card);
    color: var(--sidebar-accent-foreground);
    border: 1px solid transparent;
    font-weight: 500;
}

.btn-cta-primary:hover,
.btn-cta-primary:focus {
    background-color: var(--secondary);
    color: var(--sidebar-accent-foreground);
    opacity: 0.95;
}

.btn-cta-secondary {
    background-color: transparent;
    color: var(--card);
    border: 1px solid oklch(90% .01 88 / 40%);
    font-weight: 700;
}

.btn-cta-secondary:hover,
.btn-cta-secondary:focus {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--card);
    border-color: var(--card);
}
/* ==========================================================================
   EDGE-TO-EDGE SPLIT HERO
   ========================================================================== */
.partition-hero {
    background-color: #141414; /* Deep dark tone from image */
    color: #ffffff;
    width: 100%;
    overflow: hidden;
}

/* Content Padding aligned neatly inside the left screen boundary */
.partition-hero-content {
    padding: 7rem 3rem 5rem 5vw; /* 5vw pushes text naturally relative to screen edge */
}

.partition-hero-inner {
    max-width: 580px; /* Prevents text from stretching too wide on massive screens */
}

/* Breadcrumbs */
.partition-breadcrumb .breadcrumb-item,
.partition-breadcrumb .breadcrumb-item a {
    font-family: var(--font-body);
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.2s ease;
}

.partition-breadcrumb .breadcrumb-item a:hover {
    color: var(--gold);
}

.partition-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: rgba(255, 255, 255, 0.25);
    padding: 0 0.4rem;
}

/* Title */
.partition-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 4vw, 3.8rem);
    font-weight: 400;
    line-height: 1.12;
    color: #ffffff;
    margin-bottom: 1.75rem;
}

/* Description */
.partition-desc {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.5rem;
}

/* Checklist Items */
.partition-checklist .checklist-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
}

.check-icon-sm {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.5);
    flex-shrink: 0;
}

/* Gold Button */
.btn-quote-gold {
    background-color: var(--gold, #b8935e);
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    padding: 0.85rem 2.25rem;
    border-radius: 50px;
    border: none;
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-quote-gold:hover,
.btn-quote-gold:focus {
    background-color: var(--olive-dark, #393b2f);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

/* 100% Full-bleed Image Wrapper */
.partition-hero-img-wrapper {
    width: 100%;
    height: 100%;
    min-height: 100%;
}

.partition-hero-img-wrapper img {
    object-fit: cover;
    object-position: center;
    display: block;
}
/* ==========================================================================
   PRODUCT / COLLECTION CARDS STYLES
   ========================================================================== */
.partition-cards-section {
    background-color: var(--background, #f7f5f0);
}

/* Entire Card Clickable Container */
.product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background-color: #fdfbf7; /* Light warm card background */
    border: 1px solid var(--border, oklch(90% .01 88));
    border-radius: 28px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.3s ease;
}

/* Image Container */
.product-card-img-wrap {
    width: 100%;
    height: 320px;
    overflow: hidden;
    position: relative;
    background-color: #eae7e1;
}

/* Image Zoom Effect */
.product-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Card Body Content */
.product-card-body {
    padding: 2rem 1.75rem 1.75rem 1.75rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* Top Tag/Category */
.product-card-tag {
    font-family: var(--font-body, "Manrope", sans-serif);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--gold, #c2a677);
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    display: block;
}

/* Serif Title */
.product-card-title {
    font-family: var(--font-heading, "Playfair Display", serif);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--foreground, #222222);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

/* Description Text */
.product-card-desc {
    font-family: var(--font-body, "Manrope", sans-serif);
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--muted-foreground, #666666);
    margin-bottom: 2rem;
    flex-grow: 1;
}

/* Bottom Link & Animated Arrow */
.product-card-link {
    font-family: var(--font-body, "Manrope", sans-serif);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--foreground, #222222);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: auto;
}

.product-card-arrow {
    font-size: 1rem;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    transform: rotate(-45deg);
}

/* ==========================================================================
   HOVER STATES
   ========================================================================== */
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.08);
    border-color: rgba(194, 166, 119, 0.4);
}

.product-card:hover .product-card-img {
    transform: scale(1.08);
}

.product-card:hover .product-card-arrow {
    transform: translate(0px, 0px);
    /* transform: rotate(-45deg); */
}
/* ==========================================================================
   SOLUTIONS CARDS SECTION
   ========================================================================== */
.recom-section {
    background-color: var(--olive-dark, #393b2f);
    padding-top: 5rem;
    padding-bottom: 5rem;
}
.recom-section .main-heading{
    color: #fff;
    font-size:36px
}
/* Clickable Outer Card Container */
.recom-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 200px;
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 28px;
    padding: 2.25rem 2rem;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.recom-card-body {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Serif Card Title */
.recom-card-title {
    font-family: var(--font-heading, "Playfair Display", serif);
    font-size: 1.75rem;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

/* Subtitle Description */
.recom-card-desc {
    font-family: var(--font-body, "Manrope", sans-serif);
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 0rem;
}

/* Gold Text Link & Arrow */
.recom-card-link {
    font-family: var(--font-body, "Manrope", sans-serif);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--gold, #c2a677);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: auto;
}

.recom-card-arrow {
    font-size: 1rem;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    transform: rotate(-45deg);
}

/* ==========================================================================
   HOVER EFFECTS
   ========================================================================== */
.recom-card:hover {
    background-color: rgba(255, 255, 255, 0.07);
    border-color: rgba(194, 166, 119, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.recom-card:hover .recom-card-arrow {
    transform: translate(0px, 0px);
}
.related-sec  .product-card-title{
    font-size: 1.325rem;
}
/* ==========================================================================
   COLLECTION NAVIGATION BAR
   ========================================================================== */
.collection-nav-bar {
    background-color: var(--background, #f7f5f0);
    border-top: 1px solid var(--border, oklch(90% .01 88));
    margin-top: 60px;
}

/* Outer Link Container */
.collection-nav-link {
    text-decoration: none;
    color: var(--foreground, #222222);
    transition: color 0.3s ease;
}

/* Category Subtitle Tag */
.collection-nav-label {
    font-family: var(--font-body, "Manrope", sans-serif);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--muted-foreground, #888888);
    text-transform: uppercase;
    margin-bottom: 0.2rem;
}

/* Serif Collection Title */
.collection-nav-title {
    font-family: var(--font-heading, "Playfair Display", serif);
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.2;
    color: var(--foreground, #222222);
    transition: color 0.25s ease;
}

/* Arrow Icons */
.nav-arrow {
    font-size: 1.25rem;
    color: var(--foreground, #222222);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), color 0.25s ease;
}

/* Hover States & Arrow Animation */
.collection-nav-link:hover .collection-nav-title {
    color: var(--olive, #6d6e5c);
}

.prev-link:hover .nav-arrow {
    transform: translateX(-5px);
    color: var(--olive, #6d6e5c);
}

.next-link:hover .nav-arrow {
    transform: translateX(5px);
    color: var(--olive, #6d6e5c);
}
/* ==========================================================================
   PRODUCT DETAIL & SCALE ZOOM ON HOVER
   ========================================================================== */
.product-detail-sec {
    background-color: var(--background, #f7f5f0);
    padding-top: 120px
}

/* Image Wrapper Container (Clips scaling image inside borders) */
.product-img-wrapper {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    background-color: var(--card, #ffffff);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    cursor: zoom-in;
    width: 100%;
}

/* Main Image with Smooth Scaling Transition */
.product-main-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 28px;
    transform-origin: center center;
    transition: transform 0.15s ease-out;
    will-change: transform, transform-origin;
}

/* Hover Scaling Factor (e.g., 2 = 200% zoom) */
.product-img-wrapper:hover .product-main-img {
    transform: scale(2);
}

/* Resize/Expand Button on Top Right */
.btn-expand-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
    background-color: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--border, #e2ded7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--foreground, #222222);
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.25s ease;
    z-index: 20;
}

.btn-expand-modal:hover {
    background-color: #ffffff;
    transform: scale(1.08);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

/* Right Side Product Details & Quote Card */
.product-detail-title {
    font-family: var(--font-heading, "Playfair Display", serif);
    font-size: clamp(2.2rem, 3.5vw, 3.2rem);
    font-weight: 400;
    color: var(--foreground, #222222);
    margin-bottom: 1rem;
}

.product-detail-desc {
    font-family: var(--font-body, "Manrope", sans-serif);
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--muted-foreground, #666666);
    margin-bottom: 2.5rem;
    max-width: 520px;
}

.quick-quote-card {
    background-color: var(--card, #fdfbf7);
    border: 1px solid var(--border, oklch(90% .01 88));
    border-radius: 28px;
    padding: 2.5rem 2.25rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.quote-card-title {
    font-family: var(--font-heading, "Playfair Display", serif);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--foreground, #222222);
    margin-bottom: 0.85rem;
}

.quote-card-desc {
    font-family: var(--font-body, "Manrope", sans-serif);
    font-size: 0.925rem;
    line-height: 1.6;
    color: var(--muted-foreground, #666666);
    margin-bottom: 0;
}

.btn-quote-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    background-color: transparent;
    border: 1px solid var(--border, #d8d3c9);
    color: var(--foreground, #222222);
    font-family: var(--font-body, "Manrope", sans-serif);
    font-size: 0.925rem;
    font-weight: 600;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.btn-quote-call:hover {
    background-color: var(--accent, #f3efe6);
    color: var(--foreground, #222222);
    border-color: var(--gold, #c2a677);
}

.btn-quote-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    background-color: var(--olive-dark, #4b523e);
    border: 1px solid var(--olive-dark, #4b523e);
    color: #ffffff;
    font-family: var(--font-body, "Manrope", sans-serif);
    font-size: 0.925rem;
    font-weight: 600;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.btn-quote-whatsapp:hover {
    background-color: var(--olive, #5b634b);
    color: #ffffff;
    border-color: var(--olive, #5b634b);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

body.modal-open {
    overflow: hidden !important;
    touch-action: none;
}

/* Darker Backdrop Override (Bootstrap defaults to ~0.5) */
.modal-backdrop.show {
    opacity: 0.88 !important; /* Adjust darkness from 0.8 to 0.95 */
    background-color: #080808 !important;
}

/* Modal Custom Close Button Positioning & Stacking */
.modal-custom-close {
    position: absolute;
    top: -45px;
    right: 0;
    font-size: 1.6rem;
    opacity: 0.85;
    z-index: 1060;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.modal-custom-close:hover {
    opacity: 1;
    transform: scale(1.1);
}

.modal-preview-img {
    max-height: 85vh;
    object-fit: contain;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}
/* ==========================================================================
   PRODUCT TABS SECTION
   ========================================================================== */
.product-tabs-section {
    background-color: var(--background, #f7f5f0);
}

/* Nav Tabs Track Border Line (Full width underline) */
.product-tabs-nav-wrapper {
    border-bottom: 1px solid var(--border, #e2ded7);
    padding-bottom: 0;
    margin-bottom: 2.5rem;
}

/* Base Nav Link Styles */
.product-nav-tabs {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
    gap: 2.5rem;
    padding-bottom: 0;
    margin-bottom: -1px; /* Aligns tab indicator with wrapper border */
}

.product-nav-tabs::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.product-nav-tabs .nav-link {
    font-family: var(--font-body, "Manrope", sans-serif);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--muted-foreground, #666666);
    background: transparent !important;
    border: none !important;
    padding: 0 0 0.85rem 0;
    position: relative;
    white-space: nowrap;
    transition: color 0.25s ease;
}

/* Base Pseudo-element for Underline */
.product-nav-tabs .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--olive-dark, #434836);
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s ease;
}

/* Hover State */
.product-nav-tabs .nav-link:hover {
    color: var(--foreground, #222222);
}

/* ACTIVE TAB STATE (Shows Underline) */
.product-nav-tabs .nav-link.active {
    color: var(--foreground, #222222) !important;
    font-weight: 600;
}

.product-nav-tabs .nav-link.active::after {
    opacity: 1;
    transform: scaleX(1);
}

/* Tab Content Typography */
.tab-description-text {
    font-family: var(--font-body, "Manrope", sans-serif);
    font-size: 1.125rem;
    line-height: 1.65;
    color: var(--muted-foreground, #555555);
    max-width: 580px;
}

/* Checklist Styling */
.tab-checklist li {
    font-family: var(--font-body, "Manrope", sans-serif);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--foreground, #222222);
}

.tab-check-icon {
    font-size: 1.1rem;
    color: var(--foreground, #222222);
    flex-shrink: 0;
}
/* ==========================================================================
   FEATURE LIST (.ft-list)
   ========================================================================== */
.ft-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 1.25rem;
}

/* Individual Feature Pill Card */
.ft-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    background-color: var(--card, #fdfbf7);
    border: 1px solid var(--border, #e6e2da);
    border-radius: 18px;
    padding: 1.1rem 1.5rem;
    font-family: var(--font-body, "Manrope", sans-serif);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--foreground, #222222);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}


/* Checkmark Icon */
.ft-icon {
    font-size: 1.1rem;
    color: var(--foreground, #222222);
    flex-shrink: 0;
}
/* ==========================================================================
   SPECIFICATION CARD (.spec-card)
   ========================================================================== */
.spec-card {
    background-color: var(--card, #fdfbf7);
    border: 1px solid var(--border, #e6e2da);
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

/* Individual Data Row */
.spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2rem;
    border-bottom: 1px solid var(--border, #e6e2da);
    transition: background-color 0.2s ease;
}

/* Remove border on last row */
.spec-row:last-child {
    border-bottom: none;
}

.spec-row:hover {
    background-color: rgba(0, 0, 0, 0.015);
}

/* Left Label Text */
.spec-label {
    font-family: var(--font-body, "Manrope", sans-serif);
    font-size: 0.9375rem;
    font-weight: 400;
    color: var(--muted-foreground, #666666);
}

/* Right Value Text */
.spec-value {
    font-family: var(--font-body, "Manrope", sans-serif);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--foreground, #222222);
    text-align: right;
}
.dimension-diagram-card {
    background-color: var(--card, #fdfbf7);
    border: 1px solid var(--border, #e6e2da);
    border-radius: 28px;
    padding: 3rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

/* Diagram Wireframe Container */
.dimension-box-wrapper {
    position: relative;
    width: 280px;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Main Inner Glass Frame Outline */
.dimension-partition-outline {
    width: 220px;
    height: 180px;
    border: 1.5px solid #a39e93;
    border-radius: 16px;
    position: absolute;
    top: 10px;
}

/* Bottom Horizontal Base Rail */
.dimension-base-rail {
    width: 260px;
    height: 16px;
    border: 1.5px solid #a39e93;
    border-radius: 20px;
    position: absolute;
    bottom: 30px;
    background-color: var(--card, #fdfbf7);
}

/* Center Indicator Tick Line */
.dim-center-line {
    width: 1.5px;
    height: 18px;
    background-color: #a39e93;
    margin: 0 auto 4px auto;
}

/* Label Wrapper & Text Styling */
.dimension-label {
    font-family: var(--font-body, "Manrope", sans-serif);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    color: #938e83;
    text-transform: uppercase;
}

/* Vertical Height Label Positioned on Left */
.dim-height-label {
    position: absolute;
    left: -15px;
    top: 45%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: center;
}

/* Horizontal Width Label Positioned at Bottom */
.dimension-width-wrap {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}
.info-feature-card {
    background-color: var(--card, #fdfbf7);
    border: 1px solid var(--border, #e6e2da);
    border-radius: 28px;
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.info-feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold, #c2a677);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
}

/* Circular Icon Badge Wrapper */
.info-card-icon-wrap {
    width: 48px;
    height: 48px;
    background-color: #ebe7df; /* Subtle dark beige fill from image */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.75rem;
    color: var(--olive-dark, #434836);
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* Serif Title */
.info-card-title {
    font-family: var(--font-heading, "Playfair Display", serif);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--foreground, #222222);
    margin-bottom: 1rem;
    line-height: 1.2;
}

/* Body Description */
.info-card-desc {
    font-family: var(--font-body, "Manrope", sans-serif);
    font-size: 0.925rem;
    line-height: 1.6;
    color: var(--muted-foreground, #666666);
    margin-bottom: 0;
}

/* Custom Navigation Buttons (Top Right) */
.collection-nav-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: var(--card, #ffffff);
    border: 1px solid var(--border, #e2ded7);
    color: var(--foreground, #222222);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.collection-nav-btn:hover {
    background-color: var(--olive, #5b634b);
    border-color: var(--olive, #5b634b);
    color: #ffffff;
    transform: scale(1.05);
}

.collection-nav-btn.swiper-button-disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

/* Equal Height Swiper Slides */
.collectionSwiper .swiper-slide {
    height: auto;
    display: flex;
}

.collectionSwiper .product-card {
    width: 100%;
}
.slider-nav-arrows{
    display: flex;
    gap: 10px;
    justify-content: end;
}
.back-link {
    font-family: var(--font-body, "Manrope", sans-serif);
    font-size: 0.9375rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.75); /* Soft white text matching image overlay */
    text-decoration: none;
    transition: color 0.25s ease;
    margin-bottom: 1rem;
}

/* Arrow Icon */
.back-link-arrow {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), color 0.25s ease;
}

/* Hover Animation Effect */
.back-link:hover,
.back-link:focus {
    color: #ffffff;
}

.back-link:hover .back-link-arrow {
    color: #ffffff;
    transform: translateX(-4px); /* Moves arrow slightly left on hover */
}
/* ==========================================================================
   SCOPED PROCESS CARD COMPONENT (.proc-box-container)
   ========================================================================== */
.proc-box-container {
    background-color: var(--card, #fdfbf7);
    border: 1px solid var(--border, #e6e2da);
    border-radius: 36px;
    padding: 3.5rem 3.5rem 4rem 3.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    max-width: 680px;
    width: 100%;
}

/* Card Heading */
.proc-box-heading {
    font-family: var(--font-heading, "Playfair Display", serif);
    font-size: 2rem;
    font-weight: 400;
    color: var(--foreground, #222222);
    margin-bottom: 2.75rem;
    line-height: 1.2;
}

/* Process Items Wrapper */
.proc-box-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Individual Process Item Row */
.proc-box-item {
    display: flex;
    align-items: flex-start;
    gap: 1.75rem;
    transition: transform 0.25s ease;
}

.proc-box-item:hover {
    transform: translateX(4px);
}

/* Gold Serif Numbering */
.proc-box-num {
    font-family: var(--font-heading, "Playfair Display", serif);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--gold, #b8935e);
    line-height: 1.2;
    min-width: 2.2rem;
    flex-shrink: 0;
}

/* Content Container */
.proc-box-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

/* Step Title */
.proc-box-step-title {
    font-family: var(--font-body, "Manrope", sans-serif);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--foreground, #222222);
    margin-bottom: 0;
    line-height: 1.35;
}

/* Step Description */
.proc-box-step-desc {
    font-family: var(--font-body, "Manrope", sans-serif);
    font-size: 0.9375rem;
    font-weight: 400;
    color: var(--muted-foreground, #777777);
    margin-bottom: 0;
    line-height: 1.5;
}
.recom-sec{
    background: var(--card)
}
.contact-top{
    padding-top: 100px;
    padding-bottom: 60px;
    background-color: var(--card);
}
.contact-quote-section {
    background-color: var(--background);
    font-family: var(--font-body);
    color: var(--ink);
}

/* Card Styling */
.info-card, .form-card, .map-card {
    background-color: var(--card);
    border-radius: 26px;
    border: 1px solid var(--border);
    padding: 30px;
}

.info-card {
    padding: 1.25rem 1.5rem;
}

/* Circular Icon Styling */
.icon-circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    font-size: 1.1rem;
}

/* Text and Links */
.card-label {
    font-size: 0.72rem;
    letter-spacing: 0.05em;
    color: var(--muted-foreground);
    font-weight: 600;
    text-transform: uppercase;
}

.card-content a {
    color: var(--ink);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.card-content a:hover {
    color: var(--olive);
}

.card-text {
    font-size: 0.9rem;
    color: var(--ink);
    line-height: 1.4;
}

/* Form Styles */
.form-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--ink);
    font-weight: 500;
}

.form-label {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 0.4rem;
}

/* INPUTS & SELECTS OVERRIDE */
.custom-input {
    background-color: var(--background) !important;
    border: 1px solid transparent;
    border-radius: 0.85rem;
    padding: 0.85rem 1rem;
    font-size: 0.92rem;
    color: var(--ink);
    transition: all 0.2s ease;
}

.custom-input:focus {
    background-color: var(--card) !important;
    border-color: var(--olive);
    box-shadow: 0 0 0 3px oklch(51% .045 115 / 0.15);
    color: var(--ink);
}

.custom-input::placeholder {
    color: var(--muted-foreground);
    font-size: 0.88rem;
}

/* Terms Box */
.terms-card {
    background-color: var(--background);
    border-radius: 0.85rem;
}

.terms-text {
    font-size: 0.85rem;
    color: var(--ink);
}

.terms-text a {
    color: var(--ink);
    text-decoration: underline;
}

/* CHECKBOX CHECKED STYLING */
.form-check-input {
    border-color: var(--border);
    background-color: var(--background);
}

.form-check-input:checked {
    background-color: var(--olive) !important;
    border-color: var(--olive) !important;
}

.form-check-input:focus {
    box-shadow: 0 0 0 3px oklch(51% .045 115 / 0.15);
    border-color: var(--olive);
}

/* Submit Button */
.submit-btn {
    background-color: var(--olive-dark);
    color: #ffffff;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    transition: background-color 0.2s ease;
}

.submit-btn:hover {
    background-color: var(--olive);
    color: #ffffff;
}

.sub-text {
    font-size: 0.78rem;
    color: var(--muted-foreground);
}

/* Map Button Overrides */
.map-btn {
    border-radius: 0.5rem;
    font-size: 0.78rem;
    font-weight: 600;
    border: 1px solid var(--border);
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.vm-sec{
    background:  var(--card)
}
.certifications-card {
    display: flex;
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: 2rem; /* Large pill-like rounded corners */
    overflow: hidden;
    width: 100%;
}

.certification-item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.25rem 1.5rem;
    border-right: 1px solid var(--border);
    text-align: center;
}

/* Remove border from the last column */
.certification-item:last-child {
    border-right: none;
}

.certification-item span {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--muted-foreground);
    font-weight: 400;
    letter-spacing: 0.02em;
}

/* Responsive adjustment for mobile screens */
@media (max-width: 768px) {
    .certifications-card {
        flex-direction: column;
        border-radius: var(--radius);
    }

    .certification-item {
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding: 1.25rem 1rem;
    }

    .certification-item:last-child {
        border-bottom: none;
    }
}
/* Blog Section Base */
.blog-section {
    background-color: var(--background);
    font-family: var(--font-body);
    color: var(--ink);
}

/* --- CATEGORY PILLS TABS --- */
.category-pills {
    scrollbar-width: none;
    max-width: 100%;
}
.category-pills::-webkit-scrollbar {
    display: none;
}

.pill-btn {
    background-color: var(--card) !important;
    border: 1px solid var(--border) !important;
    color: var(--muted-foreground) !important;
    border-radius: 2rem !important;
    padding: 0.7rem 1.1rem !important;
    font-size: 0.82rem !important;
    font-weight: 500 !important;
    white-space: nowrap !important;
    transition: all 0.2s ease !important;
    cursor: pointer;
}

.pill-btn:hover {
    border-color: var(--olive-dark) !important;
    color: var(--ink) !important;
}

/* Active Pill Override */
.pill-btn.active,
.nav-pills .nav-link.active {
    background-color: var(--olive-dark) !important;
    color: #ffffff !important;
    border-color: var(--olive-dark) !important;
}

/* --- SEARCH BAR --- */
.blog-search {
    min-width: 240px;
}

@media (max-width: 576px) {
    .blog-search {
        width: 100%;
    }
}

.search-input-wrapper {
    width: 100%;
}

.search-icon {
    position: absolute;
    left: 2px; /* Fixed left position inside input boundary */
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted-foreground);
    font-size: 0.9rem;
    pointer-events: none;
    z-index: 5;
}

.blog-search-input {
    background-color: var(--background) !important;
    border: 1px solid var(--border) !important;
    border-radius: 2rem !important;
    padding: 0.7rem 1.1rem 0.8rem 2.5rem !important; /* Proper inset padding for search icon */
    font-size: 0.85rem !important;
    color: var(--ink) !important;
    width: 100% !important;
}

.blog-search-input::placeholder {
    color: var(--muted-foreground);
}

.blog-search-input:focus {
    box-shadow: 0 0 0 3px oklch(51% .045 115 / 0.15) !important;
    border-color: var(--olive) !important;
}

/* --- ICON 45 DEGREE ROTATION --- */
.icon-diagonal {
    display: inline-block;
    transform: rotate(-45deg); /* Rotates standard arrow-right up at 45Â° */
    transition: transform 0.3s ease, color 0.2s ease;
}

/* --- FEATURED CARD --- */
.featured-card {
    background-color: var(--card);
    border-radius: 1.5rem;
    border: 1px solid var(--border);
    cursor: pointer;
    margin-bottom: 3rem;
}

.featured-img-wrapper img {
    min-height: 450px;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Hover state scale & arrow shift */
.featured-card:hover .featured-img-wrapper img {
    transform: scale(1.05);
}

.featured-card:hover .read-article-link {
    color: var(--olive);
}

.featured-card:hover .icon-diagonal {
    transform: rotate(-45deg) translate(3px, 0);
}

.meta-info {
    font-size: 0.78rem;
    color: var(--muted-foreground);
    font-weight: 500;
}

.meta-info .dot {
    margin: 0 0.3rem;
}

.featured-title {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 500;
    color: var(--ink);
    line-height: 1.25;
}

.featured-text {
    color: var(--muted-foreground);
    font-size: 0.95rem;
    line-height: 1.5;
}

.read-article-link {
    color: var(--ink);
    font-weight: 600;
    font-size: 0.88rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

/* --- ARTICLE GRID CARDS --- */
.article-card {
    background-color: var(--card);
    border-radius: 1.25rem;
    border: 1px solid var(--border);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.3s ease;
}

.card-img-wrapper {
    height: 286px;
}

.card-img-wrapper img {
    height: 100%;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.article-card:hover {
    transform: translateY(-4px);
}

.article-card:hover .card-img-wrapper img {
    transform: scale(1.06);
}

.article-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--ink);
    line-height: 1.3;
}
.article-card:hover .article-title, .featured-card:hover .featured-title{
    color: var(--olive)
}
.article-excerpt {
    font-size: 0.85rem;
    color: var(--muted-foreground);
    line-height: 1.5;
}

.article-date {
    font-size: 0.72rem;
    letter-spacing: 0.05em;
    font-weight: 600;
    color: var(--muted-foreground);
    text-transform: uppercase;
}
/* --- ARTICLE HERO HEADER --- */
.blogdetail-hero {
  position: relative;
  height: 480px;
  background-color: var(--ink);
  color: #ffffff;
  overflow: hidden;
}

.blogdetail-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Dark Contrast Overlay */
.blogdetail-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(20, 20, 20, 0.35) 0%,
    rgba(20, 20, 20, 0.8) 100%
  );
  z-index: 2;
}

.blogdetail-hero-container {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding-bottom: 3rem;
}

.blogdetail-hero-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Back Link */
.blogdetail-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
  margin-bottom: 0.5rem;
}

.blogdetail-back-link:hover {
  color: #ffffff;
}

/* Meta Bar */
.blogdetail-meta-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}

.blogdetail-category-tag {
  color: #ffffff;
  font-weight: 500;
}

.blogdetail-read-time {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.blogdetail-meta-dot {
  opacity: 0.5;
}

/* Title */
.blogdetail-hero-title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1.15;
  color: #ffffff;
  letter-spacing: -0.01em;
  margin: 0;
  max-width: 900px;
}

/* --- AUTHOR & SHARE BAR --- */
.blogdetail-author-bar {
  background-color: var(--background);
  border-bottom: 1px solid var(--border);
}

.blogdetail-bar-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
}

.blogdetail-author-box {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.blogdetail-author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--olive-dark);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.blogdetail-author-text {
  display: flex;
  flex-direction: column;
}

.blogdetail-author-name {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
  margin: 0;
}

.blogdetail-author-role {
  font-size: 0.78rem;
  color: var(--muted-foreground);
}

/* Action Buttons */
.blogdetail-action-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.blogdetail-btn-share {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background-color: transparent;
  border: 1px solid var(--border);
  border-radius: 2rem;
  padding: 0.4rem 1.1rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.25 ease;
  min-width: 90px;
  justify-content: center;
}

.blogdetail-btn-share i {
  font-size: 1.1rem;
}

.blogdetail-btn-share:hover {
  background-color: var(--card);
  border-color: var(--olive-dark);
}

/* Copied Active State Styling */
.blogdetail-btn-share.copied {
  background-color: var(--olive-dark);
  color: #ffffff;
  border-color: var(--olive-dark);
}

.blogdetail-btn-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background-color: transparent;
  color: var(--ink);
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.2s ease;
}

.blogdetail-btn-social:hover {
  background-color: var(--card);
  border-color: var(--olive-dark);
  color: var(--olive-dark);
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 992px) {
  .blogdetail-hero-title {
    font-size: 2.75rem;
  }
}

@media (max-width: 768px) {
  .blogdetail-hero {
    height: 400px;
  }
  .blogdetail-hero-container {
    padding-bottom: 2rem;
  }
}

@media (max-width: 576px) {
  .blogdetail-hero-title {
    font-size: 1.85rem;
  }
  .blogdetail-meta-bar {
    font-size: 0.78rem;
  }
}
/* --- BLOG CONTENT SECTION --- */
.blogcontent-section {
  background-color: var(--background);
  color: var(--ink);
  font-family: var(--font-body);
  position: relative;
}

/* Sidebar Wrapper Base */
.blogcontent-sticky-nav {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: opacity 0.15s ease;
}

/* Fixed Pinning State (Triggers when scrolling inside the section) */
@media (min-width: 992px) {
  .blogcontent-sticky-nav.is-fixed {
    position: fixed;
    top: 6rem;
    z-index: 100;
  }

  /* Stops at the bottom of the section */
  .blogcontent-sticky-nav.is-bottom {
    position: absolute;
    bottom: 0;
    top: auto;
  }
}

.blogcontent-nav-title {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
}

.blogcontent-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.blogcontent-nav-link {
  color: var(--muted-foreground);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 400;
  transition: color 0.2s ease;
  line-height: 1.4;
  display: inline-block;
}

.blogcontent-nav-link:hover,
.blogcontent-nav-link.active {
  color: var(--ink);
  font-weight: 500;
}

/* --- ARTICLE CONTENT --- */
.blogcontent-heading {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.blogcontent-divider {
  width: 32px;
  height: 2px;
  background-color: var(--gold);
  margin-bottom: 1.75rem;
  opacity: 0.7;
}

.blogcontent-text {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--muted-foreground);
  margin-bottom: 0;
}

/* Mobile View Fallback */
@media (max-width: 991px) {
  .blogcontent-sticky-nav {
    position: relative !important;
    top: 0 !important;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
  }
}
/* ==========================================================================
   MEDIA QUERIES
   ========================================================================== */

/* --- Desktop Mega Menu (Min Width 992px) --- */
@media (min-width: 992px) {
    .navbar-sticky-wrapper {
        position: fixed;
        top: 0;
        z-index: 1030;
        width: 100%;
    }

    .nav-item.dropdown-mega {
        position: static;
    }

    .navbar .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        width: 100%;
        left: 0;
        right: 0;
        top: 100%;
        margin-top: 0;
        border: none;
        border-radius: 0;
        border-bottom: 1px solid var(--border);
        background-color: var(--card);
        padding: 3.5rem 0;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
        transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1),
            transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
            visibility 0.25s ease;
        transform: translateY(10px);
    }

    .nav-item.dropdown-mega:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

/* --- Tablets & Below (Max Width 991.98px) --- */
@media (max-width: 991.98px) {
    /* Navbar Adjustments */
    .navbar-sticky-wrapper.scrolled .navbar,
    .navbar {
        background-color: var(--card);
    }

    .navbar-collapse {
        padding-top: 1rem;
    }

    .nav-link.active::after {
        display: none;
    }

    .navbar .dropdown-menu {
        border: none;
        background: transparent;
        box-shadow: none;
        padding: 1rem 0;
    }

    .mega-menu-heading {
        font-size: 1.6rem;
    }

    .mega-menu-list li.active-item {
        margin-left: 0;
        margin-right: 0;
    }

    .search-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    /* Collection Slider Navigation */
    .swiper-button-prev.collection-nav-btn {
        left: 0;
    }

    .swiper-button-next.collection-nav-btn {
        right: 0;
    }

    .collection-img-wrap {
        height: 220px;
    }

    /* Feature Cards Adjustments */
    .adv-feat-card {
        padding: 2.25rem 1.75rem 1.75rem 1.75rem;
    }

    .adv-feat-card-num {
        font-size: 1.85rem;
        margin-bottom: 1.25rem;
    }

    .adv-feat-card-title {
        font-size: 1.45rem;
    }

    .adv-feat-card-desc {
        font-size: 0.875rem;
        margin-bottom: 2rem;
    }

    /* Counter Section Adjustments */
    .adv-counter-section {
        padding: 4rem 0;
    }

    .adv-counter-line {
        margin-bottom: 1.25rem;
    }

    .adv-counter-label {
        font-size: 0.68rem;
        letter-spacing: 0.15em;
    }

    /* Solution Cards Adjustments */
    .adv-sol-card {
        height: 360px;
    }

    .adv-sol-card-content {
        padding: 1.5rem 1.25rem;
    }

    .adv-sol-card-title {
        font-size: 1.35rem;
    }

    /* Philosophy Banner Adjustments */
    .adv-philo-section {
        padding: 5.5rem 0;
    }

    .adv-philo-eyebrow {
        margin-bottom: 1.5rem;
        font-size: 0.7rem;
    }

    .adv-philo-heading {
        margin-bottom: 2rem;
    }

    .adv-philo-keywords {
        line-height: 1.8;
    }

    /* Footer Adjustments */
    .footer-map-card iframe {
        height: 220px;
    }

    /* Hero Features Adjustments */
    .hero-feature-item {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .15);
    }

    .hero-feature-item.border-0 {
        border-bottom: 0;
    }

    .hero-feature-item h2 {
        font-size: 42px;
    }

    /* About Section Adjustments */
    .adv-about-grid {
        grid-template-columns: 1fr;
    }

    .adv-about-image img {
        height: 420px;
    }

    .adv-card {
        left: 20px;
    }

    .adv-stats {
        gap: 20px;
        flex-wrap: wrap;
    }

    /* Process Section Adjustments */
    .process-row {
        margin-bottom: 3.5rem;
    }

    .process-img-wrapper img {
        height: 280px;
    }

    .process-number {
        font-size: 1.75rem;
    }

    .process-title {
        font-size: 1.6rem;
    }
    .partition-hero-content {
        padding: 3.5rem 1.5rem;
    }
    .partition-hero-img-wrapper {
        min-height: 420px;
    }
    .recom-section {
        padding-top: 3.5rem;
        padding-bottom: 3.5rem;
    }

    .recom-card {
        min-height: 210px;
        padding: 1.75rem 1.5rem;
    }

    .recom-card-title {
        font-size: 1.5rem;
    }

    .recom-card-desc {
        font-size: 0.875rem;
        margin-bottom: 1.5rem;
    }
}

/* --- Mobile Devices (Max Width 767.98px) --- */
@media (max-width: 767.98px) {
    .mega-menu-list.two-col {
        grid-template-columns: 1fr;
    }
    .partition-hero-content {
        padding: 2.5rem 1.25rem;
    }

    .partition-title {
        font-size: 2.2rem;
    }

    .partition-hero-img-wrapper {
        min-height: 300px;
    }

    .btn-quote-gold {
        width: 100%;
        text-align: center;
    }
    .recom-card {
        border-radius: 20px;
        padding: 1.5rem 1.25rem;
    }

    .recom-card-title {
        font-size: 1.35rem;
    }
    .collection-nav-title {
        font-size: 1.15rem;
    }

    .collection-nav-label {
        font-size: 0.65rem;
        letter-spacing: 0.1em;
    }

    .nav-arrow {
        font-size: 1rem;
    }
    .ft-list {
        grid-template-columns: 1fr;
        gap: 0.85rem;
    }

    .ft-item {
        padding: 0.9rem 1.25rem;
        font-size: 0.875rem;
        border-radius: 14px;
    }
    .spec-card {
        border-radius: 16px;
    }

    .spec-row {
        padding: 1rem 1.25rem;
    }

    .spec-label,
    .spec-value {
        font-size: 0.875rem;
    }
    .dimension-diagram-card {
        padding: 2rem 1rem;
        border-radius: 20px;
    }

    .dimension-box-wrapper {
        width: 220px;
        height: 190px;
    }

    .dimension-partition-outline {
        width: 170px;
        height: 140px;
    }

    .dimension-base-rail {
        width: 200px;
        height: 14px;
        bottom: 25px;
    }

    .dim-height-label {
        left: -20px;
        font-size: 0.65rem;
    }

    .dim-width-label {
        font-size: 0.65rem;
    }
    .info-feature-card {
        border-radius: 20px;
        padding: 1.75rem 1.5rem;
    }

    .info-card-icon-wrap {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
        margin-bottom: 1.25rem;
    }

    .info-card-title {
        font-size: 1.3rem;
    }

    .info-card-desc {
        font-size: 0.875rem;
    }
}

/* --- Extra Small Mobile Devices (Max Width 575.98px) --- */
@media (max-width: 575.98px) {
    .feature-checklist {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}