/* ===== ROOT VARIABLES & RESET ===== */
:root {
    --primary: #0a1628;
    --primary-light: #132244;
    --accent: #c9a96e;
    --accent-glow: rgba(201, 169, 110, 0.3);
    --white: #ffffff;
    --off-white: #f0ece4;
    --text: #c8cdd5;
    --text-dark: #1a1a2e;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.08);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-accent: 'Cormorant Garamond', serif;
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--primary);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all .4s var(--ease);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

em {
    font-family: var(--font-accent);
    font-style: italic;
    color: var(--accent);
}

/* ===== PRELOADER ===== */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--primary);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .8s, visibility .8s;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-inner {
    text-align: center;
}

.loader-line {
    width: 60px;
    height: 2px;
    background: var(--accent);
    margin: 0 auto 20px;
    animation: loaderLine 1.5s var(--ease) infinite;
}

.loader-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--accent);
    letter-spacing: 8px;
    text-transform: uppercase;
}

@keyframes loaderLine {

    0%,
    100% {
        width: 20px;
        opacity: .3
    }

    50% {
        width: 80px;
        opacity: 1
    }
}

/* ===== PARTICLES ===== */
.particles {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

/* ===== CUSTOM CURSOR ===== */
.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99998;
    transition: transform .1s;
}

.cursor-outline {
    width: 35px;
    height: 35px;
    border: 1px solid var(--accent);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99997;
    transition: transform .15s ease-out, width .3s, height .3s, border-color .3s;
    transform: translate(-50%, -50%);
}

@media (max-width:768px) {

    .cursor-dot,
    .cursor-outline {
        display: none;
    }
}

/* ===== SIDE NAV DOTS ===== */
.side-nav {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.side-nav .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .2);
    border: 1px solid rgba(255, 255, 255, .1);
    transition: all .4s var(--ease);
    position: relative;
}

.side-nav .dot.active,
.side-nav .dot:hover {
    background: var(--accent);
    border-color: var(--accent);
    box-shadow: 0 0 15px var(--accent-glow);
}

.side-nav .dot::before {
    content: attr(data-tooltip);
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: .75rem;
    white-space: nowrap;
    color: var(--accent);
    opacity: 0;
    transition: opacity .3s;
    pointer-events: none;
}

.side-nav .dot:hover::before {
    opacity: 1;
}

@media (max-width:768px) {
    .side-nav {
        display: none;
    }
}

/* ===== HEADER ===== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 22px 0;
    transition: all .5s var(--ease);
    background: rgba(255, 255, 255, .8);
}

.main-header.scrolled {
    background: rgba(10, 22, 40, .92);
    backdrop-filter: blur(20px);
    padding: 14px 0;
    box-shadow: 0 5px 30px rgba(0, 0, 0, .3);
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo img {
    height: 55px;
    transition: all .4s var(--ease);
}

.main-header.scrolled .brand-logo img {
    height: 42px;
    filter: brightness(0) invert(1);
}

.desktop-nav {
    display: flex;
    gap: 40px;
}

.desktop-nav a {
    font-size: .9rem;
    font-weight: 700;
    color: #0a1628;
    letter-spacing: .5px;
    position: relative;
    padding: 5px 0;
}

.main-header.scrolled .desktop-nav a {
    color: var(--white);
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width .4s var(--ease);
}

.desktop-nav a:hover {
    color: var(--white);
}

.desktop-nav a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-btn-brochure {
    padding: 10px 24px;
    border: 1px solid #0a1628;
    color: #0a1628;
    font-size: .85rem;
    font-weight: 500;
    letter-spacing: .5px;
    border-radius: 50px;
    transition: all .4s var(--ease);
}

.main-header.scrolled .header-btn-brochure {
    border-color: var(--white);
    color: var(--white);
}

.header-btn-brochure:hover {
    background: var(--accent);
    color: var(--primary);
}

.header-btn-brochure i {
    margin-right: 6px;
}

.header-phone {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #0a1628;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a1628;
    font-size: .85rem;
}

.main-header.scrolled .header-phone {
    border-color: var(--white);
    color: var(--white);
}

.header-phone:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    position: absolute;
    left: 0;
    transition: all .4s var(--ease);
}

.menu-toggle span:nth-child(1) {
    top: 0;
}

.menu-toggle span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.menu-toggle span:nth-child(3) {
    bottom: 0;
}

.menu-toggle.active span:nth-child(1) {
    top: 50%;
    transform: rotate(45deg) translateY(-50%);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    bottom: 50%;
    transform: rotate(-45deg) translateY(50%);
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    pointer-events: none;
}

.mobile-menu.active {
    pointer-events: all;
}

.mobile-menu-bg {
    position: absolute;
    inset: 0;
    background: var(--primary);
    opacity: 0;
    transition: opacity .6s var(--ease);
}

.mobile-menu.active .mobile-menu-bg {
    opacity: .98;
}

.mobile-menu-content {
    position: absolute;
    inset: 90px 0 110px;
    padding: 0 30px;
    transform: none;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 22px;
    overflow-y: auto;
}

.mobile-link {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    opacity: 0;
    transform: translateY(30px);
    transition: all .5s var(--ease);
}

.mobile-menu.active .mobile-link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu.active .mobile-link:nth-child(1) {
    transition-delay: .1s
}

.mobile-menu.active .mobile-link:nth-child(2) {
    transition-delay: .15s
}

.mobile-menu.active .mobile-link:nth-child(3) {
    transition-delay: .2s
}

.mobile-menu.active .mobile-link:nth-child(4) {
    transition-delay: .25s
}

.mobile-menu.active .mobile-link:nth-child(5) {
    transition-delay: .3s
}

.mobile-menu.active .mobile-link:nth-child(6) {
    transition-delay: .35s
}

.mobile-link::before {
    content: attr(data-index);
    font-size: .8rem;
    color: var(--accent);
    display: block;
    letter-spacing: 3px;
    margin-bottom: 5px;
}

.mobile-link:hover {
    color: var(--accent);
}

.mobile-menu-footer {
    position: absolute;
    bottom: 40px;
    left: 30px;
    transform: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
    opacity: 0;
    transition: opacity .5s .4s;
}

.mobile-menu.active .mobile-menu-footer {
    opacity: 1;
}

.mobile-menu-footer a {
    color: var(--accent);
    font-size: .9rem;
}

/* ===== HERO SPLIT ===== */
.hero-split {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    z-index: 1;
}

.hero-left {
    position: relative;
    overflow: hidden;
}

.hero-left-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    animation: heroZoom 25s infinite alternate;
}

@keyframes heroZoom {
    0% {
        transform: scale(1)
    }

    100% {
        transform: scale(1.15)
    }
}

.hero-left-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 22, 40, .6) 0%, rgba(10, 22, 40, .3) 100%);
}

.hero-right {
    display: flex;
    align-items: center;
    padding: 60px 8%;
    background: var(--primary);
    position: relative;
}

.hero-right::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10%;
    width: 1px;
    height: 80%;
    background: linear-gradient(to bottom, transparent, var(--accent), transparent);
}

.hero-right-content {
    position: relative;
    z-index: 2;
}

.hero-tag {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
    color: var(--accent);
    font-size: .85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero-tag .line {
    width: 40px;
    height: 1px;
    background: var(--accent);
}

.hero-title {
    font-family: var(--font-heading);
    margin-bottom: 25px;
}

.title-line {
    display: block;
    overflow: hidden;
}

.title-line span {
    display: inline-block;
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    animation: slideUp 1s var(--ease-out) forwards;
    opacity: 0;
    transform: translateY(100%);
}

.title-line:nth-child(1) span {
    animation-delay: .3s
}

.title-line:nth-child(2) span {
    animation-delay: .5s
}

.title-line:nth-child(3) span {
    animation-delay: .7s
}

.title-line.highlight span {
    color: var(--accent);
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.hero-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, .6);
    max-width: 420px;
    margin-bottom: 40px;
    line-height: 1.8;
    animation: fadeIn 1s .9s forwards;
    opacity: 0;
}

@keyframes fadeIn {
    to {
        opacity: 1
    }
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 30px;
    animation: fadeIn 1s 1.1s forwards;
    opacity: 0;
}

.btn-magnetic {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    background: var(--accent);
    color: var(--primary);
    font-weight: 600;
    font-size: .95rem;
    border-radius: 50px;
    transition: all .4s var(--ease);
    position: relative;
    overflow: hidden;
}

.btn-magnetic::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, .2), transparent);
    transform: translateX(-100%);
    transition: transform .6s;
}

.btn-magnetic:hover::before {
    transform: translateX(100%);
}

.btn-magnetic:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--accent-glow);
}

.btn-text-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, .7);
    font-weight: 500;
    font-size: .95rem;
}

.btn-text-arrow:hover {
    color: var(--accent);
}

.btn-text-arrow svg {
    transition: transform .3s;
}

.btn-text-arrow:hover svg {
    transform: translate(3px, -3px);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    animation: fadeIn 1s 1.5s forwards;
    opacity: 0;
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, .3);
    border-radius: 15px;
    position: relative;
}

.wheel {
    width: 3px;
    height: 8px;
    background: var(--accent);
    border-radius: 3px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: mouseWheel 2s infinite;
}

@keyframes mouseWheel {
    0% {
        opacity: 1;
        transform: translate(-50%, 0)
    }

    100% {
        opacity: 0;
        transform: translate(-50%, 15px)
    }
}

.hero-scroll-indicator span {
    font-size: .7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .4);
}

.inner-banner {
    position: relative;
    margin-top: 100px;
}

.inner-banner-media {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.inner-banner-bg {
    width: 100%;
    height: 100%;
    aspect-ratio: 1920/400;
    background-size: cover;
    background-position: center;
    animation: heroZoom 25s infinite alternate;
}

.inner-banner-meta {
    background: #0a162870;
    color: var(--white);
    height: 60px;
    display: flex;
    align-items: center;
    position: absolute;
    bottom: 0px;
    width: 100%;
}

.inner-banner-meta-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.inner-banner-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
}

.inner-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .85rem;
    color: rgba(255, 255, 255, .7);
}

.inner-breadcrumb a {
    color: rgba(255, 255, 255, .9);
}

.inner-breadcrumb a:hover {
    color: var(--accent);
}

.products-showcase {
    padding: 100px 0;
    background: var(--primary);
    position: relative;
    z-index: 1;
}

.products-showcase-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

.products-showcase-header {
    text-align: center;
    margin-bottom: 60px;
}

.products-showcase-lead {
    max-width: 620px;
    margin: 0 auto;
    color: rgba(255, 255, 255, .6);
    font-size: .95rem;
}

.products-category-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.product-category-card {
    position: relative;
    background: var(--primary-light);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .45);
}

.product-category-main {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: stretch;
}

.product-category-media {
    position: relative;
    overflow: hidden;
}

.product-category-image-wrap {
    position: relative;
    height: 100%;
    min-height: 260px;
}

.product-category-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform .9s var(--ease);
}

.product-category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 22, 40, .1), rgba(10, 22, 40, .7));
    mix-blend-mode: multiply;
}

.product-category-card:hover .product-category-image-wrap img {
    transform: scale(1.15);
}

.product-category-content {
    padding: 32px 32px 30px;
}

.product-category-label {
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, .5);
    display: inline-block;
    margin-bottom: 10px;
}

.product-category-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 14px;
}

.product-category-desc {
    color: rgba(255, 255, 255, .6);
    font-size: .9rem;
    margin-bottom: 24px;
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 26px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .25);
    background: rgba(255, 255, 255, .02);
    color: var(--white);
    font-size: .85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .4s var(--ease);
}

.btn-ghost:hover {
    background: var(--accent);
    color: var(--primary);
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px var(--accent-glow);
}

.product-category-gallery {
    display: none;
    padding: 0 28px 28px;
}

.product-category-card.active .product-category-main {
    animation: productsFadeUp .6s var(--ease-out) forwards;
}

.product-category-card.active .product-category-main {
    display: none;
}

.product-category-card.active .product-category-gallery {
    display: block;
    animation: productsFadeUp .6s var(--ease-out) forwards;
}

.products-gallery-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding-bottom: 6px;
    scroll-behavior: smooth;
    cursor: grab;
}

.products-gallery-track::-webkit-scrollbar {
    height: 4px;
}

.products-gallery-track::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, .25);
    border-radius: 999px;
}

.products-gallery-item {
    min-width: 260px;
    max-width: 260px;
    flex-shrink: 0;
    position: relative;
    transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}

.products-gallery-image-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, .02);
}

.products-gallery-image-wrap img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transform: scale(1.03);
    transition: transform .7s var(--ease);
}

.products-gallery-item:hover .products-gallery-image-wrap img {
    transform: scale(1.1);
}

.products-gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .5);
}

.products-gallery-caption {
    margin-top: 14px;
    padding: 6px 8px 10px;
    font-size: .87rem;
    color: rgba(255, 255, 255, .8);
    text-align: center;
}

.products-gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, .1);
    opacity: .6;
    transition: opacity .4s, box-shadow .4s;
    pointer-events: none;
}

.products-gallery-item:hover::after {
    opacity: 1;
    box-shadow: 0 0 0 1px rgba(201, 169, 110, .4);
}

.products-gallery-zoom {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, rgba(10, 22, 40, .05), rgba(2, 5, 15, .72));
    opacity: 0;
    transform: scale(1.1);
    transition: opacity .35s var(--ease-out), transform .4s var(--ease-out);
}

.products-gallery-zoom i {
    font-size: 1.6rem;
    color: rgba(255, 255, 255, .92);
    text-shadow: 0 0 18px rgba(0, 0, 0, .8);
    transform: translateY(8px);
    opacity: 0;
    transition: opacity .35s var(--ease-out), transform .35s var(--ease-out);
}

.products-gallery-item:hover .products-gallery-zoom {
    opacity: 1;
    transform: scale(1);
}

.products-gallery-item:hover .products-gallery-zoom i {
    opacity: 1;
    transform: translateY(0);
}

/* .products-gallery-page::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -120px;
    width: 160%;
    height: 260px;
    background: radial-gradient(circle at top, rgba(3, 10, 24, 1), rgba(3, 10, 24, 1));
    border-radius: 50%;
    transform: translateX(-50%);
} */

.products-gallery-page {
    padding: 100px 0 140px;
    background: radial-gradient(circle at top, rgba(201, 169, 110, .18), rgba(3, 10, 24, 1));
    position: relative;
    overflow: hidden;
}

.products-gallery-page::before {
    content: '';
    position: absolute;
    inset: -35%;
    background:
        radial-gradient(circle at 0% 0%, rgba(201, 169, 110, .18), transparent 60%),
        radial-gradient(circle at 100% 100%, rgba(201, 169, 110, .14), transparent 55%);
    opacity: .6;
    mix-blend-mode: screen;
    pointer-events: none;
}

.products-gallery-container {
    position: relative;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
    z-index: 1;
}

.products-gallery-header {
    text-align: center;
    margin-bottom: 46px;
}

.products-gallery-lead {
    max-width: 620px;
    margin: 12px auto 0;
    color: rgba(255, 255, 255, .7);
    font-size: .95rem;
}

.products-filter-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.products-filter-track {
    display: inline-flex;
    overflow: visible;
}

.products-filter-pills {
    display: inline-flex;
    padding: 6px;
    border-radius: 999px;
    background: radial-gradient(circle at top left, rgba(201, 169, 110, .35), rgba(2, 10, 25, .95));
    border: 1px solid rgba(255, 255, 255, .14);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .55);
    backdrop-filter: blur(20px);
}

.filter-scroll-btn {
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(2, 5, 15, .85);
    color: rgba(255, 255, 255, .9);
    align-items: center;
    justify-content: center;
    margin: 0 6px;
    cursor: pointer;
    transition: all .3s var(--ease);
    flex-shrink: 0;
}

.filter-scroll-btn.is-disabled {
    opacity: .3;
    cursor: default;
}

.filter-scroll-btn.is-disabled:hover {
    transform: none;
    box-shadow: none;
}

.filter-scroll-btn:not(.is-disabled):hover {
    background: var(--accent);
    color: var(--primary);
    border-color: var(--accent);
    box-shadow: 0 10px 26px rgba(0, 0, 0, .7);
}

.filter-pill {
    position: relative;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, .75);
    padding: 10px 20px;
    border-radius: 999px;
    font-size: .82rem;
    letter-spacing: .05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: color .3s var(--ease), transform .3s var(--ease);
    z-index: 1;
}

.filter-pill::before {
    content: '';
    position: absolute;
    inset: 4px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(201, 169, 110, .95), rgba(255, 255, 255, .96));
    opacity: 0;
    transform: scale(.8);
    transition: opacity .35s var(--ease-out), transform .35s var(--ease-out);
    z-index: -1;
}

.filter-pill .pill-label {
    position: relative;
}

.filter-pill.active {
    color: var(--primary);
    transform: translateY(-2px);
}

.filter-pill.active::before {
    opacity: 1;
    transform: scale(1);
}

.products-filter-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
    margin-top: 34px;
}

.products-filter-grid .products-gallery-item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
    min-width: 0;
    max-width: none;
    flex-shrink: 1;
    opacity: 1;
    transform: translateY(0) scale(1);
    transition:
        opacity .4s var(--ease),
        transform .45s var(--ease),
        box-shadow .4s var(--ease);
}

.products-filter-grid .products-gallery-item.is-hidden {
    opacity: 0;
    transform: translateY(30px) scale(.9);
    pointer-events: none;
    display: none;
}

.products-filter-grid .products-gallery-item.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.products-filter-grid .products-gallery-item.gallery-item-anim-in {
    animation: galleryItemIn .6s var(--ease-out) forwards;
    animation-delay: calc(.03s * var(--gallery-index, 0));
}

@keyframes galleryItemIn {
    from {
        opacity: 0;
        transform: translateY(22px) scale(.94) rotate(-1deg);
        box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1) rotate(0);
        box-shadow: 0 18px 40px rgba(0, 0, 0, .6);
    }
}

.products-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(2, 5, 15, .9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s var(--ease), visibility .35s var(--ease);
}

.products-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.products-lightbox-inner {
    max-width: 900px;
    width: 90%;
    max-height: 80vh;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .2);
    background: radial-gradient(circle at top, rgba(201, 169, 110, .16), rgba(10, 22, 40, .98));
    box-shadow: 0 30px 80px rgba(0, 0, 0, .8);
    transform: translateY(20px) scale(.96);
    opacity: 0;
    transition: transform .45s var(--ease-out), opacity .45s var(--ease-out);
}

.products-lightbox.active .products-lightbox-inner {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.products-lightbox-image-wrap {
    position: relative;
}

.products-lightbox-image-wrap img {
    width: 100%;
    max-height: 550px;
    object-fit: cover;
    display: block;
}

.products-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .35);
    background: radial-gradient(circle at top, rgba(10, 22, 40, .85), rgba(2, 5, 15, .95));
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .9);
    cursor: pointer;
    transition: all .3s var(--ease);
    z-index: 2;
}

.products-lightbox-prev {
    left: 18px;
}

.products-lightbox-next {
    right: 18px;
}

.products-lightbox-nav:hover {
    background: var(--accent);
    color: var(--primary);
    border-color: var(--accent);
    box-shadow: 0 14px 30px rgba(0, 0, 0, .7);
}

.products-lightbox-caption {
    padding: 16px 20px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.products-lightbox-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--white);
}

.products-lightbox-close {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .4);
    background: transparent;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .3s;
}

.products-lightbox-close:hover {
    background: var(--accent);
    color: var(--primary);
    border-color: var(--accent);
}

@keyframes productsFadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* ===== BRAND MARQUEE ===== */
.brand-marquee {
    padding: 20px 0;
    background: var(--primary-light);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 30s linear infinite;
}

.marquee-inner {
    display: flex;
    align-items: center;
}

.marquee-item {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 300;
    color: rgba(255, 255, 255, .5);
    margin: 0 25px;
    text-transform: uppercase;
    letter-spacing: 3px;
    white-space: nowrap;
}

.marquee-star {
    color: var(--accent);
    font-size: 1rem;
    margin: 0 15px;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

/* ===== SECTIONS SHARED ===== */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 15px;
    font-weight: 500;
}

.section-label.light {
    color: var(--accent);
}

.label-line {
    width: 30px;
    height: 1px;
    background: var(--accent);
}

.section-heading {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 30px;
}

.section-heading.light {
    color: var(--white);
}

/* ===== SCROLL REVEAL ===== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}

.scroll-reveal[data-direction="left"] {
    transform: translateX(-60px);
}

.scroll-reveal[data-direction="right"] {
    transform: translateX(60px);
}

.scroll-reveal[data-direction="up"] {
    transform: translateY(50px);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translate(0, 0);
}

/* ===== ABOUT CINEMATIC ===== */
.about-cinematic {
    padding: 120px 0;
    position: relative;
    z-index: 1;
    background: var(--primary);
}

.about-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-stack {
    position: relative;
}

.about-img-primary {
    width: 85%;
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .3);
    position: relative;
}

.about-img-primary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s var(--ease);
}

.about-img-primary:hover img {
    transform: scale(1.05);
}

.img-frame {
    position: absolute;
    inset: -15px;
    border: 1px solid var(--accent);
    border-radius: 4px;
    z-index: -1;
    opacity: .3;
}

.about-img-secondary {
    position: absolute;
    bottom: -40px;
    right: -20px;
    width: 45%;
    aspect-ratio: 1;
    overflow: hidden;
    border: 4px solid var(--primary);
    border-radius: 4px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .4);
    z-index: 2;
}

.about-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s var(--ease);
}

.about-img-secondary:hover img {
    transform: scale(1.05);
}

.floating-badge {
    position: absolute;
    top: 30px;
    right: -10px;
    background: var(--accent);
    color: var(--primary);
    padding: 22px;
    text-align: center;
    z-index: 3;
    box-shadow: 0 10px 30px var(--accent-glow);
}

.badge-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.badge-label {
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.about-story h2 {
    color: var(--white);
}

.about-lead {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, .8);
    font-weight: 500;
    margin-bottom: 20px;
}

.about-story>p {
    color: rgba(255, 255, 255, .55);
    margin-bottom: 20px;
}

.about-page {
    padding: 100px 0px 120px 0;
    position: relative;
    z-index: 1;
    background: var(--primary);
}

.about-page-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 80px;
    align-items: center;
}

.quality-showroom {
    padding: 100px 0 110px;
    position: relative;
    z-index: 1;
    background: radial-gradient(circle at top, rgba(201, 169, 110, .12), rgba(3, 10, 24, 1));
}

.quality-showroom-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: 80px;
    align-items: center;
}

.quality-showroom-image {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 26px 60px rgba(0, 0, 0, .55);
}

.quality-showroom-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 0% 0%, rgba(201, 169, 110, .32), transparent 55%),
        radial-gradient(circle at 100% 100%, rgba(201, 169, 110, .2), transparent 55%);
    mix-blend-mode: soft-light;
    pointer-events: none;
}

.quality-showroom-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform .6s var(--ease);
}

.quality-showroom-image:hover img {
    transform: scale(1.06);
}

.quality-showroom-content {
    max-width: 580px;
}

.quality-lead {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, .8);
    font-weight: 500;
    margin: 18px 0 28px;
}

.quality-pillars {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.quality-pillar {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.quality-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.quality-pillar h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 4px;
}

.quality-pillar p {
    font-size: .88rem;
    color: rgba(255, 255, 255, .55);
    margin: 0;
}

.quality-standards {
    position: relative;
    padding: 110px 0 120px;
    background: radial-gradient(circle at 0 0, rgba(201, 169, 110, .18), rgba(3, 10, 24, 1));
}

.quality-standards::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 0%, rgba(201, 169, 110, .18), transparent 60%),
        radial-gradient(circle at 90% 100%, rgba(201, 169, 110, .16), transparent 55%);
    opacity: .6;
    pointer-events: none;
}

.quality-standards-container {
    position: relative;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
    z-index: 1;
}

.quality-standards-header {
    max-width: 700px;
    text-align: left;
}

.quality-standards-lead {
    margin-top: 16px;
    max-width: 560px;
    color: rgba(255, 255, 255, .75);
}

.quality-standards-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.quality-standard-card {
    position: relative;
    padding: 26px 24px 24px;
    border-radius: 18px;
    background: rgba(5, 13, 30, .95);
    border: 1px solid rgba(255, 255, 255, .09);
    box-shadow: 0 22px 50px rgba(0, 0, 0, .65);
    overflow: hidden;
}

.quality-standard-card::before {
    content: '';
    position: absolute;
    inset: -40%;
    background:
        radial-gradient(circle at 0 0, rgba(201, 169, 110, .12), transparent 60%),
        radial-gradient(circle at 100% 100%, rgba(201, 169, 110, .1), transparent 55%);
    opacity: .9;
    mix-blend-mode: soft-light;
    pointer-events: none;
}

.quality-standard-card h3 {
    position: relative;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 10px;
}

.quality-standard-card p {
    position: relative;
    font-size: .9rem;
    color: rgba(255, 255, 255, .7);
    margin-bottom: 14px;
}

.quality-standard-badge {
    position: absolute;
    top: 18px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .9);
    font-size: .8rem;
    background: radial-gradient(circle at top, rgba(201, 169, 110, .9), rgba(57, 39, 12, 1));
    box-shadow: 0 12px 30px rgba(0, 0, 0, .7);
}

.quality-standard-badge span {
    font-weight: 700;
}

.quality-points {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.quality-points li {
    font-size: .84rem;
    color: rgba(255, 255, 255, .7);
    display: flex;
    align-items: center;
    gap: 8px;
}

.quality-points li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--accent);
}

.quality-experience {
    padding: 110px 0 130px;
    background: radial-gradient(circle at bottom, rgba(201, 169, 110, .13), rgba(3, 10, 24, 1));
}

.quality-experience-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

.quality-experience-header {
    text-align: center;
    margin-bottom: 40px;
}

.quality-experience-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.quality-experience-card {
    position: relative;
    border-radius: 18px;
    padding: 26px 24px 22px;
    background: rgba(5, 13, 30, .95);
    border: 1px solid rgba(255, 255, 255, .09);
    box-shadow: 0 22px 50px rgba(0, 0, 0, .65);
    overflow: hidden;
}

.quality-experience-card::before {
    content: '';
    position: absolute;
    inset: -35%;
    background:
        radial-gradient(circle at 0 0, rgba(201, 169, 110, .12), transparent 60%),
        radial-gradient(circle at 100% 100%, rgba(201, 169, 110, .12), transparent 55%);
    opacity: .9;
    mix-blend-mode: soft-light;
    pointer-events: none;
}

.quality-experience-icon {
    position: relative;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.3rem;
    margin-bottom: 16px;
}

.quality-experience-card h3 {
    position: relative;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--white);
    margin-bottom: 10px;
}

.quality-experience-card p {
    position: relative;
    font-size: .9rem;
    color: rgba(255, 255, 255, .7);
    margin-bottom: 14px;
}

.quality-experience-meta {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.quality-experience-meta span {
    font-size: .78rem;
    color: rgba(255, 255, 255, .85);
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(201, 169, 110, .16);
    border: 1px solid rgba(201, 169, 110, .45);
}

.contact-page {
    padding: 100px 0 120px;
    background: radial-gradient(circle at top, rgba(201, 169, 110, .14), rgba(3, 10, 24, 1));
    position: relative;
    z-index: 1;
}

.contact-page-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

.contact-intro {
    max-width: 760px;
    margin-bottom: 40px;
}

.contact-lead {
    margin-top: 14px;
    color: rgba(255, 255, 255, .75);
    max-width: 640px;
}

.contact-highlights {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.contact-highlight {
    padding: 14px 18px;
    border-radius: 16px;
    background: rgba(7, 16, 35, .92);
    border: 1px solid rgba(255, 255, 255, .12);
    min-width: 150px;
}

.contact-highlight-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--accent);
}

.contact-highlight-label {
    display: block;
    font-size: .8rem;
    color: rgba(255, 255, 255, .65);
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
    gap: 32px;
}

.contact-branches {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.branch-card {
    position: relative;
    border-radius: 20px;
    background: rgba(5, 13, 30, .95);
    border: 1px solid rgba(255, 255, 255, .09);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .65);
    padding: 22px 22px 20px;
    overflow: hidden;
}

.branch-card::before {
    content: '';
    position: absolute;
    inset: -40%;
    background:
        radial-gradient(circle at 0 0, rgba(201, 169, 110, .11), transparent 60%),
        radial-gradient(circle at 100% 100%, rgba(201, 169, 110, .12), transparent 55%);
    mix-blend-mode: soft-light;
    pointer-events: none;
}

.branch-header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
}

.branch-header h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--white);
}

.branch-tag {
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(201, 169, 110, .14);
    border: 1px solid rgba(201, 169, 110, .4);
    color: rgba(255, 255, 255, .9);
}

.branch-address {
    position: relative;
    font-size: .9rem;
    color: rgba(255, 255, 255, .78);
    margin-bottom: 14px;
}

.branch-contact {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.branch-contact-row {
    display: flex;
    gap: 10px;
    font-size: .84rem;
    color: rgba(255, 255, 255, .8);
}

.branch-label {
    min-width: 92px;
    color: rgba(255, 255, 255, .5);
}

.branch-value a {
    color: rgba(255, 255, 255, .9);
}

.branch-value a:hover {
    color: var(--accent);
}

.branch-map {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .12);
}

.branch-map-inner {
    position: relative;
    aspect-ratio: 16 / 9;
}

.branch-map iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.contact-panel {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 120px;
    align-self: flex-start;
}

.contact-form-card {
    border-radius: 22px;
    background: radial-gradient(circle at top left, rgba(201, 169, 110, .18), rgba(5, 13, 30, .98));
    border: 1px solid rgba(255, 255, 255, .16);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .72);
    padding: 24px 22px 22px;
}

.contact-form-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 8px;
}

.contact-form-card p {
    color: rgba(255, 255, 255, .75);
    font-size: .9rem;
    margin-bottom: 18px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 16px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-field label {
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: rgba(255, 255, 255, .6);
}

.form-field input,
.form-field select,
.form-field textarea {
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid var(--glass-border);
    background: rgba(2, 8, 20, .9);
    color: rgba(255, 255, 255, .92);
    font-size: .88rem;
    outline: none;
    transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: rgba(255, 255, 255, .3);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 1px rgba(201, 169, 110, .7);
}

.form-field textarea {
    resize: vertical;
    min-height: 110px;
}

.contact-submit {
    margin-top: 4px;
    width: 100%;
    justify-content: center;
}

.contact-meta {
    border-radius: 20px;
    background: rgba(5, 13, 30, .96);
    border: 1px solid rgba(255, 255, 255, .12);
    padding: 18px 18px 14px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-meta-item {
    display: flex;
    gap: 12px;
}

.contact-meta-item i {
    color: var(--accent);
    margin-top: 4px;
}

.contact-meta-item h4 {
    font-family: var(--font-heading);
    font-size: .95rem;
    color: var(--white);
    margin-bottom: 4px;
}

.contact-meta-item p {
    font-size: .85rem;
    color: rgba(255, 255, 255, .7);
    margin: 0;
}

.about-page-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .4);
}

.about-page-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(201, 169, 110, .35), transparent 55%);
    opacity: .7;
    mix-blend-mode: soft-light;
    pointer-events: none;
}

.about-page-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform .6s var(--ease);
}

.about-page-image:hover img {
    transform: scale(1.08);
}

.about-page-content {
    max-width: 580px;
}

.about-page-lead {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, .8);
    font-weight: 500;
    margin-bottom: 20px;
}

.about-page-content p {
    color: rgba(255, 255, 255, .6);
    margin-bottom: 18px;
}

.about-features {
    margin-top: 35px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.feature-item h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 3px;
}

.feature-item p {
    font-size: .85rem;
    color: rgba(255, 255, 255, .45);
    margin: 0;
}

/* ===== STATS ===== */
.stats-section {
    position: relative;
    padding: 100px 0;
    z-index: 1;
    overflow: hidden;
}

.stats-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.stats-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 22, 40, .88);
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent);
    display: inline;
}

.stat-suffix {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
}

.stat-label {
    font-size: .85rem;
    color: rgba(255, 255, 255, .5);
    margin-top: 8px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, .1);
}

/* ===== CATALOGS ===== */
.catalogs-reveal {
    padding: 120px 0;
    background: var(--primary-light);
    position: relative;
    z-index: 1;
}

.catalogs-header {
    text-align: center;
    margin-bottom: 60px;
}

.catalogs-grid {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.catalog-card {
    position: relative;
    height: 500px;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
}

.catalog-bg {
    position: absolute;
    inset: 0;
}

.catalog-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s var(--ease);
}

.catalog-card:hover .catalog-bg img {
    transform: scale(1.1);
}

.catalog-content {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 22, 40, .95) 0%, rgba(10, 22, 40, .2) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 35px;
    z-index: 2;
    transition: background .5s;
}

.catalog-card:hover .catalog-content {
    background: linear-gradient(to top, rgba(10, 22, 40, .98) 0%, rgba(10, 22, 40, .5) 60%, rgba(10, 22, 40, .2) 100%);
}

.catalog-num {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 900;
    color: rgba(255, 255, 255, .05);
    position: absolute;
    top: 20px;
    right: 25px;
    transition: color .5s;
}

.catalog-card:hover .catalog-num {
    color: rgba(201, 169, 110, .15);
}

.catalog-content h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.catalog-content p {
    font-size: .9rem;
    color: rgba(255, 255, 255, .5);
    margin-bottom: 15px;
    transform: translateY(10px);
    opacity: 0;
    transition: all .5s var(--ease);
}

.catalog-card:hover .catalog-content p {
    transform: translateY(0);
    opacity: 1;
}

.catalog-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--accent);
    font-weight: 600;
    font-size: .85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transform: translateY(10px);
    opacity: 0;
    transition: all .5s .1s var(--ease);
}

.catalog-card:hover .catalog-link {
    transform: translateY(0);
    opacity: 1;
}

.catalog-link i {
    transition: transform .3s;
}

.catalog-link:hover i {
    transform: translateX(5px);
}

.catalog-shine {
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, .05), transparent);
    transform: skewX(-25deg);
    transition: left .8s;
    z-index: 3;
    pointer-events: none;
}

.catalog-card:hover .catalog-shine {
    left: 125%;
}

/* ===== COLLECTION 3D ===== */
.collection-3d {
    padding: 120px 0;
    background: var(--primary);
    position: relative;
    z-index: 1;
}

.collection-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

.collection-header {
    text-align: center;
    margin-bottom: 60px;
}

.collection-subtitle {
    color: rgba(255, 255, 255, .45);
    max-width: 500px;
    margin: 0 auto;
}

.collection-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.product-3d-card {
    perspective: 1000px;
}

.card-inner {
    transition: transform .6s var(--ease);
    transform-style: preserve-3d;
}

.card-face {
    background: var(--primary-light);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    position: relative;
}

.card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent);
    color: var(--primary);
    padding: 5px 14px;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 50px;
    z-index: 3;
}

.card-image-wrap {
    height: 320px;
    overflow: hidden;
    position: relative;
}

.card-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s var(--ease);
}

.card-face:hover .card-image-wrap img {
    transform: scale(1.08);
}

.card-info {
    padding: 24px;
    text-align: center;
}

.card-info h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
}

.card-stars {
    color: var(--accent);
    font-size: .8rem;
    margin-bottom: 15px;
}

.card-stars i {
    margin: 0 1px;
}

.card-cta {
    display: inline-block;
    padding: 10px 28px;
    border: 1px solid var(--accent);
    color: var(--accent);
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all .4s var(--ease);
}

.card-cta:hover {
    background: var(--accent);
    color: var(--primary);
}

.card-glow {
    position: absolute;
    inset: -1px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--accent-glow), transparent, var(--accent-glow));
    opacity: 0;
    transition: opacity .5s;
    z-index: -1;
}

.card-face:hover .card-glow {
    opacity: 1;
}

/* ===== PROCESS TIMELINE ===== */
.process-timeline {
    padding: 120px 0;
    background: var(--off-white);
    position: relative;
    z-index: 1;
}

.process-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 30px;
}

.process-header {
    text-align: center;
    margin-bottom: 70px;
}

.process-header .section-heading {
    color: var(--text-dark);
}

.process-header .section-label {
    color: var(--accent);
}

.timeline {
    position: relative;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent), rgba(201, 169, 110, .1));
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 60px;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 0 20px var(--accent-glow);
}

.timeline-dot span {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: .85rem;
    color: var(--primary);
}

.timeline-content {
    width: 42%;
    padding: 30px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
    transition: transform .4s var(--ease), box-shadow .4s;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, .1);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
}

.timeline-icon {
    width: 45px;
    height: 45px;
    background: rgba(201, 169, 110, .1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.timeline-content h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 700;
}

.timeline-content p {
    font-size: .9rem;
    color: #666;
    margin: 0;
}

/* ===== TESTIMONIALS ===== */
.testimonials-modern {
    padding: 120px 0;
    background: var(--primary-light);
    position: relative;
    z-index: 1;
}

.testimonials-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 30px;
    text-align: center;
}

.testimonials-header {
    margin-bottom: 50px;
}

.testimonials-slider {
    position: relative;
    min-height: 300px;
}

.testimonial-slide {
    display: none;
    animation: fadeSlide .6s var(--ease);
}

.testimonial-slide.active {
    display: block;
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(20px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.quote-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 25px;
    opacity: .3;
}

.testimonial-text {
    font-family: var(--font-accent);
    font-size: 1.5rem;
    color: rgba(255, 255, 255, .8);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 35px;
}

.testimonial-author {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    text-align: left;
}

.testimonial-author img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent);
}

.testimonial-author h4 {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
}

.testimonial-author span {
    font-size: .8rem;
    color: rgba(255, 255, 255, .4);
}

.author-stars {
    color: var(--accent);
    font-size: .7rem;
    margin-top: 4px;
}

.testimonial-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.brand-timeline {
    padding: 120px 0;
    background: var(--primary);
    position: relative;
    z-index: 1;
}

.brand-timeline-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.brand-timeline-header {
    text-align: center;
    margin-bottom: 70px;
}

.brand-timeline-track {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
}

.brand-timeline-line {
    position: absolute;
    left: 0;
    right: 0;
    top: 40px;
    height: 2px;
    background: linear-gradient(to right, var(--accent), rgba(201, 169, 110, .08));
    opacity: .7;
}

.brand-timeline-item {
    position: relative;
    flex: 1;
    max-width: 260px;
}

.brand-timeline-node {
    position: relative;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 0 20px var(--accent-glow);
}

.brand-timeline-node::after {
    content: '';
    position: absolute;
    inset: 8px;
    border-radius: 50%;
    border: 2px solid rgba(10, 22, 40, .2);
}

.brand-timeline-node span {
    position: relative;
    z-index: 1;
    font-family: var(--font-heading);
    font-size: .9rem;
    font-weight: 700;
    color: var(--primary);
}

.brand-timeline-card {
    padding: 24px 22px;
    background: var(--glass);
    border-radius: 14px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 15px 40px rgba(0, 0, 0, .35);
    backdrop-filter: blur(18px);
    transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}

.brand-timeline-card h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 8px;
    font-weight: 600;
}

.brand-timeline-card p {
    font-size: .9rem;
    color: rgba(255, 255, 255, .6);
}

.brand-timeline-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(201, 169, 110, .2);
    border-color: rgba(201, 169, 110, .6);
}

.test-prev,
.test-next {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .15);
    background: transparent;
    color: var(--white);
    cursor: pointer;
    transition: all .3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.test-prev:hover,
.test-next:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.test-dots {
    display: flex;
    gap: 8px;
}

.test-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .2);
    cursor: pointer;
    transition: all .3s;
}

.test-dot.active {
    background: var(--accent);
    width: 24px;
    border-radius: 4px;
}

/* ===== WHY CHOOSE US ===== */
.why-choose-us {
    padding: 120px 0;
    background: var(--primary);
    position: relative;
    z-index: 1;
}

.why-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.why-header {
    text-align: center;
    margin-bottom: 60px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.why-card {
    padding: 40px 30px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    text-align: center;
    transition: all .5s var(--ease);
    position: relative;
    overflow: hidden;
}

.why-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 20px 50px rgba(201, 169, 110, .1);
}

.why-icon-wrap {
    position: relative;
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-icon-bg {
    position: absolute;
    inset: 0;
    background: var(--accent);
    border-radius: 16px;
    opacity: .1;
    transition: all .4s;
}

.why-card:hover .why-icon-bg {
    opacity: .2;
    border-radius: 50%;
}

.why-icon-wrap i {
    font-size: 1.6rem;
    color: var(--accent);
    position: relative;
    z-index: 1;
}

.why-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 12px;
    font-weight: 600;
}

.why-card p {
    font-size: .85rem;
    color: rgba(255, 255, 255, .45);
    margin: 0;
}

/* ===== CTA CINEMATIC ===== */
.cta-cinematic {
    position: relative;
    padding: 140px 0;
    text-align: center;
    z-index: 1;
    overflow: hidden;
}

.cta-bg-video {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 22, 40, .88);
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    color: rgba(255, 255, 255, .6);
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: var(--accent);
    color: var(--primary);
    font-weight: 600;
    border-radius: 50px;
    transition: all .4s var(--ease);
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--accent-glow);
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    border: 1px solid rgba(255, 255, 255, .25);
    color: var(--white);
    font-weight: 500;
    border-radius: 50px;
    transition: all .4s var(--ease);
}

.btn-cta-secondary:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, .05);
}

/* ===== NEWSLETTER ===== */
.newsletter-section {
    padding: 80px 0;
    background: var(--primary-light);
    border-top: 1px solid var(--glass-border);
    position: relative;
    z-index: 1;
}

.newsletter-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.newsletter-left h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 8px;
}

.newsletter-left p {
    color: rgba(255, 255, 255, .45);
    font-size: .9rem;
}

.newsletter-form {
    display: flex;
    gap: 0;
}

.newsletter-form input {
    padding: 14px 20px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-right: none;
    color: var(--white);
    font-size: .9rem;
    width: 280px;
    outline: none;
    border-radius: 50px 0 0 50px;
    transition: border-color .3s;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, .3);
}

.newsletter-form input:focus {
    border-color: var(--accent);
}

.newsletter-form button {
    padding: 14px 28px;
    background: var(--accent);
    color: var(--primary);
    border: none;
    font-weight: 600;
    font-size: .9rem;
    cursor: pointer;
    border-radius: 0 50px 50px 0;
    transition: all .3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.newsletter-form button:hover {
    background: #d4b478;
}

/* ===== FOOTER ===== */
.luxury-footer {
    background: var(--primary);
    position: relative;
    z-index: 1;
}

.footer-top-section {
    padding: 80px 0 60px;
    border-top: 1px solid var(--glass-border);
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 50px;
}

.footer-logo-img {
    height: 55px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    color: rgba(255, 255, 255, .5);
    font-size: .9rem;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: .85rem;
    transition: all .4s var(--ease);
}

.social-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--primary);
    transform: translateY(-3px);
}

.footer-links-col h4,
.footer-contact-col h4 {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 22px;
    font-weight: 600;
}

.footer-links-col ul li {
    margin-bottom: 12px;
}

.footer-links-col ul li a {
    color: rgba(255, 255, 255, .5);
    font-size: .9rem;
}

.footer-links-col ul li a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, .5);
    font-size: .9rem;
}

.footer-contact-item i {
    color: var(--accent);
    margin-top: 4px;
    flex-shrink: 0;
}

.footer-contact-item a:hover {
    color: var(--accent);
}

.footer-proprietor {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .3);
    font-size: .8rem;
}

.footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 25px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-inner p {
    color: rgba(255, 255, 255, .35);
    font-size: .85rem;
}

.footer-legal {
    display: flex;
    gap: 25px;
}

.footer-legal a {
    color: rgba(255, 255, 255, .35);
    font-size: .85rem;
}

.footer-legal a:hover {
    color: var(--accent);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--primary);
    border: none;
    cursor: pointer;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all .4s var(--ease);
    box-shadow: 0 5px 20px var(--accent-glow);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-3px);
}

/* ===== RESPONSIVE ===== */
@media (max-width:1024px) {
    .brand-logo img {
        height: 35px;
    }
    .menu-toggle span {
        display: block;
        width: 100%;
        height: 2px;
        background: var(--primary);
        position: absolute;
        left: 0;
        transition: all .4s var(--ease);
    }
    .scrolled .menu-toggle span {
        background: var(--white);
    }
    .inner-banner {
        margin-top: 81px;
    }
    .hero-split {
        grid-template-columns: 1fr;
    }

    .hero-left {
        height: 50vh;
    }

    .hero-right {
        padding: 50px 30px;
    }
    .about-page {
        padding-top: 70px;
    }

    .products-showcase,
    .products-gallery-page,
    .quality-showroom,
    .contact-page {
        padding-top: 70px;
    }

    .about-page-container,
    .quality-showroom-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .quality-standards-grid,
    .quality-experience-grid {
        grid-template-columns: 1fr;
    }

    .brand-timeline-track {
        flex-direction: column;
        align-items: flex-start;
    }

    .brand-timeline-line {
        top: 32px;
        left: 27px;
        right: auto;
        bottom: 0;
        width: 2px;
        height: auto;
        background: linear-gradient(to bottom, var(--accent), rgba(201, 169, 110, .08));
    }

    .brand-timeline-item {
        max-width: none;
        padding-left: 70px;
    }

    .brand-timeline-node {
        position: absolute;
        left: 0;
        top: 0;
    }


    .products-category-grid,
    .catalogs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-filter-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .collection-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-main {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-container {
        flex-wrap: wrap;
        gap: 30px;
    }

    .stat-divider {
        display: none;
    }

    .stat-item {
        flex: 0 0 45%;
    }

    .timeline-line {
        left: 25px;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        flex-direction: row;
        padding-left: 80px;
    }

    .timeline-dot {
        left: 25px;
        transform: translateX(-50%);
    }

    .timeline-content {
        width: 100%;
    }
}

@media (max-width:768px) {

    .desktop-nav,
    .header-actions {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .inner-banner-meta {
        position: relative;
        background: rgba(255,255,255,0.3);
    }

    .hero-split {
        grid-template-columns: 1fr;
    }

    .hero-left {
        height: 40vh;
    }

    .about-page,
    .products-showcase,
    .products-gallery-page,
    .quality-showroom,
    .contact-page {
        padding-top: 40px;
    }

    .hero-right::before {
        display: none;
    }

    .inner-banner-title {
        font-size: 1.2rem;
        line-height: 1.4rem;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .contact-branches {
        order: 1;
    }

    .contact-panel {
        position: static;
        top: auto;
        order: 2;
    }

    .products-category-grid,
    .catalogs-grid {
        grid-template-columns: 1fr;
    }

    .products-filter-bar {
        width: 100%;
        justify-content: space-between;
        margin-bottom: 20px;
        padding: 0 10px;
        /* background: radial-gradient(circle at top left, rgba(201, 169, 110, .25), rgba(2, 10, 25, .98)); */
        border-radius: 0;
    }

    .products-filter-track {
        flex: 1;
        margin: 0 4px;
        overflow: hidden;
    }

    .products-filter-track::-webkit-scrollbar {
        display: none;
    }

    .products-filter-pills {
        padding: 4px;
        min-width: max-content;
    }

    .filter-pill {
        padding: 8px 14px;
        font-size: .78rem;
        white-space: nowrap;
    }

    .filter-scroll-btn {
        display: inline-flex;
    }

    .products-filter-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .catalog-card {
        height: 400px;
    }

    .collection-row {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .newsletter-container {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        width: 100%;
        border-radius: 50px;
        border-right: 1px solid var(--glass-border);
        margin-bottom: 10px;
    }

    .newsletter-form button {
        border-radius: 50px;
        justify-content: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .mobile-link {
        font-size: 1.8rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

@media (max-width:480px) {
    .collection-row {
        grid-template-columns: 1fr;
    }

    .stat-item {
        flex: 0 0 100%;
    }
}
