/* Tour Itinerary Widget Styles */
:root {
    --primary-color: #1a73e8;
    --secondary-color: #34a853;
    --accent-color: #fbbc05;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --dark-bg: #1a1a1a;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    --border-radius: 4px;
    --section-padding: 80px;
    --container-width: 1200px;
}

.tour-itinerary-widget {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Hero Section */
.tour-hero {
    position: relative;
    height: 80vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 0 20px;
}

.tour-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.tour-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.2s;
}

.tour-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    animation: fadeInUp 1s ease 0.4s;
}

.tour-price, .tour-duration, .tour-type {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Tour Overview Section */
.tour-overview {
    padding: 80px 0;
    background: #f8f9fa;
}

.overview-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.overview-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #2c3e50;
    text-align: center;
}

.overview-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
}

/* Tour Highlights Section */
.tour-highlights {
    padding: 80px 0;
    background: #fff;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.highlight-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.highlight-icon {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 20px;
}

.highlight-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c3e50;
}

.highlight-card p {
    color: #666;
    font-size: 1rem;
}

/* Tour Itinerary Section */
.tour-itinerary {
    padding: 80px 0;
    background: #f8f9fa;
}

.tour-day {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 0 20px;
}

.day-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    cursor: pointer;
}

.day-number {
    font-size: 1.2rem;
    font-weight: 600;
    color: #3498db;
    background: #fff;
    padding: 8px 15px;
    border-radius: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.day-header h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.day-description {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.tour-day.active .day-description {
    max-height: 1000px;
    padding: 30px;
}

/* Inclusions & Exclusions Section */
.inclusions-exclusions {
    padding: 80px 0;
    background: #fff;
}

.inclusions-exclusions > div {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.inclusions-exclusions h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #2c3e50;
    text-align: center;
}

.inclusions-exclusions ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.inclusions-exclusions li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.inclusions-exclusions li:hover {
    transform: translateX(5px);
}

.inclusions-exclusions li i {
    font-size: 1.2rem;
}

.inclusions li i {
    color: #2ecc71;
}

.exclusions li i {
    color: #e74c3c;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .tour-title {
        font-size: 2.5rem;
    }

    .tour-description {
        font-size: 1rem;
    }

    .tour-meta {
        flex-direction: column;
        gap: 15px;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
    }

    .inclusions-exclusions ul {
        grid-template-columns: 1fr;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #3498db;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #2980b9;
} 