/*
Theme Name: LokerPenida Ultra Premium
Theme URI: https://lokerpenida.com
Description: Ultra Premium Theme - Font: Satoshi, Clash Display, General Sans
Version: 4.0
*/

/* Import Premium Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,100;14..32,200;14..32,300;14..32,400;14..32,500;14..32,600;14..32,700;14..32,800;14..32,900&display=swap');
@import url('https://fonts.cdnfonts.com/css/satoshi');
@import url('https://fonts.cdnfonts.com/css/clash-display');
@import url('https://fonts.cdnfonts.com/css/general-sans');

:root {
    --primary: #D4AF37;
    --primary-light: #F3E5AB;
    --primary-dark: #997A00;
    --secondary: #1E3A8A;
    --accent: #EC4899;
    --bg-dark: #0A0A0F;
    --bg-card: #0F0F1A;
    --text: #FFFFFF;
    --text-dim: #A1A1AA;
    --border: rgba(212,175,55,0.15);
    --gradient-gold: linear-gradient(135deg, #D4AF37, #F3E5AB, #D4AF37);
    --gradient-blue: linear-gradient(135deg, #1E3A8A, #3B82F6);
    --gradient-pink: linear-gradient(135deg, #EC4899, #F43F5E);
    --shadow-sm: 0 4px 20px rgba(0,0,0,0.3);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.4);
    --shadow-gold: 0 0 30px rgba(212,175,55,0.3);
}

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

body {
    font-family: 'Satoshi', 'Inter', sans-serif;
    background: var(--bg-dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Premium Gradient Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(212,175,55,0.08), transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(30,58,138,0.08), transparent 50%);
    pointer-events: none;
    z-index: -2;
}

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

/* ========== HEADER PREMIUM ========== */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10,10,15,0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s;
}

.site-header.scrolled {
    padding: 12px 0;
    background: rgba(10,10,15,0.95);
}

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

/* Logo Premium */
.logo h1 {
    font-family: 'Clash Display', sans-serif;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.logo h1 a {
    text-decoration: none;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.logo p {
    font-family: 'General Sans', sans-serif;
    font-size: 10px;
    letter-spacing: 3px;
    color: var(--primary-light);
    opacity: 0.8;
}

/* Navigation Premium */
.main-nav ul {
    list-style: none;
    display: flex;
    gap: 8px;
}

.main-nav a {
    font-family: 'General Sans', sans-serif;
    color: var(--text-dim);
    text-decoration: none;
    padding: 8px 24px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: 0.3s;
    transform: translateX(-50%);
}

.main-nav a:hover::after,
.main-nav .current-menu-item a::after {
    width: 70%;
}

.main-nav a:hover {
    color: white;
}

.main-nav .current-menu-item a {
    color: var(--primary);
}

/* Mobile Toggle */
.menu-toggle {
    display: none;
    background: var(--gradient-gold);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    color: #0A0A0F;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
}

/* ========== HERO PREMIUM ========== */
.hero {
    padding: 160px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-badge {
    display: inline-block;
    font-family: 'General Sans', sans-serif;
    background: rgba(212,175,55,0.1);
    border: 1px solid var(--border);
    padding: 8px 24px;
    border-radius: 60px;
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 30px;
    animation: fadeUp 0.6s ease;
}

.hero h1 {
    font-family: 'Clash Display', sans-serif;
    font-size: 72px;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 24px;
    animation: fadeUp 0.6s ease 0.1s backwards;
}

.hero .highlight {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero p {
    font-family: 'General Sans', sans-serif;
    font-size: 18px;
    color: var(--text-dim);
    max-width: 560px;
    margin: 0 auto 32px;
    animation: fadeUp 0.6s ease 0.2s backwards;
}

/* Search Box Premium */
.search-box {
    display: flex;
    max-width: 560px;
    margin: 0 auto;
    background: rgba(15,15,26,0.8);
    backdrop-filter: blur(12px);
    border-radius: 60px;
    padding: 6px;
    border: 1px solid var(--border);
    transition: all 0.3s;
    animation: fadeUp 0.6s ease 0.3s backwards;
}

.search-box:focus-within {
    border-color: var(--primary);
    box-shadow: var(--shadow-gold);
}

.search-box input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 16px 24px;
    color: white;
    font-family: 'Satoshi', sans-serif;
    font-size: 14px;
    outline: none;
}

.search-box button {
    background: var(--gradient-gold);
    border: none;
    padding: 12px 36px;
    border-radius: 60px;
    color: #0A0A0F;
    font-family: 'General Sans', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.search-box button:hover {
    transform: scale(1.02);
}

/* ========== STATS PREMIUM ========== */
.stats {
    padding: 60px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

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

.stat-card {
    background: rgba(15,15,26,0.6);
    backdrop-filter: blur(10px);
    padding: 32px;
    text-align: center;
    border-radius: 24px;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.stat-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: var(--shadow-gold);
}

.stat-number {
    font-family: 'Clash Display', sans-serif;
    font-size: 44px;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.stat-label {
    font-family: 'General Sans', sans-serif;
    font-size: 13px;
    color: var(--text-dim);
    margin-top: 8px;
    letter-spacing: 1px;
}

/* ========== CATEGORIES ========== */
.categories {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-sub {
    font-family: 'General Sans', sans-serif;
    color: var(--primary);
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-family: 'Clash Display', sans-serif;
    font-size: 48px;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.category-card {
    background: rgba(15,15,26,0.6);
    backdrop-filter: blur(10px);
    padding: 32px 24px;
    text-align: center;
    border-radius: 24px;
    text-decoration: none;
    color: white;
    border: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.category-card:hover {
    transform: translateY(-12px);
    border-color: var(--primary);
    box-shadow: var(--shadow-gold);
}

.category-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.category-card h3 {
    font-family: 'Satoshi', sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.category-card .count {
    font-family: 'General Sans', sans-serif;
    font-size: 12px;
    color: var(--primary-light);
}

/* ========== JOBS PREMIUM ========== */
.jobs {
    padding: 100px 0;
    background: rgba(212,175,55,0.02);
}

.job-card {
    background: rgba(15,15,26,0.6);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 28px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    border: 1px solid var(--border);
    transition: all 0.4s ease;
}

.job-card:hover {
    transform: translateX(12px);
    border-left: 4px solid var(--primary);
    box-shadow: var(--shadow-lg);
}

.job-title {
    font-family: 'Satoshi', sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.job-title a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.job-title a:hover {
    color: var(--primary);
}

.job-meta {
    display: flex;
    gap: 24px;
    font-family: 'General Sans', sans-serif;
    font-size: 12px;
    color: var(--text-dim);
}

.job-tags {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

.tag {
    background: rgba(212,175,55,0.1);
    border: 1px solid var(--border);
    padding: 4px 14px;
    border-radius: 30px;
    font-family: 'General Sans', sans-serif;
    font-size: 11px;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 10px 28px;
    border-radius: 40px;
    text-decoration: none;
    font-family: 'General Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: var(--gradient-gold);
    color: #0A0A0F;
    border-color: transparent;
}

.btn-primary {
    background: var(--gradient-gold);
    padding: 14px 40px;
    border-radius: 40px;
    text-decoration: none;
    color: #0A0A0F;
    font-family: 'General Sans', sans-serif;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
}

.btn-primary:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-gold);
}

/* ========== CTA PREMIUM ========== */
.cta {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(212,175,55,0.05), rgba(30,58,138,0.05));
}

.cta h2 {
    font-family: 'Clash Display', sans-serif;
    font-size: 48px;
    margin-bottom: 20px;
}

.cta p {
    font-family: 'General Sans', sans-serif;
    color: var(--text-dim);
    margin-bottom: 32px;
}

/* ========== FOOTER ========== */
.site-footer {
    background: #060608;
    padding: 60px 0 30px;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 50px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-family: 'Clash Display', sans-serif;
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

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

.footer-col a {
    font-family: 'General Sans', sans-serif;
    color: var(--text-dim);
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s;
}

.footer-col a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.social {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.social a {
    width: 40px;
    height: 40px;
    background: rgba(212,175,55,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s;
}

.social a:hover {
    background: var(--gradient-gold);
    color: #0A0A0F;
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border);
    font-family: 'General Sans', sans-serif;
    font-size: 12px;
    color: var(--text-dim);
}

/* ========== ANIMATIONS ========== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up {
    animation: fadeUp 0.6s ease forwards;
}

/* Stagger animations */
.job-card:nth-child(1) { animation-delay: 0.05s; }
.job-card:nth-child(2) { animation-delay: 0.1s; }
.job-card:nth-child(3) { animation-delay: 0.15s; }
.job-card:nth-child(4) { animation-delay: 0.2s; }

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .main-nav ul {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(10,10,15,0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 20px;
        gap: 12px;
        border-bottom: 1px solid var(--border);
    }
    
    .main-nav ul.show {
        display: flex;
    }
    
    .main-nav a {
        text-align: center;
        padding: 12px;
    }
    
    .hero h1 {
        font-size: 40px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .stat-card {
        padding: 20px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .job-card {
        flex-direction: column;
        text-align: center;
    }
    
    .job-meta {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .job-tags {
        justify-content: center;
    }
    
    .search-box {
        flex-direction: column;
        background: transparent;
        padding: 0;
        gap: 12px;
    }
    
    .search-box input {
        background: rgba(15,15,26,0.8);
        border-radius: 60px;
    }
    
    .search-box button {
        width: 100%;
    }
    
    .cta h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .category-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================ */
/* PREMIUM FOOTER WITH SVG - NO EMOJI          */
/* ============================================ */

.premium-footer {
    background: linear-gradient(180deg, #0A0A0F 0%, #050508 100%);
    position: relative;
    margin-top: 80px;
}

/* Footer Wave */
.footer-wave {
    position: absolute;
    top: -60px;
    left: 0;
    right: 0;
    pointer-events: none;
}

.footer-wave svg {
    width: 100%;
    height: auto;
}

/* Footer Main */
.footer-main {
    padding: 60px 0 40px;
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

/* Brand Column */
.footer-logo h3 {
    font-family: 'Clash Display', sans-serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.footer-logo h3 span {
    color: var(--primary);
}

.footer-logo p {
    font-size: 10px;
    letter-spacing: 3px;
    color: var(--primary-light);
    margin-bottom: 20px;
}

.footer-desc {
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-dim);
    margin-bottom: 20px;
    max-width: 280px;
}

.footer-certification {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cert-badge {
    background: rgba(212,175,55,0.1);
    border: 1px solid rgba(212,175,55,0.2);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 10px;
    color: var(--primary);
}

/* Footer Titles */
.footer-col h4 {
    font-family: 'Clash Display', sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gradient-gold);
}

/* Footer Links */
.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

/* Contact List */
.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 13px;
    color: var(--text-dim);
}

.footer-contact svg {
    color: var(--primary);
    flex-shrink: 0;
}

.footer-contact span {
    line-height: 1.4;
}

/* Newsletter */
.footer-newsletter {
    margin-top: 25px;
}

.footer-newsletter h4 {
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-newsletter p {
    font-size: 12px;
    color: var(--text-dim);
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    gap: 8px;
    background: rgba(255,255,255,0.05);
    border-radius: 60px;
    padding: 4px;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.newsletter-form:focus-within {
    border-color: var(--primary);
    box-shadow: var(--shadow-gold);
}

.newsletter-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 16px;
    color: white;
    font-size: 13px;
    outline: none;
}

.newsletter-form button {
    background: var(--gradient-gold);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.newsletter-form button:hover {
    transform: scale(1.05);
}

.newsletter-form button svg {
    color: #0A0A0F;
}

/* Social Media Bar */
.footer-social-bar {
    background: rgba(212,175,55,0.03);
    padding: 20px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.social-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-svg {
    width: 40px;
    height: 40px;
    background: rgba(212,175,55,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    color: var(--text-dim);
}

.social-svg:hover {
    background: var(--gradient-gold);
    color: #0A0A0F;
    transform: translateY(-3px);
}

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

.badge {
    font-size: 11px;
    color: var(--primary);
    letter-spacing: 1px;
}

/* Footer Bottom */
.footer-bottom {
    padding: 25px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.copyright p {
    font-size: 12px;
    color: var(--text-dim);
}

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

.legal-links a {
    font-size: 12px;
    color: var(--text-dim);
    text-decoration: none;
    transition: color 0.3s;
}

.legal-links a:hover {
    color: var(--primary);
}

.separator {
    color: var(--border);
}

.back-to-top-btn {
    width: 44px;
    height: 44px;
    background: rgba(212,175,55,0.1);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    opacity: 0;
    visibility: hidden;
}

.back-to-top-btn:hover {
    background: var(--gradient-gold);
    color: #0A0A0F;
    transform: translateY(-3px);
}

.back-to-top-btn svg {
    color: var(--primary);
}

.back-to-top-btn:hover svg {
    color: #0A0A0F;
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .brand-col {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .brand-col {
        grid-column: span 1;
    }
    
    .social-bar-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .legal-links {
        justify-content: center;
    }
    
    .footer-wave {
        top: -40px;
    }
}

/* Animation for footer columns */
.footer-col {
    animation: fadeUp 0.6s ease forwards;
    animation-delay: calc(var(--order, 0) * 0.1s);
}

.footer-col:nth-child(1) { --order: 1; }
.footer-col:nth-child(2) { --order: 2; }
.footer-col:nth-child(3) { --order: 3; }
.footer-col:nth-child(4) { --order: 4; }
.footer-col:nth-child(5) { --order: 5; }

/* ============================================ */
/* FOOTER ULTRA PREMIUM - NEXT LEVEL           */
/* ============================================ */

.ultra-footer {
    background: linear-gradient(180deg, #0A0A0F 0%, #020205 100%);
    position: relative;
    margin-top: 80px;
    overflow: hidden;
}

/* Glowing Border */
.footer-glow-border {
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--primary-dark), transparent);
    animation: borderGlow 3s linear infinite;
}

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

/* Floating Particles */
.footer-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.3;
    animation: floatParticle 15s infinite linear;
}

.particle:nth-child(1) { top: 10%; left: 20%; animation-duration: 20s; }
.particle:nth-child(2) { top: 30%; left: 80%; animation-duration: 25s; width: 6px; height: 6px; }
.particle:nth-child(3) { top: 60%; left: 15%; animation-duration: 18s; }
.particle:nth-child(4) { top: 80%; left: 70%; animation-duration: 22s; width: 5px; height: 5px; }
.particle:nth-child(5) { top: 40%; left: 45%; animation-duration: 30s; }

@keyframes floatParticle {
    0% { transform: translateY(0) rotate(0deg); opacity: 0; }
    50% { opacity: 0.5; }
    100% { transform: translateY(-500px) rotate(360deg); opacity: 0; }
}

/* Footer Main */
.footer-main {
    padding: 70px 0 50px;
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 45px;
    margin-bottom: 40px;
}

/* 3D Logo */
.footer-logo-3d {
    position: relative;
    margin-bottom: 20px;
}

.logo-inner {
    position: relative;
    display: inline-block;
}

.footer-logo-3d h3 {
    font-family: 'Clash Display', sans-serif;
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(135deg, white, var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.logo-shine {
    position: absolute;
    top: -20px;
    left: -20px;
    width: calc(100% + 40px);
    height: calc(100% + 40px);
    background: radial-gradient(circle, rgba(212,175,55,0.2), transparent);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

.footer-logo-3d:hover .logo-shine {
    opacity: 1;
    animation: shine 1s;
}

@keyframes shine {
    0% { transform: scale(0.5); opacity: 0; }
    100% { transform: scale(1.5); opacity: 0.3; }
}

.footer-logo-3d p {
    font-size: 10px;
    letter-spacing: 3px;
    color: var(--primary-light);
    margin-top: 8px;
}

/* Footer Stats */
.footer-stats {
    display: flex;
    gap: 20px;
    margin-top: 25px;
}

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

.stat-num {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Clash Display', sans-serif;
}

.stat-text {
    font-size: 10px;
    color: var(--text-dim);
}

/* Footer Title */
.footer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.title-icon {
    margin-right: 8px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gradient-gold);
    transition: width 0.3s;
}

.footer-col:hover .footer-title::after {
    width: 60px;
}

/* Footer Links Enhanced */
.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s;
}

.footer-col.animated .footer-links li {
    opacity: 1;
    transform: translateX(0);
}

.footer-links li:nth-child(1) { transition-delay: 0.05s; }
.footer-links li:nth-child(2) { transition-delay: 0.1s; }
.footer-links li:nth-child(3) { transition-delay: 0.15s; }
.footer-links li:nth-child(4) { transition-delay: 0.2s; }
.footer-links li:nth-child(5) { transition-delay: 0.25s; }
.footer-links li:nth-child(6) { transition-delay: 0.3s; }

.footer-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(8px);
}

/* Contact Items Enhanced */
.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s;
}

.footer-col.animated .footer-contact li {
    opacity: 1;
    transform: translateX(0);
}

.footer-contact li:nth-child(1) { transition-delay: 0.05s; }
.footer-contact li:nth-child(2) { transition-delay: 0.1s; }
.footer-contact li:nth-child(3) { transition-delay: 0.15s; }
.footer-contact li:nth-child(4) { transition-delay: 0.2s; }

.contact-icon {
    width: 32px;
    height: 32px;
    background: rgba(212,175,55,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s;
}

.footer-contact li:hover .contact-icon {
    background: var(--primary);
    transform: scale(1.1);
}

.contact-text {
    font-size: 13px;
    color: var(--text-dim);
}

/* Enhanced Newsletter */
.footer-newsletter-enhanced {
    margin-top: 25px;
}

.footer-newsletter-enhanced h4 {
    font-size: 14px;
    margin-bottom: 8px;
}

.footer-newsletter-enhanced p {
    font-size: 11px;
    color: var(--text-dim);
    margin-bottom: 15px;
}

.newsletter-form-enhanced {
    width: 100%;
}

.input-group {
    display: flex;
    background: rgba(255,255,255,0.05);
    border-radius: 50px;
    padding: 4px;
    border: 1px solid rgba(212,175,55,0.2);
    transition: all 0.3s;
}

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

.input-group input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 16px;
    color: white;
    font-size: 12px;
    outline: none;
}

.input-group button {
    background: var(--gradient-gold);
    border: none;
    padding: 8px 20px;
    border-radius: 50px;
    color: #0A0A0F;
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.input-group button:hover {
    transform: scale(1.02);
    gap: 12px;
}

/* Social Bar Enhanced */
.footer-social-enhanced {
    background: rgba(212,175,55,0.03);
    padding: 25px 0;
    border-top: 1px solid rgba(212,175,55,0.1);
    border-bottom: 1px solid rgba(212,175,55,0.1);
}

.social-enhanced-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.social-text span {
    font-size: 13px;
    color: var(--text-dim);
    letter-spacing: 1px;
}

.social-icons-enhanced {
    display: flex;
    gap: 12px;
}

.social-icon-enhanced {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255,255,255,0.03);
    border-radius: 40px;
    text-decoration: none;
    color: var(--text-dim);
    font-size: 13px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.social-icon-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-gold);
    transition: left 0.3s;
    z-index: 0;
}

.social-icon-enhanced:hover::before {
    left: 0;
}

.social-icon-enhanced span,
.social-icon-enhanced svg {
    position: relative;
    z-index: 1;
}

.social-icon-enhanced:hover {
    color: #0A0A0F;
}

/* Copyright Enhanced */
.footer-copyright-enhanced {
    padding: 25px 0;
}

.copyright-enhanced-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright-text p {
    font-size: 12px;
    color: var(--text-dim);
}

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

.legal-links-enhanced a {
    font-size: 12px;
    color: var(--text-dim);
    text-decoration: none;
    transition: color 0.3s;
}

.legal-links-enhanced a:hover {
    color: var(--primary);
}

.dot {
    color: var(--primary);
    font-size: 8px;
}

.btt-button {
    background: rgba(212,175,55,0.1);
    border: 1px solid rgba(212,175,55,0.2);
    padding: 10px 20px;
    border-radius: 40px;
    color: var(--primary);
    font-size: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    opacity: 0.5;
}

.btt-button.visible {
    opacity: 1;
}

.btt-button:hover {
    background: var(--gradient-gold);
    color: #0A0A0F;
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
    
    .brand-col {
        grid-column: span 2;
    }
    
    .social-enhanced-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .copyright-enhanced-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .legal-links-enhanced {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .brand-col {
        grid-column: span 1;
    }
    
    .footer-stats {
        justify-content: center;
    }
    
    .social-icons-enhanced {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .social-icon-enhanced span {
        display: none;
    }
    
    .social-icon-enhanced {
        padding: 10px;
    }
}

/* Animation for footer columns */
.footer-col {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.footer-col.animated {
    opacity: 1;
    transform: translateY(0);
}

.footer-col:nth-child(1) { transition-delay: 0.05s; }
.footer-col:nth-child(2) { transition-delay: 0.1s; }
.footer-col:nth-child(3) { transition-delay: 0.15s; }
.footer-col:nth-child(4) { transition-delay: 0.2s; }
.footer-col:nth-child(5) { transition-delay: 0.25s; }

/* ============================================ */
/* FOOTER PREMIUM - SVG VECTORS ONLY           */
/* ============================================ */

.premium-footer-svg {
    background: linear-gradient(180deg, #0A0A0F 0%, #020205 100%);
    position: relative;
    margin-top: 80px;
}

/* Glowing Border */
.footer-glow-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--primary-dark), transparent);
    animation: borderGlowSVG 3s ease-in-out infinite;
}

@keyframes borderGlowSVG {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* Footer Main */
.footer-main {
    padding: 60px 0 40px;
}

.footer-grid-svg {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

/* Logo */
.footer-logo h3 {
    font-family: 'Clash Display', sans-serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.footer-logo h3 span {
    color: var(--primary);
}

.footer-logo p {
    font-size: 10px;
    letter-spacing: 3px;
    color: var(--primary-light);
    margin-bottom: 20px;
}

.footer-desc {
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-dim);
    margin-bottom: 20px;
    max-width: 280px;
}

/* Stats SVG */
.footer-stats-svg {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.stat-item-svg {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(212,175,55,0.08);
    padding: 8px 14px;
    border-radius: 40px;
    border: 1px solid rgba(212,175,55,0.15);
}

.stat-item-svg svg {
    color: var(--primary);
    width: 18px;
    height: 18px;
}

.stat-item-svg span {
    font-size: 11px;
    font-weight: 500;
    color: var(--text-dim);
}

/* Footer Title */
.footer-title-svg {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    position: relative;
    display: inline-block;
}

.footer-title-svg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gradient-gold);
    transition: width 0.3s;
}

.footer-col:hover .footer-title-svg::after {
    width: 60px;
}

/* Links SVG */
.footer-links-svg {
    list-style: none;
}

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

.footer-links-svg a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s;
    display: inline-block;
}

.footer-links-svg a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

/* Contact SVG */
.footer-contact-svg {
    list-style: none;
}

.footer-contact-svg li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 13px;
    color: var(--text-dim);
}

.footer-contact-svg svg {
    color: var(--primary);
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

.footer-contact-svg span {
    line-height: 1.4;
}

/* Newsletter SVG */
.footer-newsletter-svg {
    margin-top: 20px;
}

.footer-newsletter-svg h4 {
    font-size: 13px;
    margin-bottom: 5px;
}

.footer-newsletter-svg p {
    font-size: 11px;
    color: var(--text-dim);
    margin-bottom: 12px;
}

.input-group-svg {
    display: flex;
    background: rgba(255,255,255,0.05);
    border-radius: 50px;
    padding: 4px;
    border: 1px solid rgba(212,175,55,0.2);
    transition: all 0.3s;
}

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

.input-group-svg input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 10px 14px;
    color: white;
    font-size: 12px;
    outline: none;
}

.input-group-svg button {
    background: var(--gradient-gold);
    border: none;
    padding: 8px 18px;
    border-radius: 50px;
    color: #0A0A0F;
    font-weight: 600;
    font-size: 11px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s;
}

.input-group-svg button:hover {
    gap: 10px;
}

/* Social Bar SVG */
.footer-social-svg {
    background: rgba(212,175,55,0.03);
    padding: 20px 0;
    border-top: 1px solid rgba(212,175,55,0.1);
    border-bottom: 1px solid rgba(212,175,55,0.1);
}

.social-svg-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.social-text-svg {
    font-size: 12px;
    color: var(--text-dim);
    letter-spacing: 1px;
}

.social-icons-svg {
    display: flex;
    gap: 12px;
}

.social-icon-svg {
    width: 36px;
    height: 36px;
    background: rgba(212,175,55,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-icon-svg svg {
    width: 18px;
    height: 18px;
    color: var(--text-dim);
}

.social-icon-svg:hover {
    background: var(--gradient-gold);
    transform: translateY(-3px);
}

.social-icon-svg:hover svg {
    color: #0A0A0F;
}

/* Copyright SVG */
.footer-copyright-svg {
    padding: 20px 0;
}

.copyright-svg-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.copyright-text-svg p {
    font-size: 11px;
    color: var(--text-dim);
}

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

.legal-links-svg a {
    font-size: 11px;
    color: var(--text-dim);
    text-decoration: none;
    transition: color 0.3s;
}

.legal-links-svg a:hover {
    color: var(--primary);
}

.separator-svg {
    color: var(--primary);
    font-size: 10px;
}

.btt-button-svg {
    background: rgba(212,175,55,0.1);
    border: 1px solid rgba(212,175,55,0.2);
    padding: 8px 16px;
    border-radius: 40px;
    color: var(--primary);
    font-size: 11px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s;
    opacity: 0.5;
}

.btt-button-svg.visible {
    opacity: 1;
}

.btt-button-svg:hover {
    background: var(--gradient-gold);
    color: #0A0A0F;
    transform: translateY(-2px);
}

.btt-button-svg svg {
    width: 14px;
    height: 14px;
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-grid-svg {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .brand-col {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .footer-grid-svg {
        grid-template-columns: 1fr;
    }
    
    .brand-col {
        grid-column: span 1;
    }
    
    .footer-stats-svg {
        justify-content: center;
    }
    
    .social-svg-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .copyright-svg-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .legal-links-svg {
        justify-content: center;
    }
}

/* Animation */
.footer-col {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.footer-col.animated {
    opacity: 1;
    transform: translateY(0);
}

.footer-col:nth-child(1) { transition-delay: 0.05s; }
.footer-col:nth-child(2) { transition-delay: 0.1s; }
.footer-col:nth-child(3) { transition-delay: 0.15s; }
.footer-col:nth-child(4) { transition-delay: 0.2s; }
.footer-col:nth-child(5) { transition-delay: 0.25s; }

/* Form Page Additional Styles */
.premium-form-container {
    min-height: calc(100vh - 200px);
}

.premium-form-container input,
.premium-form-container select,
.premium-form-container textarea {
    font-family: inherit;
}

.premium-form-container input::placeholder,
.premium-form-container textarea::placeholder {
    color: rgba(255,255,255,0.3);
}

/* Loading Animation */
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.btn-next:disabled,
.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
