/* Design System & Custom Properties */
:root {
    --bg-primary: #0A0D14;
    --bg-secondary: #111520;
    --bg-glass: rgba(17, 21, 32, 0.7);
    --border-glass: rgba(212, 175, 55, 0.15);
    --text-primary: #FFFFFF;
    --text-secondary: #94A3B8;
    --color-gold: #FFD700;
    --color-gold-hover: #D4AF37;
    --gradient-gold: linear-gradient(135deg, #FFD700 0%, #B8860B 100%);
    --gradient-text: linear-gradient(90deg, #FFFFFF 0%, #FFD700 100%);
    --shadow-gold: 0 8px 32px 0 rgba(212, 175, 55, 0.15);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* Utilities */
.section-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px;
}

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

.gold-text {
    color: var(--color-gold);
}

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

/* Decorative Background Blobs */
.bg-blob {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.15;
    z-index: -1;
    pointer-events: none;
}

.blob-1 {
    top: 10%;
    left: -100px;
    background-color: var(--color-gold);
}

.blob-2 {
    top: 40%;
    right: -100px;
    background-color: #3b82f6;
    width: 500px;
    height: 500px;
}

.blob-3 {
    bottom: 10%;
    left: 20%;
    background-color: var(--color-gold);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-gold);
    color: #000000;
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px 0 rgba(212, 175, 55, 0.3);
}

/* Navigation Header */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-glass);
    transition: var(--transition-smooth);
}

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

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-primary);
}

.nav-logo {
    width: 42px;
    height: 42px;
    object-fit: contain;
    border-radius: 50%;
    border: 1px solid var(--border-glass);
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.3));
}

.logo-text {
    font-size: 22px;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: var(--transition-smooth);
    font-size: 15px;
}

.nav-menu a:hover {
    color: var(--color-gold);
}

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

/* Language Dropdown Container */
.lang-dropdown {
    position: relative;
    display: inline-block;
}

.lang-dropbtn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    color: var(--text-primary);
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
}

.lang-dropbtn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-gold);
}

.lang-dropbtn .drop-arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.lang-dropdown.open .lang-dropbtn .drop-arrow {
    transform: rotate(180deg);
}

/* Dropdown Menu List */
.lang-dropdown-content {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #0d121f;
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    min-width: 145px;
    max-height: 280px;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 1001;
    padding: 6px 0;
}

/* Custom Scrollbar for Dropdown Content */
.lang-dropdown-content::-webkit-scrollbar {
    width: 6px;
}
.lang-dropdown-content::-webkit-scrollbar-track {
    background: transparent;
}
.lang-dropdown-content::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}
.lang-dropdown-content::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 215, 0, 0.3);
}

.lang-dropdown-content.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

/* Language Selection Options */
.lang-opt {
    width: 100%;
    background: none;
    border: none;
    color: var(--text-secondary);
    padding: 8px 16px;
    text-align: left;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-smooth);
}

.lang-opt:hover {
    background: rgba(255, 215, 0, 0.1);
    color: var(--color-gold);
}

.lang-opt.active {
    color: var(--color-gold);
    font-weight: 700;
    background: rgba(255, 215, 0, 0.05);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 24px;
    cursor: pointer;
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 75px;
    left: 0;
    width: 100%;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-glass);
    padding: 24px;
    display: none;
    flex-direction: column;
    gap: 18px;
    z-index: 999;
}

.mobile-link {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Hero Section */
.hero-section {
    padding-top: 140px;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--color-gold);
}

.hero-content h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-desc {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 540px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.store-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #000000;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    color: #FFFFFF;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.store-btn:hover {
    transform: translateY(-3px);
    border-color: var(--color-gold);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
}

.store-icon {
    font-size: 26px;
}

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

.store-sub {
    font-size: 11px;
    color: var(--text-secondary);
}

.store-main {
    font-size: 15px;
    font-weight: 700;
}

/* Phone Mockup Frame */
.hero-visual {
    display: flex;
    justify-content: center;
    position: relative;
}

.phone-wrapper {
    position: relative;
    width: 280px;
    height: 560px;
    perspective: 1000px;
}

.phone-frame {
    width: 100%;
    height: 100%;
    background: #000;
    border: 12px solid #1e293b;
    border-radius: 40px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7), var(--shadow-gold);
    overflow: hidden;
    position: relative;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

/* Simulated App UI */
.app-ui {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.app-header {
    background: var(--bg-secondary);
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--border-glass);
}

.app-logo {
    width: 24px;
    height: 24px;
}

.app-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 1px;
    color: var(--color-gold);
}

.app-content-mock {
    flex: 1;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow-y: auto;
}

.mock-card {
    background: var(--bg-secondary);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.mock-img {
    height: 100px;
    background-size: cover;
    background-position: center;
}

.mock-details {
    padding: 8px 12px;
}

.mock-details h4 {
    font-size: 13px;
    margin-bottom: 2px;
}

.mock-details p {
    font-size: 11px;
    color: var(--text-secondary);
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-glass);
    padding: 12px 18px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: float 6s ease-in-out infinite;
    z-index: 10;
}

.float-1 {
    top: 20%;
    left: -70px;
    animation-delay: 0s;
}

.float-2 {
    bottom: 20%;
    right: -70px;
    animation-delay: 3s;
}

.float-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-card h5 {
    font-size: 12px;
}

.floating-card p {
    font-size: 10px;
    color: var(--text-secondary);
}

/* Spin Animations */
.spin-slow {
    animation: spin 15s linear infinite;
}

/* Keyframes */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Features Grid */
.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.feature-card {
    position: relative;
    height: 380px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border-glass);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: var(--transition-smooth);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 13, 20, 0.2) 0%, rgba(10, 13, 20, 0.95) 85%);
    transition: var(--transition-smooth);
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 32px;
    z-index: 2;
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    color: #000;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-gold);
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-secondary);
    opacity: 0;
    transition: var(--transition-smooth);
}

/* Hover effects on Feature Cards */
.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-gold);
    box-shadow: var(--shadow-gold);
}

.feature-card:hover .card-bg {
    transform: scale(1.1);
}

.feature-card:hover .card-content {
    transform: translateY(0);
}

.feature-card:hover p {
    opacity: 1;
}

/* Discover Showroom Section */
.discover-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.discover-visual {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid var(--border-glass);
}

.discover-img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-smooth);
}

.discover-visual:hover .discover-img {
    transform: scale(1.03);
}

.glass-caption {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-glass);
    padding: 16px 24px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

.discover-content h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 24px;
}

.discover-content p {
    color: var(--text-secondary);
    font-size: 17px;
    margin-bottom: 32px;
}

.benefit-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.benefit-list li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.benefit-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--color-gold);
    flex-shrink: 0;
}

.benefit-list h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.benefit-list p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}

/* App Gallery Section / Slider */
.gallery-slider-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    position: relative;
    padding: 40px 0;
}

.gallery-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 20px;
    scrollbar-width: none; /* Hide scrollbar Firefox */
}

.gallery-slider::-webkit-scrollbar {
    display: none; /* Hide scrollbar Chrome/Safari */
}

.slide-item {
    flex: 0 0 240px;
    scroll-snap-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    transition: var(--transition-smooth);
    opacity: 0.5;
    transform: scale(0.9);
}

.slide-item.active {
    opacity: 1;
    transform: scale(1.05);
}

.gallery-phone {
    width: 240px;
    height: 480px;
    background: #000;
    border: 8px solid #1e293b;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    transition: var(--transition-smooth);
}

.slide-item.active .gallery-phone {
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6), var(--shadow-gold);
    border-color: var(--color-gold);
}

.phone-inner {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.slide-item span {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: var(--text-secondary);
    transition: var(--transition-smooth);
}

.slide-item.active span {
    color: var(--color-gold);
}

.slider-arrow {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    color: var(--text-primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    transition: var(--transition-smooth);
    z-index: 10;
}

.slider-arrow:hover {
    background: var(--gradient-gold);
    color: #000;
    box-shadow: var(--shadow-gold);
}

/* Footer styling */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-glass);
    padding-top: 80px;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
}

.footer-brand p {
    color: var(--text-secondary);
    margin-top: 16px;
    max-width: 320px;
}

.footer-logo {
    width: 36px;
    height: 36px;
    object-fit: contain;
    border-radius: 50%;
    border: 1px solid var(--border-glass);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links h4, .footer-contact h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--color-gold);
}

.footer-links a {
    text-decoration: none;
    color: var(--text-secondary);
    transition: var(--transition-smooth);
}

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

.footer-contact p {
    color: var(--text-secondary);
    margin-bottom: 16px;
}

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

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 16px;
    transition: var(--transition-smooth);
}

.social-icons a:hover {
    background: var(--gradient-gold);
    color: #000;
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 0;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 14px;
    color: var(--text-secondary);
    padding: 0 24px;
}

.pulse {
    animation: heartbeat 1.5s infinite;
}

.red-text {
    color: #ef4444;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Animations for scrolling */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-on-scroll.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Grid / Media queries */
@media (max-width: 992px) {
    .hero-container, .discover-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }
    
    .hero-desc {
        margin: 0 auto 32px;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-visual {
        order: -1;
    }
}

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

    .lang-dropbtn {
        padding: 6px 10px;
    }
    
    .lang-dropbtn .current-lang-label {
        display: none;
    }
    
    .nav-actions {
        margin-right: 12px;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 38px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom-flex {
        flex-direction: column;
        text-align: center;
    }
}

/* Simulated Phone UI Map & Bottom Nav Styles */
.map-mode {
    position: relative;
    background: #0d121f !important;
    display: flex;
    flex-direction: column;
    height: calc(100% - 57px - 50px) !important; /* height minus header and footer */
    padding: 0 !important;
}

.mock-search-bar {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    background: rgba(17, 21, 32, 0.95);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 6px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: var(--text-secondary);
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.mock-map-canvas {
    position: relative;
    flex: 1;
    background-image: url('assets/map_satellite.jpg');
    background-size: cover;
    background-position: center;
    width: 100%;
    overflow: hidden;
}

.route-line-glowing {
    position: absolute;
    top: 40%;
    left: 15%;
    width: 70%;
    height: 60px;
    border-radius: 50%;
    border-top: 3px dashed var(--color-gold);
    transform: rotate(-15deg);
    filter: drop-shadow(0 0 5px var(--color-gold));
}

.route-point {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.route-point .pulse-ring {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-gold);
    border-radius: 50%;
    animation: ring-pulse 2s infinite ease-out;
}

.route-point i {
    font-size: 14px;
    filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.8));
}

.point-1 { top: 30%; left: 20%; }
.point-2 { top: 45%; left: 50%; }
.point-3 { top: 32%; left: 75%; }

@keyframes ring-pulse {
    0% { transform: scale(0.5); opacity: 1; }
    100% { transform: scale(1.8); opacity: 0; }
}

.mock-route-card {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    background: var(--bg-glass);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.mock-route-details h4 {
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 1px;
}

.mock-route-details p {
    font-size: 9px;
    color: var(--text-secondary);
}

.gold-badge {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    background: rgba(255, 215, 0, 0.15);
    color: var(--color-gold);
    font-size: 7px;
    font-weight: 700;
    padding: 1px 4px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.mock-route-action i {
    font-size: 24px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.mock-route-action i:hover {
    transform: scale(1.1);
}

/* Simulated Bottom Navigation */
.app-bottom-nav {
    height: 50px;
    background: #0f1320;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0 4px;
    z-index: 12;
}

.app-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 8px;
    cursor: pointer;
    flex: 1;
    gap: 3px;
}

.app-nav-item i {
    font-size: 13px;
}

.app-nav-item span {
    font-size: 7px;
    font-weight: 500;
}

.app-nav-item.active-create {
    color: var(--color-gold);
}

.create-btn-circle {
    width: 24px;
    height: 24px;
    background: var(--gradient-gold);
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
    margin-top: -12px;
}

.create-btn-circle i {
    font-size: 10px;
}

/* Category lists sliding styles */
.feature-brief {
    font-size: 13px;
    color: var(--color-gold);
    margin-bottom: 8px;
    opacity: 0.9;
}

.cat-sub-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 6px 8px;
    margin-top: 8px;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.cat-sub-list li {
    font-size: 11px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 3px 10px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.cat-sub-list li i {
    font-size: 9px;
    color: var(--color-gold);
}

/* Expand sub-category list on hover */
.feature-card:hover .cat-sub-list {
    opacity: 1;
    max-height: 250px;
    margin-top: 12px;
}

.feature-card:hover .card-content {
    transform: translateY(0);
    bottom: 16px;
}


