/* ========================================
   PACKAGE DETAILS PAGE
   ======================================== */

.package-details-section {
    padding: 6rem 0;
    background: #ffffff;
}

/* === PACKAGE OVERVIEW === */
.package-overview {
    margin-bottom: 3rem;
}

.package-detail-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 2rem;
}

.package-header-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-family: 'Playfair Display', serif;
}

.package-meta-details {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 1.5rem;
    background: #f8f8f8;
    border-radius: 15px;
}

.package-meta-details span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-weight: 500;
}

.package-meta-details i {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

/* === DESCRIPTION === */
.package-description {
    margin-bottom: 3rem;
}

.package-description h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    border-bottom: 3px solid var(--secondary-color);
    padding-bottom: 0.5rem;
}

.package-description p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

/* === TOUR ITINERARY === */
.tour-itinerary {
    margin-bottom: 3rem;
}

.tour-itinerary h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
    border-bottom: 3px solid var(--secondary-color);
    padding-bottom: 0.5rem;
}

.itinerary-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 2rem;
    background: #f8f8f8;
    border-radius: 15px;
    border-left: 5px solid var(--secondary-color);
    transition: var(--transition-smooth);
}

.itinerary-item:hover {
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
}

.itinerary-day {
    min-width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.itinerary-content h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.itinerary-content p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1rem;
}

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

.itinerary-content ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.itinerary-content ul li::before {
    content: "→";
    color: var(--secondary-color);
    font-weight: 700;
}

/* === INCLUDED/EXCLUDED === */
.included-box,
.excluded-box {
    background: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.included-box {
    border-top: 5px solid #28a745;
}

.excluded-box {
    border-top: 5px solid #dc3545;
}

.included-box h3,
.excluded-box h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.included-box h3 {
    color: #28a745;
}

.excluded-box h3 {
    color: #dc3545;
}

.included-box h3 i,
.excluded-box h3 i {
    font-size: 1.5rem;
}

.included-box ul,
.excluded-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.included-box ul li,
.excluded-box ul li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-gray);
}

.included-box ul li:last-child,
.excluded-box ul li:last-child {
    border-bottom: none;
}

.included-box ul li i {
    color: #28a745;
    font-size: 1.1rem;
}

.excluded-box ul li i {
    color: #dc3545;
    font-size: 1.1rem;
}

/* === BOOKING SIDEBAR === */
.booking-sidebar {
    position: sticky;
    top: 100px;
}

.booking-form-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    border: 2px solid var(--secondary-color);
}

.booking-form-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.booking-subtitle {
    color: var(--text-gray);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.booking-form .form-group {
    margin-bottom: 1.5rem;
}

.booking-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.booking-form textarea {
    resize: vertical;
}

.btn-block {
    width: 100%;
    justify-content: center;
    margin-bottom: 1rem;
}

.booking-divider {
    text-align: center;
    margin: 1.5rem 0;
    position: relative;
}

.booking-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: #e0e0e0;
}

.booking-divider span {
    background: #ffffff;
    padding: 0 1rem;
    position: relative;
    color: var(--text-gray);
    font-weight: 600;
}

.booking-info {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.booking-info p {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.booking-info i {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

/* === RESPONSIVE === */
@media (max-width: 991px) {
    .booking-sidebar {
        position: static;
        margin-top: 3rem;
    }
    
    .itinerary-item {
        flex-direction: column;
    }
    
    .itinerary-day {
        width: 80px;
    }
}

@media (max-width: 768px) {
    .package-details-section {
        padding: 4rem 0;
    }
    
    .package-detail-image {
        height: 250px;
    }
    
    .package-header-info h2 {
        font-size: 2rem;
    }
    
    .package-meta-details {
        flex-direction: column;
        gap: 1rem;
    }
    
    .tour-itinerary h3,
    .package-description h3 {
        font-size: 1.5rem;
    }
    
    .itinerary-item {
        padding: 1.5rem;
    }
    
    .itinerary-day {
        width: 60px;
        height: 60px;
        font-size: 0.9rem;
    }
    
    .booking-form-card {
        padding: 2rem;
    }
}

@media (max-width: 576px) {
    .package-header-info h2 {
        font-size: 1.6rem;
    }
    
    .itinerary-content h4 {
        font-size: 1.1rem;
    }
    
    .booking-form-card {
        padding: 1.5rem;
    }
}
