/* ============================================================================
   TERRA RIDE — Clean Luxury Promotional Landing Page Stylesheet
   ============================================================================ */

:root {
    --terra-black: #06080C;
    --terra-dark: #0D111A;
    --terra-card: #131824;
    --terra-card-hover: #1A2132;
    --terra-border: #222B3D;
    --terra-gold: #C9932A;
    --terra-gold-light: #FFD54F;
    --terra-gold-glow: rgba(201, 147, 42, 0.25);
    --terra-green: #00E676;
    --terra-white: #FFFFFF;
    --terra-text-sec: #9EA8BA;
    --terra-font-heading: 'Alexandria', 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    --terra-font-body: 'Readex Pro', 'Alexandria', system-ui, -apple-system, sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: var(--terra-font-body);
    -webkit-tap-highlight-color: transparent;
}

h1, h2, h3, h4, h5, h6, .brand-logo-text, .section-title, .hero-heading {
    font-family: var(--terra-font-heading);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    background-color: var(--terra-black);
    color: var(--terra-white);
    line-height: 1.6;
    direction: rtl;
    overflow-x: hidden;
    position: relative;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(201, 147, 42, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(0, 230, 118, 0.04) 0%, transparent 40%);
}

/* Background Particles Canvas */
#bg-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
}

main, header, footer {
    position: relative;
    z-index: 1;
}

/* Keyframe Animations & Glow Effects (Optimized for 60FPS Performance) */
@keyframes float {
    0%, 100% { transform: translateY(0px) translateZ(0); }
    50% { transform: translateY(-5px) translateZ(0); }
}

.animate-float {
    will-change: transform;
    animation: float 4s ease-in-out infinite;
}

.pulse-glow {
    box-shadow: 0 4px 20px rgba(201, 147, 42, 0.4);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pulse-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(201, 147, 42, 0.6);
}

.pulse-badge {
    box-shadow: 0 4px 18px rgba(201, 147, 42, 0.35);
}

.shimmer-btn {
    background: linear-gradient(135deg, #FFD54F 0%, #C9932A 100%) !important;
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s ease;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--terra-black);
}
::-webkit-scrollbar-thumb {
    background: var(--terra-border);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--terra-gold);
}

/* Header Navigation Bar */
.uber-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(6, 8, 12, 0.90);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--terra-border);
    z-index: 1000;
    padding: 12px 20px;
    transition: background-color 0.3s ease;
}

.header-container {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.gold {
    color: var(--terra-gold);
    background: linear-gradient(135deg, #FFD54F, #C9932A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-logo-text {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -0.5px;
    color: var(--terra-white);
}

.brand-logo-text .gold {
    color: var(--terra-gold);
    background: linear-gradient(135deg, #FFD54F, #C9932A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.nav-item {
    color: var(--terra-text-sec);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: color 0.2s ease;
    padding: 6px 0;
}

.nav-item:hover {
    color: var(--terra-white);
}

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

.btn-uber-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    line-height: normal;
    white-space: nowrap;
}

.btn-uber-pill.gold {
    background: linear-gradient(135deg, #FFD54F 0%, #C9932A 100%) !important;
    color: #000000 !important;
    box-shadow: 0 4px 18px var(--terra-gold-glow);
}

.btn-uber-pill.gold span,
.btn-uber-pill.gold i {
    color: #000000 !important;
    font-weight: 800;
}

.btn-uber-pill.gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(201, 147, 42, 0.45);
}

.btn-uber-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    border-radius: 999px;
    background: transparent;
    color: var(--terra-white);
    border: 1px solid var(--terra-border);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
}

.btn-uber-outline:hover {
    border-color: var(--terra-gold);
    color: var(--terra-gold);
    background: rgba(201, 147, 42, 0.08);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: var(--terra-card);
    border: 1px solid var(--terra-border);
    color: var(--terra-white);
    width: 42px;
    height: 42px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
}

.mobile-drawer {
    display: none;
    position: fixed;
    top: 71px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(6, 8, 12, 0.96);
    backdrop-filter: blur(20px);
    z-index: 999;
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-top: 1px solid var(--terra-border);
}

.mobile-drawer.open {
    display: flex;
}

.mobile-nav-link {
    color: var(--terra-white);
    text-decoration: none;
    font-size: 15px;
    font-weight: 800;
    padding: 14px 18px;
    background: var(--terra-card);
    border: 1px solid var(--terra-border);
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-nav-link.download-link {
    background: linear-gradient(135deg, #FFD54F, #C9932A);
    color: #000000;
    justify-content: center;
    font-size: 16px;
    margin-top: 10px;
}

/* Mobile Bottom Navigation Bar (شريط التنقل السفلي للهواتف) */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 12px;
    left: 14px;
    right: 14px;
    background: rgba(13, 17, 26, 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(201, 147, 42, 0.35);
    border-radius: 22px;
    z-index: 10000;
    padding: 6px 10px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.7);
    align-items: center;
    justify-content: space-around;
    transform: translateZ(0);
    will-change: transform;
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    color: var(--terra-text-sec);
    text-decoration: none;
    font-size: 10px;
    font-weight: 700;
    flex: 1;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 5px 0;
    border-radius: 14px;
    position: relative;
}

.bottom-nav-item i {
    font-size: 17px;
    transition: transform 0.2s ease, color 0.2s ease;
}

.bottom-nav-item:hover, .bottom-nav-item.active {
    color: var(--terra-gold-light);
}

.bottom-nav-item:hover i, .bottom-nav-item.active i {
    transform: translateY(-2px) scale(1.1);
    color: var(--terra-gold);
}

/* Hero Section */
.uber-hero {
    max-width: 1240px;
    margin: 110px auto 40px;
    padding: 0 24px;
}

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

.hero-heading {
    font-size: 46px;
    font-weight: 900;
    line-height: 1.4;
    margin-top: 28px;
    margin-bottom: 20px;
    letter-spacing: normal;
}

.white-highlight {
    color: var(--terra-gold);
    background: linear-gradient(135deg, #FFD54F 0%, #C9932A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtext {
    color: var(--terra-text-sec);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 28px;
    max-width: 620px;
}

/* Unified Download Hero CTA (Sleek & Compact Pill Button) */
.btn-download-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #FFD54F 0%, #C9932A 100%);
    color: #000000;
    padding: 12px 28px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 8px 24px var(--terra-gold-glow);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-download-hero i {
    font-size: 18px;
}

.btn-download-hero:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 12px 32px rgba(201, 147, 42, 0.55);
}

/* Hero Showcase Image Frame */
.hero-img-frame {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid var(--terra-border);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px var(--terra-gold-glow);
}

.hero-luxury-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.hero-img-frame:hover .hero-luxury-img {
    transform: scale(1.03);
}

.hero-img-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
    left: 20px;
}

.overlay-badge {
    background: rgba(13, 17, 26, 0.88);
    backdrop-filter: blur(12px);
    border: 1px solid var(--terra-gold);
    padding: 10px 18px;
    border-radius: 14px;
    color: var(--terra-gold-light);
    font-size: 13px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Stats Ticker Bar */
.hero-stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    background: var(--terra-card);
    border: 1px solid var(--terra-border);
    border-radius: 20px;
    padding: 24px;
    margin-top: 40px;
}

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

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 0;
    top: 15%;
    bottom: 15%;
    width: 1px;
    background: var(--terra-border);
}

.stat-num {
    font-size: 24px;
    font-weight: 900;
    color: var(--terra-gold);
    display: block;
}

.stat-label {
    font-size: 12px;
    color: var(--terra-text-sec);
    font-weight: 700;
    margin-top: 2px;
}

/* Services Cards Section */
.uber-services {
    max-width: 1240px;
    margin: 80px auto;
    padding: 0 24px;
}

.section-title {
    font-size: 34px;
    font-weight: 900;
    margin-bottom: 12px;
    text-align: center;
    letter-spacing: -0.5px;
}

.section-desc {
    color: var(--terra-text-sec);
    text-align: center;
    max-width: 720px;
    margin: 0 auto 40px;
    font-size: 15px;
    line-height: 1.7;
}

.services-3col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.service-card {
    background: var(--terra-card);
    border: 1px solid var(--terra-border);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: var(--terra-gold);
    box-shadow: 0 12px 35px rgba(201, 147, 42, 0.15);
}

.service-card.highlighted {
    border-color: var(--terra-gold);
}

.service-card.highlighted-green {
    border-color: var(--terra-green);
}

.service-card.highlighted-green:hover {
    border-color: var(--terra-green);
    box-shadow: 0 12px 35px rgba(0, 230, 118, 0.15);
}

.card-image-box {
    position: relative;
    height: 190px;
    overflow: hidden;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.badge-guard {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--terra-gold);
    color: #000;
    font-size: 11px;
    font-weight: 900;
    padding: 4px 12px;
    border-radius: 999px;
}

.card-body {
    padding: 24px;
}

.service-icon-pill {
    width: 42px;
    height: 42px;
    background: rgba(201, 147, 42, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--terra-gold);
    font-size: 18px;
    margin-bottom: 14px;
}

.service-icon-pill.green {
    background: rgba(0, 230, 118, 0.15);
    color: var(--terra-green);
}

.badge-guard.green-badge {
    background: var(--terra-green);
    color: #000;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 10px;
}

.service-card p {
    color: var(--terra-text-sec);
    font-size: 14px;
    line-height: 1.6;
}

/* AI Verification Banner Block */
.ai-feature-banner {
    background: var(--terra-card);
    border: 1px solid var(--terra-border);
    border-radius: 28px;
    padding: 40px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
    transform: translateZ(0);
    will-change: transform;
    contain: content;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--terra-gold);
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 12px;
}

.text-right {
    text-align: right !important;
    margin-right: 0 !important;
}

.ai-bullets {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.bullet-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 700;
    color: var(--terra-white);
}

.bullet-item i {
    color: var(--terra-green);
    font-size: 18px;
}

.ai-banner-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 20px;
    border: 1px solid var(--terra-border);
}

/* Coverage Grid */
.coverage-search-box {
    max-width: 500px;
    margin: 0 auto 30px;
    position: relative;
}

.coverage-search-input {
    width: 100%;
    background: var(--terra-card);
    border: 1px solid var(--terra-border);
    border-radius: 999px;
    padding: 14px 22px 14px 50px;
    color: var(--terra-white);
    font-size: 14px;
    font-weight: 700;
    outline: none;
}

.coverage-search-input:focus {
    border-color: var(--terra-gold);
}

.coverage-search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--terra-gold);
    font-size: 16px;
}

.feature-grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 22px;
}

.luxury-card {
    background: var(--terra-card);
    border: 1px solid var(--terra-border);
    border-radius: 20px;
    padding: 28px 24px;
    transition: all 0.3s ease;
}

.luxury-card:hover {
    border-color: var(--terra-gold);
    transform: translateY(-4px);
    background: var(--terra-card-hover);
}

.luxury-card i {
    font-size: 32px;
    color: var(--terra-gold);
    margin-bottom: 16px;
    display: block;
}

.luxury-card h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 8px;
}

.luxury-card p {
    font-size: 13px;
    color: var(--terra-text-sec);
    line-height: 1.6;
}

/* Final Download CTA Banner */
.download-cta-section {
    max-width: 1240px;
    margin: 60px auto 20px;
    padding: 0 24px;
}

.cta-banner-box {
    background: linear-gradient(135deg, #1A2132 0%, #0D111A 100%);
    border: 1px solid var(--terra-gold);
    border-radius: 28px;
    padding: 50px 30px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 20px var(--terra-gold-glow);
}

.cta-banner-box h2 {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 12px;
}

.cta-banner-box p {
    color: var(--terra-text-sec);
    font-size: 16px;
    margin-bottom: 28px;
}

.white-btn {
    background: #FFFFFF !important;
    color: #000000 !important;
}

.white-btn:hover {
    background: #FFD54F !important;
}

/* Footer */
.uber-footer {
    border-top: 1px solid var(--terra-border);
    padding: 60px 24px 30px;
    margin-top: 80px;
    background: #040508;
}

.footer-inner {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.brand-col {
    max-width: 360px;
}

.brand-col h3 {
    font-size: 26px;
    font-weight: 900;
    margin-bottom: 10px;
}

.brand-col p {
    color: var(--terra-text-sec);
    font-size: 14px;
}

.links-col h4 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--terra-gold-light);
}

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

.links-col a {
    color: var(--terra-text-sec);
    text-decoration: none;
    font-size: 14px;
}

.links-col a:hover {
    color: var(--terra-gold);
}

.footer-copy {
    text-align: center;
    border-top: 1px solid var(--terra-border);
    margin-top: 50px;
    padding-top: 24px;
    font-size: 13px;
    color: var(--terra-text-sec);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-subtext {
        margin: 0 auto 28px;
    }

    .ai-feature-banner {
        grid-template-columns: 1fr;
    }

    .hero-stats-bar {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item:nth-child(2)::after {
        display: none;
    }
}

@media (max-width: 768px) {
    body {
        padding-bottom: 80px; /* Space for floating bottom navigation bar */
    }

    .brand-logo-text {
        font-size: 20px;
    }

    .header-actions {
        gap: 8px;
    }

    .btn-uber-pill {
        padding: 8px 16px;
        font-size: 13px;
        flex-shrink: 0;
    }

    .desktop-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-bottom-nav {
        display: flex; /* Show sticky bottom bar on mobile screens */
    }

    .hero-heading {
        font-size: 30px;
        line-height: 1.45;
        letter-spacing: normal;
    }

    .cta-banner-box h2 {
        font-size: 24px;
    }

    .uber-footer {
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .brand-logo-text {
        font-size: 18px;
    }

    .header-actions {
        gap: 6px;
    }

    .btn-uber-pill {
        padding: 6px 12px;
        font-size: 11px;
    }

    .mobile-menu-btn {
        width: 36px;
        height: 36px;
        font-size: 15px;
        border-radius: 8px;
    }

    .hero-heading {
        font-size: 24px;
        line-height: 1.45;
        letter-spacing: normal;
    }

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

    .stat-item::after {
        display: none !important;
    }

    .btn-download-hero {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================================================
   Modal System & Form Styles
   ============================================================================ */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(4, 6, 10, 0.85);
    backdrop-filter: blur(12px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.modal-card {
    background: var(--terra-card);
    border: 1px solid var(--terra-border);
    border-radius: 24px;
    width: 100%;
    max-width: 480px;
    padding: 32px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(201, 147, 42, 0.15);
    transform: scale(0.92);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-card.modal-large {
    max-width: 720px;
    max-height: 85vh;
    overflow-y: auto;
}

.modal-overlay.active .modal-card {
    transform: scale(1);
}

.modal-close-btn {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--terra-border);
    color: var(--terra-text-sec);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.modal-close-btn:hover {
    color: var(--terra-white);
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--terra-gold);
}

.modal-header {
    text-align: center;
    margin-bottom: 24px;
}

.modal-header h3 {
    font-size: 22px;
    color: var(--terra-white);
    margin-top: 8px;
    margin-bottom: 4px;
}

.modal-header p {
    font-size: 13px;
    color: var(--terra-text-sec);
}

.login-tabs {
    display: flex;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--terra-border);
    padding: 4px;
    border-radius: 14px;
    margin-bottom: 20px;
}

.tab-btn {
    flex: 1;
    padding: 10px;
    border: none;
    background: transparent;
    color: var(--terra-text-sec);
    font-size: 13px;
    font-weight: 700;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.tab-btn.active {
    background: var(--terra-gold);
    color: #000;
}

.input-group {
    margin-bottom: 16px;
    text-align: right;
}

.input-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--terra-text-sec);
    margin-bottom: 8px;
}

.phone-input-wrap {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--terra-border);
    border-radius: 12px;
    overflow: hidden;
    direction: ltr;
}

.country-code {
    padding: 12px 14px;
    background: rgba(201, 147, 42, 0.1);
    color: var(--terra-gold);
    font-weight: 800;
    font-size: 14px;
    border-right: 1px solid var(--terra-border);
}

.phone-input-wrap input, .input-group input {
    flex: 1;
    width: 100%;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--terra-border);
    border-radius: 12px;
    color: var(--terra-white);
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s ease;
    font-family: var(--terra-font-body);
}

.phone-input-wrap input {
    border: none;
    border-radius: 0;
}

.phone-input-wrap input:focus, .input-group input:focus {
    border-color: var(--terra-gold);
}

.full-width {
    width: 100%;
    justify-content: center;
    padding: 14px;
    margin-top: 8px;
    font-size: 15px;
}

.login-msg {
    margin-top: 16px;
    padding: 12px;
    border-radius: 12px;
    background: rgba(0, 230, 118, 0.15);
    border: 1px solid var(--terra-green);
    color: var(--terra-green);
    font-size: 13px;
    font-weight: 700;
    text-align: center;
}

.hidden {
    display: none !important;
}

.modal-body h4 {
    color: var(--terra-gold);
    margin: 16px 0 6px;
    font-size: 16px;
}

.modal-body p {
    color: var(--terra-text-sec);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 12px;
}

/* Download Options Modal Styles */
.download-options-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 20px 0;
}

.download-option-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.25s ease;
    border: 1px solid var(--terra-border);
    background: rgba(255, 255, 255, 0.03);
}

.download-option-btn.primary-opt {
    background: linear-gradient(135deg, rgba(255, 213, 79, 0.15), rgba(201, 147, 42, 0.25));
    border-color: var(--terra-gold);
}

.download-option-btn:hover {
    transform: translateY(-2px);
    border-color: var(--terra-gold-light);
    box-shadow: 0 8px 20px rgba(201, 147, 42, 0.2);
}

.opt-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(201, 147, 42, 0.2);
    color: var(--terra-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.opt-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: right;
}

.opt-info strong {
    color: var(--terra-white);
    font-size: 15px;
    margin-bottom: 2px;
}

.opt-info span {
    color: var(--terra-text-sec);
    font-size: 12px;
}

.opt-arrow {
    color: var(--terra-gold);
    font-size: 16px;
}

.download-modal-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 12px;
    color: var(--terra-text-sec);
    margin-top: 10px;
    padding-top: 12px;
    border-top: 1px solid var(--terra-border);
}

