/* 
  Theme: Premium Luxury Spiritual Tourism + Ujjain Mahakal Tourism
  Colors: Deep Saffron/Gold, Rich Dark Navy/Charcoal, Pure White
*/

:root {
    --primary: #E65100; /* Deep Saffron */
    --primary-light: #FF9800;
    --gold: #D4AF37;
    --gold-light: #F4E07B;
    --dark: #12161A;
    --darker: #0B0E11;
    --light: #F9F7F2;
    --white: #FFFFFF;
    --text: #2B2D42;
    --text-light: #6C757D;
    --glass-bg: rgba(255, 255, 255, 0.92);
    --glass-border: rgba(212, 175, 55, 0.25);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 15px 45px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    
    --font-heading: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.25;
}

.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-saffron { color: var(--primary); }
.text-white { color: var(--white); }
.bg-dark { background-color: var(--dark); color: var(--white); }
.bg-darker { background-color: var(--darker); }
.bg-light { background-color: var(--light); }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.pt-2 { padding-top: 1rem; }
.pt-4 { padding-top: 2rem; }
.pb-2 { padding-bottom: 1rem; }

/* Layout Helpers */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 90px 0;
}

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

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

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 32px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-size: 0.88rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #D84315);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(230, 81, 0, 0.35);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #BF360C, var(--primary));
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(230, 81, 0, 0.45);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--gold);
    color: var(--gold);
}

.btn-outline:hover {
    background-color: var(--gold);
    color: var(--darker);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 9px 22px;
    font-size: 0.82rem;
    border-color: var(--primary);
    color: var(--primary);
}

.btn-sm:hover {
    background-color: var(--primary);
    color: var(--white);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 18px 0;
    z-index: 1000;
    transition: var(--transition);
    background: linear-gradient(to bottom, rgba(0,0,0,0.8), rgba(0,0,0,0));
}

.navbar.scrolled {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 12px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border-bottom: 1px solid var(--glass-border);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
}

.navbar.scrolled .logo {
    color: var(--darker);
}

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

.nav-links {
    display: flex;
    gap: 22px;
}

.nav-links a {
    color: var(--white);
    font-weight: 500;
    font-size: 0.92rem;
    position: relative;
    padding: 4px 0;
}

.navbar.scrolled .nav-links a {
    color: var(--darker);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

.navbar.scrolled .mobile-menu-btn {
    color: var(--darker);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: var(--darker);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(11,14,17,0.5) 0%, rgba(11,14,17,0.85) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--white);
}

.hero-title {
    font-size: 3.8rem;
    margin-bottom: 18px;
    animation: fadeInUp 0.8s ease;
    letter-spacing: 1px;
}

.hero-title span {
    color: var(--gold);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 35px;
    font-weight: 300;
    letter-spacing: 1px;
    color: #E0E0E0;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Section Title */
.section-title h2 {
    font-size: 2.4rem;
    color: var(--darker);
}

.bg-dark .section-title h2 {
    color: var(--white);
}

.divider {
    width: 70px;
    height: 3.5px;
    background: linear-gradient(90deg, var(--primary), var(--gold));
    margin: 14px auto 18px;
    border-radius: 2px;
}

/* Cards & Hover Effects */
.package-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid #EAE6DF;
    display: flex;
    flex-direction: column;
}

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

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

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

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

.badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.package-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.package-info h3 {
    font-size: 1.35rem;
    margin-bottom: 8px;
    color: var(--darker);
}

.duration {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.highlights {
    margin-bottom: 20px;
    flex-grow: 1;
}

.highlights li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    font-size: 0.92rem;
}

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

.package-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #F0ECE1;
    padding-top: 18px;
    margin-top: auto;
}

.price {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
}

/* Destinations Cards */
.dest-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow);
    height: 290px;
}

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

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

.dest-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 22px;
    background: linear-gradient(180deg, transparent 0%, rgba(11,14,17,0.92) 100%);
    color: var(--white);
}

/* Services */
.service-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(212, 175, 55, 0.15);
    padding: 35px 22px;
    text-align: center;
    border-radius: 14px;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: var(--gold);
}

.service-card i {
    font-size: 2.4rem;
    color: var(--gold);
    margin-bottom: 16px;
}

.service-card h3 {
    font-size: 1.18rem;
    font-weight: 600;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 840px;
    margin: 0 auto;
    padding: 30px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50px;
    width: 2px;
    height: 100%;
    background-color: var(--gold);
}

.timeline-item {
    position: relative;
    margin-bottom: 25px;
    padding-left: 95px;
}

.timeline-dot {
    position: absolute;
    left: 44px;
    top: 6px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: var(--primary);
    border: 3px solid var(--white);
    box-shadow: 0 0 0 3px rgba(230, 81, 0, 0.25);
}

.timeline-content {
    background: var(--white);
    padding: 20px 24px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid #EEE9DF;
}

/* General Cards & Tags */
.card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid #EEE;
}

.card-body {
    padding: 20px;
}

.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.tag {
    background: var(--white);
    padding: 10px 22px;
    border-radius: 30px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.06);
    font-weight: 500;
    color: var(--text);
    border: 1px solid #EAE6DF;
    transition: var(--transition);
    cursor: pointer;
    font-size: 0.92rem;
}

.tag:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* Masonry Gallery */
.masonry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

/* Accordion */
.accordion {
    max-width: 850px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 16px;
    border: 1px solid #E5E0D5;
    border-radius: 10px;
    overflow: hidden;
    background: var(--white);
}

.accordion-header {
    background: var(--white);
    padding: 20px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.05rem;
}

.accordion-header::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    transition: var(--transition);
    color: var(--primary);
}

.accordion-item.active .accordion-header::after {
    transform: rotate(180deg);
}

.accordion-body {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
    background: var(--light);
    color: #4A4A4A;
    line-height: 1.7;
}

.accordion-item.active .accordion-body {
    padding: 20px;
    max-height: 300px;
}

/* NEW PREMIUM FOOTER DESIGN */
.footer-premium {
    background: linear-gradient(180deg, #12171E 0%, #090C0F 100%);
    color: #D1D5DB;
    padding-top: 70px;
    position: relative;
    border-top: 3px solid var(--gold);
}

.footer-top-badge {
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid var(--gold);
    color: var(--gold-light);
    padding: 14px 28px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    margin-bottom: 40px;
    font-size: 0.95rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 50px;
}

@media (max-width: 992px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr; }
}

.footer-brand h3 {
    font-size: 1.35rem;
    color: #FFF;
    margin-bottom: 15px;
    line-height: 1.4;
}

.footer-brand p {
    font-size: 0.92rem;
    color: #A0AEC0;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-col-title {
    font-size: 1.1rem;
    color: #FFF;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background: var(--primary);
}

.footer-links-list li {
    margin-bottom: 12px;
}

.footer-links-list a {
    color: #CBD5E0;
    font-size: 0.92rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links-list a:hover {
    color: var(--gold-light);
    transform: translateX(4px);
}

.footer-contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 16px;
    font-size: 0.92rem;
}

.footer-contact-item i {
    color: var(--gold);
    font-size: 1.1rem;
    margin-top: 4px;
}

.footer-bottom-bar {
    background: #06080A;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 22px 0;
    text-align: center;
    font-size: 0.88rem;
    color: #8898AA;
}

/* Floating Action Buttons */
.floating-btns {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 999;
}

.float-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.4rem;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.float-btn.whatsapp { background-color: #25D366; }
.float-btn.call { background-color: var(--primary); }
.float-btn.to-top { background-color: var(--darker); }

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

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s ease;
}

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

/* Responsive */
@media (max-width: 768px) {
    .hero-title { font-size: 2.4rem; }
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-lg);
        display: none;
    }
    .nav-links.active { display: flex; }
    .nav-links a { color: var(--darker); }
    .mobile-menu-btn { display: block; }
}
