/* ==========================================================================
   SR BUILDING SOLUTION (MARVELS TILES) - LUXURY VERSION STYLE SYSTEM
   ========================================================================== */

/* Variables & Design Tokens */
:root {
    /* Color Palette */
    --white: #FFFFFF;
    --off-white: #F8F8F8;
    --emerald: #0F7B6C;
    --emerald-dark: #074F44;
    --emerald-light: rgba(15, 123, 108, 0.08);
    --gold: #C9A227;
    --gold-dark: #a1801d;
    --gold-light: rgba(201, 162, 39, 0.15);
    --charcoal: #1F2937;
    --charcoal-light: #374151;
    --beige: #EFE6D7;
    --beige-dark: #DFD2BC;
    --card-border: rgba(15, 123, 108, 0.15);

    /* Typography */
    --font-heading: 'Cormorant Garamond', 'Playfair Display', serif;
    --font-body: 'Manrope', 'Poppins', sans-serif;

    /* Layout Depth */
    --shadow-sm: 0 4px 20px -2px rgba(31, 41, 55, 0.04);
    --shadow-md: 0 12px 30px -4px rgba(31, 41, 55, 0.06);
    --shadow-lg: 0 24px 60px -10px rgba(31, 41, 55, 0.12);
    --shadow-glow: 0 0 30px rgba(201, 162, 39, 0.2);
    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-bg-dark: rgba(31, 41, 55, 0.95);
    --glass-border: rgba(255, 255, 255, 0.45);

    /* Timing & Curves */
    --transition-fast: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;

    /* Grid system */
    --container-width: 1400px;
}

/* Base resets & browser configurations */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--white);
    color: var(--charcoal);
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

button {
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    outline: none;
}

/* Custom cursor radial highlights */
.cursor-glow {
    position: fixed;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(15, 123, 108, 0.08) 0%, rgba(201, 162, 39, 0.03) 50%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.5s ease;
}

body:hover .cursor-glow {
    opacity: 1;
}

/* ==========================================================================
   REUSABLE UTILITIES & CARDS
   ========================================================================== */
.section-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

@media (max-width: 768px) {
    .section-container {
        padding: 0 16px;
    }
}

.align-center {
    text-align: center;
}

.section-tag {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    color: var(--emerald);
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 600;
    line-height: 1.25;
    color: var(--charcoal);
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.font-serif {
    font-family: var(--font-heading);
}

.header-divider {
    width: 50px;
    height: 2px;
    background-color: var(--gold);
    margin: 0 auto 40px auto;
    position: relative;
}

.header-divider::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: var(--emerald);
    border: 2px solid var(--white);
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

/* LUXURY CARD SYSTEM UPGRADE */
.premium-card {
    background: #fff;
    border: 1px solid rgba(201, 162, 39, 0.18);
    border-radius: 0;
    padding: 0;
    position: relative;
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.07);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
    overflow: hidden;
    z-index: 1;
}

.premium-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.55) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.premium-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.14), 0 0 0 1px rgba(201, 162, 39, 0.35);
}

.premium-card:hover::before {
    opacity: 1;
}

/* Decorative backdrop grids */
.architectural-pattern-bg {
    background-image: radial-gradient(rgba(15, 123, 108, 0.05) 1px, transparent 1px);
    background-size: 24px 24px;
}

/* ==========================================================================
   HEADER SYSTEM
   ========================================================================== */

/* ── TOP BAR ── */
.top-bar {
    width: 100%;
    background: #000000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    overflow: hidden;
    position: relative;
    z-index: 1001;
}

.top-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(90deg,
            transparent,
            transparent 120px,
            rgba(201, 162, 39, 0.03) 120px,
            rgba(201, 162, 39, 0.03) 121px);
    pointer-events: none;
}

.top-bar-inner {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    height: 42px;
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 0;
}

/* Left — scrolling announcement */
.tb-announce {
    display: flex;
    align-items: center;
    gap: 10px;
    overflow: hidden;
    min-width: 0;
    padding-right: 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.tb-announce-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
    animation: tbDotPulse 2s ease-in-out infinite;
}

@keyframes tbDotPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(0.7);
    }
}

.tb-announce-track {
    overflow: hidden;
    white-space: nowrap;
}

.tb-announce-track span {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
    animation: tbScroll 22s linear infinite;
}

@keyframes tbScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Center — contact links */
.tb-contacts {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 0 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.tb-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.95);
    padding: 0 14px;
    height: 42px;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.tb-contact-link svg {
    width: 13px;
    height: 13px;
    fill: var(--gold);
    flex-shrink: 0;
}

.tb-contact-link:hover {
    color: var(--gold);
}

.tb-divider {
    width: 1px;
    height: 18px;
    background: rgba(255, 255, 255, 0.12);
    flex-shrink: 0;
}

/* Right — social icons */
.tb-socials {
    display: flex;
    align-items: center;
    gap: 2px;
    padding-left: 16px;
}

.tb-social-link {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.85);
    transition: all 0.2s ease;
}

.tb-social-link svg {
    width: 13px;
    height: 13px;
    fill: currentColor;
}

.tb-social-link:hover {
    background: rgba(201, 162, 39, 0.15);
    color: var(--gold);
}

@media (max-width: 768px) {
    .tb-announce {
        display: none;
    }

    .top-bar-inner {
        grid-template-columns: 1fr auto;
        padding: 0 14px;
    }

    .tb-contacts {
        border-right: none;
        padding: 0;
        min-width: 0;
    }

    .tb-contact-link:first-child {
        display: none;
    }

    .tb-contact-link {
        max-width: calc(100vw - 92px);
        overflow: hidden;
        text-overflow: ellipsis;
        padding: 0 8px 0 0;
        font-size: 0.68rem;
    }

    .tb-divider {
        display: none;
    }

    .tb-socials {
        padding-left: 6px;
        gap: 0;
    }
}

/* MAIN NAVBAR — solid white on inner pages */
.main-header {
    position: relative;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
}

.nav-container {
    background: var(--white);
    border-bottom: 1px solid var(--card-border);
    box-shadow: var(--shadow-sm);
    padding: 8px clamp(16px, 2.2vw, 34px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    column-gap: clamp(28px, 5vw, 90px);
    align-items: center;
    position: relative;
    transition: var(--transition-smooth);
}

.nav-links-left {
    display: flex;
    gap: clamp(24px, 2.4vw, 42px);
    justify-content: flex-end;
    align-items: center;
    min-width: 0;
    flex-wrap: nowrap;
}

.nav-links-right {
    display: flex;
    gap: clamp(16px, 1.6vw, 30px);
    align-items: center;
    justify-content: flex-start;
    min-width: 0;
    flex-wrap: nowrap;
}

.nav-item {
    font-family: var(--font-body);
    font-size: 0.94rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--charcoal);
    position: relative;
    padding: 8px 0;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.nav-icon {
    width: 17px;
    height: 17px;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: var(--transition-fast);
}

.nav-item:hover {
    color: var(--emerald);
}

.nav-item:hover::after,
.nav-item.active::after {
    width: 100%;
}

.nav-item.active {
    color: var(--emerald);
}

.nav-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    min-width: 210px;
    padding: 12px 0;
    background: var(--white);
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow-md);
    transform: translateX(-50%) translateY(8px);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
    z-index: 1002;
}

.nav-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    color: var(--charcoal);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
}

.nav-dropdown-menu a:hover {
    color: var(--emerald);
    background: var(--off-white);
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Central logo plate */
.logo-plate-link {
    position: relative;
    width: 112px;
    height: 72px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.logo-plate {
    width: 104px;
    height: 66px;
    background: var(--white);
    border: 2px solid rgba(201, 162, 39, 0.95);
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(201, 162, 39, 0.16), inset 0 0 0 3px rgba(255, 255, 255, 0.95), inset 0 0 0 4px rgba(15, 123, 108, 0.16);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3px 6px;
    transition: var(--transition-smooth);
    overflow: hidden;
}

.logo-plate:hover {
    box-shadow: 0 14px 34px rgba(201, 162, 39, 0.24), inset 0 0 0 3px rgba(255, 255, 255, 0.95), inset 0 0 0 4px rgba(15, 123, 108, 0.22);
    transform: scale(1.03);
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

@media (max-width: 1320px) and (min-width: 1025px) {
    .nav-container {
        padding: 8px 22px;
        column-gap: 32px;
    }

    .nav-links-left,
    .nav-links-right {
        gap: 16px;
    }

    .nav-links-left {
        gap: 22px;
    }

    .nav-item {
        font-size: 0.86rem;
        letter-spacing: 0.03em;
    }

    .cta-quote-btn {
        padding: 12px 18px;
        font-size: 0.8rem;
    }

    .logo-plate-link {
        width: 100px;
    }

    .logo-plate {
        width: 94px;
        height: 60px;
    }
}

/* Sticky */
.main-header.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    animation: slideDownSticky 0.4s ease forwards;
}

@keyframes slideDownSticky {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.main-header.is-sticky .nav-container {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md);
    padding: 6px 40px;
}

.main-header.is-sticky .logo-plate {
    width: 96px;
    height: 58px;
}

.main-header.is-sticky .logo-img {
    width: 100%;
    height: 100%;
}

/* Mobile responsive menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    height: 20px;
    justify-content: space-between;
    z-index: 100;
}

.menu-toggle span {
    width: 100%;
    height: 2px;
    background-color: var(--charcoal);
    transition: var(--transition-fast);
}

.nav-logo-mobile {
    display: none;
}

.nav-links-mobile-list {
    display: none;
}

@media (max-width: 1024px) {
    .nav-container {
        grid-template-columns: auto 1fr auto;
        padding: 8px 20px;
    }

    .nav-logo-mobile {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 92px;
        height: 56px;
        background: var(--white);
        border: 2px solid rgba(201, 162, 39, 0.95);
        border-radius: 13px;
        padding: 3px 6px;
        box-shadow: 0 8px 22px rgba(201, 162, 39, 0.14), inset 0 0 0 3px rgba(255, 255, 255, 0.95), inset 0 0 0 4px rgba(15, 123, 108, 0.16);
    }

    .nav-logo-mobile img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        display: block;
    }

    .logo-plate-link,
    .nav-links-left,
    .nav-links-right {
        display: none;
    }

    /* Sliding mobile list overlay */
    .nav-links-mobile-list {
        position: fixed;
        top: 0;
        left: -100%;
        width: min(320px, 86vw);
        height: 100vh;
        background: var(--white);
        border-right: 1px solid rgba(15, 123, 108, 0.1);
        display: flex;
        flex-direction: column;
        padding: 80px 22px 28px;
        gap: 10px;
        box-shadow: var(--shadow-lg);
        transition: var(--transition-smooth);
        z-index: 99;
        overflow-y: auto;
    }

    .nav-links-mobile-list .nav-item {
        width: 100%;
        min-height: 44px;
        padding: 10px 12px;
        border: 1px solid rgba(15, 123, 108, 0.1);
        background: rgba(250, 248, 243, 0.72);
        justify-content: flex-start;
        white-space: normal;
        line-height: 1.25;
    }

    .nav-links-mobile-list .nav-item::after {
        display: none;
    }

    .mobile-nav-products {
        width: 100%;
    }

    .mobile-nav-products summary {
        list-style: none;
        cursor: pointer;
    }

    .mobile-nav-products summary::-webkit-details-marker {
        display: none;
    }

    .mobile-nav-products summary::before {
        content: '+';
        order: 3;
        margin-left: auto;
        color: var(--emerald);
        font-weight: 800;
        font-size: 1rem;
    }

    .mobile-nav-products[open] summary::before {
        content: '-';
    }

    .mobile-nav-submenu {
        display: grid;
        gap: 8px;
        padding: 8px 0 4px 18px;
    }

    .mobile-nav-submenu a {
        padding: 10px 12px;
        color: var(--charcoal-light);
        background: #fff;
        border: 1px solid rgba(15, 123, 108, 0.08);
        font-size: 0.78rem;
        font-weight: 700;
        letter-spacing: 0.05em;
        text-transform: uppercase;
    }

    .nav-links-mobile-list.is-active {
        left: 0;
    }

    .menu-toggle {
        display: flex;
        grid-column: 3;
    }

    .menu-toggle.is-open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle.is-open span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.is-open span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -7px);
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 8px 16px;
    }

    .nav-logo-mobile {
        width: 86px;
        height: 52px;
    }
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    height: 100vh;
    position: relative;
    overflow: hidden;
    background-color: var(--charcoal);
}

.hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s cubic-bezier(0.25, 0.8, 0.25, 1), visibility 1.2s ease-in-out;
    display: flex;
    align-items: center;
    z-index: 1;
}

.hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.65));
    z-index: 1;
    pointer-events: none;
}

.hero-slide-picture {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide-picture img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-content {
    max-width: 800px;
    margin-left: 8%;
    color: var(--white);
    z-index: 10;
    padding: 24px 24px 110px;
    position: relative;
}

.hero-subtitle {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.25em;
    display: block;
    margin-bottom: 20px;
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition-smooth);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 25px;
    transform: translateY(30px);
    opacity: 0;
    transition: var(--transition-smooth);
}

.hero-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 22px;
    max-width: 600px;
    transform: translateY(40px);
    opacity: 0;
    transition: var(--transition-smooth);
}

.hero-feature-line {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 34px;
    transform: translateY(44px);
    opacity: 0;
    transition: var(--transition-smooth);
}

.hero-feature-line span {
    border: 1px solid rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.88);
    padding: 8px 12px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-ctas {
    display: flex;
    gap: 20px;
    transform: translateY(50px);
    opacity: 0;
    transition: var(--transition-smooth);
}

/* Slide animation states */
.hero-slide.active .hero-subtitle {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.3s;
}

.hero-slide.active .hero-title {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.5s;
}

.hero-slide.active .hero-desc {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.7s;
}

.hero-slide.active .hero-feature-line {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.8s;
}

.hero-slide.active .hero-ctas {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 1s;
}

.highlight-text {
    color: var(--gold);
    font-style: italic;
    font-weight: 400;
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 60px;
    right: 8%;
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 10;
}

.slider-arrow {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition-fast);
}

.slider-arrow:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--charcoal);
    transform: translateY(-2px);
}

.slider-arrow svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.slider-pagination {
    display: flex;
    gap: 10px;
}

.pag-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition-fast);
}

.pag-dot.active {
    background: var(--gold);
    transform: scale(1.3);
}

/* Slider Progress Bar */
.slider-progress-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 10;
}

.slider-progress-bar {
    height: 100%;
    width: 0%;
    background: var(--gold);
}

/* Scroll Mouse Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 24px;
    left: 8%;
    z-index: 4;
    pointer-events: auto;
}

.scroll-link {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    opacity: 0.75;
}

.scroll-link:hover {
    opacity: 1;
    color: var(--gold);
}

.scroll-mouse {
    width: 18px;
    height: 30px;
    border: 2px solid currentColor;
    border-radius: 12px;
    position: relative;
}

.scroll-mouse .wheel {
    width: 4px;
    height: 8px;
    background: currentColor;
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: mouseScrollWheel 1.6s ease-in-out infinite;
}

@keyframes mouseScrollWheel {
    0% {
        top: 6px;
        opacity: 1;
    }

    50% {
        top: 16px;
        opacity: 0.3;
    }

    100% {
        top: 6px;
        opacity: 1;
    }
}

@media (max-height: 760px) and (min-width: 769px) {
    .scroll-indicator {
        display: none;
    }
}

/* Inner pages luxury hero style */
.inner-hero {
    height: 380px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
}

.inner-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(31, 41, 55, 0.65), rgba(31, 41, 55, 0.85));
}

.inner-hero-content {
    position: relative;
    z-index: 10;
}

.inner-hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 500;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.breadcrumbs {
    display: flex;
    justify-content: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.breadcrumbs a {
    color: var(--gold);
}

.breadcrumbs span {
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
    .cursor-glow {
        display: none;
    }

    .section-title {
        font-size: 2.1rem;
    }

    .premium-card {
        padding: 24px;
        border-radius: var(--radius-md);
    }

    .home-product-showcase-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .home-product-showcase-grid>.premium-card:nth-of-type(n+2) {
        display: none !important;
    }

    .product-showcase-grid .premium-card {
        padding: 0 !important;
    }

    .product-showcase-grid .product-img-wrapper {
        height: 220px;
    }

    .product-showcase-grid .premium-card h3 {
        display: block !important;
        color: var(--charcoal) !important;
        font-size: 1.25rem !important;
        line-height: 1.25 !important;
        padding: 14px 16px 4px !important;
        margin: 0 !important;
    }

    .product-showcase-grid .premium-card p {
        display: none !important;
    }

    .product-showcase-grid .premium-card .top-link {
        margin: 12px 16px 16px !important;
        width: calc(100% - 32px);
        text-align: center;
        border-color: var(--emerald);
        background: var(--emerald);
        color: #fff !important;
    }

    .product-showcase-grid .desktop-link-text {
        display: none;
    }

    .product-showcase-grid .mobile-link-text {
        display: inline;
    }

    .assets-category-block>.section-header {
        display: none;
    }

    .product-range-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .product-range-section {
        padding: 34px 18px;
        margin-bottom: 40px;
    }

    .product-range-section::before {
        inset: 10px;
    }

    .product-range-head {
        margin-bottom: 24px;
    }

    .product-range-card {
        padding: 24px 20px;
    }

    .product-range-card:first-child {
        grid-column: auto;
    }

    .product-range-logos {
        padding: 10px;
        gap: 8px;
    }

    .range-logo {
        min-width: calc(50% - 4px);
        height: 44px;
    }

    .product-range-card:first-child .product-size-grid,
    .product-size-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .product-size-grid span {
        min-height: 44px;
        font-size: 0.78rem;
        padding: 10px 8px;
    }

    .product-size-note {
        font-size: 0.78rem !important;
    }

    .about-visual {
        display: none;
    }

    .hero-section {
        min-height: 680px;
        height: calc(100svh - 0px);
    }

    .hero-slide {
        background-image: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.65)), var(--hero-mobile-image) !important;
        background-size: cover;
        background-position: center top;
        background-repeat: no-repeat;
    }

    .hero-slide-picture img {
        object-position: center top;
    }

    .hero-content {
        margin-left: 0;
        padding: 24px 18px;
        width: 100%;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-desc {
        font-size: 0.98rem;
        margin-bottom: 18px;
    }

    .hero-feature-line {
        margin-bottom: 24px;
        gap: 8px;
    }

    .hero-feature-line span {
        padding: 7px 10px;
        font-size: 0.68rem;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 14px 22px;
    }

    .btn-primary-wrapper,
    .btn-secondary-wrapper {
        width: 100%;
        max-width: 320px;
    }

    .slider-controls {
        right: 18px;
        bottom: 34px;
        gap: 12px;
    }

    .scroll-indicator {
        display: none;
    }

    .inner-hero-title {
        font-size: 2.35rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.45rem;
    }

    .hero-subtitle {
        font-size: 0.75rem;
        letter-spacing: 0.18em;
    }

    .inner-hero {
        height: 300px;
    }
}

/* ==========================================================================
   BUTTONS SYSTEM
   ========================================================================== */
.btn-primary-wrapper,
.btn-secondary-wrapper {
    display: inline-block;
}

.btn-primary {
    background-color: var(--emerald);
    color: var(--white);
    padding: 16px 36px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--emerald);
    transition: var(--transition-smooth);
}

.btn-primary:hover {
    background-color: var(--emerald-dark);
    border-color: var(--emerald-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(15, 123, 108, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    padding: 16px 36px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.35);
    transition: var(--transition-smooth);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--charcoal);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.15);
}

.btn-arrow {
    width: 16px;
    height: 16px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.btn-primary:hover .btn-arrow {
    transform: translateX(6px);
}

.cta-magnetic-wrapper {
    display: inline-block;
    position: relative;
    padding: 0;
    flex: 0 0 auto;
}

.nav-links-right .cta-magnetic-wrapper {
    margin-left: 0;
}

.cta-quote-btn {
    background: var(--emerald);
    color: var(--white);
    border: 1px solid var(--emerald);
    padding: 12px 22px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    position: relative;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cta-quote-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--charcoal);
    box-shadow: var(--shadow-glow);
}

/* ==========================================================================
   ABOUT SECTION LAYOUT
   ========================================================================== */
.about-section {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 991px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.about-visual {
    position: relative;
}

.collage-main-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.collage-main {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .collage-main {
        height: 320px;
    }

    .about-counters-grid {
        grid-template-columns: 1fr !important;
    }
}

.collage-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: var(--gold);
    color: var(--charcoal);
    padding: 20px 25px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.badge-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.badge-text {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 4px;
}

.collage-outline {
    position: absolute;
    top: -15px;
    left: -15px;
    width: calc(100% - 30px);
    height: calc(100% - 30px);
    border: 2px solid var(--gold);
    border-radius: var(--radius-lg);
    z-index: -1;
    pointer-events: none;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.about-text-lead {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--charcoal);
    line-height: 1.7;
    margin-bottom: 16px;
}

.about-text-body {
    font-size: 0.9rem;
    color: var(--charcoal-light);
    line-height: 1.7;
}

.about-counters-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
    padding: 20px 0;
}

.counter-item {
    text-align: center;
}

.num-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
}

.counter-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--emerald);
    line-height: 1;
}

.counter-suffix {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
}

.counter-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--charcoal-light);
    margin-top: 6px;
}

/* ==========================================================================
   BRANDS CAROUSEL
   ========================================================================== */
.brands-section {
    padding: 18px 0;
    overflow: hidden;
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
    background: var(--off-white);
}

.brands-carousel-wrapper {
    overflow: hidden;
    width: 100%;
}

.brands-carousel {
    display: flex;
    gap: 0;
    animation: brandScroll 34s linear infinite;
    width: max-content;
}

@keyframes brandScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.brand-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px 42px;
    border-right: 1px solid var(--card-border);
    min-width: 220px;
    flex-shrink: 0;
    gap: 8px;
    text-decoration: none;
    color: inherit;
}

.brand-item-rossa .brand-logo-img {
    background: #111;
    border-radius: 4px;
    padding: 4px 14px;
    box-sizing: border-box;
}

.brand-item-astral .brand-logo-img {
    background: #0b3f8f;
    border-radius: 5px;
    padding: 4px 14px;
    box-sizing: border-box;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.brand-logo-img {
    width: 168px;
    height: 54px;
    object-fit: contain;
    display: block;
    filter: saturate(1.02);
}

.brand-logo-img[src*="grow-well-logo.jpg"] {
    width: 168px;
    height: 54px;
}

.brand-origin {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--gold);
    text-transform: uppercase;
    margin-top: 4px;
}

/* ==========================================================================
   SECTION PADDING HELPERS
   ========================================================================== */
.categories-section,
.collections-section,
.projects-section,
.testimonials-section,
.faq-section,
.about-section {
    padding: 80px 0;
}

.categories-section .section-container,
.collections-section .section-container,
.projects-section .section-container,
.testimonials-section .section-container,
.faq-section .section-container,
.about-section .section-container {
    padding-left: 24px;
    padding-right: 24px;
}

.section-header {
    margin-bottom: 0;
}

/* ==========================================================================
   BLOG GRID
   ========================================================================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.blog-meta {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--gold);
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */
.contact-form-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-side {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-desc {
    font-size: 0.9rem;
    color: var(--charcoal-light);
    line-height: 1.7;
    margin-bottom: 10px;
}

/* ==========================================================================
   PROJECT DETAIL BUTTON
   ========================================================================== */
.project-detail-btn {
    display: inline-block;
    margin-top: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    border-bottom: 1px solid rgba(201, 162, 39, 0.4);
    padding-bottom: 3px;
    transition: var(--transition-fast);
}

.project-detail-btn:hover {
    color: var(--white);
    border-color: var(--white);
}

/* ==========================================================================
   INNER PAGE MAIN CONTENT PADDING
   ========================================================================== */
main.section-container {
    padding-top: 60px;
    padding-bottom: 80px;
}

.about-luxury-story {
    margin-top: 84px;
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
    gap: 34px;
    padding: clamp(34px, 5vw, 64px);
    background:
        linear-gradient(135deg, rgba(4, 46, 34, 0.96), rgba(10, 10, 10, 0.96)),
        url('../images/outsideview.webp') center/cover;
    color: var(--white);
    border: 1px solid rgba(201, 162, 39, 0.34);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.22);
    position: relative;
    overflow: hidden;
}

.about-luxury-story::before {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(201, 162, 39, 0.26);
    pointer-events: none;
}

.about-luxury-copy,
.about-luxury-statement {
    position: relative;
    z-index: 1;
}

.about-luxury-story .section-tag {
    color: rgba(201, 162, 39, 0.95);
}

.about-luxury-story .section-title {
    color: var(--white);
    max-width: 720px;
}

.about-luxury-copy p {
    max-width: 740px;
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.85;
}

.about-luxury-statement {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
    padding: 28px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.about-luxury-statement span {
    color: rgba(255, 255, 255, 0.64);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.about-luxury-statement strong {
    color: var(--white);
    font-family: var(--font-serif);
    font-size: clamp(1.65rem, 2.8vw, 2.45rem);
    font-weight: 600;
    line-height: 1;
}

.about-luxury-principles {
    margin-top: 36px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.about-principle-card {
    padding: clamp(28px, 4vw, 44px);
    background: var(--white);
    border: 1px solid rgba(201, 162, 39, 0.28);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.about-principle-card::after {
    content: "";
    position: absolute;
    width: 140px;
    height: 140px;
    right: -70px;
    top: -70px;
    border: 1px solid rgba(201, 162, 39, 0.38);
    transform: rotate(45deg);
}

.about-principle-card span {
    color: var(--gold);
    font-weight: 800;
    letter-spacing: 0.16em;
}

.about-principle-card h3 {
    margin: 12px 0 16px;
    color: var(--emerald);
    font-size: clamp(1.7rem, 2.4vw, 2.25rem);
}

.about-principle-card p {
    color: var(--charcoal-light);
    line-height: 1.8;
}

.about-principle-card.featured {
    background: linear-gradient(135deg, #f9f5eb, #ffffff);
}

.principle-line {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid rgba(201, 162, 39, 0.34);
    color: var(--charcoal);
    font-weight: 800;
}

.about-values-luxury {
    margin-top: 84px;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}

.about-value-tile {
    min-height: 220px;
    padding: 24px;
    background: var(--white);
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: var(--transition-fast);
}

.about-value-tile:hover {
    transform: translateY(-6px);
    border-color: rgba(201, 162, 39, 0.6);
    box-shadow: var(--shadow-md);
}

.about-value-tile span {
    margin-bottom: auto;
    color: var(--gold);
    font-weight: 900;
    letter-spacing: 0.12em;
}

.about-value-tile h3 {
    color: var(--emerald);
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.about-value-tile p {
    color: var(--charcoal-light);
    line-height: 1.65;
    font-size: 0.9rem;
}

.about-philosophy-luxury {
    margin-top: 56px;
    padding: clamp(34px, 5vw, 60px);
    text-align: center;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.16), rgba(4, 46, 34, 0.08));
    border: 1px solid rgba(201, 162, 39, 0.3);
}

.about-philosophy-luxury h2 {
    max-width: 900px;
    margin: 10px auto 18px;
    color: var(--emerald);
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.08;
}

.about-philosophy-luxury p {
    max-width: 820px;
    margin: 0 auto;
    color: var(--charcoal-light);
    line-height: 1.85;
}

@media (max-width: 1024px) {

    .about-luxury-story,
    .about-luxury-principles {
        grid-template-columns: 1fr;
    }

    .about-values-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .about-luxury-story {
        padding: 30px 22px;
    }

    .about-luxury-story::before {
        inset: 10px;
    }

    .about-values-grid {
        grid-template-columns: 1fr;
    }

    .about-value-tile {
        min-height: 180px;
    }
}

/* ==========================================================================
   COMPACT & VISUALLY RICH SECTIONS
   ========================================================================== */
/* Products pages */
.product-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.product-img-wrapper {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.premium-card:hover .product-img {
    transform: scale(1.1);
}

.premium-card h3 {
    padding: 20px 22px 4px !important;
    margin-bottom: 0 !important;
}

.premium-card p {
    padding: 0 22px !important;
    margin-bottom: 0 !important;
}

.premium-card .top-link {
    display: inline-block;
    margin: 14px 22px 22px !important;
    padding: 9px 20px;
    border: 1px solid var(--emerald);
    font-size: 0.75rem !important;
    letter-spacing: 0.1em;
    color: var(--emerald) !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    transition: background 0.25s, color 0.25s;
}

.premium-card .top-link:hover {
    background: var(--emerald);
    color: #fff !important;
}

.mobile-link-text {
    display: none;
}

.product-range-section {
    margin: 0 0 58px;
    padding: 50px 44px;
    background:
        linear-gradient(135deg, rgba(15, 57, 50, 0.96), rgba(20, 53, 47, 0.86)),
        linear-gradient(135deg, #fff 0%, #faf7ef 100%);
    border: 1px solid rgba(201, 162, 39, 0.42);
    box-shadow: 0 24px 70px rgba(20, 53, 47, 0.18);
    position: relative;
    overflow: hidden;
}

.product-range-section::before {
    content: '';
    position: absolute;
    inset: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    pointer-events: none;
}

.product-range-head {
    max-width: 820px;
    margin: 0 auto 34px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.product-range-head .section-title {
    color: #fff;
}

.product-range-head .section-tag {
    color: var(--gold);
}

.product-range-head .about-text-body {
    color: rgba(255, 255, 255, 0.78);
}

.product-range-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

.product-range-grid-single {
    grid-template-columns: minmax(0, 880px);
    justify-content: center;
}

.product-range-grid-single .product-range-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.85fr);
    gap: 0 28px;
    align-items: start;
}

.product-range-grid-single .product-range-card>.product-range-number,
.product-range-grid-single .product-range-card>h3,
.product-range-grid-single .product-range-card>p,
.product-range-grid-single .product-range-card>.product-range-logos {
    grid-column: 1 / -1;
}

.product-range-card {
    position: relative;
    padding: 32px 28px;
    background: linear-gradient(180deg, #fff 0%, #fbfaf6 100%);
    border: 1px solid rgba(201, 162, 39, 0.28);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    z-index: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.product-range-card:hover {
    transform: translateY(-5px);
    border-color: rgba(201, 162, 39, 0.46);
    box-shadow: 0 24px 58px rgba(0, 0, 0, 0.16);
}

.product-range-card::before {
    content: '';
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, var(--emerald), var(--gold));
}

.product-range-number {
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.2em;
    margin-bottom: 14px;
}

.product-range-card h3 {
    color: var(--charcoal);
    font-size: 1.55rem;
    margin: 0 0 10px;
}

.product-range-card p {
    color: var(--charcoal-light);
    font-size: 0.9rem;
    line-height: 1.65;
    margin: 0 0 20px;
}

.product-range-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 24px;
    padding: 14px;
    background: #fff;
    border: 1px solid rgba(216, 207, 194, 0.72);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.9);
}

.range-logo {
    min-width: 108px;
    height: 48px;
    padding: 7px 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid rgba(216, 207, 194, 0.7);
    color: var(--emerald);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.range-logo img {
    width: 116px;
    height: 34px;
    max-width: 116px;
    max-height: 34px;
    object-fit: contain;
}

.range-logo img[src*="grow-well-logo.jpg"] {
    width: 116px;
    height: 34px;
}

.range-logo-dark {
    background: #fff;
    border-color: rgba(216, 207, 194, 0.7);
}

.range-logo-dark img {
    background: #111;
    border-radius: 3px;
    padding: 2px 8px;
    width: 116px;
    height: 34px;
    max-height: 34px;
    box-sizing: border-box;
}

.range-logo-astral {
    background: #fff;
    border-color: rgba(216, 207, 194, 0.7);
}

.range-logo-astral img {
    background: #0b3f8f;
    border-radius: 3px;
    padding: 2px 8px;
    width: 116px;
    height: 34px;
    max-height: 34px;
    box-sizing: border-box;
}

.range-logo-text {
    background: linear-gradient(135deg, #fff, #f7f1df);
}

.product-range-block+.product-range-block {
    margin-top: 22px;
}

.product-range-block h4 {
    margin: 0 0 12px;
    color: var(--emerald);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.product-range-block ul {
    display: grid;
    gap: 9px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.product-range-block li {
    position: relative;
    padding-left: 18px;
    color: var(--charcoal-light);
    font-size: 0.88rem;
    line-height: 1.45;
}

.product-range-block li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.58em;
    width: 6px;
    height: 6px;
    background: var(--gold);
    transform: rotate(45deg);
}

.product-size-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 4px;
}

.product-size-grid span {
    min-height: 48px;
    padding: 11px 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(135deg, rgba(15, 123, 108, 0.08), rgba(201, 162, 39, 0.08)),
        #fff;
    border: 1px solid rgba(201, 162, 39, 0.26);
    color: var(--charcoal);
    font-size: 0.86rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    line-height: 1.15;
    text-align: center;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.78);
}

.product-size-note {
    margin: 12px 0 0 !important;
    padding: 12px 14px;
    background: rgba(15, 123, 108, 0.06);
    border-left: 3px solid var(--gold);
    color: var(--charcoal-light) !important;
    font-size: 0.82rem !important;
    line-height: 1.55 !important;
}

@media (max-width: 1200px) {
    .product-range-grid:not(.product-range-grid-single) {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-range-grid:not(.product-range-grid-single) .product-range-card:first-child {
        grid-column: 1 / -1;
    }

    .product-range-grid:not(.product-range-grid-single) .product-range-card:first-child .product-size-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .product-range-grid {
        grid-template-columns: 1fr;
    }

    .product-range-grid-single .product-range-card {
        display: flex;
        flex-direction: column;
    }

    .product-range-card:first-child {
        grid-column: auto;
    }

    .product-range-card:first-child .product-size-grid,
    .product-size-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.brand-luxury-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 24px;
    border: none;
    padding: 0;
    align-items: stretch;
}

.home-brand-card {
    text-decoration: none !important;
    color: inherit;
    position: relative;
    min-height: 330px;
    padding: 28px 24px 26px !important;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(248, 244, 236, 0.92)),
        radial-gradient(circle at 20% 0%, rgba(181, 134, 13, 0.14), transparent 34%);
    border: 1px solid rgba(181, 134, 13, 0.2);
    box-shadow: 0 20px 55px rgba(23, 34, 31, 0.09);
}

.home-brand-card::after {
    content: "";
    position: absolute;
    inset: 10px;
    border: 1px solid rgba(45, 106, 79, 0.12);
    pointer-events: none;
    transition: inset 0.35s ease, border-color 0.35s ease;
}

.home-brand-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 70px rgba(23, 34, 31, 0.14);
    border-color: rgba(181, 134, 13, 0.38);
}

.home-brand-card:hover::after {
    inset: 14px;
    border-color: rgba(181, 134, 13, 0.32);
}

.brand-card-kicker {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
}

.brand-logo-shell {
    width: 100%;
    height: 82px;
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 18px;
    margin-bottom: 12px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(216, 207, 194, 0.72);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.65);
}

.brand-logo-shell img {
    width: min(84%, 320px);
    height: 66px;
    max-width: 320px;
    max-height: 66px;
    object-fit: contain;
    transition: transform 0.35s ease;
}

.brand-logo-shell img[src*="grow-well-logo.jpg"] {
    width: min(84%, 320px);
    height: 66px;
}

.home-brand-card:hover .brand-logo-shell img {
    transform: scale(1.05);
}

.brand-card-rossa .brand-logo-shell {
    background: rgba(255, 255, 255, 0.82);
    border-color: rgba(216, 207, 194, 0.72);
}

.brand-card-rossa .brand-logo-shell img {
    background: #111;
    border-radius: 6px;
    padding: 3px 18px;
    width: min(84%, 320px);
    height: 66px;
    max-height: 66px;
    box-sizing: border-box;
}

.brand-card-astral .brand-logo-shell {
    background: rgba(255, 255, 255, 0.82);
    border-color: rgba(216, 207, 194, 0.72);
}

.brand-card-astral .brand-logo-shell img {
    background: #0b3f8f;
    border-radius: 6px;
    padding: 3px 18px;
    width: min(84%, 320px);
    height: 66px;
    max-height: 66px;
    box-sizing: border-box;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.22));
}

.home-brand-card h3 {
    padding: 0 !important;
    margin: 0 !important;
    line-height: 1.12;
    font-size: 1.45rem;
    color: var(--emerald);
}

.home-brand-card p {
    padding: 0 !important;
    margin: 12px auto 0 !important;
    max-width: 280px;
    font-size: 0.9rem;
    color: var(--charcoal-light);
    line-height: 1.72;
}

/* ==========================================================================
   KNOWLEDGE CENTRE — EDITORIAL LUXURY
   ========================================================================== */
.knowledge-editorial-section {
    padding: 78px 0 64px;
    background: linear-gradient(180deg, var(--off-white), #fff);
}

.knowledge-editorial-head {
    max-width: 880px;
    margin: 0 auto 44px;
    text-align: center;
}

.knowledge-hindi-subtitle {
    margin: 8px 0 18px;
    font-size: 1.15rem;
    color: var(--gold);
    font-weight: 700;
}

.knowledge-guidance-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.knowledge-guide-card {
    position: relative;
    min-height: 300px;
    padding: 28px 22px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(216, 207, 194, 0.9);
    box-shadow: 0 18px 50px rgba(23, 34, 31, 0.07);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.knowledge-guide-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--emerald), var(--gold));
}

.knowledge-guide-card:hover {
    transform: translateY(-8px);
    border-color: rgba(181, 134, 13, 0.42);
    box-shadow: 0 28px 70px rgba(23, 34, 31, 0.12);
}

.knowledge-guide-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-bottom: 22px;
    border: 1px solid rgba(181, 134, 13, 0.36);
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.knowledge-guide-card h3 {
    font-size: 1.34rem;
    color: var(--emerald);
    line-height: 1.15;
    margin-bottom: 8px;
}

.knowledge-guide-card h4 {
    font-size: 0.92rem;
    color: var(--charcoal);
    margin-bottom: 16px;
    font-weight: 700;
}

.knowledge-guide-card p {
    color: var(--charcoal-light);
    font-size: 0.88rem;
    line-height: 1.75;
}

.expert-blog-section {
    padding: 72px 0;
    background: var(--cream);
}

.expert-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 26px;
    margin-top: 42px;
}

.expert-blog-grid.compact {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.expert-blog-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border: 1px solid rgba(216, 207, 194, 0.9);
    box-shadow: 0 20px 60px rgba(23, 34, 31, 0.08);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.expert-blog-card:hover {
    transform: translateY(-9px);
    border-color: rgba(181, 134, 13, 0.4);
    box-shadow: 0 30px 80px rgba(23, 34, 31, 0.14);
}

.expert-blog-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: #111;
}

.expert-blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1), filter 0.35s ease;
}

.expert-blog-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
    background:
        linear-gradient(145deg, rgba(45, 106, 79, 0.92), rgba(23, 34, 31, 0.96)),
        radial-gradient(circle at 20% 20%, rgba(181, 134, 13, 0.3), transparent 30%);
    color: rgba(255, 255, 255, 0.78);
    text-align: center;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.expert-blog-card:hover .expert-blog-image img {
    transform: scale(1.08);
    filter: brightness(0.82);
}

.expert-blog-image span {
    position: absolute;
    left: 18px;
    bottom: 18px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--emerald);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.expert-blog-content {
    padding: 26px 24px 28px;
}

.expert-blog-content h3 {
    font-size: 1.55rem;
    color: var(--emerald);
    line-height: 1.16;
    margin-bottom: 8px;
}

.expert-blog-content h4 {
    color: var(--gold);
    font-size: 0.94rem;
    line-height: 1.45;
    margin-bottom: 14px;
    font-weight: 700;
}

.expert-blog-content p {
    color: var(--charcoal-light);
    line-height: 1.72;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.expert-blog-link {
    display: inline-block;
    padding: 10px 15px;
    border: 1px solid var(--emerald);
    color: var(--emerald);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: background 0.25s ease, color 0.25s ease;
}

.expert-blog-card:hover .expert-blog-link {
    background: var(--emerald);
    color: #fff;
}

.knowledge-cta-section {
    padding: 72px 0;
    background: #fff;
}

.knowledge-cta-panel {
    max-width: 900px;
    margin: 0 auto;
    padding: 44px 32px;
    text-align: center;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(248, 244, 236, 0.95));
    border: 1px solid rgba(181, 134, 13, 0.24);
    box-shadow: 0 24px 70px rgba(23, 34, 31, 0.1);
}

.knowledge-cta-panel h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--emerald);
    margin: 10px 0 8px;
}

.knowledge-cta-panel p {
    color: var(--charcoal-light);
    font-size: 1.05rem;
    margin-bottom: 26px;
}

.knowledge-detail-hero {
    min-height: 620px;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
    padding: 140px 0 72px;
}

.knowledge-detail-hero-empty {
    background:
        linear-gradient(rgba(0, 0, 0, .48), rgba(0, 0, 0, .64)),
        linear-gradient(145deg, var(--emerald), #111);
}

.knowledge-detail-copy {
    max-width: 920px;
    color: #fff;
}

.knowledge-back-link {
    display: inline-block;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.86);
    text-decoration: none;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.knowledge-detail-copy h1 {
    font-size: clamp(2.8rem, 7vw, 6rem);
    line-height: 0.95;
    margin: 14px 0;
}

.knowledge-detail-copy h2 {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 18px;
}

.knowledge-detail-copy p {
    max-width: 720px;
    font-size: 1rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.86);
}

.knowledge-article-wrap {
    padding: 72px 0;
    background: var(--off-white);
}

.knowledge-article-card {
    max-width: 920px;
    margin: 0 auto 62px;
    padding: 44px;
    background: #fff;
    border: 1px solid rgba(216, 207, 194, 0.86);
    box-shadow: 0 24px 70px rgba(23, 34, 31, 0.08);
}

.knowledge-article-section+.knowledge-article-section {
    margin-top: 44px;
    padding-top: 40px;
    border-top: 1px solid rgba(216, 207, 194, 0.86);
}

.knowledge-article-section h2 {
    font-size: 2.2rem;
    color: var(--emerald);
    margin: 10px 0 8px;
}

.knowledge-article-section h3 {
    color: var(--gold);
    margin-bottom: 16px;
}

.knowledge-article-section p {
    color: var(--charcoal-light);
    line-height: 1.9;
    margin-bottom: 20px;
}

.knowledge-article-section ul {
    display: grid;
    gap: 10px;
    padding: 0;
    list-style: none;
}

.knowledge-article-section li {
    padding: 12px 14px;
    border-left: 3px solid var(--emerald);
    background: var(--cream);
    color: var(--charcoal);
    font-size: 0.9rem;
}

.related-guides-panel {
    margin-bottom: 64px;
}

@media (max-width: 1200px) {
    .knowledge-guidance-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {

    .knowledge-editorial-section,
    .expert-blog-section,
    .knowledge-cta-section,
    .knowledge-article-wrap {
        padding: 52px 0;
    }

    .knowledge-guidance-grid {
        grid-template-columns: 1fr;
    }

    .knowledge-guide-card {
        min-height: auto;
    }

    .expert-blog-image {
        height: 220px;
    }

    .knowledge-article-card {
        padding: 28px 20px;
    }

    .knowledge-detail-hero {
        min-height: 520px;
        padding: 120px 0 52px;
    }
}

/* MASONRY SHOWCASE */
.collections-masonry {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 30px;
    margin-top: 40px;
}

.masonry-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 1px solid var(--card-border);
}

.item-vertical {
    grid-row: span 2;
    height: 660px;
}

.item-horizontal {
    height: 315px;
}

.item-square {
    height: 315px;
}

.masonry-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(31, 41, 55, 0.9) 0%, rgba(31, 41, 55, 0.4) 50%, rgba(31, 41, 55, 0.1) 100%);
    opacity: 0.85;
    transition: var(--transition-smooth);
}

.masonry-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.masonry-item:hover .masonry-overlay {
    opacity: 0.95;
    background: linear-gradient(to top, rgba(7, 79, 68, 0.95) 0%, rgba(31, 41, 55, 0.5) 60%, rgba(31, 41, 55, 0.2) 100%);
}

.masonry-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    color: var(--white);
    z-index: 5;
}

.masonry-tag {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--gold);
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.masonry-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 12px;
}

.masonry-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
    max-width: 450px;
    line-height: 1.6;
}

.masonry-link {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--white);
    display: inline-flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 4px;
}

.masonry-item:hover .masonry-link {
    color: var(--gold);
    border-color: var(--gold);
}

@media (max-width: 991px) {
    .collections-masonry {
        grid-template-columns: 1fr;
    }

    .item-vertical,
    .item-horizontal,
    .item-square {
        height: 400px;
    }
}

@media (max-width: 576px) {

    .product-showcase-grid,
    .projects-grid,
    .blog-grid,
    .gallery-masonry {
        grid-template-columns: 1fr !important;
    }

    .project-card {
        height: 340px;
    }

    .project-info,
    .masonry-caption {
        padding: 26px;
    }

    .item-vertical,
    .item-horizontal,
    .item-square {
        height: 330px;
    }

    .glass-form,
    .info-card-glass,
    .scheduler-panel {
        padding: 24px;
        border-radius: var(--radius-md);
    }

    .footer-newsletter-form {
        flex-direction: column;
        gap: 10px;
    }

    .footer-newsletter-form input,
    .footer-newsletter-form button {
        border-radius: var(--radius-sm);
    }
}

/* PROJECTS SYSTEM */
.projects-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 28px;
    border-radius: var(--radius-full);
    border: 1px solid var(--card-border);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--charcoal-light);
    background: transparent;
    transition: var(--transition-smooth);
}

.tab-btn:hover,
.tab-btn.active {
    background: var(--emerald);
    color: var(--white);
    border-color: var(--emerald);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.project-card {
    height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(31, 41, 55, 0.95) 0%, rgba(31, 41, 55, 0.2) 60%, rgba(31, 41, 55, 0) 100%);
    z-index: 1;
}

.project-info {
    padding: 40px;
    color: var(--white);
    z-index: 5;
    position: relative;
    width: 100%;
}

.project-category {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 8px;
}

.project-title {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 500;
    margin-bottom: 6px;
}

.project-location {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.65);
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg), 0 10px 30px rgba(15, 123, 108, 0.15);
    border-color: var(--emerald);
}

/* Showroom Split */
.showroom-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.showroom-gallery-link {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(201, 162, 39, 0.8);
    text-decoration: none;
    transition: color 0.25s;
    white-space: nowrap;
    padding-bottom: 2px;
    border-bottom: 1px solid rgba(201, 162, 39, 0.3);
}

.showroom-gallery-link:hover {
    color: #c9a227;
    border-color: #c9a227;
}

.showroom-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px;
    height: 580px;
}

.showroom-card {
    position: relative;
    overflow: hidden;
    background-image: var(--img);
    background-size: cover;
    background-position: center;
    cursor: pointer;
}

.showroom-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.75) 100%);
    transition: background 0.5s ease;
    z-index: 1;
}

.showroom-card:hover::before {
    background: linear-gradient(160deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.88) 100%);
}

/* Zoom image on hover */
.showroom-card {
    transition: background-size 0.8s ease;
}

.showroom-card:hover {
    background-size: 110%;
}

.showroom-card-inner {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 36px 40px;
}

.showroom-num {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 700;
    line-height: 1;
    color: rgba(255, 255, 255, 0.06);
    letter-spacing: -0.02em;
    transition: color 0.4s ease;
    user-select: none;
}

.showroom-card:hover .showroom-num {
    color: rgba(201, 162, 39, 0.15);
}

.showroom-content {}

.showroom-cat {
    display: block;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(201, 162, 39, 0.85);
    margin-bottom: 12px;
}

.showroom-title {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 500;
    color: #fff;
    line-height: 1.05;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.showroom-divider {
    width: 40px;
    height: 2px;
    background: var(--gold, #c9a227);
    margin-bottom: 16px;
    transition: width 0.4s ease;
}

.showroom-card:hover .showroom-divider {
    width: 80px;
}

.showroom-loc {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.04em;
    font-weight: 500;
}

@media (max-width: 700px) {
    .showroom-split {
        grid-template-columns: 1fr;
        height: auto;
    }

    .showroom-card {
        min-height: 320px;
    }

    .showroom-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .showroom-title {
        font-size: 2rem;
    }
}

/* TESTIMONIALS SYSTEM */
.testimonials-section .section-container {
    padding-top: 0;
    padding-bottom: 0;
}

.testimonials-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 50px;
    align-items: center;
}

@media (max-width: 991px) {
    .testimonials-wrapper {
        grid-template-columns: 1fr;
    }
}

.rating-badge-glass {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.rating-logo {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--charcoal-light);
    margin-bottom: 15px;
}

.logo-accent {
    color: var(--emerald);
    font-size: 1.25rem;
}

.rating-value {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--charcoal);
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1;
}

.stars-row {
    color: var(--gold);
    font-size: 1.35rem;
    margin-bottom: 15px;
}

.rating-count {
    font-size: 0.8rem;
    color: var(--charcoal-light);
}

.testimonials-slider-box {
    position: relative;
    width: 100%;
}

.client-info {
    display: flex;
    flex-direction: column;
    margin-top: 15px;
}

.client-name {
    font-weight: 700;
    color: var(--charcoal);
    font-size: 0.95rem;
}

.client-meta {
    font-size: 0.8rem;
    color: var(--gold-dark);
    margin-top: 2px;
}

/* FAQ ACCORDION PANEL */
.faq-accordion-container {
    max-width: 800px;
    margin: 40px auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-question {
    width: 100%;
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--charcoal);
}

.faq-arrow {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease;
    color: var(--gold);
}

.faq-arrow svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
}

.faq-answer-inner {
    padding: 0 30px 24px 30px;
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--charcoal-light);
}

.faq-card.is-open {
    border-color: var(--gold);
    box-shadow: var(--shadow-sm);
}

.faq-card.is-open .faq-arrow {
    transform: rotate(180deg);
}

/* CONTACT & FORMS */
.contact-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 40px;
}

@media (max-width: 991px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.glass-form {
    background: rgba(31, 41, 55, 0.95);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px;
    border-radius: var(--radius-lg);
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: flex;
    gap: 24px;
    width: 100%;
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 24px;
    }
}

.input-group {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.input-group input,
.input-group textarea,
.input-group select {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition-fast);
}

.input-group input:focus,
.input-group textarea:focus,
.input-group select:focus {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.07);
}

.input-group label {
    position: absolute;
    left: 20px;
    top: 18px;
    color: rgba(255, 255, 255, 0.5);
    pointer-events: none;
    transition: 0.3s ease all;
    font-size: 0.9rem;
}

/* Floating labels alignment */
.input-group input:focus~label,
.input-group input:not(:placeholder-shown)~label,
.input-group textarea:focus~label,
.input-group textarea:not(:placeholder-shown)~label {
    top: -10px;
    left: 15px;
    font-size: 0.75rem;
    color: var(--gold);
    background: #1F2937;
    padding: 2px 8px;
    border-radius: 4px;
}

.input-group select:focus~label,
.input-group select:valid~label {
    top: -10px;
    left: 15px;
    font-size: 0.75rem;
    color: var(--gold);
    background: #1F2937;
    padding: 2px 8px;
    border-radius: 4px;
}

.input-group .select-label {
    top: 18px;
}

.submit-btn {
    background: var(--gold);
    color: var(--charcoal);
    padding: 18px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.85rem;
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
    margin-top: 10px;
}

.submit-btn:hover {
    background: var(--white);
    color: var(--charcoal);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

/* Scheduler Light Styles Override */
.scheduler-panel .glass-form {
    background: transparent;
    border: none;
    padding: 0;
    backdrop-filter: none;
}

.scheduler-panel .input-group input,
.scheduler-panel .input-group textarea,
.scheduler-panel .input-group select {
    color: var(--charcoal);
    background: var(--white);
    border-color: rgba(0, 0, 0, 0.15);
}

.scheduler-panel .input-group input:focus,
.scheduler-panel .input-group textarea:focus,
.scheduler-panel .input-group select:focus {
    border-color: var(--emerald);
}

.scheduler-panel .input-group label {
    color: rgba(31, 41, 55, 0.6);
}

.scheduler-panel .input-group input:focus~label,
.scheduler-panel .input-group input:not(:placeholder-shown)~label,
.scheduler-panel .input-group textarea:focus~label,
.scheduler-panel .input-group textarea:not(:placeholder-shown)~label {
    background: var(--white);
    color: var(--emerald);
}

.scheduler-panel .input-group select:focus~label,
.scheduler-panel .input-group select:valid~label {
    background: var(--white);
    color: var(--emerald);
}

.scheduler-panel .submit-btn {
    background: var(--emerald);
    color: var(--white);
}

.scheduler-panel .submit-btn:hover {
    background: var(--emerald-dark);
    color: var(--white);
}

/* Contacts Info Glass Card */
.info-card-glass {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
}

.info-heading {
    font-size: 1.85rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 25px;
}

.info-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--charcoal-light);
}

.info-icon {
    width: 20px;
    height: 20px;
    fill: var(--gold);
    flex-shrink: 0;
    margin-top: 3px;
}

.map-container-glass {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 12px;
    box-shadow: var(--shadow-sm);
    height: 300px;
}

.luxury-map {
    width: 100%;
    height: 100%;
    background-color: #171f2a;
    border-radius: var(--radius-md);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    cursor: pointer;
    background-image: radial-gradient(var(--charcoal-light) 1px, transparent 1px);
    background-size: 20px 20px;
}

.luxury-map:hover {
    background-color: #1a2533;
}

.map-glow-dot {
    position: absolute;
    width: 16px;
    height: 16px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--gold);
    animation: mapPulseGlow 2s infinite;
}

@keyframes mapPulseGlow {
    0% {
        transform: scale(0.8);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.4);
        opacity: 1;
    }

    100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
}

.map-label {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    margin-top: 30px;
}

.map-details {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 4px;
}

/* Gallery visual snippets */
.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-gap: 20px;
    margin-top: 40px;
}

.gallery-card {
    height: 320px;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    display: block;
    color: inherit;
    text-decoration: none;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-card:hover img {
    transform: scale(1.05);
}

.gallery-view-card .gallery-open-icon {
    position: absolute;
    left: 18px;
    bottom: 18px;
    z-index: 2;
    width: 46px;
    height: 46px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--emerald);
    border: 1px solid rgba(201, 162, 39, 0.28);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(8px);
    transition: var(--transition-fast);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
}

.gallery-view-card .gallery-open-icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.gallery-view-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.45));
    opacity: 0;
    transition: var(--transition-fast);
}

.gallery-view-card:hover .gallery-open-icon,
.gallery-view-card:hover::after {
    opacity: 1;
    transform: translateY(0);
}

.floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 92px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    color: #fff;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
    z-index: 1200;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.floating-whatsapp svg {
    width: 30px;
    height: 30px;
    fill: currentColor;
}

.floating-whatsapp:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.28);
}

@media (max-width: 768px) {
    .floating-whatsapp {
        right: 16px;
        bottom: 86px;
        width: 52px;
        height: 52px;
    }
}

/* Dedicated Quote Scheduler fields */
.scheduler-panel {
    background: var(--off-white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--radius-lg);
    padding: 50px;
    box-shadow: var(--shadow-sm);
    margin-top: 40px;
}

/* ==========================================================================
   REDESIGNED FOOTER (Dark Gold Accents & Map Embed)
   ========================================================================== */
.footer {
    background-color: var(--charcoal);
    color: var(--off-white);
    position: relative;
    overflow: hidden;
}

.footer .section-container {
    padding-top: 80px;
    padding-bottom: 0;
}

.footer-top-line {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 40px;
}

@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.col-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--white);
}

.footer-logo-img {
    width: 128px;
    max-width: 100%;
    height: auto;
    display: block;
    padding: 8px;
    background: var(--white);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(201, 162, 39, 0.35);
}

.footer-about-text {
    font-size: 0.85rem;
    color: rgba(248, 248, 248, 0.7);
    line-height: 1.6;
}

.footer-gst-info {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    padding: 16px;
    margin-top: 10px;
}

.footer-gst-heading {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}

.footer-gst-details {
    font-size: 0.8rem;
    color: rgba(248, 248, 248, 0.6);
    line-height: 1.5;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.footer-socials a:hover {
    background-color: var(--gold);
    color: var(--charcoal);
    transform: translateY(-2px);
}

.footer-socials svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 25px;
    height: 1px;
    background-color: var(--gold);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.85rem;
    color: rgba(248, 248, 248, 0.7);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 4px;
}

.col-newsletter {
    display: flex;
    flex-direction: column;
}

.newsletter-desc {
    font-size: 0.85rem;
    color: rgba(248, 248, 248, 0.7);
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-newsletter-form {
    display: flex;
    width: 100%;
}

.footer-newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.85rem;
    outline: none;
}

.footer-newsletter-form button {
    padding: 14px 20px;
    background-color: var(--emerald);
    color: var(--white);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.footer-newsletter-form button svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.footer-newsletter-form button:hover {
    background-color: var(--emerald-dark);
}

/* Map Embed system in footer */
.footer-map-section {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 0;
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

@media (max-width: 768px) {
    .footer-map-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.footer-map-info {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(248, 248, 248, 0.8);
}

.footer-map-info-title {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    color: var(--white);
    margin-bottom: 15px;
}

.footer-map-glow-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 10px;
    height: 240px;
}

.footer-luxury-map {
    width: 100%;
    height: 100%;
    background-color: #171f2a;
    border-radius: var(--radius-sm);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    cursor: pointer;
    background-image: radial-gradient(var(--charcoal-light) 1px, transparent 1px);
    background-size: 20px 20px;
}

.footer-luxury-map:hover {
    background-color: #1a2533;
}

/* Bottom banner */
.footer-bottom {
    padding: 30px 0;
    position: relative;
}

.footer-divider-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.3), transparent);
}

.bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: rgba(248, 248, 248, 0.4);
    flex-wrap: wrap;
    gap: 15px;
}

.legal-links {
    display: flex;
    gap: 15px;
}

.legal-links a {
    color: rgba(248, 248, 248, 0.5);
}

.legal-links a:hover {
    color: var(--gold);
}

/* ==========================================================================
   REDESIGNED TESTIMONIALS & FOOTER
   ========================================================================== */
.redesigned-testimonials,
.testimonials-page {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
}

.redesigned-testimonials .section-tag {
    margin-bottom: 4px;
}

.redesigned-testimonials .section-title {
    margin-bottom: 8px;
}

.redesigned-testimonials .header-divider {
    margin-bottom: 40px;
}

/* Rating Summary Bar */
.testi-summary {
    display: flex;
    align-items: center;
    gap: 32px;
    background: var(--white);
    border: 1px solid rgba(201, 162, 39, 0.25);
    border-radius: var(--radius-lg);
    padding: 24px 32px;
    margin-bottom: 40px;
    box-shadow: var(--shadow-sm);
}

.testi-summary-score {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.testi-big-num {
    font-family: var(--font-heading);
    font-size: 3.6rem;
    font-weight: 700;
    color: var(--emerald);
    line-height: 1;
}

.testi-stars {
    color: var(--gold);
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.testi-summary-score p {
    font-size: 0.82rem;
    color: var(--charcoal-light);
    font-weight: 600;
}

.testi-summary-divider {
    width: 1px;
    height: 48px;
    background: var(--card-border);
    flex-shrink: 0;
}

.testi-summary-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.testi-summary-tags span {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--emerald);
    background: rgba(15, 123, 108, 0.07);
    border: 1px solid rgba(15, 123, 108, 0.18);
    padding: 6px 14px;
    border-radius: 100px;
}

/* Cards Grid */
.testi-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Testimonials Carousel */
.testi-carousel-wrapper {
    width: 100%;
}

.testi-carousel-track-outer {
    width: 100%;
    overflow: hidden;
    padding: 10px 2px 18px;
}

.testi-carousel-track {
    display: flex;
    gap: 24px;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.testi-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 22px;
}

.testi-dot {
    width: 8px;
    height: 8px;
    border: 0;
    border-radius: 999px;
    background: rgba(20, 38, 35, 0.18);
    cursor: pointer;
    padding: 0;
    transition: width 0.25s ease, background 0.25s ease;
}

.testi-dot.active {
    width: 26px;
    background: var(--emerald);
}

.testi-card {
    background: linear-gradient(180deg, #fff 0%, #fbf8ef 100%);
    border: 1px solid rgba(201, 162, 39, 0.22);
    border-radius: 18px;
    padding: 26px 26px 22px;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.09);
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-height: 250px;
    flex: 0 0 auto;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testi-card::before {
    content: '“';
    position: absolute;
    right: 24px;
    top: 12px;
    font-family: var(--font-heading);
    font-size: 5rem;
    line-height: 1;
    color: rgba(201, 162, 39, 0.14);
}

.testi-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 62px rgba(0, 0, 0, 0.13);
    border-color: rgba(201, 162, 39, 0.3);
}

.testi-card-top {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 58px;
    position: relative;
    z-index: 1;
}

.testi-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
    letter-spacing: 0.04em;
}

.testi-name {
    font-weight: 700;
    font-size: 1rem;
    color: var(--charcoal);
    line-height: 1.2;
}

.testi-meta {
    font-size: 0.78rem;
    color: var(--charcoal-light);
    margin-top: 2px;
}

.testi-rating {
    color: var(--gold);
    font-size: 0.78rem;
    margin-left: auto;
    flex-shrink: 0;
    letter-spacing: 0.04em;
}

.testi-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--charcoal);
    flex: 1;
    position: relative;
    z-index: 1;
}

.testi-tag {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--emerald);
    border-top: 1px solid var(--card-border);
    padding-top: 12px;
    margin-top: auto;
    position: relative;
    z-index: 1;
}

@media (max-width: 991px) {
    .testi-cards-grid {
        grid-template-columns: 1fr 1fr;
    }

    .testi-summary {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .testi-summary-divider {
        width: 100%;
        height: 1px;
    }

    .testi-card {
        min-height: 260px;
    }
}

@media (max-width: 600px) {
    .testi-cards-grid {
        grid-template-columns: 1fr;
    }

    .testi-card {
        min-height: 245px;
        padding: 24px 20px 20px;
    }

    .testi-card-top {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .testi-rating {
        width: 100%;
        margin-left: 66px;
    }
}

.footer-redesign {
    background:
        radial-gradient(circle at 15% 10%, rgba(201, 162, 39, 0.13), transparent 26%),
        radial-gradient(circle at 82% 20%, rgba(15, 123, 108, 0.16), transparent 30%),
        #050505;
}

.footer-redesign .section-container {
    padding-top: 70px;
}

.footer-cta-panel {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 28px;
    padding: 32px;
    border: 1px solid rgba(201, 162, 39, 0.24);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.055);
    margin-bottom: 44px;
}

.footer-cta-panel h3 {
    color: var(--white);
    font-size: 2rem;
    line-height: 1.18;
    font-weight: 500;
    max-width: 820px;
}

.footer-main-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.85fr 0.85fr 1.15fr;
    gap: 26px;
    align-items: start;
}

.footer-brand-block,
.footer-showroom-card {
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.04);
}

.footer-brand-block p,
.footer-showroom-card p {
    color: rgba(248, 248, 248, 0.72);
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 18px 0;
}

.footer-contact-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 22px 0;
}

.footer-contact-pills a {
    padding: 9px 12px;
    border: 1px solid rgba(201, 162, 39, 0.22);
    border-radius: var(--radius-full);
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.78rem;
    font-weight: 700;
}

.footer-link-block {
    display: flex;
    flex-direction: column;
    gap: 13px;
    min-width: 0;
}

.footer-link-block a {
    color: rgba(248, 248, 248, 0.72);
    font-size: 0.88rem;
}

.footer-link-block a:hover,
.footer-contact-pills a:hover {
    color: var(--gold);
}

.footer-map-wide {
    margin-top: 34px;
    height: 340px;
    overflow: hidden;
    border-radius: var(--radius-md);
    padding: 0;
}

@media (max-width: 991px) {
    .testimonial-feature {
        grid-template-columns: 1fr;
    }

    .footer-main-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-brand-block,
    .footer-showroom-card {
        grid-column: 1 / -1;
    }

    .testimonial-card-grid {
        grid-template-columns: 1fr;
    }

    .footer-cta-panel {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 576px) {

    .redesigned-testimonials,
    .testimonials-page {
        padding: 64px 0;
    }

    .testimonial-score-card,
    .testimonial-highlight-card,
    .testimonial-review-card,
    .footer-cta-panel,
    .footer-brand-block,
    .footer-showroom-card {
        padding: 24px;
    }

    .testimonial-score-card h2,
    .testimonial-score-card h3,
    .footer-cta-panel h3 {
        font-size: 1.65rem;
    }

    .testimonial-score {
        font-size: 3.6rem;
    }

    .footer-main-grid {
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }

    .footer-brand-block,
    .footer-showroom-card {
        grid-column: 1 / -1;
    }

    .footer-logo-img {
        width: 104px;
    }

    .footer-link-block {
        padding: 0 4px;
    }

    .footer-link-block a {
        font-size: 0.82rem;
    }
}

/* ==========================================================================
   BACK TO TOP
   ========================================================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--emerald);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(15, 123, 108, 0.35);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-smooth);
}

.back-to-top svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.back-to-top:hover {
    background-color: var(--emerald-dark);
    transform: translateY(-3px);
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ==========================================================================
   SCROLL REVEALS
   ========================================================================== */
.animate-reveal {
    opacity: 0;
    transition-duration: 1.2s;
    transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
    transition-property: transform, opacity;
}

.reveal-up {
    transform: translateY(50px);
}

.reveal-left {
    transform: translateX(-50px);
}

.reveal-right {
    transform: translateX(50px);
}

.animate-reveal.revealed {
    opacity: 1;
    transform: translate(0, 0);
}

/* Auto slide structures */
.testimonial-slide {
    position: absolute;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out, visibility 0.8s;
}

.testimonial-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    position: relative;
}

/* ==========================================================================
   ASSETS SHOWCASE SECTION
   ========================================================================== */
/* ==========================================================================
   ASSETS SHOWCASE — PREMIUM REDESIGN
   ========================================================================== */
.assets-category-block {
    margin-bottom: 56px;
}

.assets-category-block:last-child {
    margin-bottom: 0;
}

.assets-cat-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--charcoal);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.assets-cat-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(201, 162, 39, 0.5), transparent);
}

.assets-img-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.assets-img-card {
    display: block;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    background: #111;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.10);
    cursor: pointer;
}

.assets-img-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.72) 100%);
    transition: opacity 0.4s ease;
    opacity: 0.5;
}

.assets-img-card:hover::after {
    opacity: 0.75;
}

.assets-img-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.92);
}

.assets-img-card:hover img {
    transform: scale(1.08);
    filter: brightness(0.8);
}

.assets-img-card span {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 16px 18px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.assets-img-card span::after {
    content: '→';
    font-size: 1rem;
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity 0.3s, transform 0.3s;
}

.assets-img-card:hover span::after {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 768px) {
    .assets-img-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .assets-img-card img {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .assets-img-row {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   OUR MATERIALS — PREMIUM REDESIGN
   ========================================================================== */
.materials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
}

.materials-grid .material-card:nth-child(4),
.materials-grid .material-card:nth-child(5) {
    grid-column: span 1;
}

/* Last 2 cards wider — centered row */
.materials-grid {
    grid-template-columns: repeat(6, 1fr);
}

.materials-grid .material-card:nth-child(1) {
    grid-column: span 2;
}

.materials-grid .material-card:nth-child(2) {
    grid-column: span 2;
}

.materials-grid .material-card:nth-child(3) {
    grid-column: span 2;
}

.materials-grid .material-card:nth-child(4) {
    grid-column: span 3;
}

.materials-grid .material-card:nth-child(5) {
    grid-column: span 3;
}

.material-card {
    display: block;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    background: #111;
    cursor: pointer;
    min-height: 360px;
}

.material-card img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1), filter 0.5s ease;
    filter: brightness(0.75);
}

.material-card:hover img {
    transform: scale(1.08);
    filter: brightness(0.5);
}

.material-card-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px 28px;
    background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.75) 100%);
    transition: background 0.4s ease;
}

.material-card:hover .material-card-overlay {
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.85) 100%);
}

.material-card-tag {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: var(--gold, #c9a227);
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}

.material-card-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 10px;
}

.material-card-desc {
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin-bottom: 18px;
    max-width: 320px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.material-card:hover .material-card-desc {
    opacity: 1;
    transform: translateY(0);
}

.material-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
    border-bottom: 1px solid rgba(201, 162, 39, 0.7);
    padding-bottom: 3px;
    width: fit-content;
    transition: color 0.25s, border-color 0.25s;
}

.material-card:hover .material-card-btn {
    color: var(--gold, #c9a227);
    border-color: var(--gold, #c9a227);
}

@media (max-width: 900px) {
    .materials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .materials-grid .material-card:nth-child(n) {
        grid-column: span 1;
    }

    .material-card,
    .material-card img {
        min-height: 260px;
    }
}

@media (max-width: 540px) {
    .materials-grid {
        grid-template-columns: 1fr;
    }

    .material-card,
    .material-card img {
        min-height: 220px;
    }
}

/* ==========================================================================
   CURATED SHOWCASE — BENTO GRID
   ========================================================================== */
/* ==========================================================================
   CURATED SHOWCASE — LUXURY EDITORIAL GRID
   ========================================================================== */
.bento-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    grid-template-rows: 500px 300px;
    gap: 3px;
    margin-top: 40px;
    background: #0a0a0a;
    border: 3px solid #0a0a0a;
}

/* Card base */
.bento-card {
    display: block;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    background: #0a0a0a;
    cursor: pointer;
}

.bento-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.9s cubic-bezier(0.4, 0, 0.2, 1), filter 0.6s ease;
    filter: brightness(0.65) saturate(0.9);
}

.bento-card:hover img {
    transform: scale(1.12);
    filter: brightness(0.35) saturate(0.7);
}

/* Gold border reveal on hover */
.bento-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    transition: border-color 0.4s ease;
    z-index: 10;
    pointer-events: none;
}

.bento-card:hover::before {
    border-color: rgba(201, 162, 39, 0.7);
}

/* Number index top-right */
.bento-card::after {
    content: attr(data-index);
    position: absolute;
    top: 20px;
    right: 22px;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: rgba(255, 255, 255, 0.25);
    z-index: 6;
    transition: color 0.3s;
}

.bento-card:hover::after {
    color: rgba(201, 162, 39, 0.8);
}

.bento-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px 28px;
    background: linear-gradient(180deg,
            transparent 20%,
            rgba(0, 0, 0, 0.3) 55%,
            rgba(0, 0, 0, 0.88) 100%);
    z-index: 5;
}

.bento-tag {
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    color: var(--gold, #c9a227);
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
    opacity: 0.85;
}

.bento-title {
    font-family: var(--font-heading);
    font-size: 1.9rem;
    font-weight: 500;
    color: #fff;
    line-height: 1.05;
    margin-bottom: 0;
    letter-spacing: 0.01em;
}

/* Animated gold line under title */
.bento-title::after {
    content: '';
    display: block;
    width: 0;
    height: 1px;
    background: var(--gold, #c9a227);
    margin-top: 10px;
    transition: width 0.45s ease;
}

.bento-card:hover .bento-title::after {
    width: 48px;
}

.bento-desc {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.65;
    margin-top: 12px;
    margin-bottom: 16px;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.4s ease 0.05s, transform 0.4s ease 0.05s;
    max-width: 280px;
}

.bento-card:hover .bento-desc {
    opacity: 1;
    transform: translateY(0);
}

.bento-link {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.bento-link::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 1px;
    background: var(--gold, #c9a227);
    transition: width 0.35s ease;
}

.bento-card:hover .bento-link {
    color: var(--gold, #c9a227);
}

.bento-card:hover .bento-link::before {
    width: 40px;
}

/* Grid placement */
.bento-tall {
    grid-column: 1;
    grid-row: 1 / 3;
}

.bento-grid .bento-card:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
}

.bento-grid .bento-card:nth-child(3) {
    grid-column: 3;
    grid-row: 1;
}

.bento-grid .bento-card:nth-child(4) {
    grid-column: 2;
    grid-row: 2;
}

.bento-grid .bento-card:nth-child(5) {
    grid-column: 3;
    grid-row: 2;
}

@media (max-width: 900px) {
    .bento-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        gap: 3px;
    }

    .bento-tall,
    .bento-grid .bento-card:nth-child(n) {
        grid-column: span 1;
        grid-row: span 1;
        min-height: 280px;
    }
}

@media (max-width: 540px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-grid .bento-card:nth-child(n) {
        min-height: 240px;
    }
}

/* Registered Address */
.footer-address-info{
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.12);
}

.footer-address-heading{
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.footer-address-details{
    margin: 0;
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255,255,255,0.85);
}

.footer-address-details strong{
    color: #fff;
    font-weight: 600;
}