/* Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Inter:wght@400;500;600;700&display=swap');

.tour-hero-section {
    position: relative;
    width: 100%;
    /* Set a minimum height so the image shows well */
    min-height: 400px; 
    display: flex;
    align-items: center;
    
    /* YAHAN APNI IMAGE KA LINK DAALEIN */
    background-image: url('/images/temple2.jpeg');
    background-size: cover;
    background-position: center;
    
    font-family: 'Inter', sans-serif;
    color: #ffffff;
    padding: 60px 20px;
    box-sizing: border-box;
}

/* Gradient Overlay - Matches the blue/teal look in the image */
.tour-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradient from Cyan-Teal to Blue with opacity */
    background: linear-gradient(to right, rgba(34, 142, 175, 0.85), rgba(43, 107, 138, 0.85));
    z-index: 1;
}

/* Content Container */
.tour-content-container {
    position: relative;
    z-index: 2; /* Keeps text above the overlay */
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}

/* Typography */
.tour-subtitle {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
    opacity: 0.9;
}

.tour-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin: 0 0 16px 0;
    font-weight: 700;
    line-height: 1.1;
}

.tour-desc {
    font-size: 1rem;
    line-height: 1.6;
    max-width: 650px;
    margin: 0 0 32px 0;
    opacity: 0.95;
}

/* Info Boxes Layout */
.tour-info-boxes {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Individual Glassmorphism Box */
.info-box {
    background: rgba(255, 255, 255, 0.15); /* Semi-transparent white */
    backdrop-filter: blur(8px); /* Blur effect for the background */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 16px 24px;
    min-width: 180px;
}

.info-label {
    display: block;
    font-size: 0.75rem;
    opacity: 0.8;
    margin-bottom: 4px;
}

.info-value {
    font-size: 1.05rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Clock Icon */
.icon-clock {
    width: 16px;
    height: 16px;
    stroke: currentColor;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .tour-title {
        font-size: 2.5rem;
    }
    .tour-desc {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .tour-title {
        font-size: 2rem;
    }
    .tour-info-boxes {
        flex-direction: column;
    }
    .info-box {
        width: 100%;
        box-sizing: border-box;
    }
}


/* Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Inter:wght@400;500;600&display=swap');

.tour-layout-section {
    padding: 60px 20px;
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
}

/* 
   Yeh sabse important class hai sticky ke liye. 
   align-items: flex-start; zaroori hai warna sidebar stretch ho jayega aur scroll nahi hoga.
*/
.tour-layout-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    align-items: flex-start; 
}

/* --- Left Column (Content) --- */
.tour-content {
    flex: 1 1 55%; /* Takes 55% of space */
}

.tour-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #1e293b;
    margin: 0 0 8px 0;
}

.tour-content .subtitle {
    color: #64748b;
    font-size: 0.95rem;
    margin: 0 0 20px 0;
}

/* Custom Chevron List */
.chevron-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.chevron-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    color: #334155;
    font-weight: 500;
}

.chevron-list li::before {
    content: '›';
    position: absolute;
    left: 0;
    top: -2px;
    color: #3b82f6; /* Blue Arrow */
    font-size: 1.2rem;
    font-weight: bold;
}

/* Custom Blue Numbers List */
.blue-numbers-list {
    list-style: none;
    counter-reset: my-counter;
    padding: 0;
    margin: 0 0 40px 0;
}

.blue-numbers-list li {
    counter-increment: my-counter;
    margin-bottom: 12px;
    color: #334155;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
}

.blue-numbers-list li::before {
    content: counter(my-counter) ".";
    color: #3b82f6; /* Blue Numbers */
    font-weight: bold;
    font-size: 0.95rem;
}


/* --- Right Column (Sticky Form) --- */
.tour-sidebar {
    flex: 1 1 45%; /* Takes 45% of space */
    position: sticky; /* Makes it float */
    top: 40px; /* Space from top while scrolling */
}

.booking-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.booking-header {
    text-align: center;
    margin-bottom: 24px;
}

.booking-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #1e293b;
    margin: 0 0 8px 0;
}

.booking-header p {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

/* Form Styles */
.booking-form-inner {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.input-group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Small SVGs in Labels */
.input-group label svg {
    width: 14px;
    height: 14px;
    color: #3b82f6; /* Blue Icons */
}

.input-group input, 
.input-group select {
    padding: 10px 14px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.9rem;
    color: #1e293b;
    background-color: #f8fafc;
    transition: border-color 0.2s;
}

.input-group input:focus, 
.input-group select:focus {
    outline: none;
    border-color: #3b82f6;
    background-color: #ffffff;
}

/* Action Buttons */
.form-actions {
    display: flex;
    gap: 16px;
    margin-top: 10px;
}

.btn-wa, .btn-email {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 12px;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-wa {
    background-color: #25d366;
    color: white;
    border: none;
}
.btn-wa:hover { background-color: #20b858; }
.btn-wa svg { width: 18px; height: 18px; }

.btn-email {
    background-color: white;
    color: #3b82f6;
    border: 1px solid #3b82f6;
}
.btn-email:hover { background-color: #eff6ff; }
.btn-email svg { width: 18px; height: 18px; }

/* Footer Link */
.form-footer {
    text-align: center;
    font-size: 0.85rem;
    color: #64748b;
    margin-top: 10px;
}

.form-footer a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 792px) {
    .tour-layout-container {
        flex-direction: column; /* Stack on mobile/tablet */
    }
    
    .tour-sidebar {
        position: static; /* Disable sticky on small screens */
        width: 100%;
    }
}

@media (max-width: 500px) {
    .form-row {
        grid-template-columns: 1fr; /* Make form 1 column on small phones */
    }
    
    .form-actions {
        flex-direction: column;
    }
}



/* --- Tour Highlights Cards --- */
.highlights-cards-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px; /* Scroll karne ke liye space */
}

.highlight-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: #f8fafc; /* Light grayish-blue box */
    padding: 16px 20px;
    border-radius: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.highlight-card:hover {
    transform: translateX(5px); /* Hover par thoda aage khiskega */
    background-color: #f1f5f9;
}

/* Orange Icon Box */
.hl-icon {
    background-color: #f99b28; /* Orange matching the image */
    color: #ffffff;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(249, 155, 40, 0.3); /* Soft orange shadow */
}

.hl-icon svg {
    width: 24px;
    height: 24px;
}

/* Typography inside cards */
.hl-text h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: #1e293b;
    margin: 0 0 4px 0;
}

.hl-text p {
    color: #64748b;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}



/* --- Timeline Section --- */
.timeline-heading {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #1e293b;
    margin: 30px 0 20px 0;
}

.day-plan-timeline {
    position: relative;
    padding-top: 10px;
    padding-bottom: 20px;
}

/* Background Connecting Line */
.timeline-line {
    position: absolute;
    top: 25px; /* Icon ke center se start hoga */
    bottom: 25px; /* Last icon par khatam hoga */
    left: 19px; /* Icon width (40px) ka exactly center (20px - line_width/2) */
    width: 2px;
    background-color: #64748b; /* Dark Slate Blue color line */
    z-index: 1;
}

/* Individual Timeline Row */
.timeline-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 16px;
    position: relative;
    z-index: 2; /* Line ke upar dikhega */
}

/* Orange Pin Icon */
.timeline-icon {
    width: 40px;
    height: 40px;
    background-color: #f99b28;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    flex-shrink: 0; /* Icon compress na ho */
    /* Glowing shadow jaisa image me hai */
    box-shadow: 0 0 15px rgba(249, 155, 40, 0.4); 
}

.timeline-icon svg {
    width: 18px;
    height: 18px;
}

/* Timeline Text Content Area */
.timeline-content {
    background-color: #fcfcfd; /* Very subtle background */
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    padding: 10px 20px;
    width: 100%;
    transition: background-color 0.2s ease;
}

.timeline-item:hover .timeline-content {
    background-color: #f8fafc;
}

/* Time text (Blue) */
.timeline-content .time {
    display: block;
    color: #0284c7; /* Blue color matching the image */
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 2px;
}

/* Activity text (Dark) */
.timeline-content .activity {
    display: block;
    color: #1e293b;
    font-size: 0.95rem;
    font-weight: 500;
}



/* --- What's Included Box --- */
.whats-included-box {
    background-color: #f1f5f9; /* Light slate/gray box background */
    border-radius: 12px;
    padding: 30px;
    margin-top: 40px; /* Timeline aur iske beech ki space */
    margin-bottom: 40px;
}

.included-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: #1e293b;
    margin: 0 0 20px 0;
}

.included-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px; /* List items ke beech ki space */
}

.included-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #334155;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Green Checkmark Icon Styling */
.check-icon {
    width: 20px;
    height: 20px;
    color: #10b981; /* Emerald green matching the image */
    flex-shrink: 0; /* Icon text ke lamba hone par compress nahi hoga */
}