/* ==========================================================================
   Premium Dark/Gold Theme - TrainLuxe
   ========================================================================== */

   :root {
    /* Color Palette */
    --bg-dark: #0f172a;
    --bg-darker: #0b1120;
    --bg-card: rgba(30, 41, 59, 0.7);
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    
    --gold-primary: #fbbf24;
    --gold-hover: #f59e0b;
    --blue-accent: #38bdf8;
    
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-bg: rgba(255, 255, 255, 0.03);
    
    /* Layout */
    --radius: 16px;
    --radius-lg: 24px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --font-sans: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: var(--font-sans);
    font-weight: 700;
    line-height: 1.2;
}

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

/* ==========================================================================
   Typography & Utilities
   ========================================================================== */

.text-gold { color: var(--gold-primary); }
.text-gradient {
    background: linear-gradient(135deg, var(--gold-primary), #fcd34d, var(--gold-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: shine 3s linear infinite;
}

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

.mt-4 { margin-top: 1.5rem; }

/* ==========================================================================
   Buttons & Links
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-family: var(--font-sans);
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    letter-spacing: 0.5px;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-hover));
    color: #000;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.5);
}

.btn-glow {
    background: var(--glass-bg);
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
    backdrop-filter: blur(10px);
}

.btn-glow:hover {
    background: var(--gold-primary);
    color: #000;
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.4);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-main);
}
.btn-outline:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
}

.btn-large {
    padding: 18px 48px;
    font-size: 1.25rem;
}

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

/* ==========================================================================
   Animations
   ========================================================================== */

@keyframes pulse-ring {
    0% { box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(251, 191, 36, 0); }
    100% { box-shadow: 0 0 0 0 rgba(251, 191, 36, 0); }
}

.pulse-animation {
    animation: pulse-ring 2s infinite;
}

/* ==========================================================================
   Navbar
   ========================================================================== */

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 16px 10px;
}

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

.logo {
    font-family: var(--font-sans);
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(15,23,42,0.95) 0%, rgba(15,23,42,0.6) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto; /* Centered */
    text-align: center;
}

.trust-badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.875rem;
    color: var(--gold-primary);
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: clamp(3.5rem, 5vw, 5.5rem);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin: 0 auto 3rem auto;
    max-width: 600px;
}

/* Glass Panel CTA */
.glass-panel {
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.main-cta-box {
    display: inline-block;
    max-width: 100%;
    margin: 0 auto;
}

.cta-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #4ade80; /* Green */
    font-size: 0.875rem;
    margin-bottom: 12px;
    font-weight: 500;
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: #4ade80;
    border-radius: 50%;
    box-shadow: 0 0 10px #4ade80;
}

.main-cta-box h2 {
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.guarantee {
    margin-top: 16px;
    font-size: 0.875rem;
    color: var(--text-muted);
    text-align: center;
}

/* ==========================================================================
   Stats Banner
   ========================================================================== */

.stats-banner {
    background: var(--bg-darker);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    padding: 40px 0;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--gold-primary);
    margin-bottom: 8px;
}

.stat-item p {
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.875rem;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: var(--glass-border);
}

/* ==========================================================================
   Shared Section Styles
   ========================================================================== */

section { padding: 100px 0; }
.bg-darker { background-color: var(--bg-darker); }

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

.section-header .title {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.section-header .subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 32px;
    transition: var(--transition);
}

.glass-card:hover {
    transform: translateY(-5px);
    background: rgba(45, 55, 72, 0.8);
    border-color: rgba(251, 191, 36, 0.3);
}

/* ==========================================================================
   Features Grid
   ========================================================================== */

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

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

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

.feature-card p { color: var(--text-muted); }

/* ==========================================================================
   Destinations
   ========================================================================== */

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

.destination-card {
    background: var(--bg-dark);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.destination-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border-color: rgba(255,255,255,0.2);
}

.img-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.dest-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.destination-card:hover .dest-image {
    transform: scale(1.05);
}

.dest-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.1);
}

.text-gold-bg {
    background: var(--gold-primary);
    color: #000;
    border: none;
}

.dest-info {
    padding: 30px;
}

.dest-info h3 { margin-bottom: 12px; font-size: 1.35rem; }
.dest-info p { color: var(--text-muted); }

/* ==========================================================================
   Process & Reviews
   ========================================================================== */

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.step-list { margin-top: 40px; }

.step-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.step-number {
    font-family: var(--font-sans);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gold-primary);
    opacity: 0.5;
}

.step-content h3 { margin-bottom: 8px; font-size: 1.2rem; }
.step-content p { color: var(--text-muted); }

.testimonial-card .stars {
    color: var(--gold-primary);
    margin-bottom: 16px;
    font-size: 1.2rem;
}

.review-text {
    font-size: 1.125rem;
    font-style: italic;
    margin-bottom: 20px;
}

.reviewer {
    color: var(--gold-primary);
    font-weight: 600;
    font-size: 0.875rem;
}

/* ==========================================================================
   Bottom CTA
   ========================================================================== */

.bottom-cta {
    position: relative;
    text-align: center;
    background-color: var(--bg-darker);
    overflow: hidden;
}

.cta-background-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.1) 0%, rgba(15,23,42,0) 70%);
    z-index: 1;
}

.cta-container {
    position: relative;
    z-index: 2;
    padding: 60px 20px;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,0.02);
    backdrop-filter: blur(10px);
}

.cta-container h2 { font-size: 3rem; margin-bottom: 16px; }
.cta-container p { font-size: 1.25rem; color: var(--text-muted); margin-bottom: 40px; }

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
    background: #050810;
    border-top: 1px solid var(--glass-border);
    padding: 80px 0 20px 0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand { max-width: 300px; }
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { color: var(--text-muted); font-size: 0.875rem; }

.footer-links {
    display: flex;
    gap: 80px;
    flex-wrap: wrap;
}

.link-group h4 {
    margin-bottom: 20px;
    color: var(--text-main);
}

.link-group a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 12px;
    transition: var(--transition);
}

.link-group a:hover { color: var(--gold-primary); }

.footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding-top: 20px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* ==========================================================================
   Mobile Sticky Call Button
   ========================================================================== */

.mobile-sticky-btn {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 400px;
    background: var(--bg-dark);
    border: 2px solid var(--gold-primary);
    color: var(--gold-primary);
    text-align: center;
    padding: 16px 20px;
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 50px;
    z-index: 9999;
    text-decoration: none;
    box-shadow: 0 0 15px rgba(251, 191, 36, 0.4), inset 0 0 10px rgba(251, 191, 36, 0.2);
    transition: var(--transition);
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.mobile-sticky-btn i {
    font-size: 1.4rem;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

@media (max-width: 992px) {
    .split-layout { grid-template-columns: 1fr; }
    .hero-title { font-size: 3.5rem; }
    .stat-divider { display: none; }
}

@media (max-width: 768px) {
    .hero { text-align: center; padding-top: 120px; }
    .hero-content { margin: 0 auto; }
    .stats-container { flex-direction: column; gap: 40px; }
    .footer-links { gap: 40px; }
    .section-header .title { font-size: 2rem; }
    .cta-container h2 { font-size: 2rem; }
    
    /* Header Fixes for Mobile */
    .nav-container { padding: 0; }
    .logo { font-size: 1.2rem; white-space: nowrap; }
    .navbar .btn { padding: 8px 12px; font-size: 0.9rem; white-space: nowrap; }
    .navbar .dynamic-phone-text { display: none; }
    
    .mobile-sticky-btn {
        display: flex;
    }
    
    /* Add padding to body so content doesn't hide behind the sticky button */
    body {
        padding-bottom: 80px;
    }
}
