/* ==========================================================================
   ZENİT KIYMETLİ MADENLER LTD. ŞTİ. - LUXURY CORPORATE STYLESHEET
   ========================================================================== */

:root {
    /* Color Palette */
    --bg-main: #07090D;
    --bg-surface: #0E121A;
    --bg-surface-elevated: #141A26;
    --bg-card: rgba(18, 24, 36, 0.85);
    --bg-card-hover: rgba(26, 34, 52, 0.95);
    
    /* Gold Gradients & Accents */
    --gold-primary: #D4AF37;
    --gold-light: #F3E29F;
    --gold-dark: #A67C1E;
    --gold-accent: #ECC872;
    --gold-gradient: linear-gradient(135deg, #FFF0B8 0%, #E6C665 30%, #D4AF37 60%, #997519 100%);
    --gold-gradient-subtle: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.03) 100%);
    --gold-border: rgba(212, 175, 55, 0.25);
    --gold-border-hover: rgba(212, 175, 55, 0.6);
    --gold-glow: 0 0 25px rgba(212, 175, 55, 0.35);

    /* Status & Financial Colors */
    --green-up: #10B981;
    --green-up-bg: rgba(16, 185, 129, 0.12);
    --red-down: #EF4444;
    --red-down-bg: rgba(239, 68, 68, 0.12);
    --silver-accent: #E2E8F0;
    --platinum-accent: #93C5FD;

    /* Text Colors */
    --text-primary: #FFFFFF;
    --text-secondary: #CBD5E1;
    --text-muted: #94A3B8;
    --text-gold: #F3E29F;

    /* Borders & Glass */
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-focus: rgba(212, 175, 55, 0.8);
    --card-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.7), 0 0 1px 1px rgba(255, 255, 255, 0.05);
    --card-shadow-gold: 0 20px 40px -15px rgba(0, 0, 0, 0.8), 0 0 25px rgba(212, 175, 55, 0.15);

    /* Typography */
    --font-heading: 'Cinzel', serif;
    --font-title: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base & Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-main);
    color: var(--text-primary);
}

body {
    font-family: var(--font-body);
    background: radial-gradient(circle at 50% 0%, #151C2C 0%, var(--bg-main) 60%);
    background-attachment: fixed;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

button, input, select, textarea {
    font-family: inherit;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.section-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography Helpers */
.gold-gradient-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.gold-icon {
    color: var(--gold-primary);
}

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

/* ==========================================================================
   PRELOADER
   ========================================================================== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #06080B;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.preloader-logo-wrap {
    position: relative;
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    position: relative;
    z-index: 2;
    animation: floatEmblem 3s ease-in-out infinite;
}

.preloader-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulseGlow 2s infinite alternate;
}

.preloader-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    letter-spacing: 6px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 4px;
}

.preloader-sub {
    font-size: 0.8rem;
    letter-spacing: 3px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.preloader-bar {
    width: 180px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 12px;
}

.preloader-progress {
    width: 0%;
    height: 100%;
    background: var(--gold-gradient);
    animation: loadBar 1.6s ease forwards;
}

.preloader-status {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

@keyframes loadBar {
    0% { width: 0%; }
    50% { width: 65%; }
    100% { width: 100%; }
}

@keyframes floatEmblem {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

@keyframes pulseGlow {
    0% { transform: scale(0.85); opacity: 0.4; }
    100% { transform: scale(1.15); opacity: 0.85; }
}

/* ==========================================================================
   TICKER BAR
   ========================================================================== */
.ticker-wrapper {
    background: #0B0E14;
    border-bottom: 1px solid var(--border-subtle);
    height: 42px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1001;
    font-size: 0.85rem;
    padding: 0 16px;
}

.ticker-badge {
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.35);
    color: var(--gold-accent);
    padding: 3px 10px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    white-space: nowrap;
    margin-right: 16px;
    flex-shrink: 0;
}

.pulse-dot {
    width: 7px;
    height: 7px;
    background: #10B981;
    border-radius: 50%;
    box-shadow: 0 0 8px #10B981;
    animation: blinkPulse 1.5s infinite;
}

@keyframes blinkPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(0.7); }
}

.ticker-scroll-area {
    flex: 1;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 40px, black calc(100% - 40px), transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 40px, black calc(100% - 40px), transparent);
}

.ticker-track {
    display: flex;
    align-items: center;
    gap: 32px;
    white-space: nowrap;
    animation: scrollTicker 38s linear infinite;
}

.ticker-track:hover {
    animation-play-state: paused;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    cursor: pointer;
    padding: 2px 6px;
    border-radius: 4px;
    transition: var(--transition-fast);
}

.ticker-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.ticker-item .name {
    color: var(--text-secondary);
    font-weight: 600;
}

.ticker-item .rate {
    color: var(--text-primary);
    font-family: var(--font-title);
    font-weight: 700;
}

.ticker-item .chg {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 1px 4px;
    border-radius: 3px;
}

.ticker-item .chg.up {
    color: var(--green-up);
    background: var(--green-up-bg);
}

.ticker-item .chg.down {
    color: var(--red-down);
    background: var(--red-down-bg);
}

.ticker-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 16px;
    flex-shrink: 0;
}

.market-badge {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.market-badge.market-open {
    background: var(--green-up-bg);
    color: var(--green-up);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.live-clock {
    font-family: var(--font-title);
    font-weight: 700;
    color: var(--text-muted);
    font-size: 0.8rem;
}

@keyframes scrollTicker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */
.main-header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(7, 9, 13, 0.88);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border-subtle);
    transition: var(--transition-smooth);
}

.main-header.scrolled {
    background: rgba(7, 9, 13, 0.96);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    border-bottom-color: var(--gold-border);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-icon {
    width: 44px;
    height: 44px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.4));
    transition: var(--transition-smooth);
}

.brand-logo:hover .brand-icon {
    transform: scale(1.05) rotate(2deg);
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.55rem;
    font-weight: 800;
    letter-spacing: 3px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
}

.brand-tagline {
    font-size: 0.65rem;
    letter-spacing: 2px;
    color: var(--text-muted);
    font-weight: 600;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 6px 0;
    position: relative;
}

.nav-link i {
    font-size: 0.85rem;
    color: var(--gold-primary);
    opacity: 0.8;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--gold-gradient);
    transition: var(--transition-fast);
    border-radius: 2px;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-primary);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-gold-glow {
    background: var(--gold-gradient);
    color: #0B0E14;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    padding: 10px 22px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 18px rgba(212, 175, 55, 0.35);
    transition: var(--transition-smooth);
}

.btn-gold-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.55);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    width: 100%;
    height: 2px;
    background: var(--gold-primary);
    border-radius: 2px;
    transition: var(--transition-fast);
}

/* ==========================================================================
   MOBILE DRAWER
   ========================================================================== */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 85%;
    height: 100vh;
    background: #0D111A;
    border-left: 1px solid var(--gold-border);
    z-index: 2000;
    padding: 24px;
    display: flex;
    flex-direction: column;
    transition: right 0.4s ease;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.8);
}

.mobile-drawer.active {
    right: 0;
}

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-subtle);
}

.drawer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--gold-accent);
}

.drawer-brand img {
    width: 32px;
    height: 32px;
}

.drawer-close {
    background: rgba(255, 255, 255, 0.08);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: var(--text-primary);
    cursor: pointer;
    font-size: 1.1rem;
}

.drawer-links {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}

.drawer-link {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
    font-weight: 600;
    padding: 12px 16px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-secondary);
}

.drawer-link i {
    color: var(--gold-primary);
    width: 20px;
}

.drawer-link:hover {
    background: rgba(212, 175, 55, 0.15);
    color: var(--text-primary);
}

.drawer-footer {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.drawer-btn {
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-subtle);
}

.drawer-btn.whatsapp {
    background: #25D366;
    color: #000;
    border: none;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    position: relative;
    padding: 70px 0 90px;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 30%, rgba(212, 175, 55, 0.08) 0%, transparent 60%),
                radial-gradient(circle at 10% 80%, rgba(30, 58, 138, 0.12) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid var(--gold-border);
    border-radius: 30px;
    margin-bottom: 24px;
}

.hero-badge .badge-icon {
    color: var(--gold-primary);
    font-size: 0.8rem;
}

.hero-badge .badge-text {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--gold-light);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.4rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.hero-desc {
    font-size: 1.08rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 580px;
}

.hero-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 36px;
}

.stat-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    padding: 14px 12px;
    border-radius: 12px;
    text-align: center;
    backdrop-filter: blur(8px);
    transition: var(--transition-fast);
}

.stat-box:hover {
    border-color: var(--gold-border);
    background: rgba(212, 175, 55, 0.05);
    transform: translateY(-3px);
}

.stat-number {
    display: block;
    font-family: var(--font-title);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--gold-light);
    line-height: 1.2;
}

.stat-label {
    display: block;
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-top: 4px;
    font-weight: 600;
}

.hero-btn-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
}

.btn-primary-gold {
    background: var(--gold-gradient);
    color: #0B0E14;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    transition: var(--transition-smooth);
}

.btn-primary-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.6);
}

.btn-outline-gold {
    background: transparent;
    color: var(--gold-light);
    border: 1px solid var(--gold-border);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 26px;
    border-radius: 30px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(8px);
    transition: var(--transition-smooth);
}

.btn-outline-gold:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--gold-primary);
    color: #FFFFFF;
    transform: translateY(-3px);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    border: 1px solid var(--border-subtle);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 24px;
    border-radius: 30px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(8px);
    transition: var(--transition-smooth);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #FFF;
    border-color: rgba(255, 255, 255, 0.2);
}

/* Hero Visual 3D Card */
.hero-visual-col {
    position: relative;
}

.hero-card-3d {
    position: relative;
    border-radius: 24px;
    padding: 4px;
    background: linear-gradient(145deg, rgba(212, 175, 55, 0.3) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(212, 175, 55, 0.1) 100%);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(212, 175, 55, 0.2);
    animation: gentleFloat 6s ease-in-out infinite;
}

@keyframes gentleFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.card-glow-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.25) 0%, transparent 70%);
    filter: blur(40px);
    z-index: 1;
}

.hero-card-inner {
    position: relative;
    z-index: 2;
    background: #0B0E14;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.brand-hero-emblem {
    background: radial-gradient(circle at center, #1E2638 0%, #0B0E14 80%);
    padding: 30px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-3d-img {
    max-width: 85%;
    max-height: 280px;
    object-fit: contain;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.7));
}

.hero-pillars-bar {
    background: rgba(14, 18, 26, 0.95);
    border-top: 1px solid var(--gold-border);
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 16px 12px;
}

.pillar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--gold-light);
}

.pillar-item i {
    color: var(--gold-primary);
    font-size: 0.9rem;
}

.pillar-divider {
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, 0.1);
}

/* Floating Rate Cards */
.floating-rate-card {
    position: absolute;
    bottom: -25px;
    right: -25px;
    background: rgba(18, 24, 36, 0.92);
    border: 1px solid var(--gold-border);
    border-radius: 16px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    backdrop-filter: blur(14px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
    z-index: 10;
    animation: floatBob 4s ease-in-out infinite alternate;
}

.floating-rate-card.float-left {
    top: -20px;
    left: -25px;
    bottom: auto;
    right: auto;
    animation: floatBob 4.5s ease-in-out infinite alternate-reverse;
}

.float-icon {
    width: 36px;
    height: 36px;
    background: rgba(212, 175, 55, 0.2);
    color: var(--gold-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.float-icon.silver {
    background: rgba(148, 163, 184, 0.2);
    color: var(--silver-accent);
}

.float-info {
    display: flex;
    flex-direction: column;
}

.float-title {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--text-muted);
}

.float-val {
    font-family: var(--font-title);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-primary);
}

.float-trend {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
}

.trend-up {
    color: var(--green-up);
    background: var(--green-up-bg);
}

@keyframes floatBob {
    0% { transform: translateY(0); }
    100% { transform: translateY(-8px); }
}

/* ==========================================================================
   SECTIONS HEADINGS
   ========================================================================== */
.section-head {
    margin-bottom: 40px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--gold-primary);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.25;
    margin-bottom: 12px;
}

.section-sub {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 680px;
    line-height: 1.6;
}

.text-center .section-sub {
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   LIVE MARKETS SECTION
   ========================================================================== */
.markets-section {
    padding: 90px 0;
    position: relative;
    background: linear-gradient(180deg, rgba(14, 18, 26, 0.6) 0%, rgba(7, 9, 13, 0.9) 100%);
    border-top: 1px solid var(--border-subtle);
}

.market-nav-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 16px;
}

.market-tabs {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    background: rgba(14, 18, 26, 0.8);
    padding: 6px;
    border-radius: 12px;
    border: 1px solid var(--border-subtle);
}

.tab-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 7px;
    transition: var(--transition-fast);
}

.tab-btn:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.04);
}

.tab-btn.active {
    background: var(--gold-gradient);
    color: #07090D;
    font-weight: 700;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.market-refresh-indicator {
    display: flex;
    align-items: center;
    gap: 12px;
}

.auto-update-text {
    font-size: 0.8rem;
    color: var(--green-up);
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
}

.btn-refresh {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-refresh:hover {
    border-color: var(--gold-border);
    color: var(--gold-primary);
}

/* Price Cards Grid */
.price-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.price-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 20px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(12px);
    box-shadow: var(--card-shadow);
}

.price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: transparent;
    transition: var(--transition-fast);
}

.price-card:hover {
    border-color: var(--gold-border);
    transform: translateY(-4px);
    box-shadow: var(--card-shadow-gold);
}

.price-card:hover::before {
    background: var(--gold-gradient);
}

.card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 16px;
}

.asset-title-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.asset-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(212, 175, 55, 0.12);
    color: var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.asset-icon.silver {
    background: rgba(148, 163, 184, 0.12);
    color: var(--silver-accent);
}

.asset-icon.forex {
    background: rgba(59, 130, 246, 0.12);
    color: #60A5FA;
}

.asset-meta h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
}

.asset-code {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.card-change-badge {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.card-rates-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    background: rgba(0, 0, 0, 0.25);
    padding: 12px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    margin-bottom: 14px;
}

.rate-subcol {
    display: flex;
    flex-direction: column;
}

.rate-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.rate-val {
    font-family: var(--font-title);
    font-size: 1.18rem;
    font-weight: 800;
    color: var(--text-primary);
    transition: color 0.4s ease;
}

.card-footer-stats {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-muted);
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.card-actions-row {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.btn-card-calc, .btn-card-chart {
    flex: 1;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    padding: 7px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: var(--transition-fast);
}

.btn-card-calc:hover, .btn-card-chart:hover {
    border-color: var(--gold-border);
    color: var(--gold-light);
    background: rgba(212, 175, 55, 0.1);
}

/* Flash Animations on Rate Updates */
.rate-val.flash-up {
    color: var(--green-up) !important;
    animation: rateFlashUp 1.2s ease-out;
}

.rate-val.flash-down {
    color: var(--red-down) !important;
    animation: rateFlashDown 1.2s ease-out;
}

@keyframes rateFlashUp {
    0% { background-color: rgba(16, 185, 129, 0.35); border-radius: 4px; }
    100% { background-color: transparent; }
}

@keyframes rateFlashDown {
    0% { background-color: rgba(239, 68, 68, 0.35); border-radius: 4px; }
    100% { background-color: transparent; }
}

/* Detailed Market Table */
.table-container-wrap {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 24px;
    backdrop-filter: blur(12px);
    box-shadow: var(--card-shadow);
    margin-bottom: 20px;
}

.table-header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 16px;
}

.table-header-bar h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-box {
    position: relative;
    min-width: 240px;
}

.search-box i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 0.85rem;
}

.search-box input {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    padding: 8px 12px 8px 34px;
    font-size: 0.85rem;
    color: var(--text-primary);
    outline: none;
    transition: var(--transition-fast);
}

.search-box input:focus {
    border-color: var(--gold-primary);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.responsive-table-scroll {
    overflow-x: auto;
}

.market-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    text-align: left;
}

.market-table th {
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.02);
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-bottom: 1px solid var(--border-subtle);
}

.market-table td {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    vertical-align: middle;
}

.market-table tbody tr {
    transition: var(--transition-fast);
}

.market-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

.instrument-cell {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--text-primary);
}

.rate-cell {
    font-family: var(--font-title);
    font-weight: 700;
    color: var(--text-primary);
}

.spread-pill {
    font-size: 0.75rem;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.04);
    padding: 2px 8px;
    border-radius: 4px;
}

.btn-table-action {
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid var(--gold-border);
    color: var(--gold-light);
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-table-action:hover {
    background: var(--gold-gradient);
    color: #07090D;
}

.market-disclaimer {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
}

/* ==========================================================================
   CALCULATOR SECTION
   ========================================================================== */
.calculator-section {
    padding: 90px 0;
    position: relative;
    background: #0B0E15;
    border-top: 1px solid var(--border-subtle);
}

.calc-layout-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 50px;
    align-items: center;
}

.calc-features-list {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.calc-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.feat-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--gold-border);
    color: var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.feat-txt h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 3px;
}

.feat-txt p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Calculator Box */
.calculator-card {
    background: var(--bg-card);
    border: 1px solid var(--gold-border);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(16px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(212, 175, 55, 0.1);
}

.calc-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-subtle);
}

.calc-card-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.live-pill {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--green-up);
    background: var(--green-up-bg);
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 3px 10px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Toggle buy/sell buttons */
.form-group-toggle {
    margin-bottom: 20px;
}

.group-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.toggle-btn-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.toggle-btn {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition-fast);
}

.toggle-btn.active {
    background: rgba(212, 175, 55, 0.18);
    border-color: var(--gold-primary);
    color: #FFF;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.25);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    background: rgba(6, 8, 12, 0.7);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 0.95rem;
    color: var(--text-primary);
    outline: none;
    transition: var(--transition-fast);
}

.form-control:focus {
    border-color: var(--gold-primary);
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.25);
}

select.form-control {
    cursor: pointer;
}

select.form-control option, optgroup {
    background: #0E121A;
    color: #FFF;
}

/* Stepper Input */
.input-with-stepper {
    display: flex;
    align-items: center;
    gap: 6px;
}

.stepper-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-fast);
    flex-shrink: 0;
}

.stepper-btn:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--gold-primary);
    color: #FFF;
}

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

/* Presets */
.calc-presets {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}

.preset-title {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
}

.preset-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.preset-btn:hover, .preset-btn.active {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--gold-primary);
    color: var(--gold-light);
}

/* Result Box */
.calc-result-box {
    background: radial-gradient(circle at 50% 0%, rgba(30, 42, 65, 0.5) 0%, rgba(10, 14, 22, 0.9) 100%);
    border: 1px solid var(--gold-border);
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 20px;
}

.res-row-sub {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.res-row-sub strong {
    color: var(--gold-light);
    font-family: var(--font-title);
}

.res-row-total {
    text-align: center;
    margin-bottom: 16px;
}

.total-label {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--gold-primary);
}

.total-value {
    font-family: var(--font-title);
    font-size: 2.3rem;
    font-weight: 800;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
    margin-top: 4px;
}

.res-row-foreign {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.foreign-item {
    display: flex;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.3);
    padding: 8px 12px;
    border-radius: 8px;
}

.foreign-item span {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.foreign-item strong {
    font-family: var(--font-title);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-secondary);
}

.calc-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-whatsapp-order {
    background: #25D366;
    color: #000;
    font-weight: 800;
    font-size: 0.95rem;
    padding: 14px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition-fast);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-order:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.btn-order-quote {
    background: rgba(212, 175, 55, 0.12);
    color: var(--gold-light);
    border: 1px solid var(--gold-border);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 12px;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition-fast);
}

.btn-order-quote:hover {
    background: var(--gold-gradient);
    color: #07090D;
}

/* ==========================================================================
   PRODUCTS & SERVICES SECTION
   ========================================================================== */
.products-section {
    padding: 90px 0;
    position: relative;
    background: var(--bg-main);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 28px;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(12px);
    transition: var(--transition-smooth);
    box-shadow: var(--card-shadow);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
    opacity: 0;
    transition: var(--transition-fast);
}

.product-card:hover {
    border-color: var(--gold-border);
    transform: translateY(-6px);
    box-shadow: var(--card-shadow-gold);
}

.product-card:hover::before {
    opacity: 1;
}

.product-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid var(--gold-border);
    color: var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.product-icon-wrap.silver {
    background: rgba(148, 163, 184, 0.12);
    border-color: rgba(148, 163, 184, 0.3);
    color: var(--silver-accent);
}

.product-icon-wrap.platinum {
    background: rgba(96, 165, 250, 0.12);
    border-color: rgba(96, 165, 250, 0.3);
    color: var(--platinum-accent);
}

.product-badge {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--gold-primary);
    margin-bottom: 8px;
}

.product-card h3 {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.product-card p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.product-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.product-features li {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-features li i {
    color: var(--gold-primary);
    font-size: 0.75rem;
}

.product-btn {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.88rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition-fast);
}

.product-btn:hover {
    background: var(--gold-gradient);
    color: #07090D;
    border-color: transparent;
}

/* ==========================================================================
   SHOWCASE SECTION
   ========================================================================== */
.showcase-section {
    padding: 80px 0;
    background: #0B0E14;
    border-top: 1px solid var(--border-subtle);
}

.showcase-gallery {
    display: grid;
    grid-template-columns: 1fr 1.3fr 1fr;
    gap: 24px;
    align-items: center;
}

.showcase-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
    transition: var(--transition-smooth);
}

.showcase-card.highlight {
    border-color: var(--gold-border);
    box-shadow: 0 20px 45px rgba(212, 175, 55, 0.15);
}

.showcase-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.showcase-card.highlight img {
    height: 320px;
}

.showcase-card:hover img {
    transform: scale(1.05);
}

.showcase-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 24px 20px 16px;
    background: linear-gradient(0deg, rgba(7, 9, 13, 0.95) 0%, transparent 100%);
    display: flex;
    flex-direction: column;
}

.showcase-overlay h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--gold-light);
    margin-bottom: 2px;
}

.showcase-overlay p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ==========================================================================
   ABOUT & WHY ZENIT SECTION
   ========================================================================== */
.about-section {
    padding: 90px 0;
    background: var(--bg-main);
    border-top: 1px solid var(--border-subtle);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
}

.about-lead {
    font-size: 1.12rem;
    color: var(--text-primary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.about-p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.val-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid var(--gold-border);
    color: var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.value-item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.value-item p {
    font-size: 0.84rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Cert & Side Card */
.cert-card {
    background: var(--bg-card);
    border: 1px solid var(--gold-border);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--card-shadow);
    backdrop-filter: blur(14px);
}

.cert-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-subtle);
}

.cert-header h3 {
    font-size: 1.18rem;
    font-weight: 700;
}

.cert-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 28px;
}

.cert-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.cert-list li i {
    color: var(--green-up);
    font-size: 1.1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.cert-list strong {
    display: block;
    font-size: 0.92rem;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.cert-list span {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.trade-box {
    background: rgba(0, 0, 0, 0.4);
    border: 1px dashed var(--gold-border);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.trade-box h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 6px;
}

.trade-box p {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.btn-trade-call {
    background: var(--gold-gradient);
    color: #07090D;
    font-weight: 800;
    font-size: 0.88rem;
    padding: 12px 20px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.faq-section {
    padding: 90px 0;
    background: #0B0E15;
    border-top: 1px solid var(--border-subtle);
}

.faq-accordion {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-fast);
}

.faq-card.active {
    border-color: var(--gold-border);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 20px 24px;
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.faq-question i {
    color: var(--gold-primary);
    transition: transform 0.3s ease;
}

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

.faq-answer {
    padding: 0 24px 20px;
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.7;
    display: none;
}

.faq-card.active .faq-answer {
    display: block;
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-section {
    padding: 90px 0;
    background: var(--bg-main);
    border-top: 1px solid var(--border-subtle);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 50px;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
    margin-bottom: 28px;
}

.contact-card-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    padding: 16px 20px;
    border-radius: 12px;
}

.c-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(212, 175, 55, 0.12);
    color: var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.c-text h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.c-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.c-text a:hover {
    color: var(--gold-light);
}

.working-hours-card {
    background: rgba(14, 18, 26, 0.8);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 20px;
}

.working-hours-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hour-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.82rem;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.hour-row:last-child {
    border-bottom: none;
}

.hour-row span {
    color: var(--text-muted);
}

.closed-badge {
    color: var(--red-down);
    font-weight: 700;
}

/* Contact Form Card */
.form-container-card {
    background: var(--bg-card);
    border: 1px solid var(--gold-border);
    border-radius: 20px;
    padding: 34px;
    backdrop-filter: blur(16px);
    box-shadow: var(--card-shadow);
}

.form-card-head {
    margin-bottom: 24px;
}

.form-card-head h3 {
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 4px;
}

.form-card-head p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.form-row.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.req {
    color: var(--gold-primary);
}

.form-check-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.form-check-group input {
    margin-top: 3px;
    accent-color: var(--gold-primary);
}

.form-check-group a {
    color: var(--gold-light);
    text-decoration: underline;
}

.btn-submit-form {
    width: 100%;
    background: var(--gold-gradient);
    color: #07090D;
    font-weight: 800;
    font-size: 1rem;
    padding: 15px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    transition: var(--transition-fast);
}

.btn-submit-form:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.6);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.main-footer {
    background: #040609;
    border-top: 1px solid var(--border-subtle);
    padding: 70px 0 30px;
}

.footer-top-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo-row img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.f-brand-name {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 2px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
}

.f-brand-sub {
    font-size: 0.65rem;
    letter-spacing: 1.5px;
    color: var(--text-muted);
}

.footer-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-badges span {
    font-size: 0.72rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-subtle);
    padding: 3px 8px;
    border-radius: 4px;
    color: var(--gold-light);
    display: flex;
    align-items: center;
    gap: 5px;
}

.footer-links-col h4, .footer-contact-col h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 18px;
}

.footer-links-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links-col a {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-links-col a:hover {
    color: var(--gold-light);
    transform: translateX(4px);
}

.footer-contact-col p {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.footer-contact-col i {
    color: var(--gold-primary);
    width: 16px;
}

.footer-bottom-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.8rem;
    color: var(--text-muted);
    flex-wrap: wrap;
    gap: 16px;
}

.footer-developer {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.yws-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 4px 12px;
    border-radius: 20px;
    color: var(--gold-light);
    font-weight: 700;
    letter-spacing: 0.3px;
    transition: var(--transition-fast);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.yws-badge i {
    color: var(--gold-primary);
    font-size: 0.75rem;
}

.yws-badge:hover {
    background: var(--gold-gradient);
    color: #07090D;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.yws-badge:hover i {
    color: #07090D;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-legal-links a:hover {
    color: var(--gold-light);
}

/* ==========================================================================
   FLOATING ACTIONS (WhatsApp, Call, Top)
   ========================================================================== */
.floating-actions-bar {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1050;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.float-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    transition: var(--transition-fast);
    position: relative;
    border: none;
}

.float-wa {
    background: #25D366;
    color: #FFFFFF;
}

.float-phone {
    background: var(--gold-gradient);
    color: #07090D;
}

.float-top {
    background: rgba(18, 24, 36, 0.9);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
}

.float-top.show {
    opacity: 1;
    visibility: visible;
}

.float-btn:hover {
    transform: scale(1.1);
}

.float-tooltip {
    position: absolute;
    right: 60px;
    background: #0E121A;
    border: 1px solid var(--gold-border);
    color: #FFF;
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
    padding: 4px 10px;
    border-radius: 6px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
    pointer-events: none;
}

.float-btn:hover .float-tooltip {
    opacity: 1;
    visibility: visible;
    right: 65px;
}

/* ==========================================================================
   MODAL DIALOGS
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(4, 6, 9, 0.8);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-card {
    background: #0F131D;
    border: 1px solid var(--gold-border);
    border-radius: 20px;
    width: 100%;
    max-width: 520px;
    padding: 32px;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 35px rgba(212, 175, 55, 0.2);
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.modal-overlay.active .modal-card {
    transform: translateY(0);
}

.modal-card.chart-modal-card {
    max-width: 780px;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.06);
    border: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition-fast);
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #FFF;
}

.modal-head {
    margin-bottom: 24px;
}

.modal-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.modal-head h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.modal-head p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.mt-3 {
    margin-top: 16px;
}

/* Chart Modal Styles */
.chart-modal-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.chart-current-rates {
    display: flex;
    gap: 12px;
}

.m-rate-box {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-subtle);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
}

.m-rate-box strong {
    font-family: var(--font-title);
    font-size: 0.95rem;
    color: var(--gold-light);
    margin-left: 4px;
}

.chart-canvas-wrap {
    height: 320px;
    margin-bottom: 24px;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 12px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.chart-modal-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.legal-modal-body {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-height: 320px;
    overflow-y: auto;
    padding-right: 8px;
}

.legal-modal-body p {
    margin-bottom: 12px;
}

/* ==========================================================================
   TOAST NOTIFICATIONS
   ========================================================================== */
.toast-container {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.toast-msg {
    background: #0F141F;
    border: 1px solid var(--gold-border);
    color: #FFF;
    padding: 14px 20px;
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    animation: toastSlideIn 0.3s ease forwards;
    pointer-events: auto;
}

.toast-msg.success i {
    color: var(--green-up);
}

.toast-msg.info i {
    color: var(--gold-primary);
}

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

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1080px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-visual-col {
        max-width: 600px;
        margin: 0 auto;
    }

    .calc-layout-grid, .about-grid, .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-top-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .showcase-gallery {
        grid-template-columns: 1fr;
    }

    .showcase-card img, .showcase-card.highlight img {
        height: 220px;
    }
}

@media (max-width: 820px) {
    .nav-menu {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-stats-row {
        grid-template-columns: 1fr 1fr;
    }

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

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

    .form-row.two-col {
        grid-template-columns: 1fr;
    }

    .ticker-controls {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.1rem;
    }

    .hero-btn-group {
        flex-direction: column;
        width: 100%;
    }

    .hero-btn-group a, .hero-btn-group button {
        width: 100%;
        justify-content: center;
    }

    .floating-rate-card {
        display: none;
    }

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