/* ================================
   VIBRANT PREMIUM TOUR PAGE
   Rich, Engaging, Full of Life
   ================================ */

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

html,
body {
    background: #f8f9fa !important;
    margin: 0;
    padding: 0;
}

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

/* Container */
.single-tour-container {
    background: #f8f9fa !important;
    overflow-x: hidden;
    padding-bottom: 120px;
}

/* Bold Vibrant Hero */
.tour-hero {
    position: relative;
    height: 90vh;
    min-height: 650px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

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

.tour-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.75) contrast(1.05);
}

.tour-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 0.3) 50%,
            rgba(0, 0, 0, 0.8) 100%);
    z-index: 2;
}

.tour-hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 0 60px 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.tour-category-badge {
    display: inline-block;
    background: #2563eb;
    color: white;
    padding: 10px 28px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.4);
}

.tour-title {
    font-size: 5rem;
    color: #ffffff;
    margin: 0;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -2px;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
    font-family: 'Playfair Display', serif;
    max-width: 1000px;
}

/* Rich Content Section */
.tour-details-section {
    position: relative;
    background: #f8f9fa !important;
    padding: 80px 0;
    z-index: 3;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
    /* Increased from 60px */
}

.tour-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: start;
}

/* Main Content */
.tour-main-content {
    min-width: 0;
}

/* Colorful Info Bar */
.tour-quick-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 60px;
    margin-top: -80px;
    position: relative;
    z-index: 10;
}

.info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 35px 25px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.info-item:nth-child(1) {
    border-top: 3px solid #2563eb;
}

.info-item:nth-child(2) {
    border-top: 3px solid #10b981;
}

.info-item:nth-child(3) {
    border-top: 3px solid #f59e0b;
}

.info-item:nth-child(4) {
    border-top: 3px solid #ef4444;
}

.info-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.info-icon {
    width: 42px;
    height: 42px;
    stroke: #2563eb;
    stroke-width: 2;
    margin-bottom: 18px;
}

.info-item:nth-child(2) .info-icon {
    stroke: #10b981;
}

.info-item:nth-child(3) .info-icon {
    stroke: #f59e0b;
}

.info-item:nth-child(4) .info-icon {
    stroke: #ef4444;
}

.info-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.info-label {
    font-size: 0.7rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
}

.info-value {
    font-size: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
    letter-spacing: -0.5px;
    font-family: 'Playfair Display', serif;
}

/* Rich Section Styling */
.tour-section {
    margin-bottom: 60px;
    background: white !important;
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid #e5e7eb;
}

.tour-section h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 30px;
    font-weight: 700;
    letter-spacing: -1px;
    font-family: 'Playfair Display', serif;
    position: relative;
    padding-left: 20px;
}

.tour-section h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #2563eb, #3b82f6);
    border-radius: 2px;
}

.tour-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #374151;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
}

.tour-content p {
    margin-bottom: 20px;
}

.tour-content ul,
.tour-content ol {
    margin: 20px 0;
    padding-left: 0;
    list-style: none;
}

.tour-content ul li,
.tour-content ol li {
    margin-bottom: 12px;
    line-height: 1.8;
    padding-left: 35px;
    position: relative;
    color: #4b5563;
}

.tour-content ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
    font-size: 1.2rem;
}

/* Vibrant Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 30px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    aspect-ratio: 4/3;
    cursor: pointer;
    background: #f3f4f6;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

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

/* Modern Accordion */
.itinerary-accordion {
    margin-top: 30px;
    background: white;
}

/* Itinerary Timeline */
.itinerary-accordion {
    position: relative;
    padding-left: 30px;
}

.itinerary-accordion::before {
    content: '';
    position: absolute;
    left: 45px;
    top: 40px;
    bottom: 40px;
    width: 3px;
    background: linear-gradient(to bottom, #2563eb, #10b981);
    border-radius: 3px;
}

.accordion-item {
    background: white !important;
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.accordion-item:hover {
    border-color: #2563eb;
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.12);
    transform: translateX(5px);
}

.accordion-item.active {
    border-color: #2563eb;
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.18);
    transform: translateX(5px);
}

.accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 28px 30px;
    background: white !important;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9) !important;
}

.accordion-item.active .accordion-header {
    background: linear-gradient(135deg, #eff6ff, #e0f2fe) !important;
}

.accordion-day-label {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 16px 14px;
    border-radius: 14px;
    letter-spacing: 1.5px;
    min-width: 75px;
    /* Wider to fit "DAY 01-02" */
    text-align: center;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
    position: relative;
    z-index: 2;
    white-space: nowrap;
}

/* Day number circle effect */
.accordion-day-label::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    border-radius: 17px;
    z-index: -1;
    opacity: 0.3;
}

.accordion-title {
    flex: 1;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    line-height: 1.4;
    font-family: 'Inter', sans-serif;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* Add destination indicator */
.accordion-title::after {
    content: 'View Details →';
    font-size: 0.8rem;
    font-weight: 500;
    color: #6b7280;
    opacity: 0;
    transition: opacity 0.3s;
}

.accordion-item:hover .accordion-title::after {
    opacity: 1;
    color: #2563eb;
}

.accordion-item.active .accordion-title::after {
    content: 'Hide Details';
    opacity: 1;
    color: #2563eb;
}

.accordion-icon {
    width: 28px;
    height: 28px;
    stroke: #9ca3af;
    stroke-width: 2.5;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    background: #f3f4f6;
    border-radius: 50%;
    padding: 6px;
}

.accordion-item:hover .accordion-icon {
    stroke: #2563eb;
    background: #eff6ff;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
    stroke: white;
    background: #2563eb;
}

.accordion-content {
    display: none;
    border-top: 2px solid #e5e7eb;
    background: linear-gradient(180deg, #f8fafc, #ffffff) !important;
}

.accordion-content-inner {
    padding: 35px 35px 35px 100px;
    font-size: 1rem;
    line-height: 1.9;
    color: #475569;
    font-family: 'Inter', sans-serif;
    position: relative;
}

/* Add decorative element */
.accordion-content-inner::before {
    content: '';
    position: absolute;
    left: 35px;
    top: 35px;
    bottom: 35px;
    width: 4px;
    background: linear-gradient(to bottom, #2563eb, #10b981);
    border-radius: 4px;
    opacity: 0.2;
}

.accordion-content-inner p {
    margin-bottom: 18px;
    padding-left: 15px;
    border-left: 3px solid transparent;
    transition: border-color 0.3s;
}

.accordion-content-inner p:hover {
    border-left-color: #2563eb;
}

.accordion-content-inner ul,
.accordion-content-inner ol {
    margin: 20px 0;
    padding-left: 0;
    list-style: none;
}

.accordion-content-inner ul li,
.accordion-content-inner ol li {
    margin-bottom: 10px;
    line-height: 1.8;
    padding-left: 30px;
    position: relative;
    color: #6b7280;
}

.accordion-content-inner ul li:before {
    content: '•';
    position: absolute;
    left: 10px;
    color: #2563eb;
    font-size: 1.3rem;
    font-weight: 700;
}

.accordion-content-inner strong {
    color: #1a1a1a;
    font-weight: 600;
}

/* Block-Based Day Styling */
.accordion-duration {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    color: #166534;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    margin-left: auto;
    margin-right: 15px;
}

.day-image-wrapper {
    margin-bottom: 25px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.day-featured-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.day-image-wrapper:hover .day-featured-image {
    transform: scale(1.03);
}

.day-highlights {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-radius: 12px;
    padding: 20px 25px;
    margin-bottom: 25px;
    border-left: 4px solid #2563eb;
}

.day-highlights h4 {
    color: #1e40af;
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 12px 0;
    font-family: 'Inter', sans-serif;
}

.highlights-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 8px;
}

.highlights-list li {
    padding: 8px 0 8px 28px !important;
    position: relative;
    color: #374151;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    margin: 0 !important;
    border: none !important;
}

.highlights-list li:before {
    content: '✓' !important;
    position: absolute;
    left: 0 !important;
    color: #2563eb !important;
    font-weight: 700;
    font-size: 1rem !important;
}

.day-activities-content {
    line-height: 1.8;
    color: #475569;
}

.day-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 25px;
}

.day-gallery-image {
    flex: 1 1 calc(33.333% - 10px);
    max-width: calc(50% - 8px);
    min-width: 200px;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.day-gallery-image:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);
}

@media (max-width: 768px) {
    .day-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .day-featured-image {
        height: 200px;
    }

    .highlights-list {
        grid-template-columns: 1fr;
    }

    .accordion-duration {
        display: none;
    }
}

/* Colorful Inclusions */
.inclusions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.inclusion-box {
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.inclusion-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.inclusion-box.included {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border: 2px solid #10b981;
}

.inclusion-box.not-included {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border: 2px solid #ef4444;
}

.inclusion-box h3 {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.4rem;
    margin-bottom: 25px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.inclusion-box.included h3 {
    color: #065f46;
}

.inclusion-box.not-included h3 {
    color: #991b1b;
}

.inclusion-icon {
    width: 28px;
    height: 28px;
    stroke-width: 2.5;
}

.inclusion-box.included .inclusion-icon {
    stroke: #10b981;
}

.inclusion-box.not-included .inclusion-icon {
    stroke: #ef4444;
}

.inclusion-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.inclusion-content ul li {
    padding: 14px 0;
    font-size: 1rem;
    color: #374151;
    line-height: 1.7;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.inclusion-content ul li:last-child {
    border-bottom: none;
}

/* Bold Sidebar */
.tour-sidebar {
    position: sticky;
    top: 30px;
    align-self: start;
}

/* Eye-catching Booking Card */
.booking-card {
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
    border: none;
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 20px 60px rgba(37, 99, 235, 0.3);
    color: white;
    position: relative;
    overflow: hidden;
}

.booking-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.booking-price {
    text-align: center;
    padding-bottom: 30px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 30px;
}

.price-label {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
}

.price-amount {
    display: block;
    font-size: 3.5rem;
    color: #ffffff;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.price-person {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Inter', sans-serif;
}

.btn-book-tour,
.btn-inquire {
    display: block;
    width: 100%;
    padding: 18px 30px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Inter', sans-serif;
}

.btn-book-tour {
    background: white;
    color: #1e40af;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.btn-book-tour:hover {
    background: #f9fafb;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
    color: #1e40af;
}

.btn-inquire {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-inquire:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
}

.booking-info {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
}

.booking-info p {
    margin: 0;
    padding: 10px 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

/* Colorful Info Card */
.tour-info-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    padding: 35px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.tour-info-card h3 {
    font-size: 1.4rem;
    color: #1a1a1a;
    margin-bottom: 25px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.tour-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tour-info-list li {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 16px 0;
    border-bottom: 2px solid #f3f4f6;
    gap: 15px;
}

.tour-info-list li:last-child {
    border-bottom: none;
}

.tour-info-list strong {
    color: #6b7280;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    flex-shrink: 0;
    min-width: 80px;
}

.tour-info-list span {
    color: #1a1a1a;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    text-align: right;
    word-break: break-word;
}

/* Vibrant Share Card */
.share-card {
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    border: 2px solid #d1d5db;
    border-radius: 20px;
    padding: 35px;
}

.share-card h3 {
    font-size: 1.4rem;
    color: #1a1a1a;
    margin-bottom: 25px;
    font-weight: 700;
    text-align: center;
    font-family: 'Playfair Display', serif;
}

.share-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.share-btn {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
}

.share-btn svg {
    width: 22px;
    height: 22px;
    fill: white;
}

.share-btn.facebook {
    background: #1877f2;
}

.share-btn.facebook:hover {
    background: #0c5fcd;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(24, 119, 242, 0.4);
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.twitter:hover {
    background: #0d8bd9;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(29, 161, 242, 0.4);
}

.share-btn.whatsapp {
    background: #25d366;
}

.share-btn.whatsapp:hover {
    background: #1faa52;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

/* Vibrant Related Tours */
.related-tours-section {
    background: white;
    padding: 100px 0;
    margin-top: 0;
    border-top: 4px solid #2563eb;
}

.related-tours-section h2 {
    font-size: 3rem;
    color: #1a1a1a;
    margin-bottom: 60px;
    font-weight: 700;
    text-align: center;
    font-family: 'Playfair Display', serif;
}

/* Responsive */
@media (max-width: 1024px) {
    .tour-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .tour-sidebar {
        position: static;
    }

    .tour-hero {
        height: 70vh;
        min-height: 550px;
    }

    .tour-hero-content {
        padding: 0 40px 60px;
    }

    .tour-title {
        font-size: 3.5rem;
    }

    .tour-quick-info {
        grid-template-columns: repeat(2, 1fr);
        margin-top: -60px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .inclusions-grid {
        grid-template-columns: 1fr;
    }

    .accordion-content-inner {
        padding-left: 30px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 30px;
        /* Increased from 25px */
    }

    .tour-hero {
        height: 60vh;
        min-height: 450px;
    }

    .tour-hero-content {
        padding: 0 25px 50px;
    }

    .tour-title {
        font-size: 2.5rem;
    }

    .tour-quick-info {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: -40px;
    }

    .tour-section {
        padding: 35px 25px;
        border-radius: 20px;
    }

    .tour-section h2 {
        font-size: 2rem;
    }

    .accordion-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 22px 20px;
        position: relative;
    }

    .accordion-title {
        font-size: 1.2rem;
        padding-right: 35px;
    }

    .accordion-icon {
        position: absolute;
        top: 24px;
        right: 20px;
    }

    .accordion-content-inner {
        padding: 25px 20px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .booking-card {
        padding: 35px 25px;
    }

    .price-amount {
        font-size: 3rem;
    }

    .inclusion-box {
        padding: 30px 25px;
    }

    /* Hide decorative line inside day content on mobile */
    .accordion-content-inner::before {
        display: none;
    }
}

@media (max-width: 480px) {
    .tour-title {
        font-size: 2rem;
    }

    .tour-section h2 {
        font-size: 1.7rem;
    }

    .price-amount {
        font-size: 2.5rem;
    }
}

/* Style for the all-tours-grid */
.all-tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

/* Footer link color fix for single tour page */
footer a,
.footer a,
.site-footer a,
#footer a,
.elementor-location-footer a {
    color: #ffffff !important;
}

footer a:hover,
.footer a:hover,
.site-footer a:hover,
#footer a:hover,
.elementor-location-footer a:hover {
    color: #cccccc !important;
}

/* ================================
   ROAD STOPS & COMBINED DAYS
   Flexible Itinerary Styling
   ================================ */

/* Road Stop Connector Card */
.road-stop-connector {
    position: relative;
    margin: 15px 0;
    padding-left: 30px;
}

.road-stop-line {
    position: absolute;
    left: 57px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #3b82f6, #1d4ed8);
    border-radius: 3px;
}

.road-stop-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border: 2px solid #3b82f6;
    border-radius: 16px;
    padding: 20px 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.15);
}

.road-stop-card:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.25);
}

.road-stop-icon {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.road-stop-icon svg {
    width: 24px;
    height: 24px;
    stroke: white;
}

.road-stop-content {
    flex: 1;
    min-width: 0;
}

.road-stop-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.road-stop-badge {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Inter', sans-serif;
}

.road-stop-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e40af;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.road-stop-duration {
    font-size: 0.85rem;
    color: #2563eb;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.road-stop-description {
    font-size: 0.95rem;
    color: #1e3a5f;
    line-height: 1.7;
    font-family: 'Inter', sans-serif;
    margin-top: 10px;
    /* Limit to 5 lines */
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.road-stop-thumb {
    width: 100px;
    height: 100px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.road-stop-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Combined Day Badge */
.accordion-combined-badge {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Inter', sans-serif;
    margin-left: auto;
    margin-right: 15px;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* Combined Day Styling */
.accordion-item.combined-day {
    border-color: #3b82f6;
}

.accordion-item.combined-day:hover,
.accordion-item.combined-day.active {
    border-color: #3b82f6;
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.18);
}

.accordion-item.combined-day .accordion-day-label {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.35);
}

.accordion-item.combined-day .accordion-day-label::before {
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
}

/* Combined Day Blocks Container */
.combined-day-blocks {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.combined-block-item {
    padding: 25px;
    background: #f8fafc;
    border-radius: 16px;
    position: relative;
    border-left: 4px solid #3b82f6;
}

/* All time slots use same blue styling */
.combined-block-item.morning,
.combined-block-item.mid-morning,
.combined-block-item.afternoon,
.combined-block-item.evening {
    background: #f8fafc;
    border-left: 4px solid #3b82f6;
}

.block-time-badge {
    display: inline-block;
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 12px;
    font-family: 'Inter', sans-serif;
}

/* Same badge style for all time slots */
.combined-block-item.morning .block-time-badge,
.combined-block-item.mid-morning .block-time-badge,
.combined-block-item.afternoon .block-time-badge,
.combined-block-item.evening .block-time-badge {
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    color: white;
}

.combined-block-item .block-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 15px 0;
    font-family: 'Inter', sans-serif;
}

/* Block Divider */
.block-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, #e5e7eb, transparent);
    margin: 20px 0;
    position: relative;
}

.block-divider::before {
    content: '→';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 5px 15px;
    font-size: 1.2rem;
    color: #9ca3af;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .road-stop-card {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        padding: 18px;
    }

    .road-stop-icon {
        width: 40px;
        height: 40px;
    }

    .road-stop-icon svg {
        width: 20px;
        height: 20px;
    }

    .road-stop-thumb {
        width: 100%;
        height: 120px;
        order: -1;
        margin-bottom: 15px;
    }

    .road-stop-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .accordion-combined-badge {
        display: none;
    }

    .combined-block-item {
        padding: 20px 15px;
    }

    .block-time-badge {
        font-size: 0.75rem;
        padding: 5px 10px;
    }
}

/* ================================
   MEDICAL HOSPITALS SECTION
   ================================ */

.tour-hospitals .section-icon {
    width: 30px;
    height: 30px;
    stroke: #2563eb;
    vertical-align: middle;
    margin-right: 12px;
}

.hospitals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 30px;
}

.hospital-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.hospital-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #10b981, #059669);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.hospital-card:hover {
    border-color: #10b981;
    box-shadow: 0 12px 40px rgba(16, 185, 129, 0.15);
    transform: translateY(-4px);
}

.hospital-card:hover::before {
    transform: scaleY(1);
}

.hospital-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.hospital-icon svg {
    width: 28px;
    height: 28px;
    stroke: #059669;
    stroke-width: 2.5;
}

.hospital-card:hover .hospital-icon {
    background: linear-gradient(135deg, #10b981, #059669);
    transform: rotate(5deg) scale(1.05);
}

.hospital-card:hover .hospital-icon svg {
    stroke: #ffffff;
}

.hospital-info {
    flex: 1;
    min-width: 0;
}

.hospital-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 12px 0;
    font-family: 'Playfair Display', serif;
    line-height: 1.3;
}

.hospital-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 12px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.hospital-location svg {
    width: 16px;
    height: 16px;
    stroke: #10b981;
    stroke-width: 2;
    flex-shrink: 0;
}

.hospital-description {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

@media (max-width: 768px) {
    .hospitals-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .hospital-card {
        padding: 20px;
        flex-direction: column;
        gap: 15px;
    }

    .hospital-icon {
        width: 48px;
        height: 48px;
    }

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

    .hospital-name {
        font-size: 1.1rem;
    }

    .hospital-location {
        font-size: 0.85rem;
    }

    .hospital-description {
        font-size: 0.9rem;
    }
}