/* ==========================================================================
   Saurav Raj Singhania (सौरभ राज सिंघानिया)
   Nepal VIP Tour & Travel Escorts Agency Stylesheet
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design Tokens & Gold Luxury Color Palette
   -------------------------------------------------------------------------- */
:root {
    --bg-primary: #0a0d14;
    --bg-secondary: #121722;
    --bg-card: rgba(18, 24, 38, 0.85);
    --bg-glass: rgba(212, 175, 55, 0.05);
    --bg-glass-hover: rgba(212, 175, 55, 0.12);

    --border-color: rgba(212, 175, 55, 0.2);
    --border-color-glow: rgba(212, 175, 55, 0.6);

    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-muted: #64748b;

    /* Royal Gold & Gem Palette */
    --gold-primary: #d4af37;
    --gold-hover: #c59b27;
    --gold-light: #f6e69f;
    --gold-glow: rgba(212, 175, 55, 0.35);

    --primary-color: #d4af37;
    --secondary-color: #0ea5e9;
    --success-color: #10b981;
    --amber-color: #f59e0b;

    --gradient-gold: linear-gradient(135deg, #f6e69f 0%, #d4af37 50%, #aa7c11 100%);
    --gradient-dark: linear-gradient(180deg, rgba(10, 13, 20, 0.6) 0%, rgba(10, 13, 20, 0.95) 100%);
    --gradient-card: linear-gradient(180deg, rgba(212, 175, 55, 0.08) 0%, rgba(18, 24, 38, 0.9) 100%);

    --font-heading: 'Cinzel', 'Outfit', serif;
    --font-body: 'Plus Jakarta Sans', 'Outfit', sans-serif;

    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 10px 20px -3px rgba(0, 0, 0, 0.6);
    --shadow-lg: 0 20px 30px -5px rgba(0, 0, 0, 0.8), 0 0 25px rgba(212, 175, 55, 0.25);
    --shadow-glow: 0 0 35px rgba(212, 175, 55, 0.4);

    --container-max-width: 1240px;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;

    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

[data-theme="light"] {
    --bg-primary: #fbf9f4;
    --bg-secondary: #f3efe6;
    --bg-card: rgba(255, 255, 255, 0.92);
    --bg-glass: rgba(212, 175, 55, 0.08);

    --border-color: rgba(180, 140, 30, 0.25);
    --text-primary: #1c1917;
    --text-secondary: #44403c;
    --text-muted: #78716c;

    --gradient-gold: linear-gradient(135deg, #b48c1e 0%, #d4af37 50%, #946c0e 100%);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* --------------------------------------------------------------------------
   2. Global Resets
   -------------------------------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.65;
    overflow-x: hidden;
    transition: background-color var(--transition-normal), color var(--transition-normal);
}

#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: var(--gradient-gold);
    z-index: 1000;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all var(--transition-fast);
}

ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button, input, select, textarea { font-family: inherit; font-size: inherit; outline: none; border: none; }

.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding { padding: 6rem 0; }
.text-center { text-align: center; }
.text-gold { color: var(--gold-primary); }
.text-amber { color: var(--amber-color); }
.text-success { color: var(--success-color); }
.margin-top-lg { margin-top: 2.5rem; }

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

.section-header {
    max-width: 780px;
    margin: 0 auto 3.5rem auto;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 1.1rem;
    background: var(--bg-glass);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--gold-primary);
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* Button Component */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.85rem 1.85rem;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-bounce);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn-primary, .btn-gold {
    background: var(--gradient-gold);
    color: #0b0e14;
    box-shadow: 0 4px 20px var(--gold-glow);
}

.btn-primary:hover, .btn-gold:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px var(--gold-glow);
}

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

.btn-outline:hover {
    background: var(--bg-glass-hover);
    border-color: var(--gold-primary);
    transform: translateY(-3px);
}

.btn-lg { padding: 1rem 2.4rem; font-size: 1.05rem; }
.btn-sm { padding: 0.55rem 1.25rem; font-size: 0.85rem; }
.btn-block { width: 100%; }

/* --------------------------------------------------------------------------
   3. Top Bar & Navigation
   -------------------------------------------------------------------------- */
.announcement-bar {
    background: linear-gradient(90deg, #1c1917, #d4af37, #1c1917);
    color: #ffffff;
    padding: 0.45rem 0;
    font-size: 0.88rem;
}

.announcement-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
}

.announcement-link {
    text-decoration: underline;
    font-weight: 700;
    color: #ffffff;
}

.navbar-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 1.2rem 0;
    transition: all var(--transition-normal);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid transparent;
}

.navbar-header.scrolled {
    padding: 0.8rem 0;
    background-color: var(--bg-card);
    border-bottom-color: var(--border-color);
    box-shadow: var(--shadow-md);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.6rem;
    font-weight: 800;
    font-family: var(--font-heading);
}

.logo-mark {
    width: 42px;
    height: 42px;
    background: var(--gradient-gold);
    color: #0b0e14;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-glow);
}

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

.nav-list {
    display: flex;
    align-items: center;
    gap: 1.8rem;
}

.nav-link {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-secondary);
    position: relative;
    padding: 0.3rem 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--gold-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: width var(--transition-fast);
}

.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.theme-toggle-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--bg-glass);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hamburger-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    cursor: pointer;
}

.hamburger-btn .bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    border-radius: 3px;
}

/* --------------------------------------------------------------------------
   4. Hero Section
   -------------------------------------------------------------------------- */
.hero-section {
    position: relative;
    padding: 6rem 0 7rem 0;
    overflow: hidden;
}

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

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.4rem 1.2rem;
    background: var(--bg-glass);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.badge-dot {
    width: 10px;
    height: 10px;
    background-color: var(--gold-primary);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--gold-primary);
}

.hero-title {
    font-size: 3.3rem;
    margin-bottom: 1.25rem;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2.25rem;
    line-height: 1.7;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.hero-trust-badges {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-size: 0.88rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.hero-glass-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 0.75rem;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(20px);
}

.hero-img {
    width: 100%;
    border-radius: calc(var(--radius-lg) - 6px);
    object-fit: cover;
}

.floating-widget {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    z-index: 10;
}

.widget-1 { top: -20px; right: -20px; }
.widget-2 { bottom: -20px; left: -20px; }

.widget-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.widget-icon.gold { background: rgba(212, 175, 55, 0.2); color: var(--gold-primary); }
.widget-icon.success { background: rgba(16, 185, 129, 0.2); color: var(--success-color); }

.widget-value { font-weight: 800; font-size: 0.95rem; display: block; }
.widget-label { font-size: 0.75rem; color: var(--text-muted); }

/* --------------------------------------------------------------------------
   5. Stats Section
   -------------------------------------------------------------------------- */
.stats-section {
    padding: 3rem 0;
    background: var(--bg-secondary);
    border-y: 1px solid var(--border-color);
}

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

.stat-card {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
}

.stat-icon { font-size: 2rem; color: var(--gold-primary); margin-bottom: 0.5rem; }
.stat-number { font-size: 2.5rem; font-weight: 800; display: inline-block; }
.stat-plus { font-size: 1.8rem; font-weight: 700; color: var(--gold-primary); }
.stat-label { font-size: 0.88rem; color: var(--text-secondary); }

/* --------------------------------------------------------------------------
   6. About Section
   -------------------------------------------------------------------------- */
.about-container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
    align-items: center;
}

.rounded-card-img {
    width: 100%;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1.1rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
}

.highlight-icon {
    width: 46px;
    height: 46px;
    border-radius: var(--radius-sm);
    background: var(--bg-glass);
    color: var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   7. Tour Packages Section
   -------------------------------------------------------------------------- */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.package-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform var(--transition-normal);
}

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

.package-img-wrapper {
    position: relative;
    aspect-ratio: 16 / 10;
}

.package-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.package-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.3rem 0.9rem;
    background: var(--gold-primary);
    color: #0b0e14;
    font-size: 0.78rem;
    font-weight: 800;
    border-radius: var(--radius-full);
}

.package-content {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.package-content h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.package-meta { font-size: 0.85rem; color: var(--gold-primary); margin-bottom: 0.8rem; font-weight: 600; }
.package-desc { font-size: 0.9rem; color: var(--text-secondary); margin-bottom: 1.25rem; }

.package-highlights {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.package-highlights li { font-size: 0.85rem; display: flex; align-items: center; gap: 0.5rem; }

.package-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.package-price { font-size: 1.4rem; font-weight: 800; font-family: var(--font-heading); color: var(--gold-primary); }
.package-price span { font-size: 0.8rem; font-weight: 400; color: var(--text-muted); }

/* --------------------------------------------------------------------------
   8. 400+ Escorts Section
   -------------------------------------------------------------------------- */
.escort-filters {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.6rem 1.4rem;
    background: var(--bg-glass);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
}

.filter-btn.active, .filter-btn:hover {
    background: var(--gradient-gold);
    color: #0b0e14;
    border-color: transparent;
}

.escorts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.escort-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--transition-normal);
}

.escort-card:hover { transform: translateY(-6px); border-color: var(--gold-primary); }

.escort-badge-verified {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.25rem 0.8rem;
    background: rgba(16, 185, 129, 0.9);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    z-index: 5;
}

.escort-img-box { aspect-ratio: 1; overflow: hidden; }
.escort-img-box img { width: 100%; height: 100%; object-fit: cover; }

.escort-info { padding: 1.5rem; }
.escort-info h3 { font-size: 1.3rem; margin-bottom: 0.2rem; }
.escort-age { font-size: 0.85rem; color: var(--gold-primary); font-weight: 600; margin-left: 0.4rem; }
.escort-location { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0.8rem; }

.escort-skills {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.escort-skills span {
    font-size: 0.75rem;
    padding: 0.2rem 0.6rem;
    background: var(--bg-glass);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
}

.escort-bio { font-size: 0.88rem; color: var(--text-secondary); margin-bottom: 1.25rem; }

/* --------------------------------------------------------------------------
   9. Services Grid
   -------------------------------------------------------------------------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2.25rem;
    transition: transform var(--transition-normal);
}

.service-card:hover { transform: translateY(-6px); border-color: var(--gold-primary); }

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: var(--gradient-gold);
    color: #0b0e14;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-card h3 { font-size: 1.3rem; margin-bottom: 0.8rem; }
.service-card p { font-size: 0.9rem; color: var(--text-secondary); }

/* --------------------------------------------------------------------------
   10. Pricing & Contact
   -------------------------------------------------------------------------- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.pricing-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
}

.pricing-card.featured {
    border-color: var(--gold-primary);
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.15) 0%, rgba(18, 24, 38, 0.9) 100%);
    box-shadow: var(--shadow-lg);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.3rem 1.2rem;
    background: var(--gradient-gold);
    color: #0b0e14;
    font-weight: 800;
    font-size: 0.8rem;
    border-radius: var(--radius-full);
}

.price-amount { font-size: 2.4rem; font-weight: 800; color: var(--gold-primary); margin: 1.5rem 0; }
.price-amount span { font-size: 0.9rem; font-weight: 400; color: var(--text-muted); }

.pricing-features { display: flex; flex-direction: column; gap: 0.8rem; margin-bottom: 2rem; }
.pricing-features li { font-size: 0.88rem; display: flex; align-items: center; gap: 0.75rem; }

/* Contact Form */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-methods { display: flex; flex-direction: column; gap: 1.5rem; margin: 2rem 0; }
.contact-method-item { display: flex; align-items: center; gap: 1.2rem; }

.method-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    background: var(--bg-glass);
    border: 1px solid var(--border-color);
    color: var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.contact-form-container {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
}

.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.88rem; font-weight: 600; margin-bottom: 0.4rem; }

.input-with-icon { position: relative; display: flex; align-items: center; }
.input-with-icon i { position: absolute; left: 1.2rem; color: var(--text-muted); }

.input-with-icon input, .input-with-icon select {
    width: 100%;
    padding: 0.8rem 1rem 0.8rem 2.8rem;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
}

.toast-notification {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--bg-secondary);
    border: 1px solid var(--gold-primary);
    border-radius: var(--radius-md);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-lg);
    z-index: 10000;
    transform: translateY(120%);
    transition: transform var(--transition-bounce);
}

.toast-notification.show { transform: translateY(0); }
.toast-close { background: none; color: var(--text-muted); font-size: 1.4rem; cursor: pointer; }

/* --------------------------------------------------------------------------
   11. Footer
   -------------------------------------------------------------------------- */
.footer { background: #06080d; border-top: 1px solid var(--border-color); padding-top: 4rem; }
.footer-container { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 3rem; margin-bottom: 3rem; }
.footer-bottom { border-top: 1px solid var(--border-color); padding: 1.5rem 0; font-size: 0.88rem; color: var(--text-muted); }
.footer-bottom-content { display: flex; justify-content: space-between; align-items: center; }

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .hero-container, .about-container, .contact-wrapper { grid-template-columns: 1fr; }
    .packages-grid, .escorts-grid, .services-grid, .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-container { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .hamburger-btn { display: flex; }
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--bg-secondary);
        padding: 3rem 2rem;
        transition: left var(--transition-normal);
    }
    .nav-menu.active { left: 0; }
    .nav-list { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
    .hero-title { font-size: 2.3rem; }
    .stats-grid, .packages-grid, .escorts-grid, .services-grid, .pricing-grid { grid-template-columns: 1fr; }
    .footer-container { grid-template-columns: 1fr; }
}
