/* public/assets/css/index.css */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@600;800&family=Inter:wght@300;400;500;600&family=Montserrat:wght@500;700;800;900&display=swap');

:root {
    --bg-main: #020817;
    --bg-section: #071226;
    --accent-red: #ef4444;
    --accent-red-hover: #dc2626;
    --gold-accent: #D4AF37;
    --white: #ffffff;
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-bg-hover: rgba(255, 255, 255, 0.06);
    --glass-border: rgba(255, 255, 255, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    color: var(--white);
    text-transform: uppercase;
}

a {
    text-decoration: none;
    color: var(--white);
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Container */
.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Glassmorphism Utilities */
.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.glass-card:hover {
    background: var(--glass-bg-hover);
    border-color: rgba(255, 255, 255, 0.15);
}

.glass-header {
    background: rgba(2, 8, 23, 0.7) !important;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--glass-border) !important;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    letter-spacing: 1.5px;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--accent-red);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.3);
}

.btn-primary:hover {
    background-color: var(--accent-red-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.5);
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--bg-main);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.15);
}

/* Top Bar */
.top-bar {
    background-color: var(--bg-main);
    padding: 8px 0;
    font-size: 0.85rem;
    color: #94a3b8;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-links a {
    color: #94a3b8;
    margin-right: 20px;
}

.top-bar-links a:hover {
    color: var(--gold-accent);
}

/* Header */
.main-header {
    background-color: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.brand-name {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    letter-spacing: 1px;
}

.brand-sub {
    font-family: 'Cinzel', serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gold-accent);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 4px;
}

.nav-links {
    display: flex;
    gap: 3vw;
    flex-wrap: nowrap;
    flex: 1;
    justify-content: center;
    padding: 0 20px;
}

.mobile-menu-toggle {
    display: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

.nav-links a {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
}

.nav-links a:hover {
    color: var(--accent-red);
}

/* Hero Section */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(2, 8, 23, 0.4), rgba(2, 8, 23, 0.8)), url('https://images.unsplash.com/photo-1549719386-74dfcbf7dbed?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    position: relative;
    border-bottom: 1px solid var(--glass-border);
}

.hero-content {
    max-width: 800px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

.hero h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.hero h2 {
    font-size: 1.2rem;
    color: var(--gold-accent);
    margin-bottom: 25px;
    font-weight: 500;
}

.hero-features {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
    font-size: 1.3rem;
}

.hero-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.trust-badges {
    display: flex;
    gap: 20px;
    opacity: 0.7;
}

.badge {
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
}

/* Sections */
.section-padding {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--accent-red);
}

/* Footer */
.main-footer {
    background-color: var(--bg-main);
    padding: 80px 0 30px;
    border-top: 1px solid var(--glass-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    margin-bottom: 25px;
    color: var(--white);
}

.footer-col p {
    color: #94a3b8;
    margin-bottom: 15px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #94a3b8;
}

.footer-links a:hover {
    color: var(--accent-red);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #64748b;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .main-header .container {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        padding-top: 15px;
        gap: 15px;
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }

    .header-action {
        width: auto;
    }

    .header-action .btn {
        display: none;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero h2 {
        font-size: 1rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 10px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .trust-badges {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }
    
    .logo img {
        height: 50px !important;
    }
    
    .brand-name {
        font-size: 1.1rem;
    }
}

/* Floating WhatsApp */
.floating-whatsapp { position: fixed; bottom: 20px; right: 20px; background-color: #25d366; color: white; border-radius: 50%; width: 60px; height: 60px; display: flex; justify-content: center; align-items: center; font-size: 35px; box-shadow: 2px 2px 10px rgba(0,0,0,0.2); z-index: 1000; transition: transform 0.3s ease; text-decoration: none; }
.floating-whatsapp:hover { transform: scale(1.1); color: white; }

/* Animations & Hover Effects */
.animate-on-scroll { 
    opacity: 0; 
    transform: translateY(40px); 
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94); 
}
.animate-on-scroll.is-visible { 
    opacity: 1; 
    transform: translateY(0); 
}

.hover-scale { transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease; }
.hover-scale:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.5) !important; border-color: rgba(212, 175, 55, 0.5) !important; }

.hover-glow { transition: all 0.3s ease; }
.hover-glow:hover { box-shadow: 0 0 20px rgba(220, 38, 38, 0.6); }

.nav-links a { position: relative; }
.nav-links a::after { content: ''; position: absolute; width: 0; height: 2px; bottom: -5px; left: 0; background-color: var(--accent-red); transition: width 0.3s ease; }
.nav-links a:hover::after { width: 100%; }

.img-zoom-container { overflow: hidden; }
.img-zoom-container img { transition: transform 0.6s ease; }
.hover-scale:hover .img-zoom-container img { transform: scale(1.1); }

/* Premium 2025 Product Cards */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}

.premium-product-card {
    background: linear-gradient(180deg, #071226, #0B1730);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    transition: all 0.5s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    height: 100%;
    cursor: pointer;
}

.premium-product-card:hover {
    transform: translateY(-12px);
    border-color: #ef4444;
    box-shadow: 0 25px 50px rgba(239, 68, 68, 0.25);
    background: linear-gradient(180deg, #0a1833, #0f1f40);
}

.product-img-wrapper {
    height: 300px;
    position: relative;
    background: radial-gradient(circle at center, rgba(255,255,255,0.05) 0%, transparent 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-img-wrapper::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 20px;
    background: #ef4444;
    filter: blur(20px);
    opacity: 0.3;
}

.product-img-wrapper img {
    width: 80%;
    height: 80%;
    object-fit: contain;
    transition: transform 0.5s ease;
    position: relative;
    z-index: 2;
}

.premium-product-card:hover .product-img-wrapper img {
    transform: scale(1.08);
}

.badge-premium {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #ef4444;
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 10;
}

.btn-favorite {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.btn-favorite:hover {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.5);
}

.product-details {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-title {
    font-family: 'Inter', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 20px;
    text-transform: none;
}

.product-info-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

.product-info-row {
    display: flex;
    align-items: center;
    color: #CBD5E1;
    font-size: 14px;
}

.product-info-row i {
    width: 20px;
    color: var(--gold-accent);
    margin-right: 10px;
}

.product-actions {
    display: flex;
    gap: 15px;
    margin-top: auto;
}

.btn-product-primary {
    flex: 1;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-product-primary:hover {
    background: linear-gradient(90deg, #ef4444, #dc2626);
    border-color: #ef4444;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
}

.btn-product-secondary {
    width: 50px;
    height: 50px;
    background: #ef4444;
    border-radius: 12px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-product-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(239, 68, 68, 0.4);
}

.stretched-link::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    content: "";
}

/* ==========================================
   PRODUCT DETAILS PAGE (2025 PREMIUM)
   ========================================== */

/* Hero Section */
.product-detail-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 50px;
    align-items: start;
}

@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; }
}

.product-gallery-main {
    height: 650px;
    background: linear-gradient(180deg, #071226, #0a1833);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
    margin-bottom: 20px;
}

.product-gallery-main::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(239,68,68,0.2) 0%, transparent 70%);
    z-index: 1;
}

.product-gallery-main img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    z-index: 2;
    transition: transform 0.6s ease;
}

.product-gallery-main:hover img {
    transform: scale(1.1);
}

.thumbnail-slider {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.thumb-item {
    width: 100px;
    height: 100px;
    background: #071226;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.thumb-item:hover, .thumb-item.active {
    border-color: var(--accent-red);
    box-shadow: 0 5px 15px rgba(239,68,68,0.3);
}

.thumb-item img {
    width: 70%;
    height: 70%;
    object-fit: contain;
}

/* Info Section */
.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.badge-outline {
    border: 1px solid rgba(255,255,255,0.2);
    color: #cbd5e1;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-title-large {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
}

.product-desc-short {
    color: #94a3b8;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.quick-features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 40px;
}

.quick-feature-item {
    color: var(--white);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.quick-feature-item i {
    color: var(--accent-red);
    margin-right: 10px;
}

/* RFQ Card */
.rfq-action-card {
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.rfq-stats-row {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.rfq-stat {
    text-align: center;
}

.rfq-stat-val {
    display: block;
    font-weight: 700;
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.rfq-stat-label {
    color: #94a3b8;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.rfq-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-rfq-primary {
    background: linear-gradient(90deg, #ef4444, #dc2626);
    color: white;
    text-align: center;
    padding: 18px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(239,68,68,0.3);
}

.btn-rfq-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(239,68,68,0.5);
}

.btn-rfq-wa {
    background: #25D366;
    color: white;
    text-align: center;
    padding: 15px;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-rfq-wa:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

/* Tabs */
.premium-tabs-nav {
    display: flex;
    gap: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 40px;
    overflow-x: auto;
}

.premium-tab-btn {
    background: transparent;
    border: none;
    color: #94a3b8;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 15px 5px;
    cursor: pointer;
    position: relative;
    white-space: nowrap;
}

.premium-tab-btn.active {
    color: var(--white);
}

.premium-tab-btn::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--accent-red);
    transition: width 0.3s ease;
}

.premium-tab-btn.active::after {
    width: 100%;
}

.premium-tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.premium-tab-content.active {
    display: block;
}

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

/* Specs Table */
.spec-table {
    width: 100%;
    border-collapse: collapse;
}

.spec-table tr {
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.spec-table td {
    padding: 20px;
    color: #cbd5e1;
}

.spec-table td:first-child {
    font-weight: 600;
    width: 30%;
    color: var(--white);
}

/* Customization Cards */
.customization-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

@media (max-width: 1024px) {
    .customization-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .customization-grid { grid-template-columns: 1fr; }
}

.custom-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 40px 20px;
    text-align: center;
    transition: all 0.4s ease;
}

.custom-card:hover {
    transform: translateY(-10px);
    border-color: rgba(239,68,68,0.5);
    background: rgba(239,68,68,0.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.custom-card i {
    font-size: 3rem;
    color: var(--accent-red);
    margin-bottom: 20px;
}

.custom-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* Alternating Layout */
.alt-feature-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

.alt-feature-row.reverse {
    flex-direction: row-reverse;
}

@media (max-width: 768px) {
    .alt-feature-row, .alt-feature-row.reverse {
        flex-direction: column;
        gap: 30px;
    }
}

.alt-feature-img {
    flex: 1;
    position: relative;
}

.alt-feature-img img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.alt-feature-img::after {
    content: '';
    position: absolute;
    top: 20px; left: -20px; right: 20px; bottom: -20px;
    border: 2px solid var(--accent-red);
    border-radius: 20px;
    z-index: -1;
}

.alt-feature-content {
    flex: 1;
}

.alt-feature-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--white);
}

.alt-feature-content p {
    color: #cbd5e1;
    line-height: 1.7;
}

/* Factory Stats */
.factory-stats-section {
    background: linear-gradient(rgba(2,8,23,0.9), rgba(2,8,23,0.9)), url('https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?auto=format&fit=crop&w=1920&q=80') center/cover fixed;
    padding: 100px 0;
    margin: 80px 0;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

@media (max-width: 768px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

.stat-item h3 {
    font-size: 4rem;
    color: var(--accent-red);
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
}

.stat-item p {
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Masonry Gallery */
.masonry-grid {
    column-count: 3;
    column-gap: 20px;
}

@media (max-width: 768px) {
    .masonry-grid { column-count: 2; }
}

@media (max-width: 480px) {
    .masonry-grid { column-count: 1; }
}

.masonry-item {
    margin-bottom: 20px;
    break-inside: avoid;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    cursor: zoom-in;
}

.masonry-item img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.masonry-item:hover img {
    transform: scale(1.05);
}

/* FAQ */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(255,255,255,0.05);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    color: #cbd5e1;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 500px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Final CTA */
.final-cta-banner {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.8)), url('https://images.unsplash.com/photo-1549719386-74dfcbf7dbed?auto=format&fit=crop&w=1920&q=80') center/cover;
    padding: 120px 20px;
    text-align: center;
    border-radius: 24px;
    margin-top: 80px;
}
