/* ====================================
   Pratap Travel - SPIRITUAL JOURNEY
   Premium Dharmik Tours & Travels
   ==================================== */

/* === CSS VARIABLES === */
:root {
    /* Spiritual Color Palette */
    --saffron-primary: #FF9933;
    --saffron-dark: #E68A2E;
    --saffron-light: #FFB366;
    --deep-blue: #003366;
    --blue-dark: #002244;
    --blue-light: #004488;
    --sacred-gold: #D4AF37;
    --pure-white: #FFFFFF;
    --soft-cream: #FFF8F0;
    --text-dark: #2C2C2C;
    --text-gray: #666666;
    --border-light: #E8E8E8;
    
    /* Typography */
    --font-display: 'Cinzel', serif;
    --font-body: 'Lora', serif;
    --font-sans: 'Nunito Sans', sans-serif;
    
    /* Shadows & Effects */
    --shadow-soft: 0 4px 20px rgba(0, 51, 102, 0.08);
    --shadow-medium: 0 8px 30px rgba(0, 51, 102, 0.12);
    --shadow-strong: 0 15px 50px rgba(0, 51, 102, 0.2);
    --glow-saffron: 0 0 30px rgba(255, 153, 51, 0.3);
}

/* === GLOBAL RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--soft-cream);
    line-height: 1.8;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.3;
    color: var(--deep-blue);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.4rem; }

p {
    font-family: var(--font-body);
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: var(--text-gray);
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container-fluid {
    padding: 0;
}

/* === DECORATIVE ELEMENTS === */
.om-pattern {
    position: absolute;
    opacity: 0.03;
    font-size: 15rem;
    color: var(--saffron-primary);
    pointer-events: none;
    font-family: serif;
    z-index: 0;
}

.mandala-bg {
    position: absolute;
    width: 400px;
    height: 400px;
    opacity: 0.04;
    background: radial-gradient(circle, var(--saffron-primary) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
}

/* === HEADER === */
.top-bar {
    background: linear-gradient(135deg, var(--deep-blue) 0%, var(--blue-dark) 100%);
    padding: 10px 0;
    color: var(--pure-white);
    font-family: var(--font-sans);
    font-size: 0.9rem;
}

.top-bar a {
    color: var(--pure-white);
    margin: 0 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.top-bar a:hover {
    color: var(--saffron-light);
}

.top-bar i {
    color: var(--saffron-primary);
}

.main-header {
    background: var(--pure-white);
    box-shadow: var(--shadow-soft);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--saffron-primary);
}

.navbar {
    padding: 15px 0;
}

.navbar-brand {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--deep-blue) !important;
    font-weight: 700;
    letter-spacing: 1px;
    position: relative;
}

.navbar-brand::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--saffron-primary);
}

.navbar-brand span {
    color: var(--saffron-primary);
}

.nav-link {
    font-family: var(--font-sans);
    font-weight: 600;
    color: var(--text-dark) !important;
    padding: 10px 20px !important;
    margin: 0 5px;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--saffron-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 80%;
}

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

.cta-header {
    background: linear-gradient(135deg, var(--saffron-primary), var(--saffron-dark));
    color: var(--pure-white);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-family: var(--font-sans);
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
}

.cta-header:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-strong), var(--glow-saffron);
    color: var(--pure-white);
}

/* === HERO SECTION === */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.9), rgba(0, 34, 68, 0.85)), 
                url('https://images.unsplash.com/photo-1609920658906-8223bd289001?q=80&w=2000') center/cover;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 153, 51, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--pure-white);
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 153, 51, 0.2);
    backdrop-filter: blur(10px);
    padding: 10px 25px;
    border-radius: 50px;
    border: 2px solid var(--saffron-primary);
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 25px;
    animation: fadeIn 1s ease-out 0.3s both;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--pure-white);
    margin-bottom: 25px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-title .highlight {
    color: var(--saffron-primary);
    position: relative;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-family: var(--font-sans);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    font-weight: 400;
    animation: fadeInUp 1s ease-out 0.7s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.btn-primary-custom {
    background: linear-gradient(135deg, var(--saffron-primary), var(--saffron-dark));
    color: var(--pure-white);
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-family: var(--font-sans);
    font-size: 1.05rem;
    border: none;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-strong), var(--glow-saffron);
    background: linear-gradient(135deg, var(--saffron-dark), var(--saffron-primary));
}

.btn-secondary-custom {
    background: transparent;
    color: var(--pure-white);
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-family: var(--font-sans);
    font-size: 1.05rem;
    border: 2px solid var(--pure-white);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-secondary-custom:hover {
    background: var(--pure-white);
    color: var(--deep-blue);
    transform: translateY(-3px);
}

/* === SECTION STYLING === */
.section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
}

.section-subtitle {
    font-family: var(--font-sans);
    color: var(--saffron-primary);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 3rem;
    color: var(--deep-blue);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--saffron-primary), transparent);
}

.section-description {
    font-size: 1.15rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 30px auto 0;
}

/* === CARDS === */
.service-card,
.destination-card,
.package-card {
    background: var(--pure-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid var(--border-light);
}

.service-card:hover,
.destination-card:hover,
.package-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
}

.card-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .card-image-wrapper img,
.destination-card:hover .card-image-wrapper img,
.package-card:hover .card-image-wrapper img {
    transform: scale(1.1);
}

.card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--saffron-primary), var(--saffron-dark));
    color: var(--pure-white);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    font-family: var(--font-sans);
    box-shadow: var(--shadow-medium);
}

.card-content {
    padding: 30px;
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--saffron-primary), var(--saffron-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--pure-white);
    font-size: 2rem;
    box-shadow: var(--shadow-medium);
}

.card-title {
    font-size: 1.5rem;
    color: var(--deep-blue);
    margin-bottom: 15px;
}

.card-text {
    color: var(--text-gray);
    font-size: 1rem;
    margin-bottom: 20px;
}

.card-link {
    color: var(--saffron-primary);
    font-weight: 700;
    font-family: var(--font-sans);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.card-link:hover {
    color: var(--saffron-dark);
    gap: 12px;
}

/* === FEATURES / WHY CHOOSE === */
.feature-box {
    text-align: center;
    padding: 40px 30px;
    background: var(--pure-white);
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.feature-box:hover {
    border-color: var(--saffron-primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.feature-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(255, 153, 51, 0.1), rgba(255, 153, 51, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--saffron-primary);
    font-size: 2.5rem;
    border: 3px solid var(--saffron-light);
}

/* === STATS === */
.stats-section {
    background: linear-gradient(135deg, var(--deep-blue), var(--blue-dark));
    color: var(--pure-white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '॥ ॐ ॥';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 25rem;
    opacity: 0.03;
    font-family: serif;
    pointer-events: none;
}

.stat-box {
    text-align: center;
    padding: 30px;
    position: relative;
}

.stat-number {
    font-size: 4rem;
    font-weight: 900;
    font-family: var(--font-display);
    color: var(--saffron-primary);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.2rem;
    font-family: var(--font-sans);
    color: var(--pure-white);
    font-weight: 600;
}

/* === TESTIMONIALS === */
.testimonial-card {
    background: var(--pure-white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
    position: relative;
    border-left: 4px solid var(--saffron-primary);
}

.testimonial-quote {
    font-size: 4rem;
    color: var(--saffron-primary);
    opacity: 0.2;
    position: absolute;
    top: 20px;
    left: 30px;
    font-family: serif;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-gray);
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--saffron-primary), var(--saffron-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pure-white);
    font-size: 1.5rem;
    font-weight: 700;
}

.author-info h5 {
    color: var(--deep-blue);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.author-info p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.95rem;
}

.rating {
    color: var(--sacred-gold);
    font-size: 1.1rem;
    margin-top: 15px;
}

/* === FOOTER === */
.footer {
    background: linear-gradient(135deg, var(--deep-blue) 0%, var(--blue-dark) 100%);
    color: var(--pure-white);
    padding: 80px 0 0;
    position: relative;
}

.footer-widget {
    margin-bottom: 40px;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--pure-white);
    font-weight: 700;
    margin-bottom: 20px;
    display: block;
}

.footer-logo span {
    color: var(--saffron-primary);
}

.footer-widget h4 {
    color: var(--pure-white);
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-widget h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--saffron-primary);
}

.footer-widget p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--font-sans);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--saffron-primary);
    padding-left: 10px;
}

.footer-links i {
    color: var(--saffron-primary);
    font-size: 0.8rem;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact i {
    color: var(--saffron-primary);
    font-size: 1.2rem;
    margin-top: 3px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pure-white);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-links a:hover {
    background: var(--saffron-primary);
    border-color: var(--saffron-primary);
    transform: translateY(-3px);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 25px 0;
    margin-top: 60px;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--font-sans);
}

.footer-bottom a {
    color: var(--saffron-primary);
    font-weight: 700;
}

/* === GALLERY === */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 30px;
    height: 300px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.15);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 51, 102, 0.9), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 25px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-title {
    color: var(--pure-white);
    font-size: 1.3rem;
    font-weight: 700;
}

/* === BREADCRUMB === */
.breadcrumb-section {
    background: linear-gradient(135deg, var(--deep-blue), var(--blue-dark));
    padding: 80px 0;
    color: var(--pure-white);
    text-align: center;
    position: relative;
}

.breadcrumb-title {
    font-size: 3rem;
    color: var(--pure-white);
    margin-bottom: 20px;
}

.breadcrumb-nav {
    font-family: var(--font-sans);
    font-size: 1.1rem;
}

.breadcrumb-nav a {
    color: var(--saffron-primary);
}

.breadcrumb-nav span {
    color: rgba(255, 255, 255, 0.7);
    margin: 0 10px;
}

/* === FORMS === */
.form-group {
    margin-bottom: 25px;
}

.form-label {
    font-family: var(--font-sans);
    font-weight: 600;
    color: var(--deep-blue);
    margin-bottom: 10px;
    display: block;
}

.form-control,
.form-select,
textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--border-light);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--pure-white);
}

.form-control:focus,
.form-select:focus,
textarea:focus {
    outline: none;
    border-color: var(--saffron-primary);
    box-shadow: 0 0 0 3px rgba(255, 153, 51, 0.1);
}

textarea {
    resize: vertical;
    min-height: 150px;
}

/* === ACCORDION === */
.accordion-item {
    background: var(--pure-white);
    border: 2px solid var(--border-light);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
}

.accordion-button {
    background: var(--pure-white);
    color: var(--deep-blue);
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 1.1rem;
    padding: 20px 25px;
    border: none;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--saffron-primary), var(--saffron-dark));
    color: var(--pure-white);
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    padding: 25px;
    color: var(--text-gray);
    font-size: 1.05rem;
}

/* === PACKAGE DETAILS === */
.itinerary-day {
    background: var(--pure-white);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 20px;
    border-left: 4px solid var(--saffron-primary);
    box-shadow: var(--shadow-soft);
}

.day-title {
    color: var(--deep-blue);
    font-size: 1.4rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.day-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--saffron-primary), var(--saffron-dark));
    color: var(--pure-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* === ANIMATIONS === */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* === RESPONSIVE === */
@media (max-width: 991px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
    
    .hero-title { font-size: 3rem; }
    .hero-subtitle { font-size: 1.2rem; }
    .section { padding: 60px 0; }
    .section-title { font-size: 2.2rem; }
    
    .nav-link {
        padding: 10px 15px !important;
    }
}

@media (max-width: 767px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.7rem; }
    
    .hero-section {
        height: auto;
        min-height: 600px;
        padding: 80px 0;
    }
    
    .hero-title { font-size: 2.2rem; }
    .hero-subtitle { font-size: 1.1rem; }
    .section-title { font-size: 1.8rem; }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-primary-custom,
    .btn-secondary-custom {
        width: 100%;
        justify-content: center;
    }
    
    .stat-number { font-size: 2.5rem; }
    .stat-label { font-size: 1rem; }
}

/* === UTILITIES === */
.text-saffron { color: var(--saffron-primary) !important; }
.text-blue { color: var(--deep-blue) !important; }
.bg-cream { background: var(--soft-cream) !important; }
.bg-blue { background: var(--deep-blue) !important; }

.mb-60 { margin-bottom: 60px; }
.mt-60 { margin-top: 60px; }
.py-100 { padding: 100px 0; }

.fade-in {
    animation: fadeIn 0.8s ease-out;
}

.slide-in-left {
    animation: slideInLeft 0.8s ease-out;
}
