@import url('variables.css');

/* ====== Section Headers & Text ====== */
.section-header { margin-bottom: var(--sp-xl); display: flex; flex-direction: column; gap: var(--sp-sm); }
.section-header h2 { font-size: var(--fs-h2); position: relative; display: inline-block; padding-bottom: 10px; }
.section-header h2::after { content: ''; position: absolute; left: 0; bottom: 0; width: 76px; height: 3px; background: var(--color-gold); }
.section-header p { color: var(--color-muted); max-width: 760px; }
.section-header.section-header-center { text-align: center; align-items: center; }
.section-header-center h2::after { left: 50%; transform: translateX(-50%); }
.section-title { text-align: center; margin-bottom: var(--sp-xl); }
.section-title h2 { display: inline-block; padding-bottom: 10px; border-bottom: 3px solid var(--color-gold); position: relative; }
.section-title p { color: var(--color-muted); margin-top: var(--sp-sm); }
.tagline { color: var(--color-gold); font-weight: 700; letter-spacing: 0.6px; }
.stat-block { text-align: center; padding: var(--sp-lg); border: 1px solid var(--color-divider); border-radius: var(--radius-md); background: var(--color-surface); box-shadow: var(--shadow-sm); }
.stat-number { font-size: 2.4rem; font-weight: 800; color: var(--color-primary); }
.stat-label { color: var(--color-muted); margin-top: var(--sp-xs); }

/* Home spacing: tighten vertical rhythm on index page */
.page-home .section { padding: var(--sp-xl) 0; }
.page-home .section + .section { margin-top: var(--sp-md); }

/* ====== Preloader (Home only) ====== */
html.is-preloading,
html.is-preloading body { overflow: hidden; }
.preloader {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: grid;
    place-items: center;
    color: #fff;
    background:
        radial-gradient(900px 520px at 50% 35%, rgba(139,115,85,0.22), transparent 60%),
        linear-gradient(180deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    opacity: 1;
    visibility: visible;
    transition: opacity 0.45s ease, visibility 0s linear 0.45s;
}
.preloader::after {
    content: '';
    position: absolute;
    inset: -1px;
    background:
        repeating-linear-gradient(90deg, rgba(255,255,255,0.06) 0 1px, transparent 1px 12px),
        repeating-linear-gradient(0deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 10px);
    opacity: 0.14;
    pointer-events: none;
    mask-image: radial-gradient(circle at 50% 35%, #000 0 45%, transparent 72%);
}
.loader-content {
    position: relative;
    text-align: center;
    display: grid;
    gap: 14px;
    padding: 24px 28px;
    animation: preloaderIn 520ms cubic-bezier(0.2, 0.85, 0.2, 1) both;
}
.loader-logo {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: rgba(139,115,85,0.92);
    display: grid;
    place-items: center;
    font-weight: 900;
    color: #fff;
    box-shadow: 0 18px 48px rgba(0,0,0,0.28);
    margin: 0 auto;
    position: relative;
}
.loader-logo::after {
    content: '';
    position: absolute;
    inset: -14px;
    border-radius: 28px;
    border: 1px solid rgba(255,255,255,0.18);
    opacity: 0.7;
}
.loader-text { font-weight: 800; letter-spacing: 0.6px; color: rgba(255,255,255,0.92); }
.loader-subtext { font-size: var(--fs-xs); letter-spacing: 1.2px; text-transform: uppercase; color: rgba(255,255,255,0.62); margin-top: -6px; }
.loader-bar {
    width: min(240px, 62vw);
    height: 3px;
    background: rgba(255,255,255,0.18);
    border-radius: 999px;
    overflow: hidden;
    margin: 0 auto;
    position: relative;
}
.loader-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    transform: translateX(-60%);
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.68), transparent);
    animation: barSweep 1.15s ease-in-out infinite;
}
.loader-bar-fill {
    position: absolute;
    inset: 0;
    transform-origin: left;
    transform: scaleX(0);
    background: linear-gradient(90deg, rgba(139,115,85,0.35), #fff 40%, rgba(139,115,85,0.55));
    filter: saturate(0.9);
}
.preloader.is-complete .loader-bar::before { opacity: 0; animation: none; }
.preloader.is-complete .loader-bar-fill { transform: scaleX(1); transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.preloader.is-exiting { opacity: 0; visibility: hidden; }

@keyframes barSweep {
    0% { transform: translateX(-60%); }
    50% { transform: translateX(20%); }
    100% { transform: translateX(160%); }
}
@keyframes preloaderIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
    .loader-content { animation: none; }
    .loader-bar::before { animation: none; opacity: 0.6; }
    .preloader { transition: none; }
    .preloader.is-complete .loader-bar-fill { transition: none; }
}

/* ====== Header & Navigation ====== */
.site-header, .header {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--header-height);
    display: flex;
    align-items: center;
    z-index: 1200;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    --header-fg: #fff;
    background: transparent;
}
.site-header.nav-solid { --header-fg: var(--color-primary); background: var(--color-header-solid); box-shadow: 0 4px 14px rgba(0,0,0,0.06); }
.nav-shell { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: var(--sp-lg); width: 100%; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--header-fg); font-weight: 800; letter-spacing: 0.4px; }
.brand .brand-icon { width: 46px; height: 46px; border-radius: 14px; background: var(--color-gold); display: grid; place-items: center; color: #fff; font-size: 1.2rem; box-shadow: var(--shadow-sm); }
.brand small { display: block; color: rgba(255,255,255,0.72); font-weight: 500; font-size: var(--fs-xs); }
.site-header.nav-solid .brand small { color: var(--color-muted); }
.nav-main { height: 100%; }
.nav-list { display: flex; align-items: center; gap: var(--sp-md); height: 100%; }
.nav-list > li { position: relative; }
.nav-list a { display: inline-flex; align-items: center; gap: 6px; padding: 0.75rem 0.9rem; color: var(--header-fg); font-weight: 700; border-radius: var(--radius-pill); }
.nav-list a:hover { color: var(--color-gold); }
.nav-list .active > a { color: var(--color-gold); }
.site-header.nav-solid .nav-list a { color: var(--color-primary); }
.site-header.nav-solid .nav-list .active > a { color: var(--color-gold); }

.nav-actions { display: flex; align-items: center; gap: 10px; }
.btn-lang, .btn-search { width: 40px; height: 40px; border-radius: 12px; border: 1px solid rgba(255,255,255,0.5); background: transparent; color: var(--header-fg); display: grid; place-items: center; cursor: pointer; }
.site-header.nav-solid .btn-lang, .site-header.nav-solid .btn-search { border-color: rgba(27,40,56,0.16); color: var(--color-primary); }
.nav-toggle { display: none; width: 46px; height: 46px; border-radius: 12px; border: 1px solid rgba(255,255,255,0.35); background: transparent; cursor: pointer; align-items: center; justify-content: center; flex-direction: column; gap: 7px; color: var(--header-fg); }
.site-header.nav-solid .nav-toggle { border-color: rgba(27,40,56,0.2); }
.nav-toggle span { display: block; width: 20px; height: 2px; background: currentColor; }

/* Mega menu */
.has-mega:hover > .mega-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.mega-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    min-width: 520px;
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: var(--sp-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
}
.mega-content { display: grid; grid-template-columns: 2fr 3fr; gap: var(--sp-lg); }
.mega-intro h3 { margin-bottom: var(--sp-sm); color: var(--color-primary); }
.mega-intro p { color: var(--color-muted); }
.mega-links { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px,1fr)); gap: 10px; }
.mega-links a { padding: 0.6rem 0.8rem; border-radius: var(--radius-md); border: 1px solid var(--color-divider); color: var(--color-text); background: rgba(255,255,255,0.96); }
.mega-links a:hover { border-color: var(--color-gold); color: var(--color-gold); box-shadow: var(--shadow-sm); }
.mega-industries { min-width: 680px; }
.mega-grid { display: grid; grid-template-columns: repeat(4, minmax(140px,1fr)); gap: 10px; }
.mega-menu .mega-card { border: 1px solid var(--color-divider); border-radius: var(--radius-md); padding: 0.75rem; background: #fff; display: grid; gap: 6px; color: var(--color-text); }
.mega-menu .mega-card:hover { border-color: var(--color-gold); box-shadow: var(--shadow-sm); color: var(--color-gold); }
.card-icon { font-size: 1.1rem; }

/* ====== Hero ====== */
.hero {
    position: relative;
    overflow: hidden;
    margin: 0;
    min-height: 100vh;
    display: grid;
    align-items: center;
    color: #fff;
    background: var(--color-primary-dark);
    padding: calc(var(--header-height) + var(--sp-lg)) 0 var(--sp-xl);
}
.hero .container { position: relative; z-index: 2; }
.hero-title { font-size: clamp(2.6rem, 5vw, 3.6rem); color: #fff; }
.hero-title-split .line { display: block; }
.hero-title-split .gold { color: var(--color-gold); }
.hero p { color: rgba(255,255,255,0.9); max-width: 780px; margin-top: var(--sp-md); }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: var(--sp-lg); }
.hero-video .video-bg { position: absolute; inset: 0; z-index: 0; }
.video-bg video { width: 100%; height: 100%; object-fit: cover; filter: saturate(105%) brightness(0.9); }
.video-overlay { position: absolute; inset: 0; background: var(--color-hero-overlay); }
.hero[data-hero-bg] { background: var(--color-primary); background-image: var(--hero-bg); background-size: cover; background-position: center; }
.floating-lines { display: none; }
.hero-content { max-width: 860px; display: grid; gap: var(--sp-sm); }
.hero-subtitle { font-size: 1.1rem; color: rgba(255,255,255,0.86); }

.scroll-cue { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); display: grid; place-items: center; gap: 6px; color: rgba(255,255,255,0.9); letter-spacing: 1px; }
.scroll-line { width: 2px; height: 36px; background: rgba(255,255,255,0.6); position: relative; overflow: hidden; }
.scroll-line::after { content: ''; position: absolute; left: 0; width: 100%; height: 12px; background: #fff; animation: scrollLine 1.6s infinite; }
@keyframes scrollLine { 0% { top: -12px; opacity: 0; } 50% { opacity: 1; } 100% { top: 36px; opacity: 0; } }

/* Page hero */
.page-hero {
    position: relative;
    margin: 0 0 var(--sp-lg);
    padding: calc(var(--sp-xxl) + var(--header-height)) 0 var(--sp-xxl);
    border-radius: 0;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-color: var(--color-primary-dark);
    color: #fff;
}
.page-hero.hero-compact { padding: calc(var(--sp-xl) + var(--header-height)) 0 var(--sp-xl); min-height: 360px; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: var(--color-hero-overlay); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; margin-top: var(--sp-sm); font-size: clamp(2rem, 3vw, 2.6rem); }
.page-hero p { color: rgba(255,255,255,0.9); max-width: 760px; margin-top: var(--sp-sm); }
.page-hero .meta { display: flex; gap: 10px; flex-wrap: wrap; margin-top: var(--sp-sm); color: #fff; }

/* ====== Data Wall ====== */
.data-wall { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px,1fr)); gap: var(--sp-lg); }
.data-item { background: var(--color-surface); border: 1px solid var(--color-divider); border-radius: var(--radius-lg); padding: var(--sp-lg); text-align: center; box-shadow: var(--shadow-sm); }
.data-value { font-size: clamp(48px, 6vw, 72px); font-weight: 800; color: var(--color-primary); letter-spacing: 1px; }
.data-label { color: var(--color-muted); margin-top: 4px; }
.suffix { color: var(--color-gold); font-weight: 700; }
.industries-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: var(--sp-lg); }
.industry-card .card-image { height: 180px; overflow: hidden; }
.industry-card .card-image img { height: 100%; object-fit: cover; }
.industry-card .card-content { padding: var(--sp-md); display: grid; gap: 6px; }
.eyebrow { color: var(--color-gold); letter-spacing: 2px; font-size: 0.85rem; text-transform: uppercase; }

/* ====== Lists & Sidebars ====== */
.list-numbered { list-style: none; counter-reset: block; padding: 0; margin: 0; }
.list-numbered li { counter-increment: block; margin-bottom: var(--sp-md); padding-left: 3rem; position: relative; }
.list-numbered li::before { content: counter(block, decimal-leading-zero); position: absolute; left: 0; top: 0; color: var(--color-gold); font-weight: 700; }
.sidebar { background: #fff; border: 1px solid var(--color-divider); border-radius: var(--radius-md); padding: var(--sp-lg); box-shadow: var(--shadow-sm); }
.sidebar h3 { margin-bottom: var(--sp-md); padding-bottom: var(--sp-sm); border-bottom: 2px solid rgba(27,40,56,0.12); }
.sidebar ul { list-style: none; padding: 0; }
.sidebar li { margin-bottom: var(--sp-sm); }
.sidebar a { display: flex; justify-content: space-between; color: var(--color-text); }
.sidebar a:hover { color: var(--color-gold); }
.image-cover { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-md); }

/* ====== Industries Wheel ====== */
.industries-wheel { position: relative; }
.wheel-container { position: relative; width: 100%; max-width: 960px; margin: 0 auto; aspect-ratio: 1 / 1; --wheel-radius: clamp(150px, 24vw, 380px); }
.wheel-center { position: absolute; inset: 36%; background: var(--color-primary); color: #fff; border-radius: 50%; display: grid; place-items: center; text-align: center; box-shadow: var(--shadow-md); padding: var(--sp-md); }
.center-text { font-weight: 700; letter-spacing: 1px; }
.wheel-items { position: relative; width: 100%; height: 100%; }
.wheel-item { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%) rotate(var(--angle)) translateX(var(--wheel-radius, 320px)) rotate(calc(-1 * var(--angle))); width: 160px; height: 160px; border-radius: 18px; background: #fff; border: 1px solid var(--color-divider); box-shadow: var(--shadow-sm); display: grid; place-items: center; text-align: center; padding: var(--sp-sm); transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease; cursor: pointer; will-change: transform; }
.wheel-item:hover, .wheel-item.active { transform: translate(-50%, -50%) rotate(var(--angle)) translateX(var(--wheel-radius, 320px)) rotate(calc(-1 * var(--angle))) translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--color-gold); }
.wheel-item .item-icon { font-size: 1.4rem; }
.wheel-item .item-title { margin-top: 6px; color: var(--color-primary); font-weight: 700; }
.industry-detail-panel { margin-top: var(--sp-xl); border-radius: var(--radius-lg); border: 1px solid var(--color-divider); padding: var(--sp-xl); background: rgba(255,255,255,0.96); box-shadow: var(--shadow-sm); }
.industry-detail-panel h3 { margin-bottom: var(--sp-sm); }
.industry-detail-panel p { color: var(--color-muted); margin-bottom: var(--sp-sm); }
.panel-link { display: inline-flex; align-items: center; gap: 6px; color: var(--color-primary); font-weight: 700; }
.wheel-detail { background: #fff; border-radius: var(--radius-lg); border: 1px solid var(--color-divider); padding: var(--sp-xl); box-shadow: var(--shadow-sm); }
.wheel-detail h3 { margin-bottom: var(--sp-sm); }
.wheel-detail p { color: var(--color-muted); }

/* ====== Chairman Section ====== */
.chairman-section .chairman-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: var(--sp-xl); align-items: center; }
.chairman-image { position: relative; max-width: 420px; }
.chairman-image img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 100%; height: auto; }
.gold-border { position: absolute; inset: -14px -14px auto auto; width: 86%; height: 86%; border: 2px solid rgba(184,134,11,0.6); border-radius: var(--radius-lg); z-index: -1; }
.chairman-content blockquote { margin: var(--sp-md) 0; padding-left: var(--sp-md); border-left: 3px solid var(--color-gold); color: var(--color-muted); font-style: italic; }
.chairman-signature { display: flex; align-items: center; gap: 10px; color: var(--color-muted); }

/* ====== Projects Slider ====== */
.projects-slider { position: relative; }
.projects-slider .swiper { width: 100%; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.projects-slider .swiper-slide { position: relative; min-height: 520px; color: #fff; }
.projects-slider .slide-bg { position: absolute; inset: 0; }
.projects-slider .slide-bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.78); }
.projects-slider .slide-content { position: absolute; inset: 0; background: rgba(27,40,56,0.78); padding: var(--sp-xl); display: grid; align-content: end; gap: var(--sp-sm); }
.project-tag { display: inline-block; padding: 0.35rem 0.9rem; border-radius: var(--radius-pill); background: rgba(255,255,255,0.18); color: #fff; font-weight: 700; }
.project-meta { display: flex; gap: 14px; flex-wrap: wrap; color: rgba(255,255,255,0.88); font-size: var(--fs-sm); }
.swiper-pagination-bullet { background: rgba(255,255,255,0.7); opacity: 0.6; }
.swiper-pagination-bullet-active { background: var(--color-gold); opacity: 1; }
.swiper-button-next, .swiper-button-prev { color: #fff; }

/* ====== News Tabs ====== */
.news-tabs { margin-top: var(--sp-lg); }
.tabs-nav { display: inline-flex; gap: 10px; padding: 6px; border-radius: var(--radius-pill); background: rgba(27,40,56,0.06); }
.tab { border: none; background: transparent; padding: 0.75rem 1.4rem; border-radius: var(--radius-pill); font-weight: 700; color: var(--color-primary); cursor: pointer; transition: all 0.2s ease; }
.tab.active { background: #fff; box-shadow: var(--shadow-sm); color: var(--color-gold); }
.tabs-content { margin-top: var(--sp-lg); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.news-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: var(--sp-lg); }
.news-card { border: 1px solid var(--color-divider); border-radius: var(--radius-md); padding: var(--sp-lg); background: #fff; box-shadow: var(--shadow-sm); display: grid; gap: 8px; }
.news-card h4 { margin: 0; }
.news-card .meta { color: var(--color-muted); font-size: var(--fs-sm); }
.news-card a { color: var(--color-primary); }
.news-category-card { border-radius: var(--radius-md); border: 1px solid var(--color-divider); background: #fff; padding: var(--sp-xl); box-shadow: var(--shadow-sm); }
.news-category-card h3 { margin-bottom: var(--sp-sm); }
.news-category-card .news-list { margin-top: var(--sp-md); }

/* ====== Partners ====== */
.partners-marquee { overflow: hidden; border-radius: var(--radius-lg); border: 1px solid var(--color-divider); background: #fff; box-shadow: var(--shadow-sm); }
.marquee-track { display: flex; gap: var(--sp-lg); padding: var(--sp-lg); animation: marquee 16s linear infinite; }
.partner-chip { border: 1px solid var(--color-divider); padding: 0.85rem 1.2rem; border-radius: var(--radius-pill); background: rgba(27,40,56,0.04); color: var(--color-primary); font-weight: 700; white-space: nowrap; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ====== Cards & Galleries ====== */
.case-gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: var(--sp-lg); }
.industry-card { border: 1px solid var(--color-divider); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); overflow: hidden; background: #fff; }
.industry-card img { width: 100%; height: 200px; object-fit: cover; }
.industry-card .body { padding: var(--sp-md); }
.industry-card h4 { margin-bottom: var(--sp-xs); }
.case-card { border: 1px solid var(--color-divider); border-radius: var(--radius-md); overflow: hidden; background: #fff; box-shadow: var(--shadow-sm); }
.case-card img { width: 100%; height: 200px; object-fit: cover; }
.case-card .body { padding: var(--sp-md); }
.project-card { border: 1px solid var(--color-divider); border-radius: var(--radius-md); overflow: hidden; background: #fff; box-shadow: var(--shadow-sm); }
.project-card img { width: 100%; height: 190px; object-fit: cover; }
.project-card .body { padding: var(--sp-md); }
.project-card h4 { margin-bottom: var(--sp-xs); }
.project-card .meta { color: var(--color-muted); font-size: var(--fs-sm); }

.gallery-mosaic { display: grid; grid-template-columns: 2fr 1fr; gap: var(--sp-md); }
.gallery-mosaic img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-md); }
.gallery-mosaic .stack { display: grid; gap: var(--sp-md); }

.media-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: var(--sp-lg); }
.media-card { border: 1px solid var(--color-divider); border-radius: var(--radius-md); overflow: hidden; background: #fff; box-shadow: var(--shadow-sm); }
.media-card img { width: 100%; height: 180px; object-fit: cover; }
.media-card .body { padding: var(--sp-md); }

.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: var(--sp-lg); }
.contact-card { border: 1px solid var(--color-divider); border-radius: var(--radius-md); padding: var(--sp-xl); box-shadow: var(--shadow-sm); background: #fff; }

.form-grid { display: grid; gap: var(--sp-md); }
.form-grid input, .form-grid textarea, .form-grid select { width: 100%; padding: 0.9rem; border-radius: var(--radius-sm); border: 1px solid var(--color-divider); font-size: var(--fs-md); background: #fff; }
.form-grid textarea { min-height: 150px; resize: vertical; }

.job-card { border: 1px solid var(--color-divider); border-radius: var(--radius-md); padding: var(--sp-lg); background: #fff; box-shadow: var(--shadow-sm); }
.job-meta { display: flex; flex-wrap: wrap; gap: var(--sp-md); color: var(--color-muted); font-size: var(--fs-sm); margin-bottom: var(--sp-md); }

.partners-logos { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: var(--sp-lg); }
.logo-chip { border: 1px dashed rgba(255,255,255,0.5); padding: var(--sp-lg); border-radius: var(--radius-md); text-align: center; color: rgba(255,255,255,0.85); }

.news-list { display: grid; gap: 10px; }
.news-list-item { display: flex; justify-content: space-between; padding: var(--sp-sm) 0; border-bottom: 1px dashed var(--color-divider); }
.news-list-item span { color: var(--color-muted); font-size: var(--fs-sm); }

.table-responsive { border: 1px solid var(--color-divider); border-radius: var(--radius-md); overflow-x: auto; margin-top: var(--sp-lg); }
.table-responsive .table { margin: 0; }

/* CTA */
.cta-block { border-radius: var(--radius-lg); padding: var(--sp-xl); background: var(--color-primary); color: #fff; display: flex; flex-wrap: wrap; gap: var(--sp-lg); align-items: center; justify-content: space-between; box-shadow: var(--shadow-md); }
.cta-block h2 { color: #fff; }

.quote-box { background: var(--color-primary); color: #fff; border-radius: var(--radius-lg); padding: var(--sp-xl); box-shadow: var(--shadow-md); position: relative; overflow: hidden; }
.quote-box .content { position: relative; z-index: 1; }

/* ====== Footer ====== */
.footer, .footer-luxury { background: var(--color-footer); color: #fff; padding: var(--sp-xxl) 0 var(--sp-xl); margin-top: var(--sp-xxl); }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: var(--sp-lg); }
.footer h4 { color: #fff; margin-bottom: var(--sp-md); }
.footer a { color: rgba(255,255,255,0.85); }
.footer a:hover { color: #fff; }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; margin-top: var(--sp-lg); padding-top: var(--sp-lg); border-top: 1px solid rgba(255,255,255,0.12); font-size: var(--fs-sm); }
.footer-brand { display: grid; gap: 8px; color: rgba(255,255,255,0.82); }
.footer-contact { display: grid; gap: 4px; color: rgba(255,255,255,0.78); }

/* ====== Responsive ====== */
@media (max-width: 1180px) {
    .mega-menu { min-width: 420px; }
    .mega-grid { grid-template-columns: repeat(3, minmax(140px,1fr)); }
    .wheel-item { width: 140px; height: 140px; }
}

@media (max-width: 1024px) {
    body { padding-top: var(--header-height); }
    .nav-list { display: none; position: absolute; top: var(--header-height); left: 0; right: 0; background: var(--color-primary); padding: var(--sp-md); flex-direction: column; border-bottom: 1px solid rgba(255,255,255,0.12); }
    .nav-list.open { display: flex; }
    .nav-list a { width: 100%; color: #fff; }
    .nav-actions { justify-content: flex-end; }
    .nav-toggle { display: inline-flex; }
    .has-mega > .mega-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 1px solid rgba(255,255,255,0.12); background: rgba(0,0,0,0.24); margin-top: var(--sp-sm); }
    .mega-links a { color: #fff; border-color: rgba(255,255,255,0.12); background: rgba(0,0,0,0.18); }
    .mega-menu .mega-card { background: rgba(0,0,0,0.24); color: #fff; }
    .mega-intro h3, .mega-intro p { color: #fff; }
    .hero, .page-hero { margin: 0; border-radius: 0; }
    .nav-shell { grid-template-columns: auto auto; }
    .nav-main { justify-self: end; }
}

@media (max-width: 768px) {
    .section { padding: var(--sp-xl) 0; }
    .wheel-item { width: 120px; height: 120px; }
    .wheel-container { max-width: 100%; }
    .gallery-mosaic { grid-template-columns: 1fr; }
    .cta-block { text-align: center; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
}
