/* ==========================================================================
   SANCHARI TOURS & TRAVELS — LIGHT THEME SYSTEM
   Colors: Warm Ivory Cream (#FAF6EE), Pure White (#FFFFFF),
           Deep Ocean Navy (#0B2545), Imperial Gold (#D4AF37), Crimson (#9A031E)
   ========================================================================== */

:root {
    --bg-main: #faf6ee;
    --bg-card: #ffffff;
    --bg-subtle: #f4eee1;
    
    --navy-900: #07172b;
    --navy-800: #0b2545;
    --navy-700: #123766;
    --navy-600: #1b4b88;
    
    --gold-600: #b89124;
    --gold-500: #d4af37;
    --gold-400: #e5a910;
    --gold-300: #f4b41a;
    --gold-glow: rgba(212, 175, 55, 0.3);
    
    --crimson-600: #9a031e;
    --crimson-500: #c1121f;
    --teal-500: #00a896;

    --text-heading: #0b2545;
    --text-body: #334155;
    --text-muted: #64748b;

    --glass-bg: rgba(255, 255, 255, 0.92);
    --glass-border: rgba(212, 175, 55, 0.35);
    --glass-card: #ffffff;

    --font-heading: 'Poppins', sans-serif;
    --font-accent: 'Poppins', sans-serif;
    --font-subhead: 'Poppins', sans-serif;
    --font-body: 'Poppins', sans-serif;
    --font-telugu: 'Ramabhadra', 'Noto Sans Telugu', sans-serif;

    --shadow-soft: 0 10px 30px rgba(11, 37, 69, 0.08);
    --shadow-hover: 0 20px 45px rgba(11, 37, 69, 0.15);

    --transition-smooth: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Global Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    scroll-behavior: smooth;
    font-size: 16px;
    max-width: 100%;
    overflow-x: hidden !important;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-body);
    line-height: 1.6;
    position: relative;
}

/* Background Particle Canvas */
#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    opacity: 0.6;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

/* Utility Text Styles */
.gold-gradient-text {
    background: linear-gradient(135deg, #0b2545 0%, #d4af37 60%, #b89124 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.jyothi-telugu {
    font-family: var(--font-telugu);
    color: var(--navy-800);
    font-size: 0.95rem;
    font-weight: 600;
}

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

/* Section Header System */
.section-header {
    margin-bottom: 3.5rem;
}

.section-header .sub-title {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--gold-600);
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.5rem;
}

.section-header .section-title {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--text-heading);
    letter-spacing: 1px;
}

.gold-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0 1.2rem;
}

.gold-divider::before,
.gold-divider::after {
    content: '';
    width: 70px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
}

.gold-divider span {
    padding: 0 15px;
    color: var(--gold-500);
    font-size: 1.2rem;
}

.section-desc {
    color: var(--text-muted);
    max-width: 680px;
    margin: 0 auto;
    font-size: 1rem;
}

/* Buttons System */
.btn-primary {
    background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-900) 100%);
    color: #ffffff;
    font-weight: 700;
    font-family: var(--font-body);
    padding: 0.75rem 1.8rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(11, 37, 69, 0.25);
    transition: var(--transition-smooth);
}

.btn-primary:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, var(--gold-500) 0%, var(--gold-400) 100%);
    color: var(--navy-900);
    box-shadow: 0 8px 25px var(--gold-glow);
}

.gold-btn {
    background: linear-gradient(135deg, var(--gold-500) 0%, var(--gold-400) 100%);
    color: var(--navy-900);
}

.gold-btn:hover {
    background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-900) 100%);
    color: #ffffff;
}

.large-btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

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

/* ==========================================================================
   NAVIGATION BAR (LIGHT THEME)
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition-smooth);
    background: rgba(250, 246, 238, 0.92);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 4px 20px rgba(11, 37, 69, 0.05);
}

.navbar.scrolled {
    padding: 0.6rem 0;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 10px 30px rgba(11, 37, 69, 0.12);
}

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

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.nav-logo-img {
    height: 54px;
    width: auto;
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    border: none;
    mix-blend-mode: multiply;
    filter: contrast(1.12);
    transition: var(--transition-smooth);
}

.nav-logo-img:hover {
    transform: scale(1.04);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--navy-800);
    position: relative;
    padding: 0.4rem 0;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.nav-icon {
    font-size: 0.85rem;
    margin-right: 0.45rem;
    color: var(--gold-600);
    transition: transform 0.3s ease, color 0.3s ease;
}

.nav-links a:hover .nav-icon,
.nav-links a.active .nav-icon {
    transform: translateY(-2px) scale(1.18);
    color: var(--gold-500);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--gold-500);
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.nav-links a.active {
    color: var(--navy-900);
    font-weight: 700;
}

.nav-links a.active::after {
    width: 100%;
}

/* Premium Gold Text Icon Animations */
.gold-text {
    color: var(--gold-500);
    transition: transform 0.3s ease, filter 0.3s ease;
    display: inline-block;
}

.gold-text:hover {
    transform: scale(1.2) rotate(10deg);
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.8));
}

.sub-title i {
    font-size: 0.9rem;
    margin-right: 0.4rem;
    color: var(--gold-500);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.btn-call {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--navy-800);
    font-weight: 700;
    font-size: 0.95rem;
    border: 1px solid rgba(212, 175, 55, 0.5);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 2px 10px rgba(11, 37, 69, 0.05);
}

.btn-call:hover {
    background: var(--navy-800);
    color: #ffffff;
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--navy-800);
    cursor: pointer;
}

/* ==========================================================================
   HERO SECTION (LIGHT THEME)
   ========================================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 1.5rem 5rem;
    overflow: hidden;
}

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

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    animation: heroZoom 25s infinite alternate linear;
    filter: brightness(1.15) contrast(1.2) saturate(1.25);
}

@keyframes heroZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}

/* Navbar Social Icons */
.nav-social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: var(--navy-800);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    transition: var(--transition-smooth);
}

.nav-social-icon:hover {
    background: #0284c7;
    color: #ffffff;
    border-color: #0284c7;
    transform: translateY(-2px);
}

.teal-gradient-text {
    background: linear-gradient(135deg, #0284c7 0%, #0369a1 50%, #0b2545 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Panoramic 3D Horizon Ultra Hero Section */
.hero-ultra {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 7.5rem 0 4rem;
    overflow: hidden;
    background: #07172b;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    animation: heroZoom 25s infinite alternate linear;
    filter: brightness(1.1) contrast(1.18) saturate(1.25);
}

.hero-ultra-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Light transparent dark vignette allowing high background visibility */
    background: 
        radial-gradient(ellipse at 50% 30%, rgba(7, 23, 43, 0.35) 0%, rgba(11, 37, 69, 0.5) 70%, rgba(7, 23, 43, 0.7) 100%),
        linear-gradient(180deg, rgba(7, 23, 43, 0.4) 0%, rgba(11, 37, 69, 0.35) 50%, rgba(7, 23, 43, 0.75) 100%);
}

.hero-ultra-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Floating Live Badge (White Glass & Gold) */
.hero-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.95);
    border: 1.5px solid var(--gold-500);
    padding: 0.45rem 1.4rem;
    border-radius: 30px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--navy-800);
    box-shadow: 0 6px 20px rgba(11, 37, 69, 0.15);
    margin-bottom: 1.8rem;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 10px #22c55e;
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

/* Central Brand Lockup (White & Gold Text) */
.hero-center-brand {
    text-align: center;
    margin-bottom: 2.8rem;
    max-width: 880px;
}

.hero-main-title {
    font-family: var(--font-heading);
    font-size: 3.4rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 0.9rem;
    letter-spacing: 0.5px;
    text-shadow: 0 4px 25px rgba(0, 0, 0, 0.9);
}

.gold-gradient-text {
    background: linear-gradient(135deg, #f4b41a 0%, #d4af37 50%, #fef08a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
}

.hero-headline-sub {
    font-size: 1.2rem;
    font-weight: 500;
    color: #f1f5f9;
    line-height: 1.65;
    max-width: 740px;
    margin: 0 auto;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
}

/* 4 Floating 3D Capsule Grid (Original White Cards) */
.hero-capsule-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    width: 100%;
    margin-bottom: 3.5rem;
}

.hero-capsule-card {
    background: #ffffff;
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 12px 30px rgba(11, 37, 69, 0.15);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.hero-capsule-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold-500);
    box-shadow: 0 22px 50px rgba(11, 37, 69, 0.25);
}

.capsule-img-box {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.capsule-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.hero-capsule-card:hover .capsule-img-box img {
    transform: scale(1.1);
}

.capsule-price-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--navy-800);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.35rem 0.8rem;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(11, 37, 69, 0.3);
}

.capsule-content {
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.capsule-cat {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--gold-600);
    margin-bottom: 0.4rem;
}

.capsule-content h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--navy-800);
    margin-bottom: 0.3rem;
}

.capsule-content p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.4;
    margin-bottom: 1rem;
}

.capsule-footer {
    margin-top: auto;
    padding-top: 0.6rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.capsule-link {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--navy-800);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition-smooth);
}

.hero-capsule-card:hover .capsule-link {
    color: var(--gold-600);
}

/* Quick Trip Planner Bar (Original White Box) */
.hero-quick-planner {
    background: #ffffff;
    border: 2px solid var(--gold-500);
    border-radius: 24px;
    padding: 1.2rem 2rem;
    width: 100%;
    max-width: 1100px;
    box-shadow: 0 15px 40px rgba(11, 37, 69, 0.15);
    margin-bottom: 2.5rem;
}

.quick-planner-form {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr 1.8fr;
    gap: 1.2rem;
    align-items: center;
}

.planner-field {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.planner-field label {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--navy-800);
}

.planner-field select,
.planner-field input {
    background: #faf6ee;
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: var(--navy-900);
    padding: 0.7rem 0.9rem;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
}

.btn-planner-submit {
    background: linear-gradient(135deg, var(--navy-800), var(--navy-900));
    color: #ffffff;
    font-weight: 800;
    font-size: 0.88rem;
    letter-spacing: 1px;
    padding: 0.85rem 1.4rem;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    align-self: flex-end;
    box-shadow: 0 6px 18px rgba(11, 37, 69, 0.25);
    transition: var(--transition-smooth);
}

.btn-planner-submit:hover {
    background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
    color: var(--navy-900);
    box-shadow: 0 8px 25px var(--gold-glow);
}

/* Trust Stats Bar (White & Gold Text) */
.hero-trust-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.trust-item {
    font-size: 0.88rem;
    font-weight: 600;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.btn-hero-whatsapp:hover {
    background: #25d366;
    color: #fff;
    transform: translateY(-4px);
}

.hero-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
}

.hero-feat-card {
    background: #ffffff;
    border: 1px solid rgba(212, 175, 55, 0.35);
    padding: 1.2rem 1rem;
    border-radius: 18px;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
}

.hero-feat-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-500);
    box-shadow: var(--shadow-hover);
}

.feat-icon {
    width: 48px;
    height: 48px;
    background: rgba(212, 175, 55, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-800);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.feat-content h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy-800);
}

.feat-content p {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.3;
}

/* ==========================================================================
   PACKAGES SECTION (LIGHT THEME)
   ========================================================================== */
.packages-section {
    padding: 6rem 0;
}

.package-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    background: #ffffff;
    border: 1px solid rgba(212, 175, 55, 0.35);
    color: var(--navy-800);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.6rem 1.4rem;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--navy-800);
    color: #ffffff;
    border-color: var(--navy-800);
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(11, 37, 69, 0.2);
}

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

.package-card {
    background: #ffffff;
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
}

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

.card-badge-ribbon {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 5;
    background: var(--crimson-600);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 0.3rem 0.8rem;
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(154, 3, 30, 0.3);
}

.card-badge-ribbon.hot-deal {
    background: var(--gold-500);
    color: var(--navy-900);
}

.card-badge-ribbon.golden-badge {
    background: linear-gradient(135deg, var(--navy-800), var(--navy-900));
    color: #ffffff;
}

.card-img-box {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

.package-card:hover .card-img-box img {
    transform: scale(1.08);
}

.card-price-badge {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: #ffffff;
    border: 1px solid var(--gold-500);
    padding: 0.4rem 0.8rem;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    text-align: right;
    box-shadow: 0 4px 12px rgba(11, 37, 69, 0.1);
}

.price-val {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--navy-800);
    line-height: 1;
}

.price-unit {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gold-600);
    margin-bottom: 0.8rem;
}

.card-title {
    font-family: var(--font-subhead);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy-800);
    margin-bottom: 0.8rem;
    line-height: 1.35;
}

.card-desc {
    font-size: 0.88rem;
    color: var(--text-body);
    margin-bottom: 1.2rem;
    line-height: 1.5;
}

.card-highlights {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1.5rem;
    padding-top: 0.8rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.card-highlights span {
    font-size: 0.82rem;
    color: var(--text-body);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.card-highlights i {
    color: var(--gold-500);
}

.card-footer {
    margin-top: auto;
    display: flex;
    gap: 0.8rem;
}

.btn-card-details {
    flex: 1;
    background: #f1f5f9;
    border: 1px solid #cbd5e1;
    color: var(--navy-800);
    padding: 0.65rem 0;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    font-size: 0.88rem;
}

.btn-card-details:hover {
    background: #e2e8f0;
}

.btn-card-book {
    flex: 1;
    background: var(--navy-800);
    color: #ffffff;
    border: none;
    padding: 0.65rem 0;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    font-size: 0.88rem;
}

.btn-card-book:hover {
    background: var(--gold-500);
    color: var(--navy-900);
    box-shadow: 0 4px 15px var(--gold-glow);
}

/* ==========================================================================
   JYOTHIRLINGA SECTION (LIGHT THEME)
   ========================================================================== */
.jyothirlinga-section {
    padding: 6rem 0;
    background: var(--bg-subtle);
    position: relative;
}

.jyothirlinga-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
    margin-bottom: 3.5rem;
}

.jyothi-card {
    background: #ffffff;
    border: 1px solid rgba(212, 175, 55, 0.35);
    padding: 1.4rem;
    border-radius: 16px;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
}

.jyothi-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-500);
    box-shadow: var(--shadow-hover);
}

.jyothi-num {
    width: 36px;
    height: 36px;
    background: var(--navy-800);
    color: #ffffff;
    font-weight: 800;
    font-family: var(--font-heading);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.jyothi-content h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--navy-800);
    margin-bottom: 2px;
}

.jyothi-content p {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.jyothi-banner-cta {
    background: #ffffff;
    border: 2px solid var(--gold-500);
    border-radius: 24px;
    padding: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    box-shadow: var(--shadow-hover);
}

.jyothi-cta-text h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--navy-800);
    margin-bottom: 0.4rem;
}

.jyothi-cta-text p {
    color: var(--text-body);
    font-size: 0.95rem;
}

/* ==========================================================================
   FLEET SHOWCASE SECTION (LIGHT THEME)
   ========================================================================== */
.fleet-section {
    padding: 6rem 0;
}

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

.fleet-card {
    background: #ffffff;
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.fleet-img-box {
    position: relative;
    height: 200px;
}

.fleet-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fleet-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--navy-800);
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
}

.fleet-body {
    padding: 1.5rem;
}

.fleet-body h3 {
    font-family: var(--font-subhead);
    font-size: 1.2rem;
    color: var(--navy-800);
    margin-bottom: 1rem;
}

.fleet-specs {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.fleet-specs li {
    font-size: 0.88rem;
    color: var(--text-body);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.fleet-specs i {
    color: var(--gold-500);
}

/* ==========================================================================
   WHY CHOOSE US SECTION (LIGHT THEME)
   ========================================================================== */
.why-us-section {
    padding: 5rem 0;
    background: var(--bg-subtle);
}

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

.why-card {
    background: #ffffff;
    border: 1px solid rgba(212, 175, 55, 0.35);
    padding: 2rem 1.5rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
}

.why-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold-500);
    box-shadow: var(--shadow-hover);
}

.why-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid var(--gold-500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    color: var(--navy-800);
    font-size: 1.5rem;
}

.why-card h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--navy-800);
    margin-bottom: 0.6rem;
}

.why-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ==========================================================================
   ESTIMATOR SECTION (LIGHT THEME)
   ========================================================================== */
.estimator-section {
    padding: 6rem 0;
}

.estimator-card-glass {
    background: #ffffff;
    border: 2px solid var(--gold-500);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: var(--shadow-hover);
}

.estimator-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.estimator-header h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--navy-800);
    margin-bottom: 0.5rem;
}

.estimator-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--navy-800);
}

.form-group input,
.form-group select {
    background: #faf6ee;
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: var(--navy-900);
    padding: 0.85rem 1rem;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--navy-800);
    box-shadow: 0 0 10px rgba(11, 37, 69, 0.15);
}

.total-price-box {
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid var(--gold-500);
    color: var(--navy-900);
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    text-align: center;
}

/* ==========================================================================
   CONTACT SECTION (LIGHT THEME)
   ========================================================================== */
.contact-section {
    padding: 6rem 0;
}

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

.contact-card {
    background: #ffffff;
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-soft);
}

.c-icon {
    width: 56px;
    height: 56px;
    background: var(--navy-800);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 15px rgba(11, 37, 69, 0.2);
}

.contact-card h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--navy-800);
    margin-bottom: 0.8rem;
}

.c-detail {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gold-600);
    margin-bottom: 0.3rem;
}

.c-sub {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

/* ==========================================================================
   FOOTER (LIGHT THEME)
   ========================================================================== */
.footer {
    background: var(--navy-900);
    color: #ffffff;
    padding: 4rem 0 2rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-bio {
    color: #94a3b8;
    font-size: 0.9rem;
    margin-top: 1rem;
    max-width: 400px;
}

.footer-links-col h4,
.footer-contact-col h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--gold-400);
    margin-bottom: 1.2rem;
}

.footer-links-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links-col a {
    color: #cbd5e1;
    font-size: 0.9rem;
}

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

.footer-contact-col p {
    color: #cbd5e1;
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    color: #94a3b8;
    font-size: 0.85rem;
}

/* ==========================================================================
   MODAL OVERLAY & CARDS (LIGHT THEME)
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(11, 37, 69, 0.6);
    backdrop-filter: blur(12px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-card {
    background: #ffffff;
    border: 2px solid var(--gold-500);
    border-radius: 24px;
    width: 90%;
    max-width: 550px;
    padding: 2.5rem;
    position: relative;
    box-shadow: 0 25px 60px rgba(11, 37, 69, 0.3);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: var(--navy-800);
    font-size: 1.8rem;
    cursor: pointer;
}

.modal-header h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--navy-800);
}

.modal-header p {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-bottom: 1.5rem;
}

.readonly-input {
    background: rgba(212, 175, 55, 0.1) !important;
    border-color: var(--gold-500) !important;
    color: var(--navy-800) !important;
    font-weight: 700;
}

.gold-badge-text {
    background: var(--navy-800);
    color: #ffffff;
    font-weight: 800;
    font-size: 0.75rem;
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 0.5rem;
}

/* Floating Dock */
.floating-dock {
    position: fixed;
    bottom: 20px;
    right: 16px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.dock-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
    box-shadow: 0 8px 20px rgba(11, 37, 69, 0.25);
    transition: var(--transition-smooth);
}

.dock-phone { background: var(--navy-800); border: 1px solid var(--gold-500); }
.dock-whatsapp { background: #25d366; }
.dock-insta { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }

.dock-btn:hover { transform: scale(1.12); }

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .hero-capsule-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }
    .packages-grid,
    .jyothirlinga-grid,
    .fleet-grid,
    .why-grid,
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .quick-planner-form {
        grid-template-columns: repeat(2, 1fr);
    }
    .btn-planner-submit {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    /* Header & Mobile Navigation */
    .navbar {
        padding: 0.75rem 0;
    }
    .nav-container {
        padding: 0 1rem;
    }
    .nav-logo-img {
        height: 44px;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(7, 23, 43, 0.98);
        backdrop-filter: blur(20px);
        padding: 1.5rem 1.8rem;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
        border-bottom: 2px solid var(--gold-500);
        gap: 1.2rem;
    }
    .nav-links a {
        font-size: 1.05rem;
        color: #ffffff;
        padding: 0.5rem 0;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    .nav-links a.active {
        color: var(--gold-400);
    }
    .btn-call,
    .nav-actions .btn-primary {
        display: none !important;
    }
    .mobile-toggle {
        display: flex !important;
    }
    .nav-links {
        display: none !important;
    }

/* Mobile Menu Popup Modal Styling */
.mobile-toggle {
    display: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #ffffff;
    border: 1.5px solid var(--gold-500);
    color: var(--navy-800);
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(11, 37, 69, 0.12);
    transition: var(--transition-smooth);
}

#mobileMenuModal.active {
    display: flex !important;
    opacity: 1 !important;
    pointer-events: all !important;
    z-index: 99999 !important;
}

.mobile-menu-card {
    max-width: 420px;
    width: 90%;
    padding: 2rem 1.5rem;
    border-radius: 24px;
    background: #ffffff;
    border: 2px solid var(--gold-500);
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin: 1.5rem 0 1rem;
}

.mobile-menu-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 1.2rem;
    background: #faf6ee;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 14px;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--navy-800);
    transition: var(--transition-smooth);
}

.mobile-menu-item:hover,
.mobile-menu-item:active {
    background: var(--navy-800);
    color: #ffffff;
    border-color: var(--gold-500);
}

.mobile-menu-item:hover .gold-text,
.mobile-menu-item:active .gold-text {
    color: var(--gold-400);
}

.mobile-menu-item .arrow-icon {
    font-size: 0.8rem;
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

.mobile-menu-item:hover .arrow-icon {
    transform: translateX(4px);
    color: var(--gold-400);
}

    /* Hero Section Mobile Carousel & Layout */
    .hero-ultra {
        padding: 5.8rem 0 3rem;
        min-height: auto;
    }
    .hero-ultra-container {
        padding: 0 1rem;
    }
    .hero-trust-badge {
        padding: 0.35rem 1rem;
        font-size: 0.7rem;
        letter-spacing: 1px;
        margin-bottom: 1.2rem;
        text-align: center;
    }
    .hero-center-brand {
        margin-bottom: 1.8rem;
    }
    .hero-main-title {
        font-size: 2.1rem;
        line-height: 1.2;
        margin-bottom: 0.7rem;
    }
    .hero-headline-sub {
        font-size: 0.96rem;
        line-height: 1.55;
    }

    /* Hero 4 Capsule Cards transformed into smooth horizontal carousel on mobile */
    .hero-capsule-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 1rem;
        padding: 0.5rem 0.2rem 1.2rem;
        width: 100%;
        margin-bottom: 2rem;
        scrollbar-width: none;
    }
    .hero-capsule-grid::-webkit-scrollbar {
        display: none;
    }
    .hero-capsule-card {
        flex: 0 0 84%;
        scroll-snap-align: center;
        border-radius: 20px;
        box-shadow: 0 10px 25px rgba(11, 37, 69, 0.2);
    }
    .capsule-img-box {
        height: 160px;
    }

    /* Quick Planner Form Mobile Stacking */
    .hero-quick-planner {
        padding: 1.2rem 1.2rem;
        border-radius: 20px;
        margin-bottom: 2rem;
    }
    .quick-planner-form {
        grid-template-columns: 1fr;
        gap: 0.9rem;
    }
    .btn-planner-submit {
        grid-column: span 1;
        width: 100%;
        padding: 0.85rem;
    }

    /* Trust Stats Bar Mobile */
    .hero-trust-bar {
        gap: 1rem 1.5rem;
    }
    .trust-item {
        font-size: 0.8rem;
    }

    /* Package Tabs Touch Scrollbar */
    .package-tabs {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 0.6rem;
        padding-bottom: 0.8rem;
        margin-bottom: 2rem;
        scrollbar-width: none;
    }
    .package-tabs::-webkit-scrollbar { display: none; }
    .tab-btn {
        flex: 0 0 auto;
        white-space: nowrap;
        padding: 0.6rem 1.2rem;
        font-size: 0.82rem;
    }

    /* Grids to 1-column Stack on Mobile */
    .packages-grid,
    .fleet-grid,
    .why-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.4rem;
    }

    .jyothirlinga-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    .jyothi-card {
        padding: 0.8rem;
    }
    .jyothi-content h4 {
        font-size: 0.85rem;
    }
    .jyothi-telugu {
        font-size: 0.8rem;
    }

    /* 12 Jyothirlingas Banner CTA Mobile Optimization */
    .jyothi-banner-cta {
        flex-direction: column;
        text-align: center;
        padding: 1.8rem 1.2rem;
        gap: 1.2rem;
        align-items: center;
        border-radius: 20px;
    }
    .jyothi-cta-text h3 {
        font-size: 1.25rem;
        line-height: 1.35;
        margin-bottom: 0.5rem;
    }
    .jyothi-cta-text p {
        font-size: 0.88rem;
        line-height: 1.5;
    }
    .jyothi-banner-cta .btn-primary {
        width: 100%;
        justify-content: center;
        padding: 0.85rem 1.2rem;
        font-size: 0.88rem;
        white-space: normal;
        word-break: break-word;
        box-shadow: 0 6px 18px rgba(212, 175, 55, 0.3);
    }

    /* Estimator Form Mobile */
    .form-grid {
        grid-template-columns: 1fr;
        gap: 0.9rem;
    }
    .form-row-2 {
        grid-template-columns: 1fr;
        gap: 0.9rem;
    }
    .estimator-result {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    .total-display {
        text-align: center;
    }

    /* Modals Responsive Mobile Styling */
    .modal-card {
        width: 95%;
        padding: 1.5rem 1.2rem;
        max-height: 90vh;
        overflow-y: auto;
        border-radius: 20px;
    }
    .detail-modal-card {
        padding: 1.5rem 1rem;
    }
    .modal-header h3, .modal-header h2 {
        font-size: 1.4rem;
    }
    .floating-dock {
        bottom: 14px;
        right: 12px;
    }
    .dock-btn {
        width: 44px;
        height: 44px;
        font-size: 1.15rem;
    }
}

@media (max-width: 480px) {
    .hero-main-title {
        font-size: 1.85rem;
    }
    .hero-capsule-card {
        flex: 0 0 90%;
    }
    .jyothirlinga-grid {
        grid-template-columns: 1fr;
    }
    .section-title {
        font-size: 1.8rem;
    }
}
