/* --- ACTUAL LIGHT CONCEPT: PREMIUM DESIGN SYSTEM (2026) --- */

:root {
    /* --- PALETTE --- */
    --premium-black: #050505;
    --premium-dark: #0a0a0a;
    --premium-gray: #1a1a1a;

    /* Gold Gradients */
    --gold-primary: #FFD700;
    --gold-light: #FFE55C;
    --gold-dark: #B8860B;
    --gold-gradient: linear-gradient(135deg, #FFD700 0%, #D4AF37 50%, #B8860B 100%);
    --gold-text-gradient: linear-gradient(to right, #FFD700, #FFF8DC, #FFD700);

    /* Glass Effects */
    --glass-bg: rgba(20, 20, 20, 0.6);
    --glass-border: rgba(255, 215, 0, 0.15);
    --glass-shine: rgba(255, 255, 255, 0.05);

    /* Shadows & Glows */
    --glow-gold: 0 0 20px rgba(255, 215, 0, 0.3);
    --glow-text: 0 0 10px rgba(255, 215, 0, 0.2);
    --shadow-depth: 0 20px 50px rgba(0, 0, 0, 0.8);
}

/* --- GLOBAL RESET & TYPOGRAPHY --- */
body {
    background-color: var(--premium-black);
    color: #e0e0e0;
    font-family: 'Outfit', sans-serif;
    /* Ensuring consistency */
    overflow-x: hidden;
    /* Prevent horizontal scroll from effects */
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection Color */
::selection {
    background: var(--gold-primary);
    color: #000;
}

/* SCROLL MARGIN OFFSETS FOR FIXED HEADER */
#concept,
#contact,
section[id] {
    scroll-margin-top: 120px;
}

/* --- UTILITY CLASSES --- */

/* 1. Glassmorphism Container */
.premium-glass {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

/* 2. Text Gradient */
.text-gold-gradient {
    background: var(--gold-text-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: shine 2.5s linear infinite;
    font-weight: 700;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

/* 3. Hover Lift Effect */
.hover-lift {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-depth), var(--glow-gold);
}

/* 4. Cinematic Hero Reveal */
.cinematic-reveal {
    opacity: 0;
    transform: translateY(30px);
    animation: revealUp 1s ease-out forwards;
}

@keyframes revealUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- COMPONENT OVERRIDES --- */

/* Modern Button */
.btn-premium {
    background: transparent;
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
    padding: 15px 40px;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 1;
}

.btn-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--gold-primary);
    transition: width 0.4s ease;
    z-index: -1;
}

.btn-premium:hover {
    color: var(--gold-primary);
    box-shadow: var(--glow-gold);
    text-decoration: none !important;
    background: transparent !important;
}

.btn-premium:active,
.btn-premium:focus {
    background: transparent !important;
    color: var(--gold-primary) !important;
}

/* MOBILE OPTIMIZATION */
@media (max-width: 768px) {

    /* Header: Scale down but keep brand */
    .nav-container {
        padding: 10px 15px !important;
    }

    .logo-symbol {
        width: 30px !important;
        height: auto !important;
    }

    .brand-name {
        font-size: 0.9rem !important;
        /* Smaller brand name */
    }

    .brand-sub {
        font-size: 0.5rem !important;
    }

    /* Configurator Title Scaling */
    .concept-title {
        font-size: 2.2rem !important;
        /* Much smaller than 4rem */
        line-height: 1.1 !important;
    }

    /* Dock Compact Mode */
    .cinematic-dock {
        padding: 10px 15px !important;
        gap: 5px !important;
        width: 95%;
        /* Fit screen */
        justify-content: space-between;
    }

    .dock-btn {
        padding: 8px 10px !important;
        font-size: 0.8rem !important;
    }

    .dock-label {
        font-size: 0.7rem !important;
        /* Optionally hide label if still too tight: display: none; */
    }

    .dock-action-btn {
        padding: 8px 15px !important;
        font-size: 0.8rem !important;
    }

    /* Move WhatsApp up */
    #whatsapp-button-container {
        bottom: 90px !important;
    }

    /* Fix Huge Button on Mobile */
    .btn-premium {
        padding: 6px 12px !important;
        font-size: 0.7rem !important;
        letter-spacing: 0.5px !important;
        border-width: 1px !important;
        white-space: nowrap;
    }

    /* Fix Hero Title Size */
    .hero-title {
        font-size: 2.5rem !important;
        line-height: 1.1 !important;
        margin-bottom: 20px !important;
    }

    .hero-subtitle {
        font-size: 0.9rem !important;
        padding: 0 20px;
    }

    /* Fix Hero Title Line on Mobile */
    .hero-title::after {
        display: none !important;
        /* Hide old pseudo */
    }

    /* Video Performance Fix: Disable Fixed Background on Mobile */
    .studio-teaser .fixed-bg {
        position: absolute !important;
        /* Force absolute instead of fixed */
        height: 100% !important;
        transform: translateZ(0);
        /* Hardware accel */
    }

    .studio-teaser {
        box-shadow: none !important;
        /* Remove heavy shadow */
    }
}

/* Navigation Blur Bar */
.nav-blur {
    background: rgba(5, 5, 5, 0.8) !important;
    backdrop-filter: blur(20px) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

/* --- NEW: MODERN TECH BORDER GLOW --- */
.tech-border-glow {
    position: relative;
    /* Remove default borders if any */
    border: none !important;
}

.tech-border-glow::before,
.tech-border-glow::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    /* Slightly thicker */
    /* Modern Gradient: Transparent -> Gold -> Transparent */
    background: linear-gradient(90deg,
            rgba(255, 215, 0, 0) 0%,
            rgba(255, 215, 0, 0) 25%,
            rgba(255, 215, 0, 1) 50%,
            rgba(255, 215, 0, 0) 75%,
            rgba(255, 215, 0, 0) 100%);
    background-size: 200% 100%;
    /* Neon Glow Effect */
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.8), 0 0 30px rgba(255, 215, 0, 0.4);
    z-index: 20;
    pointer-events: none;
    animation: scan-line 3s linear infinite;
}

.tech-border-glow::before {
    top: 0;
}

.tech-border-glow::after {
    bottom: 0;
    animation-delay: 1.5s;
    /* Offset for symmetry */
    animation-direction: reverse;
    /* Opposite direction */
}

@keyframes scan-line {
    0% {
        background-position: 100% 0;
    }

    100% {
        background-position: -100% 0;
    }
}

/* --- BUTTON FIX: Square & Glitch --- */
.btn-premium {
    /* Enforce square shape */
    border-radius: 0 !important;
    overflow: hidden;
    /* Clips the background */
}

/* --- GLOBAL LASER EFFECTS (Cards Only) --- */

/* 1. Grid Cards (Top & Bottom Laser) */
.premium-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: #e0e0e0;
    /* Reset link color */
}

.premium-card .card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.premium-card .card-cta {
    margin-top: auto !important;
}

.premium-card::before,
.premium-card::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg,
            rgba(255, 215, 0, 0) 0%,
            rgba(255, 215, 0, 0) 25%,
            rgba(255, 215, 0, 1) 50%,
            rgba(255, 215, 0, 0) 75%,
            rgba(255, 215, 0, 0) 100%);
    background-size: 200% 100%;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    z-index: 5;
    pointer-events: none;
    animation: scan-line 4s linear infinite;
}

.premium-card::before {
    top: 0;
}

.premium-card::after {
    bottom: 0;
    animation-delay: 2s;
    animation-direction: reverse;
}

/* --- FOOTER PULSE (Fast Gold Shine) --- */
.footer-pulse {
    /* Gold Gradient: Dark Gold -> Bright Gold -> Dark Gold */
    background: linear-gradient(90deg, #B8860B 0%, #FFD700 50%, #B8860B 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: footer-shine 2s linear infinite;
    display: inline-block;
}

@keyframes footer-shine {
    to {
        background-position: 200% center;
    }
}

/* --- FULL WIDTH PREMIUM CONTACT SECTION --- */
#contact-full {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 120px 0;
    margin-top: 100px;
    background: #050505;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

#contact-full::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.03) 0%, transparent 70%);
    z-index: 0;
}

#contact-full .contact-wrapper {
    position: relative;
    z-index: 10;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    gap: 80px;
}

#contact-full .contact-info {
    flex: 1;
    min-width: 300px;
    padding-top: 20px;
}

#contact-full .contact-info h2 {
    font-size: 3.5rem;
    font-weight: 200;
    color: #fff;
    margin-bottom: 25px;
    line-height: 1.1;
    letter-spacing: -1px;
}

#contact-full .contact-info p {
    color: #888;
    margin-bottom: 50px;
    font-size: 1.1rem;
    font-weight: 300;
    max-width: 500px;
    line-height: 1.6;
}

#contact-full .contact-details-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    /* Align to top for multi-line text */
    gap: 20px;
}

.contact-detail-item i {
    font-size: 1.5rem;
    color: var(--gold-primary);
    width: 40px;
    text-align: center;
    margin-top: 4px;
    /* Optical alignment with text cap-height */
}

.contact-detail-item div {
    display: flex;
    flex-direction: column;
}

.contact-detail-item strong {
    color: #fff;
    font-weight: 400;
    font-size: 1.1rem;
}

.contact-detail-item span {
    color: #666;
    font-size: 0.9rem;
}

#contact-full .contact-form-container {
    flex: 1;
    min-width: 400px;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    padding: 60px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

#contact-full .form-group input,
#contact-full .form-group select,
#contact-full .form-group textarea {
    background: rgba(255, 255, 255, 0.08);
    /* Increased visibility from 0.03 */
    border: 1px solid rgba(255, 255, 255, 0.2);
    /* Increased visibility from 0.1 */
    color: #fff;
    border-radius: 0;
    padding: 20px;
    width: 100%;
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    transition: 0.3s all;
}

#contact-full .form-group input:focus,
#contact-full .form-group select:focus,
#contact-full .form-group textarea:focus {
    border-color: var(--gold-primary);
    background: rgba(255, 255, 255, 0.05);
    outline: none;
}

@media (max-width: 992px) {
    #contact-full .contact-wrapper {
        flex-direction: column;
        padding: 0 20px;
        gap: 50px;
    }

    #contact-full .contact-info h2 {
        font-size: 2.5rem;
    }

    #contact-full .contact-form-container {
        width: 100%;
        padding: 30px;
        min-width: auto;
    }
}

/* Laser Line Animation */
.laser-line-container {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.laser-line {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), #D4AF37, rgba(212, 175, 55, 0.1), transparent);
    animation: laserSweep 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    filter: drop-shadow(0 0 5px #D4AF37);
}

@keyframes laserSweep {
    0% {
        left: -100%;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        left: 200%;
        opacity: 0;
    }
}

/* --- CINEMATIC STUDIO STYLES (Ultra Premium) --- */

.cinematic-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #000;
    z-index: 10;
}

/* Background Layer */
.cinematic-bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Desktop: Full Screen Cover (User Request: "Tam ekran olsun") */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-color: #000;
    transition: background-image 0.8s ease-in-out;
}

/* Mobile Override (Keep existing behavior as requested) */
@media (max-width: 768px) {
    .cinematic-bg-layer {
        background-size: contain !important;
        background-position: center center !important;
        height: 100vh !important;
    }
}

/* Dark Overlay for Text Readability */
.cinematic-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.8) 100%);
    pointer-events: none;
}

/* UI Container */
.cinematic-ui {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    /* Let clicks pass through to BG if needed */
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 50px;
}

/* Center Info Text */
.cinematic-info {
    text-align: center;
    margin-bottom: 40px;
    pointer-events: auto;
}

.concept-tag {
    font-size: 0.8rem;
    letter-spacing: 5px;
    color: var(--gold-primary);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.concept-title {
    font-size: 4rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 200;
    color: #fff;
    margin: 0;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    letter-spacing: -2px;
}

.concept-desc {
    font-size: 1rem;
    color: #ccc;
    font-weight: 300;
    margin-top: 10px;
}

/* Premium Laser Light Divider */
.laser-divider {
    position: relative;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    margin: 20px 0;
    overflow: hidden;
}

.laser-divider::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.8), #fff, rgba(255, 215, 0, 0.8), transparent);
    animation: laserScan 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

@keyframes laserScan {
    0% {
        left: -100%;
        opacity: 0;
    }

    30% {
        opacity: 1;
    }

    70% {
        opacity: 1;
    }

    100% {
        left: 200%;
        opacity: 0;
    }
}

.premium-title-large {
    font-size: 3.5rem;
    font-weight: 200;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #fff 0%, #e0e0e0 50%, #b88a44 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

@keyframes textShine {
    to {
        background-position: 200% center;
    }
}

.text-shine-gold {
    background: linear-gradient(90deg, #bf953f 0%, #fcf6ba 50%, #bf953f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: textShine 3s linear infinite;
}

/* Force Premium Card Gold Border on Hover */
.premium-card:hover {
    border-color: var(--gold-primary) !important;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.2) !important;
}

.premium-card:hover .card-icon {
    color: #fff !important;
    text-shadow: 0 0 10px var(--gold-primary);
}

.premium-card:hover .card-bg {
    transform: scale(1.05) !important;
}

/* Bottom Dock */
.cinematic-dock-container {
    display: flex;
    justify-content: center;
    pointer-events: auto;
    margin-bottom: 30px;
}

.cinematic-dock {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 30px;
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.dock-btn {
    background: transparent;
    border: none;
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.dock-btn:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.05);
}

.dock-btn.active {
    opacity: 1;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: var(--gold-primary);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.1);
}

.dock-divider {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 10px;
}

.dock-action-btn {
    background: var(--gold-primary);
    color: #000;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-decoration: none !important;
    /* Fix underline issue */
}

.dock-action-btn * {
    text-decoration: none !important;
}

.dock-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

/* --- HOTSPOT INTERACTION STYLES --- */

#hotspot-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 20;
    pointer-events: none;
}

.hotspot-point {
    position: absolute;
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid #fff;
    border-radius: 50%;
    cursor: pointer;
    transform: translate(-50%, -50%);
    pointer-events: auto;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    animation: pulseGlow 2s infinite;
}

.hotspot-point::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    background: var(--gold-primary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.hotspot-point:hover {
    background: rgba(212, 175, 55, 0.4);
    border-color: var(--gold-primary);
    transform: translate(-50%, -50%) scale(1.2);
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

/* Tooltip */
.hotspot-tooltip {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 200px;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 15px;
    border-radius: 8px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    z-index: 100;
}

.hotspot-point:hover .hotspot-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.hotspot-title {
    display: block;
    color: var(--gold-primary);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.hotspot-desc {
    display: block;
    color: #ddd;
    font-size: 0.75rem;
    line-height: 1.4;
    font-weight: 300;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .hotspot-point {
        width: 32px;
        height: 32px;
    }

    .hotspot-tooltip {
        width: 180px;
        padding: 10px;
    }
}

/* --- STABILIZED SERVICE CARDS (No Jitter) --- */
.premium-card .card-content {
    justify-content: flex-end !important;
    transform: none !important;
}

.premium-card .card-icon {
    transform: none !important;
    margin-bottom: 15px !important;
}

.premium-card .solution-list {
    display: block !important;
    opacity: 1 !important;
    max-height: none !important;
    transform: none !important;
    margin-top: 20px !important;
    visibility: visible !important;
}

.premium-card .card-desc {
    opacity: 1 !important;
    transform: none !important;
    max-height: none !important;
}

.premium-card .card-cta {
    opacity: 1 !important;
    transform: none !important;
    margin-top: 25px !important;
}

.premium-card:hover {
    transform: translateY(-5px) !important;
}

.premium-card:hover .card-icon {
    transform: none !important;
    color: #fff !important;
}

.premium-card:hover .card-bg {
    transform: scale(1.05) !important;
}

/* --- PREMIUM NAVIGATION BUTTONS --- */
.nav-btn-premium {
    color: #fff;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 10px 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.03);
    text-transform: uppercase;
    display: inline-block;
}

.nav-btn-premium:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
    background: rgba(255, 215, 0, 0.1);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
    transform: translateY(-2px);
}

.nav-btn-premium.highlight {
    background: var(--gold-primary);
    color: #000;
    border-color: var(--gold-primary);
}

.nav-btn-premium.highlight:hover {
    background: #fff;
    border-color: #fff;
    color: #000;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

/* Mobile Responsive Utility */
/* --- GLOBAL MOBILE MENU --- */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
    /* Above overlay */
}

.desktop-nav {
    display: flex;
}

#mobile-menu {
    position: fixed;
    top: 80px;
    /* Below header */
    left: 0;
    width: 100%;
    height: 0;
    background: rgba(20, 20, 20, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    overflow: hidden;
    transition: height 0.4s ease;
    z-index: 999;
}

#mobile-menu .nav-btn-premium {
    font-size: 1.2rem;
    display: block;
    margin: 10px 0;
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none !important;
    }

    .mobile-menu-btn {
        display: block !important;
    }

    /* Ensure container doesn't stack in new design */
    .nav-container {
        flex-direction: row !important;
        justify-content: space-between !important;
    }
}