/* css/packages.css */
:root {
    --primary-color: #41ff12;
    --secondary-color: #FBBF24;
    --dark-text: #1F2937;
    --body-text: #4B5563;
    --light-bg: #F9FAFB;
    --white: #FFFFFF;
    --border-color: #E5E7EB;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--body-text);
    background-color: var(--white);
    line-height: 1.7;
}

/* --- Hero Section --- */
.packages-hero {
    background: linear-gradient(rgba(4, 9, 30, 0.75), rgba(4, 9, 30, 0.75)), url('../img/p_cover_1.jpg') no-repeat center center fixed;
    background-size: cover;
    padding: clamp(110px, 16vw, 180px) 0 clamp(80px, 12vw, 140px);
    text-align: center;
    min-height: clamp(60vh, 75vh, 80vh);
    color: #fff;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}
.packages-hero .container {
    position: relative;
    z-index: 1;
}
.packages-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.packages-hero p {
    font-size: 1.25rem;
    max-width: 750px;
    margin: 0 auto;
    color: #e5e7eb;
    line-height: 1.6;
}

/* --- Tour Intro Section --- */
.tour-intro {
    padding: 80px 0 50px;
}
.intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}
.intro-text h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 12px;
    line-height: 1.3;
}
.intro-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.8;
}
.quick-facts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}
.quick-facts .btn-primary-tour {
    grid-column: 1 / -1;
    width: 100%;
    display: block;
    text-align: center;
    margin-top: 5px;
}
.fact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}
.fact-item i {
    font-size: 1.4rem;
    color: var(--primary-color);
    background-color: rgba(65, 255, 18, 0.1);
    padding: 12px;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fact-detail h4 {
    font-size: 0.85rem;
    color: #9ca3af;
    margin-bottom: 2px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.fact-detail p {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 0;
}
.intro-image {
    position: relative;
    isolation: isolate;
}
.intro-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border: 0.5rem solid var(--white);
}
.intro-image::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    background-color: rgba(65, 255, 18, 0.1);
    border-radius: 12px;
    transform: rotate(-4deg);
    z-index: -1;
}

/* --- Itinerary Section --- */
.itinerary-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}
.section-title {
    text-align: center;
    margin-bottom: 60px;
}
.section-title h2 {
    font-size: 1.8rem;
    color: var(--dark-text);
    font-weight: 700;
}
.section-title p {
    font-size: 1.15rem;
    color: var(--body-text);
    max-width: 600px;
    margin: 15px auto 0;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}
.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--border-color);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}

.day-container {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}
.day-container::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    right: -12px;
    background-color: var(--white);
    border: 4px solid var(--primary-color);
    top: 30px;
    border-radius: 50%;
    z-index: 2;
    transition: all 0.3s ease;
}
.day-container:hover::after {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

.left {
    left: 0;
}
.right {
    left: 50%;
}
.right::after {
    left: -12px;
}

.day-content {
    padding: 30px;
    background-color: var(--white);
    position: relative;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.day-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.day-num {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 5px;
}
.day-title {
    font-size: 1.4rem;
    color: var(--dark-text);
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
}
.day-desc {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--body-text);
}
.day-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.highlight-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.pill {
    background-color: #f3f4f6;
    color: var(--dark-text);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.pill i {
    color: var(--primary-color);
}

/* --- Inclusions & Exclusions --- */
.inc-exc-section {
    padding: 80px 0;
}
.inc-exc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: var(--light-bg);
    padding: 40px;
    border-radius: 16px;
}
.inc-box h3, .exc-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.inc-box h3 i {
    color: #10B981;
}
.exc-box h3 i {
    color: #EF4444;
}
.inc-list, .exc-list {
    list-style: none;
    padding: 0;
}
.inc-list li, .exc-list li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 12px;
    font-size: 1.05rem;
    color: var(--body-text);
}
.inc-list li::before {
    content: '\f00c'; /* FontAwesome check */
    font-family: 'FontAwesome';
    position: absolute;
    left: 0;
    color: #10B981;
    font-weight: 600;
}
.exc-list li::before {
    content: '\f00d'; /* FontAwesome times */
    font-family: 'FontAwesome';
    position: absolute;
    left: 0;
    color: #EF4444;
    font-weight: 600;
}

/* --- Book CTA Section --- */
.packages-cta {
    background: linear-gradient(rgba(4, 9, 30, 0.9), rgba(4, 9, 30, 0.9)), url('../img/game-ride.jpg') no-repeat center center/cover;
    padding: 100px 0;
    text-align: center;
    color: #fff;
}
.packages-cta h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}
.packages-cta p {
    font-size: 1.25rem;
    max-width: 650px;
    margin: 0 auto 40px;
    color: #d1d5db;
    line-height: 1.6;
}
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.btn-primary-tour {
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 14px 38px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    display: inline-block;
    cursor: pointer;
}
.btn-primary-tour:hover {
    background-color: transparent;
    color: var(--primary-color);
    text-decoration: none;
}
.btn-secondary-tour {
    background-color: transparent;
    color: #fff;
    padding: 14px 38px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid #fff;
    display: inline-block;
    cursor: pointer;
}
.btn-secondary-tour:hover {
    background-color: #fff;
    color: #0b0b0b;
    text-decoration: none;
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .packages-hero {
        background-attachment: scroll;
        min-height: auto;
    }
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .fact-item {
        justify-content: center;
        text-align: left;
    }
    .intro-image {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }
    .quick-facts {
        max-width: 500px;
        margin: 0 auto 30px;
    }
}

@media (max-width: 768px) {
    .packages-hero {
        padding: 120px 0 80px;
    }
    .packages-hero h1 {
        font-size: 2.2rem;
    }
    .packages-hero p {
        font-size: 1rem;
    }
    .quick-facts {
        grid-template-columns: 1fr;
    }
    .intro-text h2,
    .section-title h2 {
        font-size: 1.6rem;
    }
    .timeline::after {
        left: 31px;
    }
    .day-container {
        width: 100%;
        padding-left: 70px;
        padding-right: 20px;
    }
    .day-container::after {
        left: 20px;
        right: auto;
        top: 30px;
    }
    .right {
        left: 0%;
    }
    .right::after {
        left: 20px;
    }
    .inc-exc-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 25px;
    }
    .timeline {
        padding-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .packages-hero {
        padding: 110px 0 70px;
    }
    .packages-hero h1 {
        font-size: 1.8rem;
    }
    .day-content {
        padding: 20px;
    }
    .quick-facts .btn-primary-tour {
        width: 100%;
        padding: 12px 20px;
    }
}
