/*
Theme Name: Festive Lanterns
Theme URI: https://festivelanterns.com
Description: Festival Lanterns & Animatronic Dinosaurs - Premium custom-crafted lanterns and animatronic exhibits for festivals, theme parks, museums, and events worldwide.
Version: 2.4.3
Author: FestiveLanterns
Author URI: https://festivelanterns.com
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: festive-lanterns
*/

/* ========== RESET & BASE ========== */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --bg: #0a0a0a;
    --bg-elevated: #141414;
    --bg-card: #1a1a1a;
    --gold: #D4A853;
    --gold-light: #E8C97A;
    --gold-dim: #8B6914;
    --red: #c0392b;
    --text-primary: #f0f0f0;
    --text-secondary: #999;
    --text-muted: #666;
    --border: rgba(255,255,255,0.06);
    --border-hover: rgba(212,168,83,0.3);
    --transition-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; transition: color 0.3s var(--transition-smooth); }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

/* Hero container override — break centering, push to right */
.hero > .container {
    max-width: 100%;
    margin: 0;
    padding: 0;          /* clear container positioning, let hero-content handle it */
}

/* ========== SCROLL REVEAL ANIMATION ========== */
.reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s var(--transition-smooth), transform 0.8s var(--transition-smooth);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

.reveal-img {
    opacity: 1;
    transform: scale(1);
    transition: opacity 1s var(--transition-smooth), transform 1.2s var(--transition-smooth);
}
.reveal-img.visible {
    opacity: 1;
    transform: scale(1);
}

/* ========== HEADER ========== */
header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.0);
    backdrop-filter: blur(0px);
    border-bottom: 1px solid transparent;
    transition: all 0.5s var(--transition-smooth);
}
header.scrolled {
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(20px);
    border-bottom-color: var(--border);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.5px;
}
.logo span { color: var(--text-primary); font-weight: 400; }

.nav-menu {
    display: flex;
    gap: 36px;
    align-items: center;
    position: relative;
}
.nav-menu > li { position: relative; }
.nav-menu > li > a {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.3s var(--transition-smooth);
    position: relative;
    display: inline-block;
    padding-bottom: 4px;
}
.nav-menu > li > a:hover { color: var(--text-primary); }

.dropdown, .sub-menu {
    position: absolute;
    top: 100%; left: -20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 16px 0;
    min-width: 240px;
    opacity: 0; visibility: hidden;
    transform: translateY(8px);
    transition: all 0.4s var(--transition-smooth);
    z-index: 1001;
}
.nav-menu li:hover .dropdown,
.nav-menu li:hover .sub-menu {
    opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown li, .sub-menu li { padding: 6px 24px; }
.dropdown a, .sub-menu a { font-size: 0.82rem; color: var(--text-muted); display: block; }
.dropdown a:hover, .sub-menu a:hover { color: var(--gold); }

.cta-nav {
    background: var(--gold);
    color: var(--bg) !important;
    padding: 10px 24px;
    border-radius: 4px;
    font-weight: 600 !important;
    font-size: 0.8rem !important;
    transition: all 0.3s var(--transition-smooth) !important;
}
.cta-nav:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}
.mobile-toggle span {
    width: 24px; height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

/* ========== HERO ========== */
.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-end;   /* push content to the right */
    padding: 160px 80px 100px 40px;   /* heavy right padding, minimal left */
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(10,10,10,0.7) 0%, rgba(30,20,5,0.5) 50%, rgba(10,10,10,0.8) 100%),
        url('images/hero-bg.jpg') center 30% / cover no-repeat;
    transform: scale(1.05);
    transition: transform 0.1s linear;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10,10,10,0.3) 0%,
        rgba(10,10,10,0.1) 40%,
        rgba(10,10,10,0.5) 70%,
        rgba(10,10,10,0.95) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 520px;
    width: 100%;
    margin-left: auto !important;    /* push text block to right edge */
    margin-right: 180px !important;  /* moderate right offset, more balanced */
}

/* High-specificity override to guarantee right alignment */
#hero .hero-content {
    margin-left: auto !important;
    margin-right: 180px !important;
}

.hero-label {
    font-size: 0.68rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
    animation: heroFadeUp 1s 0.3s var(--transition-smooth) forwards;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 3.6rem);   /* noticeably smaller */
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 20px;
    animation: heroFadeUp 1s 0.5s var(--transition-smooth) forwards;
}
.hero-title em {
    font-style: italic;
    color: var(--gold);
}

.hero-desc {
    font-size: 0.92rem;      /* smaller description */
    color: var(--text-secondary);
    max-width: 480px;
    line-height: 1.75;
    margin-bottom: 32px;
    animation: heroFadeUp 1s 0.7s var(--transition-smooth) forwards;
}

.hero-actions {
    display: flex;
    gap: 16px;
    animation: heroFadeUp 1s 0.9s var(--transition-smooth) forwards;
}

@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.4s var(--transition-smooth);
    font-family: inherit;
}
.btn-primary {
    background: var(--gold);
    color: var(--bg);
    border: none;
}
.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212,168,83,0.25);
}
.btn-ghost {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(255,255,255,0.15);
}
.btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* Scroll indicator */
.scroll-hint {
    position: absolute;
    bottom: 40px;
    right: 60px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    writing-mode: vertical-rl;
}
.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ========== SECTION COMMON ========== */
.section { padding: 140px 0; }
.section-header {
    margin-bottom: 70px;
}
.section-label {
    font-size: 0.72rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    font-weight: 500;
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 600;
    line-height: 1.2;
}
.section-desc {
    color: var(--text-secondary);
    max-width: 520px;
    margin-top: 16px;
    font-size: 0.95rem;
    line-height: 1.8;
}
.section-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.section-header-row .section-link {
    font-size: 0.82rem;
    color: var(--gold);
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}
.section-header-row .section-link:hover { gap: 14px; }

/* ========== MASONRY GALLERY - CATEGORIES ========== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    background: var(--bg-card);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--transition-smooth);
}

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

.gallery-item.span-tall {
    grid-row: span 2;
}
.gallery-item.span-wide {
    grid-column: span 7;
}
.gallery-item.span-narrow {
    grid-column: span 5;
}

/* Two Core Product Lines — desktop 2-col */
.gallery-grid-core {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.gallery-info {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.0) 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 36px;
    opacity: 0;
    transition: opacity 0.5s var(--transition-smooth);
}
.gallery-item:hover .gallery-info { opacity: 1; }

.gallery-category {
    font-size: 0.7rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}
.gallery-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 8px;
}
.gallery-count {
    color: var(--text-secondary);
    font-size: 0.85rem;
}
.gallery-arrow {
    position: absolute;
    top: 24px; right: 24px;
    width: 40px; height: 40px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    opacity: 0;
    transform: translate(-10px, 10px);
    transition: all 0.4s var(--transition-smooth);
}
.gallery-item:hover .gallery-arrow {
    opacity: 1;
    transform: translate(0, 0);
}

/* ========== FEATURED PROJECTS / EDITORIAL SECTION ========== */
.editorial-section {
    background: var(--bg-elevated);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.editorial-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 20px;
    align-items: stretch;
}

.editorial-main {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    min-height: 600px;
    background: var(--bg-card);
}
.editorial-main img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--transition-smooth);
}
.editorial-main:hover img { transform: scale(1.04); }

.editorial-main-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,10,10,0.85) 0%, transparent 50%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 48px;
}

.editorial-tag {
    display: inline-block;
    background: var(--gold);
    color: var(--bg);
    font-size: 0.68rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 2px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    width: fit-content;
}

.editorial-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 12px;
}
.editorial-main-desc {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.7;
    max-width: 440px;
}

.editorial-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.editorial-card {
    position: relative;
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    background: var(--bg-card);
    cursor: pointer;
}
.editorial-card img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1s var(--transition-smooth);
}
.editorial-card:hover img { transform: scale(1.06); }

.editorial-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,10,10,0.8) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    opacity: 0;
    transition: opacity 0.4s var(--transition-smooth);
}
.editorial-card:hover .editorial-card-overlay { opacity: 1; }

.editorial-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 4px;
}
.editorial-card-meta {
    font-size: 0.78rem;
    color: var(--gold);
}

/* ========== FEATURED CATEGORIES GRID ========== */
.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.category-card {
    display: block;
    border-radius: 8px;
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: all 0.4s var(--transition-smooth);
    text-decoration: none;
    color: inherit;
}
.category-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.category-card-bg {
    height: 180px;
    position: relative;
    overflow: hidden;
}
.category-card-bg img {
    transition: transform 1.2s var(--transition-smooth);
}
.category-card:hover .category-card-bg img {
    transform: scale(1.08);
}
.category-card-body {
    padding: 24px;
}
.category-card-tag {
    font-size: 0.7rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    display: block;
}
.category-card-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 8px;
}
.category-card-body p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}
.category-card-link {
    font-size: 0.8rem;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s ease;
}
.category-card:hover .category-card-link {
    gap: 12px;
}

.product-card-img {
    min-height: 200px;
    background: #222;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ========== FEATURED PRODUCTS GRID ========== */
.featured-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 992px) {
    .category-grid { grid-template-columns: repeat(2, 1fr); }
    .featured-products-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
    .category-grid { grid-template-columns: 1fr; }
    .featured-products-grid { grid-template-columns: 1fr; }
}

/* ========== CERTIFICATES CAROUSEL ========== */
.certificates-section {
    background: var(--bg-elevated);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.certificates-wrapper {
    position: relative;
}
.certificates-scroll {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 10px 0 30px;
}
.certificates-scroll::-webkit-scrollbar { display: none; }
.certificate-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 20px;
    transition: all 0.4s var(--transition-smooth);
    cursor: grab;
}
.certificate-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.certificate-img {
    width: 100%;
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, #1a1a1a, #111);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin-bottom: 16px;
    overflow: hidden;
}
.certificate-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.certificate-name {
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    color: var(--text-secondary);
}
.cert-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    z-index: 10;
}
.cert-arrow:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--bg);
}
.cert-arrow.prev { left: -24px; }
.cert-arrow.next { right: -24px; }

/* ========== PRODUCT HORIZONTAL SCROLL ========== */
.products-scroll-wrapper {
    position: relative;
}
.products-scroll {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 20px;
}
.products-scroll::-webkit-scrollbar { display: none; }

.product-slide {
    flex: 0 0 340px;
    scroll-snap-align: start;
    border-radius: 8px;
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: all 0.4s var(--transition-smooth);
}
.product-slide:hover {
    border-color: var(--border-hover);
    transform: translateY(-6px);
}

.product-slide-img {
    position: relative;
    height: 320px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a, #111);
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-slide-img .placeholder {
    font-size: 4rem;
    opacity: 0.2;
    transition: all 0.6s var(--transition-smooth);
}
.product-slide:hover .product-slide-img .placeholder {
    opacity: 0.35;
    transform: scale(1.1);
}

.product-slide-badge {
    position: absolute;
    top: 16px; left: 16px;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 2px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.badge-best { background: var(--gold); color: var(--bg); }
.badge-new { background: #27ae60; color: white; }
.badge-hot { background: var(--red); color: white; }

.product-slide-body {
    padding: 24px;
}
.product-slide-cat {
    font-size: 0.7rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}
.product-slide-name {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 8px;
    line-height: 1.4;
}
.product-slide-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}
.product-slide-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}
.product-slide-price {
    font-size: 0.9rem;
    font-weight: 600;
}
.product-slide-link {
    font-size: 0.78rem;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.3s ease;
}
.product-slide-link:hover { gap: 10px; }

/* ========== STATS BAR ========== */
.stats-bar {
    display: flex;
    gap: 1px;
    background: var(--border);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.stats-bar::-webkit-scrollbar { display: none; }
.stat-item {
    flex: 1;
    min-width: 200px;
    background: var(--bg);
    padding: 60px 40px;
    text-align: center;
}
.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
}
.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ========== MARQUEE CLIENTS ========== */
.marquee-section {
    padding: 80px 0;
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}
.marquee-label {
    text-align: center;
    font-size: 0.72rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 40px;
}
.marquee-track {
    display: flex;
    gap: 60px;
    animation: marquee 30s linear infinite;
    width: max-content;
}
.marquee-item {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--text-muted);
    white-space: nowrap;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}
.marquee-item:hover { opacity: 1; }

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ========== FEATURES ========== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}
.feature-card {
    padding: 48px 32px;
    border: 1px solid var(--border);
    border-radius: 8px;
    transition: all 0.4s var(--transition-smooth);
}
.feature-card:hover {
    border-color: var(--border-hover);
    background: var(--bg-elevated);
}
.feature-icon {
    width: 56px; height: 56px;
    margin-bottom: 24px;
    background: rgba(212,168,83,0.08);
    border: 1px solid rgba(212,168,83,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}
.feature-name {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 10px;
}
.feature-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ========== CTA ========== */
.cta-section {
    text-align: center;
    padding: 160px 0;
    position: relative;
}
.cta-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(212,168,83,0.06) 0%, transparent 70%);
    pointer-events: none;
}
.cta-section .section-title {
    margin-bottom: 20px;
}
.cta-section .section-desc {
    margin: 0 auto 48px;
    text-align: center;
}

/* ========== FOOTER ========== */
footer {
    background: var(--bg-elevated);
    border-top: 1px solid var(--border);
    padding: 100px 0 40px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}
.footer-brand .logo { margin-bottom: 24px; }
.footer-brand p {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.8;
    margin-bottom: 28px;
}
.footer-social {
    display: flex;
    gap: 10px;
}
.footer-social a {
    width: 38px; height: 38px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}
.footer-social a:hover {
    border-color: var(--gold);
    color: var(--gold);
}
.footer-col h4 {
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 28px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.footer-col ul li { margin-bottom: 14px; }
.footer-col a {
    font-size: 0.88rem;
    color: var(--text-muted);
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid var(--border);
    font-size: 0.8rem;
    color: var(--text-muted);
}
.footer-bottom a { color: var(--text-muted); }
.footer-bottom a:hover { color: var(--gold); }

/* ========== RESPONSIVE ========== */
@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(6, 1fr);
    }
    .gallery-item.span-wide { grid-column: span 4; }
    .gallery-item.span-narrow { grid-column: span 2; }
    .gallery-item.span-tall { grid-row: span 1; min-height: 400px; }
}

@media (max-width: 992px) {
    .container { padding: 0 32px; }
    .nav-menu {
        display: none;
        position: absolute;
        top: 80px; left: 0; right: 0;
        background: var(--bg);
        flex-direction: column;
        padding: 24px;
        border-bottom: 1px solid var(--border);
    }
    .nav-menu.active { display: flex; }
    .mobile-toggle { display: flex; }
    .dropdown, .sub-menu {
        position: static;
        opacity: 1; visibility: visible;
        transform: none;
        background: transparent;
        border: none;
        padding-left: 16px;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
    .gallery-item.span-wide,
    .gallery-item.span-narrow {
        grid-column: span 1;
    }
    .gallery-item.span-tall {
        grid-row: span 1;
        min-height: 360px;
    }

    .editorial-grid {
        grid-template-columns: 1fr;
    }
    .editorial-main { min-height: 400px; }
    .editorial-side {
        flex-direction: row;
    }
    .editorial-card { min-height: 260px; }

    .features-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .cert-arrow { display: none; }

    .hero {
        justify-content: center;
        padding: 140px 32px 80px;
    }
    .hero-content {
        margin-right: 0 !important;
        margin-left: 0 !important;
        text-align: center;
    }
    .hero-actions {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .container { padding: 0 20px; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-grid-core { grid-template-columns: 1fr; }
    .stats-bar { flex-wrap: wrap; }
    .editorial-side { flex-direction: column; }
    .features-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    .section-header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .product-slide { flex: 0 0 300px; }
    .scroll-hint { display: none; }

    .hero {
        padding: 120px 20px 60px;
    }
    .hero-title {
        font-size: clamp(1.5rem, 7vw, 2rem);
    }
    .hero-desc {
        font-size: 0.85rem;
    }
    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }
}

/* ========== PAGE BANNER (Inner Pages) ========== */
.page-banner {
    padding: 200px 0 100px;
    position: relative;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border);
}
.page-banner-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}
.page-banner-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,10,10,0.82) 0%, rgba(26,26,26,0.70) 50%, rgba(10,10,10,0.82) 100%);
    z-index: 1;
}
.page-banner-content {
    position: relative;
    z-index: 2;
}
.page-banner h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 16px;
}
.page-banner-desc {
    color: var(--text-secondary);
    font-size: 1rem;
    max-width: 560px;
    line-height: 1.8;
}

/* ========== BREADCRUMB ========== */
.breadcrumb {
    display: flex;
    gap: 12px;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 100px;
    margin-bottom: 20px;
}
.breadcrumb ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    list-style: none;
}
.breadcrumb li {
    display: inline-flex;
    align-items: center;
}
.breadcrumb li.sep {
    opacity: 0.4;
    user-select: none;
}
.breadcrumb a {
    color: var(--text-muted);
    transition: color 0.3s ease;
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .current { color: var(--text-primary); }
.breadcrumb span { opacity: 0.4; }

/* ========== CONTACT FORM ========== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
}
.contact-info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 32px;
}
.contact-info-icon {
    width: 48px;
    height: 48px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.contact-info-text h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 4px;
}
.contact-info-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.form-field {
    margin-bottom: 20px;
}
.form-field.full { grid-column: span 2; }
.form-field label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}
.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 12px 16px;
    color: var(--text-primary);
    font-size: 0.9rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--gold);
}
.form-field textarea { height: 140px; resize: vertical; }

/* ========== FAQ ACCORDION ========== */
.faq-list {
    max-width: 800px;
}
.faq-item {
    border-bottom: 1px solid var(--border);
}
.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 500;
    padding: 28px 0;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
    transition: color 0.3s ease;
}
.faq-question:hover { color: var(--gold); }
.faq-question .plus {
    font-size: 1.4rem;
    font-weight: 300;
    transition: transform 0.3s ease;
    color: var(--gold);
}
.faq-item.open .faq-question .plus { transform: rotate(45deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.open .faq-answer {
    max-height: 2000px;
    padding-bottom: 28px;
}
.faq-answer p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.8;
}

/* ========== PRODUCT GRID ========== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.product-card {
    border-radius: 8px;
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: all 0.4s var(--transition-smooth);
}
.product-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-6px);
}
.product-card-img {
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a, #111);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}
.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.08); }
.product-card-body {
    padding: 24px;
}
.product-card-cat {
    font-size: 0.7rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}
.product-card-name {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 8px;
}
.product-card-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}
.product-card-link {
    font-size: 0.8rem;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s ease;
}
.product-card-link:hover { gap: 12px; }

/* ========== SIDEBAR ========== */
.sidebar {
    position: sticky;
    top: 120px;
}
.sidebar-widget {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 28px;
    margin-bottom: 24px;
}
.sidebar-widget h3 {
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: var(--text-secondary);
}
.sidebar-widget ul li {
    margin-bottom: 12px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 12px;
}
.sidebar-widget ul li:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}
.sidebar-widget ul a {
    font-size: 0.88rem;
    color: var(--text-muted);
    display: block;
    transition: color 0.3s ease;
}
.sidebar-widget ul a:hover { color: var(--gold); }
.sidebar-widget ul a.active { color: var(--gold); font-weight: 500; }

/* ========== BLOG / NEWS GRID ========== */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.news-card {
    border-radius: 8px;
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: all 0.4s var(--transition-smooth);
}
.news-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}
.news-card-img {
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a, #111);
}
.news-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}
.news-card:hover .news-card-img img { transform: scale(1.06); }
.news-card-body {
    padding: 24px;
}
.news-card-date {
    font-size: 0.72rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}
.news-card-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
    transition: color 0.3s ease;
}
.news-card:hover .news-card-title { color: var(--gold); }
.news-card-excerpt {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ========== ABOUT PAGE ========== */
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.story-image {
    background: var(--bg-card);
    border-radius: 12px;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    border: 1px solid var(--border);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}
.timeline::before {
    content: '';
    position: absolute;
    top: 0; bottom: 0; left: 50%;
    width: 2px;
    background: var(--border);
    transform: translateX(-50%);
}
.timeline-item {
    position: relative;
    width: 50%;
    padding: 20px 40px 40px;
    text-align: right;
}
.timeline-item:nth-child(even) {
    margin-left: 50%;
    text-align: left;
}
.timeline-year {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 8px;
}
.timeline-dot {
    position: absolute;
    top: 28px;
    width: 16px; height: 16px;
    background: var(--gold);
    border-radius: 50%;
    border: 3px solid var(--bg);
}
.timeline-item:nth-child(odd) .timeline-dot { right: -8px; }
.timeline-item:nth-child(even) .timeline-dot { left: -8px; }
.timeline-title {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 8px;
}
.timeline-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.factory-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.factory-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.4s var(--transition-smooth);
}
.factory-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-6px);
}
.factory-card-img {
    height: 160px;
    background: linear-gradient(135deg, #1a1a1a, #111);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}
.factory-card-body { padding: 24px; }
.factory-card-name {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 8px;
}
.factory-card-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.team-card {
    text-align: center;
    padding: 32px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    transition: all 0.4s var(--transition-smooth);
}
.team-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}
.team-card-photo {
    width: 80px; height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: var(--bg-elevated);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}
.team-card-name {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}
.team-card-role {
    font-size: 0.8rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}
.team-card-bio {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.export-section { padding: 100px 0; }
.export-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}
.export-map {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--text-secondary);
}
.export-highlights { padding: 20px 0; }
.export-stat {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border);
}
.export-stat:last-of-type { border-bottom: none; }
.export-stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
}
.export-stat-label {
    font-size: 0.88rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========== SERVICES PAGE ========== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 36px 28px;
    transition: all 0.4s var(--transition-smooth);
}
.service-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.service-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}
.service-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
}
.service-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}
.service-features li {
    font-size: 0.82rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}
.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 0.75rem;
}

.process-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}
.process-timeline::before {
    content: '';
    position: absolute;
    top: 0; bottom: 0; left: 60px;
    width: 2px;
    background: linear-gradient(to bottom, var(--gold), var(--border));
}
.process-step {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    position: relative;
}
.process-step:last-child { margin-bottom: 0; }
.process-number {
    width: 120px;
    flex-shrink: 0;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    position: relative;
    z-index: 1;
}
.process-content { flex: 1; }
.process-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}
.process-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 10px;
}
.process-duration {
    font-size: 0.75rem;
    color: var(--gold);
    background: rgba(212,168,83,0.1);
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-block;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.industry-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 28px 20px;
    text-align: center;
    transition: all 0.3s var(--transition-smooth);
}
.industry-item:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}
.industry-icon {
    font-size: 2rem;
    margin-bottom: 12px;
    display: block;
}
.industry-name {
    font-size: 0.88rem;
    font-weight: 500;
}

/* ========== RESOURCES PAGE ========== */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.resource-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.4s var(--transition-smooth);
}
.resource-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-6px);
}
.resource-thumb {
    position: relative;
    height: 280px;
    background: linear-gradient(135deg, #1a1a1a, #111);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.resource-icon {
    display: block;
    width: 100%;
    height: 100%;
}
.resource-format {
    position: absolute;
    bottom: 12px; right: 12px;
    background: var(--gold);
    color: var(--bg);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 3px;
    text-transform: uppercase;
}
.resource-body { padding: 24px; }
.resource-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
}
.resource-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}
.resource-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}
.resource-size {
    font-size: 0.78rem;
    color: var(--text-muted);
}
.resource-download {
    font-size: 0.82rem;
    color: var(--gold);
    font-weight: 500;
    transition: opacity 0.3s ease;
}
.resource-download:hover { opacity: 0.7; }

.video-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
}
.video-featured .video-thumbnail {
    height: 360px;
}
.video-thumbnail {
    position: relative;
    background: linear-gradient(135deg, #1a1a1a, #111);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity 0.3s ease;
}
.video-thumbnail:hover { opacity: 0.9; }
/* Resources page video cards — override Video Center play overlay */
.video-featured .video-play-overlay,
.video-featured .video-play-icon,
.video-small .video-play-overlay,
.video-small .video-play-icon { display: none !important; }

.video-thumbnail.small { height: 240px; }
.video-duration {
    position: absolute;
    bottom: 12px; right: 12px;
    background: rgba(0,0,0,0.7);
    padding: 4px 8px;
    border-radius: 3px;
    font-size: 0.75rem;
}
.video-body { padding: 20px 0; }
.video-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}
.video-title h4 { font-size: 0.92rem; }
.video-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
}
.video-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.case-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.case-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.4s var(--transition-smooth);
}
.case-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}
.case-image {
    height: 180px;
    background: linear-gradient(135deg, #1a1a1a, #111);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}
.case-body { padding: 24px; }
.case-location {
    font-size: 0.72rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    display: block;
}
.case-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
}
.case-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.newsletter-section {
    background: linear-gradient(135deg, #141414, #0a0a0a);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.newsletter-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(212,168,83,0.05) 0%, transparent 70%);
}
.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}
.newsletter-fields {
    display: flex;
    gap: 12px;
}
.newsletter-fields input {
    flex: 1;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 14px 18px;
    color: var(--text-primary);
    font-size: 0.9rem;
    font-family: inherit;
}
.newsletter-fields input:focus {
    outline: none;
    border-color: var(--gold);
}
.newsletter-privacy {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 12px;
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(255,255,255,0.15);
}
.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ========== QUOTE PAGE ========== */
.quote-section { padding: 100px 0; }
.quote-layout {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 60px;
    align-items: start;
}
.quote-form {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 48px;
}
.form-steps {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border);
}
.form-step {
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0.4;
    transition: opacity 0.3s ease;
}
.form-step.active { opacity: 1; }
.step-number {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--bg);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 600;
}
.form-step.active .step-number {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--bg);
}
.step-label {
    font-size: 0.85rem;
    font-weight: 500;
}
.form-step-content { display: none; }
.form-step-content.active { display: block; }
.step-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 28px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 14px 16px;
    color: var(--text-primary);
    font-size: 0.9rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}
.form-group textarea { height: 140px; resize: vertical; }
.form-checkbox label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    cursor: pointer;
}
.form-checkbox input { margin-top: 3px; }
.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 16px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.project-type-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.project-type-card input { display: none; }
.project-type-inner {
    background: var(--bg);
    border: 2px solid var(--border);
    border-radius: 8px;
    padding: 24px 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}
.project-type-card input:checked + .project-type-inner {
    border-color: var(--gold);
    background: rgba(212,168,83,0.05);
}
.project-type-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 10px;
}
.project-type-name {
    font-size: 0.82rem;
    font-weight: 500;
}

.form-success {
    text-align: center;
    padding: 60px 20px;
}
.success-icon {
    width: 80px; height: 80px;
    background: rgba(212,168,83,0.1);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--gold);
    margin: 0 auto 24px;
}
.form-success h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 12px;
}
.form-success p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Quote Sidebar */
.quote-sidebar {
    position: sticky;
    top: 120px;
}
.sidebar-block {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px;
    margin-bottom: 20px;
}
.sidebar-title {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: var(--text-secondary);
}
.sidebar-benefits { }
.sidebar-benefits li {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}
.sidebar-benefits li:last-child { margin-bottom: 0; }
.benefit-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}
.sidebar-benefits strong {
    font-size: 0.88rem;
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
}
.sidebar-benefits p {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.5;
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.trust-item {
    text-align: center;
    padding: 16px 8px;
    background: var(--bg);
    border-radius: 6px;
    font-size: 1.5rem;
}
.trust-item small {
    display: block;
    font-size: 0.65rem;
    color: var(--text-muted);
    margin-top: 6px;
}
.contact-card .contact-item {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 12px;
    font-size: 0.85rem;
}
.contact-card .contact-item:last-child { margin-bottom: 0; }
.contact-item a { color: var(--gold); }
.testimonial-quote {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 16px;
}
.testimonial-author strong {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 4px;
}
.testimonial-author span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.faq-simple { max-width: 700px; margin: 0 auto; }
.faq-q {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 8px;
}
.faq-a {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 28px;
}
.faq-simple .faq-item { margin-bottom: 0; border-bottom: 1px solid var(--border); padding-bottom: 24px; }
.faq-simple .faq-item:last-child { border-bottom: none; }

/* ========== CONTACT PAGE ========== */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 60px;
}
.contact-card-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 28px 20px;
    text-align: center;
    transition: all 0.3s var(--transition-smooth);
}
.contact-card-item:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all 0.3s var(--transition-smooth);
}
.contact-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
}
.contact-card-content {
    flex: 1;
    min-width: 0;
}
.contact-card-icon {
    width: 40px;
    height: 40px;
    margin: 0;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}
.contact-card-icon img {
    width: 22px !important;
    height: 22px !important;
    object-fit: contain !important;
}
.contact-card-icon svg {
    width: 22px;
    height: 22px;
}
.contact-card-title {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2px;
    line-height: 1.3;
}
.contact-card-value {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.3;
}
.contact-card-value a { color: var(--gold); }

.map-placeholder {
    height: 360px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin-top: 60px;
}

.hours-table { max-width: 600px; }
.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
}
.hours-row:last-child { border-bottom: none; }
.hours-day { color: var(--text-secondary); }
.hours-time { font-weight: 500; }

/* ========== FAQ PAGE ========== */
.page-hero {
    padding: 180px 0 80px;
    position: relative;
    background: linear-gradient(135deg, rgba(10,10,10,0.88) 0%, rgba(20,20,20,0.85) 100%);
    text-align: center;
    overflow: hidden;
}
.page-hero .hero-bg-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}
.page-hero .hero-bg-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,10,10,0.82) 0%, rgba(20,20,20,0.70) 50%, rgba(10,10,10,0.82) 100%);
    z-index: 1;
}
.page-hero > *:not(.hero-bg-img) {
    position: relative;
    z-index: 2;
}
.page-hero-label {
    font-size: 0.72rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}
.page-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 16px;
}
.page-hero-desc {
    color: var(--text-secondary);
    font-size: 1rem;
    max-width: 500px;
    margin: 0 auto;
}
.faq-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 48px;
}
.faq-tab {
    padding: 10px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 30px;
    font-size: 0.82rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    color: var(--text-secondary);
}
.faq-tab:hover { border-color: var(--border-hover); color: var(--text-primary); }
.faq-tab.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--bg);
}

/* ========== BLOG / NEWS ========== */
.blog-tabs { display: flex; gap: 8px; margin-bottom: 48px; flex-wrap: wrap; }
.blog-tab { padding: 10px 24px; font-size: 0.82rem; font-weight: 500; color: var(--text-muted); background: var(--bg-card); border: 1px solid var(--border); border-radius: 4px; cursor: pointer; transition: all 0.3s ease; font-family: inherit; }
.blog-tab:hover { border-color: var(--border-hover); color: var(--text-primary); }
.blog-tab.active { background: var(--gold); color: var(--bg); border-color: var(--gold); }

.blog-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.blog-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; transition: all 0.4s var(--transition-smooth); }
.blog-card:hover { border-color: var(--border-hover); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.3); }
.blog-card-img { height: 240px; background: linear-gradient(135deg, #1a1a1a, #111); display: flex; align-items: center; justify-content: center; font-size: 4rem; overflow: hidden; position: relative; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--transition-smooth); }
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-badge { position: absolute; top: 16px; left: 16px; font-size: 0.65rem; font-weight: 700; padding: 4px 10px; border-radius: 2px; text-transform: uppercase; letter-spacing: 1px; background: var(--gold); color: var(--bg); }
.blog-card-body { padding: 28px; }
.blog-card-date { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 10px; }
.blog-card-title { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 600; line-height: 1.35; margin-bottom: 12px; transition: color 0.3s ease; }
.blog-card:hover .blog-card-title { color: var(--gold); }
.blog-card-excerpt { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 20px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.blog-card-link { font-size: 0.82rem; color: var(--gold); display: inline-flex; align-items: center; gap: 6px; transition: gap 0.3s ease; }
.blog-card-link:hover { gap: 12px; }
.blog-card-img-link { display: block; text-decoration: none; color: inherit; }
.blog-card-title a { color: inherit; text-decoration: none; }
.blog-card-title a:hover { color: var(--gold); }
.blog-card-img .blog-card-placeholder { width: 100%; height: 100%; object-fit: contain; }

.newsletter-section { background: var(--bg-elevated); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 80px 0; }
.newsletter-inner { max-width: 560px; margin: 0 auto; text-align: center; }
.newsletter-title { font-family: 'Playfair Display', serif; font-size: 1.6rem; margin-bottom: 12px; }
.newsletter-desc { color: var(--text-secondary); font-size: 0.9rem; margin-bottom: 28px; }
.newsletter-form { display: flex; gap: 12px; }
.newsletter-input { flex: 1; padding: 14px 20px; background: var(--bg-card); border: 1px solid var(--border); border-radius: 4px; color: var(--text-primary); font-size: 0.9rem; font-family: inherit; outline: none; transition: border-color 0.3s ease; }
.newsletter-input:focus { border-color: var(--gold); }
.newsletter-input::placeholder { color: var(--text-muted); }
.newsletter-btn { padding: 14px 32px; background: var(--gold); color: var(--bg); border: none; border-radius: 4px; font-size: 0.82rem; font-weight: 600; cursor: pointer; font-family: inherit; letter-spacing: 0.5px; transition: all 0.3s ease; }
.newsletter-btn:hover { background: var(--gold-light); }

/* ========== PRODUCTS ARCHIVE ========== */
.cat-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-bottom: 100px; }
.cat-card { position: relative; border-radius: 12px; overflow: hidden; min-height: 320px; background: var(--bg-card); border: 1px solid var(--border); transition: all 0.4s var(--transition-smooth); cursor: pointer; display: block; }
.cat-card:hover { border-color: var(--border-hover); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.4); }
.cat-card-img { width: 100%; height: 100%; min-height: 320px; background: linear-gradient(135deg, #1a1a1a, #111); display: flex; align-items: center; justify-content: center; font-size: 5rem; opacity: 0.6; transition: opacity 0.6s ease, transform 0.6s ease; position: absolute; inset: 0; background-size: cover; background-position: center; }
.cat-card:hover .cat-card-img { opacity: 0.8; transform: scale(1.05); }
.cat-card:hover .cat-card-img { opacity: 0.4; }
.cat-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.2) 50%); display: flex; flex-direction: column; justify-content: flex-end; padding: 40px; }
.cat-card-tag { font-size: 0.68rem; color: var(--gold); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 12px; }
.cat-card h3 { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 600; margin-bottom: 8px; }
.cat-card p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.6; margin-bottom: 20px; }
.cat-card-arrow { display: inline-flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--gold); text-transform: uppercase; letter-spacing: 1px; transition: gap 0.3s ease; }
.cat-card:hover .cat-card-arrow { gap: 14px; }

.filter-tabs { display: flex; gap: 8px; margin-bottom: 48px; flex-wrap: wrap; }
.filter-tab { padding: 10px 24px; font-size: 0.82rem; font-weight: 500; border: 1px solid var(--border); border-radius: 4px; background: transparent; color: var(--text-muted); cursor: pointer; transition: all 0.3s ease; font-family: inherit; }
.filter-tab:hover, .filter-tab.active { border-color: var(--gold); color: var(--gold); background: rgba(212,168,83,0.06); }

.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.product-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; transition: all 0.4s var(--transition-smooth); }
.product-card:hover { border-color: var(--border-hover); transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,0.3); }
.product-card-img { height: 240px; background: linear-gradient(135deg, #1a1a1a, #111); display: flex; align-items: center; justify-content: center; font-size: 3.5rem; position: relative; overflow: hidden; }
.product-card-img img { width: 100%; height: 100%; object-fit: cover; }
.product-card-badge { position: absolute; top: 12px; left: 12px; font-size: 0.62rem; font-weight: 700; padding: 3px 10px; border-radius: 2px; text-transform: uppercase; letter-spacing: 1px; }
.badge-best { background: var(--gold); color: var(--bg); }
.badge-new { background: #27ae60; color: white; }
.badge-hot { background: var(--red); color: white; }
.product-card-body { padding: 24px; }
.product-card-cat { font-size: 0.68rem; color: var(--gold); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 8px; }
.product-card-name { font-size: 1rem; font-weight: 500; margin-bottom: 8px; line-height: 1.4; }
.product-card-desc { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 20px; }
.product-card-actions { display: flex; gap: 10px; }
.btn-sm { padding: 10px 20px; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.5px; border-radius: 3px; cursor: pointer; transition: all 0.3s ease; font-family: inherit; text-transform: uppercase; display: inline-flex; align-items: center; justify-content: center; text-decoration: none; }
.btn-sm-primary { background: var(--gold); color: var(--bg); border: none; }
.btn-sm-primary:hover { background: var(--gold-light); }
.btn-sm-ghost { background: transparent; color: var(--text-secondary); border: 1px solid var(--border); }
.btn-sm-ghost:hover { border-color: var(--gold); color: var(--gold); }

.page-link { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--border); border-radius: 4px; font-size: 0.85rem; color: var(--text-muted); transition: all 0.3s ease; cursor: pointer; }
.page-link:hover, .page-link.active { border-color: var(--gold); color: var(--gold); background: rgba(212,168,83,0.06); }

/* ========== SINGLE PRODUCT ========== */
.category-badge { display: inline-block; background: rgba(212,168,83,0.12); border: 1px solid rgba(212,168,83,0.2); color: var(--gold); font-size: 0.7rem; font-weight: 600; padding: 5px 14px; border-radius: 3px; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 16px; }
.product-detail { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 60px; padding-bottom: 100px; }
.gallery-main { width: 100%; aspect-ratio: 4/3; background: var(--bg-card); border-radius: 8px; overflow: hidden; margin-bottom: 16px; display: flex; align-items: center; justify-content: center; font-size: 6rem; border: 1px solid var(--border); }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.gallery-thumb { aspect-ratio: 4/3; background: var(--bg-card); border-radius: 6px; border: 2px solid transparent; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 2rem; transition: all 0.3s ease; overflow: hidden; }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumb:hover, .gallery-thumb.active { border-color: var(--gold); }
.product-info h2 { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; margin-bottom: 16px; line-height: 1.3; }
.product-info .desc { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.8; margin-bottom: 28px; }
.product-info .price { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--gold); font-weight: 700; margin-bottom: 24px; }
.spec-table { width: 100%; margin-bottom: 32px; }
.spec-row { display: flex; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid var(--border); font-size: 0.9rem; }
.spec-label { color: var(--text-muted); }
.spec-value { color: var(--text-primary); font-weight: 500; text-align: right; }
.product-actions { display: flex; gap: 12px; margin-bottom: 32px; flex-wrap: wrap; }
.product-actions .btn { flex: 1; justify-content: center; }
.product-meta { display: flex; gap: 24px; }
.meta-link { font-size: 0.85rem; color: var(--text-muted); display: flex; align-items: center; gap: 6px; }
.meta-link:hover { color: var(--gold); }

.tabs-section { padding: 60px 0; }
.tabs-nav { display: flex; gap: 0; border-bottom: 1px solid var(--border); margin-bottom: 48px; }
.tab-btn { padding: 16px 28px; font-size: 0.85rem; font-weight: 500; color: var(--text-muted); background: none; border: none; cursor: pointer; position: relative; transition: color 0.3s ease; font-family: inherit; }
.tab-btn:hover { color: var(--text-primary); }
.tab-btn.active { color: var(--gold); }
.tab-btn.active::after { content: ''; position: absolute; bottom: -1px; left: 0; right: 0; height: 2px; background: var(--gold); }
.tab-panel { display: none; animation: fadeIn 0.4s ease; }
.tab-panel.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.tab-desc { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.9; max-width: 800px; }
.tab-desc p { margin-bottom: 20px; }
.tab-specs { max-width: 600px; }
.tab-spec-row { display: grid; grid-template-columns: 1fr 1fr; padding: 16px 0; border-bottom: 1px solid var(--border); font-size: 0.9rem; }
.tab-spec-label { color: var(--text-muted); }
.tab-spec-value { font-weight: 500; }
.video-placeholder { width: 100%; aspect-ratio: 16/9; background: var(--bg-card); border-radius: 8px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--border); cursor: pointer; transition: all 0.3s ease; }
.video-placeholder:hover { border-color: var(--border-hover); }
.video-play { width: 80px; height: 80px; background: rgba(212,168,83,0.15); border: 2px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; color: var(--gold); transition: all 0.3s ease; }
.video-placeholder:hover .video-play { background: rgba(212,168,83,0.25); transform: scale(1.1); }

.related-projects { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.rp-card { position: relative; border-radius: 8px; overflow: hidden; background: var(--bg-card); aspect-ratio: 16/10; display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.rp-card img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.rp-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,10,10,0.85) 0%, transparent 60%); display: flex; flex-direction: column; justify-content: flex-end; padding: 24px; opacity: 0; transition: opacity 0.3s ease; z-index: 2; }
.rp-card:hover .rp-card-overlay { opacity: 1; }
.rp-card-name { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 600; margin-bottom: 4px; }
.rp-card-loc { font-size: 0.78rem; color: var(--gold); }

.related-products { padding: 80px 0; }
.related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.rel-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; transition: all 0.4s var(--transition-smooth); }
.rel-card:hover { border-color: var(--border-hover); transform: translateY(-4px); }
.rel-card-img { height: 200px; background: linear-gradient(135deg, #1a1a1a, #111); display: flex; align-items: center; justify-content: center; font-size: 3rem; overflow: hidden; }
.rel-card-img img { width: 100%; height: 100%; object-fit: cover; }
.rel-card-body { padding: 20px; }
.rel-card-cat { font-size: 0.68rem; color: var(--gold); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 6px; }
.rel-card-name { font-size: 0.95rem; font-weight: 500; margin-bottom: 4px; line-height: 1.4; }
.rel-card-link { font-size: 0.78rem; color: var(--gold); display: inline-flex; align-items: center; gap: 4px; margin-top: 12px; transition: gap 0.3s ease; }
.rel-card-link:hover { gap: 10px; }

.product-faq { padding: 80px 0; border-top: 1px solid var(--border); }
.product-faq .faq-item { border: 1px solid var(--border); border-radius: 8px; margin-bottom: 12px; overflow: hidden; transition: border-color 0.3s ease; }
.product-faq .faq-item:hover { border-color: rgba(255,255,255,0.15); cursor: pointer; }
.product-faq .faq-question { padding: 20px 24px; font-size: 0.95rem; font-weight: 500; cursor: pointer; display: flex; justify-content: space-between; align-items: center; background: var(--bg-card); user-select: none; -webkit-user-select: none; }
.product-faq .faq-question::after { content: '+'; font-size: 1.2rem; color: var(--gold); transition: transform 0.3s ease; flex-shrink: 0; margin-left: 16px; }
.product-faq .faq-item.open .faq-question::after { transform: rotate(45deg); }
.product-faq .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1), padding 0.45s ease; }
.product-faq .faq-item.open .faq-answer { max-height: 2000px; }
.product-faq .faq-answer-inner { padding: 20px 24px; color: var(--text-secondary); font-size: 0.9rem; line-height: 1.8; }

/* ========== PROJECTS / CASES ========== */
.project-tabs { display: flex; gap: 8px; margin-bottom: 48px; flex-wrap: wrap; }
.project-tab { padding: 10px 24px; font-size: 0.82rem; font-weight: 500; color: var(--text-muted); background: var(--bg-card); border: 1px solid var(--border); border-radius: 4px; cursor: pointer; transition: all 0.3s ease; font-family: inherit; }
.project-tab:hover { border-color: var(--border-hover); color: var(--text-primary); }
.project-tab.active { background: var(--gold); color: var(--bg); border-color: var(--gold); }

.project-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; }
.project-card { display: block; text-decoration: none; color: inherit; position: relative; border-radius: 8px; overflow: hidden; cursor: pointer; background: var(--bg-card); }
.project-card.span-2 { grid-column: span 2; }
.project-card.span-1 { grid-column: span 1; }
.project-card.span-row-2 { grid-row: span 2; }
.project-card-img { height: 100%; min-height: 320px; background: linear-gradient(135deg, #1a1a1a, #111); display: flex; align-items: center; justify-content: center; font-size: 4rem; overflow: hidden; position: relative; }
.project-card.span-row-2 .project-card-img { min-height: 660px; }
.project-card.span-2 .project-card-img { min-height: 400px; }
.project-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--transition-smooth); }
.project-card:hover .project-card-img img { transform: scale(1.06); }
.project-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.0) 55%); display: flex; flex-direction: column; justify-content: flex-end; padding: 32px; transition: all 0.4s var(--transition-smooth); }
.project-card-tag { display: inline-block; background: var(--gold); color: var(--bg); font-size: 0.65rem; font-weight: 700; padding: 4px 10px; border-radius: 2px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; width: fit-content; }
.project-card-title { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 600; line-height: 1.3; margin-bottom: 8px; }
.project-card-location { font-size: 0.82rem; color: var(--gold); margin-bottom: 4px; }
.project-card-desc { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.6; max-height: 0; overflow: hidden; transition: max-height 0.4s ease, opacity 0.4s ease; opacity: 0; }
.project-card:hover .project-card-desc { max-height: 120px; opacity: 1; margin-top: 8px; }

/* ========== CATEGORY TAXONOMY ========== */
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.cat-item { position: relative; border-radius: 12px; overflow: hidden; background: var(--bg-card); border: 1px solid var(--border); transition: all 0.4s var(--transition-smooth); cursor: pointer; }
.cat-item:hover { border-color: var(--border-hover); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.4); }
.cat-item-img { width: 100%; height: 240px; background-color: #1a1a1a; display: flex; align-items: center; justify-content: center; font-size: 4rem; transition: transform 0.6s ease; overflow: hidden; }
.cat-item:hover .cat-item-img { transform: scale(1.05); }
.cat-item-body { padding: 28px; }
.cat-item-tag { font-size: 0.68rem; color: var(--gold); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 8px; }
.cat-item h3 { font-family: 'Playfair Display', serif; font-size: 1.35rem; font-weight: 600; margin-bottom: 10px; }
.cat-item p { color: var(--text-secondary); font-size: 0.85rem; line-height: 1.7; margin-bottom: 16px; }
.cat-item-subs { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.cat-item-subs span { font-size: 0.7rem; padding: 4px 12px; border: 1px solid var(--border); border-radius: 20px; color: var(--text-muted); }
.cat-item-btn { display: inline-flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--gold); text-transform: uppercase; letter-spacing: 1px; }
.cat-item:hover .cat-item-btn { gap: 14px; }

.featured-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.featured-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; transition: all 0.4s var(--transition-smooth); }
.featured-card:hover { border-color: var(--border-hover); transform: translateY(-4px); }
.featured-card-img { height: 200px; background: linear-gradient(135deg, #1a1a1a, #111); display: flex; align-items: center; justify-content: center; font-size: 3rem; overflow: hidden; }
.featured-card-img img { width: 100%; height: 100%; object-fit: cover; }
.featured-card-body { padding: 20px; }
.featured-card-cat { font-size: 0.65rem; color: var(--gold); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 6px; }
.featured-card-name { font-size: 0.95rem; font-weight: 500; margin-bottom: 8px; }
.featured-card-desc { font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; }
.featured-card-link { display: inline-flex; align-items: center; gap: 4px; font-size: 0.78rem; color: var(--gold); margin-top: 12px; }

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
    .blog-grid { grid-template-columns: 1fr; }
    .cat-cards { grid-template-columns: 1fr; }
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .product-detail { grid-template-columns: 1fr; gap: 40px; }
    .related-grid { grid-template-columns: 1fr 1fr; }
    .related-projects { grid-template-columns: 1fr; }
    .tab-spec-row { grid-template-columns: 1fr; }
    .project-grid { grid-template-columns: 1fr 1fr; }
    .project-card.span-2 { grid-column: span 1; }
    .project-card.span-row-2 { grid-row: span 1; }
    .project-card.span-row-2 .project-card-img { min-height: 360px; }
    .cat-grid { grid-template-columns: repeat(2, 1fr); }
    .featured-grid { grid-template-columns: repeat(2, 1fr); }
    .newsletter-form { flex-direction: column; }
}
@media (max-width: 576px) {
    .product-grid { grid-template-columns: 1fr; }
    .related-grid { grid-template-columns: 1fr; }
    .gallery-thumbs { grid-template-columns: repeat(4, 1fr); }
    .tabs-nav { overflow-x: auto; }
    .product-actions { flex-direction: column; }
    .project-grid { grid-template-columns: 1fr; }
    .cat-grid { grid-template-columns: 1fr; }
    .featured-grid { grid-template-columns: 1fr; }
    .newsletter-form { flex-direction: column; }
}

/* ========== TRUST BADGES ========== */
.trust-section { background: var(--bg-elevated); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 40px 0; }
.trust-badges { display: flex; justify-content: center; align-items: center; gap: 48px; flex-wrap: wrap; }
.trust-badge { text-align: center; }
.trust-icon { font-size: 2.5rem; margin-bottom: 8px; }
.trust-title { font-weight: 600; color: var(--text-primary); font-size: 0.9rem; }
.trust-desc { font-size: 0.8rem; color: var(--text-muted); }

/* ========== CLIENT LOGOS ========== */
.client-section { padding: 60px 0; background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-elevated) 100%); }
.client-logos { display: flex; justify-content: center; align-items: center; gap: 40px; flex-wrap: wrap; opacity: 0.7; }
.client-logo { font-size: 1.1rem; font-weight: 600; color: var(--text-secondary); padding: 12px 24px; border: 1px solid var(--border); border-radius: 8px; background: var(--bg-card); transition: all 0.3s var(--transition-smooth); }
.client-logo:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

/* ========== VIDEO SHOWCASE ========== */
.video-section { background: var(--bg-elevated); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.video-showcase { position: relative; max-width: 900px; margin: 0 auto; border-radius: 16px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.video-main { position: relative; aspect-ratio: 16/9; background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%); display: flex; flex-direction: column; align-items: center; justify-content: center; cursor: pointer; transition: transform 0.3s ease; overflow: hidden; border-radius: 16px; }
.video-main:hover { transform: scale(1.02); }
.video-main img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.video-main::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,10,10,0.75) 0%, rgba(10,10,10,0.2) 50%, rgba(10,10,10,0.1) 100%); z-index: 2; transition: background 0.3s ease; }
.video-main:hover::after { background: linear-gradient(to top, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.3) 50%, rgba(10,10,10,0.2) 100%); }
.video-play-btn { position: relative; z-index: 3; width: 80px; height: 80px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; margin-bottom: 0; box-shadow: 0 0 30px rgba(212,168,83,0.4); transition: all 0.3s ease; }
.video-main:hover .video-play-btn { transform: scale(1.1); box-shadow: 0 0 50px rgba(212,168,83,0.6); }
.play-icon { font-size: 2rem; margin-left: 6px; color: var(--bg); }
.video-title { position: absolute; bottom: 16px; left: 20px; right: 20px; z-index: 3; color: #fff; font-size: 1.1rem; font-weight: 600; margin: 0; text-align: center; text-shadow: 0 2px 8px rgba(0,0,0,0.6); }
.video-meta { position: absolute; bottom: 4px; left: 20px; right: 20px; z-index: 3; color: var(--gold); font-size: 0.85rem; text-align: center; }
.video-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; margin-top: 40px; }
.video-thumb { border-radius: 12px; overflow: hidden; background: var(--bg-card); border: 1px solid var(--border); transition: all 0.3s var(--transition-smooth); }
.video-thumb:hover { border-color: var(--border-hover); transform: translateY(-4px); }
.video-thumb-img { position: relative; aspect-ratio: 16/9; background: linear-gradient(135deg, #2d1b4e 0%, #1a1a2e 100%); display: flex; align-items: center; justify-content: center; font-size: 2rem; overflow: hidden; }
.video-thumb-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.video-thumb-info { padding: 16px; min-height: 20px; }
.video-thumb-info h4 { margin: 0; font-size: 0.95rem; color: var(--text-primary); line-height: 1.4; }
.video-thumb-info p { margin: 0; color: var(--text-muted); font-size: 0.8rem; }

/* ========== PRODUCT SIDEBAR ========== */
.product-sidebar {
    position: sticky;
    top: 100px;
}
.product-sidebar .sidebar-widget {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 20px;
}
.product-sidebar .sidebar-widget h3 {
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    color: var(--text-secondary);
}
.product-sidebar ul {
    list-style: none;
}
.product-sidebar ul li {
    margin-bottom: 4px;
}
.product-sidebar ul li a {
    display: block;
    padding: 10px 12px;
    font-size: 0.88rem;
    color: var(--text-muted);
    border-radius: 4px;
    transition: all 0.3s ease;
}
.product-sidebar ul li a:hover,
.product-sidebar ul li a.active {
    background: rgba(212,168,83,0.1);
    color: var(--gold);
}
.product-sidebar .sub-menu {
    margin-top: 4px;
    margin-left: 12px;
    padding-left: 12px;
    border-left: 1px solid var(--border);
}
.product-sidebar .sub-menu li a {
    font-size: 0.82rem;
    padding: 8px 10px;
}

/* Single product layout with sidebar */
.product-detail-with-sidebar {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 40px;
    align-items: start;
}
.category-main {
    min-width: 0;
}
@media (max-width: 992px) {
    .product-detail-with-sidebar {
        grid-template-columns: 1fr;
    }
    .product-sidebar {
        position: static;
        order: -1;
    }
}

/* Category page product grid */
.category-main .product-grid {
    grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1200px) {
    .category-main .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .category-main .product-grid {
        grid-template-columns: 1fr;
    }
}

/* Products page category cards */
.cat-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
@media (max-width: 768px) {
    .cat-cards {
        grid-template-columns: 1fr;
    }
}
.cat-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border);
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.cat-card-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 6rem;
    opacity: 0.15;
    z-index: 1;
}
.cat-card-overlay {
    position: relative;
    z-index: 2;
    padding: 32px;
    background: linear-gradient(to top, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.7) 60%, transparent 100%);
}
.cat-card-tag {
    display: inline-block;
    background: rgba(212,168,83,0.15);
    color: var(--gold);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}
.cat-card-overlay h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}
.cat-card-overlay p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 16px;
}
.cat-card-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
    transition: gap 0.3s ease;
}
.cat-card:hover .cat-card-arrow {
    gap: 12px;
}

/* ========== RESPONSIVE ADDITIONS ========== */
@media (max-width: 768px) {
    .trust-badges { gap: 24px; }
    .client-logos { gap: 16px; }
    .video-grid { grid-template-columns: 1fr; }
}

/* ========== SUB-CATEGORY GRID ========== */
.subcat-section {
    margin-bottom: 60px;
    padding: 40px 0;
}
.subcat-heading {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 28px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 12px;
}
.subcat-heading::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}
.subcat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.subcat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    transition: all 0.4s var(--transition-smooth);
    text-decoration: none;
    color: inherit;
}
.subcat-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.subcat-icon {
    font-size: 2rem;
    margin-bottom: 12px;
    opacity: 0.6;
}
.subcat-card:hover .subcat-icon {
    opacity: 1;
}
.subcat-card h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-primary);
}
.subcat-count {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}
.subcat-arrow {
    font-size: 0.85rem;
    color: var(--gold);
    margin-top: auto;
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.3s ease;
}
.subcat-card:hover .subcat-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Sub-category responsive */
@media (max-width: 992px) {
    .subcat-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 768px) {
    .subcat-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px) {
    .subcat-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== GALLERY LINK FIX ========== */
.gallery-item a {
    display: block;
    width: 100%;
    height: 100%;
    color: inherit;
    text-decoration: none;
    position: relative;
}
.gallery-item a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--transition-smooth);
}
.gallery-item:hover a img {
    transform: scale(1.08);
}
.gallery-item a .gallery-info {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.0) 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 36px;
    opacity: 0;
    transition: opacity 0.5s var(--transition-smooth);
}
.gallery-item:hover a .gallery-info { opacity: 1; }
.gallery-item a .gallery-arrow {
    position: absolute;
    top: 24px; right: 24px;
    width: 40px; height: 40px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    opacity: 0;
    transform: translate(-10px, 10px);
    transition: all 0.4s var(--transition-smooth);
}
.gallery-item:hover a .gallery-arrow {
    opacity: 1;
    transform: translate(0, 0);
}

/* ========== VIDEO CENTER PAGE ========== */
.video-center-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.video-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s var(--transition-smooth);
    cursor: pointer;
}
.video-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.video-card-thumb {
    position: relative;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    overflow: hidden;
}
.video-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.video-card:hover .video-card-thumb img {
    transform: scale(1.08);
}

/* ========== SINGLE POST (BLOG ARTICLE) ========== */
.post-breadcrumb {
    margin-top: 120px;
    margin-bottom: 40px;
}

.single-post {
    margin: 0 auto 80px;
}

.post-header {
    text-align: center;
    margin-bottom: 48px;
}

.post-thumbnail {
    margin: 0 auto 32px;
    max-width: 800px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.post-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

.post-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.post-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.post-meta-sep {
    opacity: 0.5;
}

.post-category {
    color: var(--gold);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.post-category:hover {
    opacity: 0.8;
}

.post-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.post-content p {
    margin-bottom: 1.5em;
}

.post-content h2 {
    font-size: 1.6rem;
    margin-top: 2em;
    margin-bottom: 0.8em;
    color: var(--text-primary);
}

.post-content h3 {
    font-size: 1.3rem;
    margin-top: 1.8em;
    margin-bottom: 0.6em;
    color: var(--text-primary);
}

.post-content ul,
.post-content ol {
    margin-bottom: 1.5em;
    padding-left: 1.5em;
}

.post-content li {
    margin-bottom: 0.5em;
}

.post-content a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2em 0;
}

.post-content blockquote {
    border-left: 3px solid var(--gold);
    padding-left: 24px;
    margin: 2em 0;
    font-style: italic;
    color: var(--text-muted);
}

.post-footer {
    margin-top: 64px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
}

.tags-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.tag-link {
    display: inline-block;
    padding: 6px 14px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.tag-link:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.post-share {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.share-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-right: 4px;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.share-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

/* Related Posts */
.related-posts-section {
    padding-top: 80px;
    padding-bottom: 120px;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-elevated) 100%);
    border-top: 1px solid var(--border);
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.related-post-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s var(--transition-smooth);
}

.related-post-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.related-post-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.related-post-img {
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a, #111);
}

.related-post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.related-post-card:hover .related-post-img img {
    transform: scale(1.08);
}

.related-post-body {
    padding: 24px;
}

.related-post-cat {
    display: block;
    font-size: 0.72rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.related-post-title {
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 10px;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.related-post-card:hover .related-post-title {
    color: var(--gold);
}

.related-post-date {
    font-size: 0.8rem;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .post-breadcrumb {
        margin-top: 100px;
    }
    .single-post {
        margin-bottom: 48px;
    }
    .related-posts-grid {
        grid-template-columns: 1fr;
    }
}

.video-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.25);
    transition: background 0.3s ease;
}
.video-card:hover .video-play-overlay {
    background: rgba(0,0,0,0.45);
}
.video-play-icon {
    width: 60px;
    height: 60px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--bg);
    box-shadow: 0 0 30px rgba(212,168,83,0.4);
    transition: transform 0.3s ease;
    padding-left: 3px;
}
.video-card:hover .video-play-icon {
    transform: scale(1.15);
    box-shadow: 0 0 50px rgba(212,168,83,0.6);
}

.video-duration-badge {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0,0,0,0.8);
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
}

.video-card-body {
    padding: 20px 22px;
}
.video-card-title {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 6px;
    line-height: 1.4;
    color: var(--text-primary);
}
.video-card-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* ========== VIDEO MODAL ========== */
.video-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.92);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.video-modal.active {
    opacity: 1;
    visibility: visible;
}

.video-modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10000;
    line-height: 1;
}
.video-modal-close:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--gold);
    color: var(--gold);
}

.video-modal-content {
    width: 90%;
    max-width: 1000px;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 80px rgba(0,0,0,0.5);
}

/* Video Center responsive */
@media (max-width: 992px) {
    .video-center-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .video-center-grid {
        grid-template-columns: 1fr;
    }
    .video-modal-content {
        width: 95%;
        aspect-ratio: auto;
        height: 56.25vw;
        border-radius: 8px;
    }
    .video-play-icon {
        width: 48px;
        height: 48px;
        font-size: 1rem;
    }
}

/* ========== GLOBAL PAGINATION ========== */
.pagination {
    margin-top: 40px;
    text-align: left;
}
.pagination ul,
.pagination ol {
    display: flex !important;
    align-items: center;
    gap: 8px;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}
.pagination li {
    margin: 0 !important;
    display: inline-block;
}
.pagination .page-numbers,
.pagination a.page-numbers,
.pagination span.page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #aaa;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    text-decoration: none;
    transition: all 0.2s ease;
    line-height: 1;
    box-sizing: border-box;
}
.pagination .page-numbers:hover {
    color: #D4A853;
    border-color: rgba(212,168,83,0.4);
    background: rgba(212,168,83,0.08);
}
.pagination .page-numbers.current,
.pagination .page-numbers.dots {
    color: #fff;
    background: rgba(212,168,83,0.18);
    border-color: rgba(212,168,83,0.35);
    cursor: default;
}

/* Pagination responsive */
@media (max-width: 576px) {
    .pagination ul,
    .pagination ol {
        flex-wrap: wrap;
        gap: 6px;
    }
    .pagination .page-numbers,
    .pagination a.page-numbers,
    .pagination span.page-numbers {
        min-width: 36px;
        height: 36px;
        font-size: 0.82rem;
        padding: 0 10px;
    }
}
