/* ==========================================================================
   UBER BLACK / LUXURY CHAUFFEUR THEME
   ========================================================================== */

/* Typography */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
    --bg-base: #000000;
    --bg-surface: #0a0a0a;
    --bg-lighter: #151515;
    
    --text-primary: #ffffff;
    --text-muted: #8c8c8c;
    
    --gold: #c5a059;
    --gold-hover: #e0b666;
    
    --wa-green: #25D366;
    --wa-hover: #22bd5c;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-base);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

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

/* Typography Globals */
h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 600;
}

/* ==========================================================================
   HEADER / NAVBAR
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0; left: 0; width: 100%;
    background: rgba(0, 0, 0, 0.95);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 1.25rem 0;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.4rem;
    font-family: var(--font-body);
    font-weight: 300;
    letter-spacing: 2px;
}

.logo-accent {
    font-weight: 600;
    color: var(--gold);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.btn-outline-gold {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--bg-base);
}

.icon-sm {
    width: 16px; height: 16px;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1;
}

.css-abstract-bg {
    background: radial-gradient(circle at 40% 20%, #1a150B 0%, #000000 80%);
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 100%);
}

.hero-content {
    max-width: 800px;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 3rem;
    max-width: 600px;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-solid-gold {
    background: var(--gold);
    color: #000;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    transition: var(--transition);
    font-size: 0.95rem;
}

.btn-solid-gold:hover {
    background: var(--gold-hover);
}

.btn-solid-wa {
    background: var(--wa-green);
    color: #fff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    transition: var(--transition);
    font-size: 0.95rem;
}

.btn-solid-wa:hover {
    background: var(--wa-hover);
}

/* ==========================================================================
   SECTION GLOBALS
   ========================================================================== */
section {
    padding: 6rem 0;
}

.bg-darker {
    background: var(--bg-surface);
}

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.gold-divider {
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin: 0 auto 3rem;
}

.gold-divider.left {
    margin: 0 0 2rem 0;
}

/* ==========================================================================
   EXCELLENCE (FEATURES)
   ========================================================================== */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.excellence-card {
    background: var(--bg-surface);
    padding: 3rem 2rem;
    border: 1px solid rgba(255,255,255,0.05);
    text-align: center;
    transition: var(--transition);
}

.excellence-card:hover {
    border-color: rgba(197, 160, 89, 0.4);
    transform: translateY(-5px);
}

.card-icon {
    width: 40px; height: 40px;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.excellence-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-family: var(--font-body);
}

.excellence-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 300;
}

/* ==========================================================================
   STEPS (HOW IT WORKS)
   ========================================================================== */
.steps-container {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.single-column {
    flex-direction: column;
    text-align: center;
}

.single-column .gold-divider.left {
    margin: 0 auto 2rem auto;
}

.steps-content {
    flex: 1;
}

.steps-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.step-list {
    list-style: none;
    margin-top: 2rem;
}

.step-list li {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.step-num {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--gold);
    font-style: italic;
    font-weight: 600;
}

.step-text strong {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.step-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 300;
}

/* ==========================================================================
   REGIONS
   ========================================================================== */
.regions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.region-item {
    background: var(--bg-lighter);
    padding: 1.25rem;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.03);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
}

.region-item:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background: #000;
    padding: 4rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    margin-bottom: 1rem;
}

.copyright {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 300;
}

/* ==========================================================================
   MOBILE ACTION BAR
   ========================================================================== */
.mobile-action-bar {
    display: none;
    position: fixed;
    bottom: 0; left: 0; width: 100%;
    background: #000;
    border-top: 1px solid rgba(255,255,255,0.1);
    z-index: 1000;
}

.btn-bottom {
    flex: 1;
    padding: 1.25rem 0;
    text-align: center;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn-bottom.btn-call {
    background: var(--bg-surface);
    color: var(--gold);
}

.btn-bottom.btn-wa {
    background: var(--wa-green);
    color: #fff;
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

/* ==========================================================================
   RESPONSIVE LOGIC
   ========================================================================== */
@media (max-width: 900px) {
    .grid-3 {
        grid-template-columns: 1fr;
    }
    .steps-container {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .desktop-only { display: none; }
    
    .mobile-action-bar { display: flex; }
    
    .hero {
        height: auto;
        padding-top: 120px;
        padding-bottom: 80px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-actions { display: none; }
    
    .footer {
        padding-bottom: 100px;
    }
    
    .region-item {
        padding: 1rem;
        font-size: 0.85rem;
    }
}
