/* ============================================
   PACKAGE DETAIL V2 - COMPLETE STYLES
   ============================================ */

   :root {
    --primary: #d4af37;
    --primary-dark: #b8941f;
    --secondary: #1a1a2e;
    --light: #f8f9fa;
    --white: #ffffff;
    --text: #2c3e50;
    --text-light: #6c757d;
    --gradient: linear-gradient(135deg, #d4af37 0%, #c9a961 50%, #b8941f 100%);
    --shadow: 0 5px 20px rgba(212, 175, 55, 0.15);
    --shadow-lg: 0 15px 40px rgba(212, 175, 55, 0.25);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.package-detail-wrapper {
    background: var(--light);
}

/* ============================================
   LEFT SIDE - IMAGE SLIDER
   ============================================ */
.package-image-slider {
    position: relative;
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 0;
}

.images-carousel .slide-item {
    height: 500px;
}

.images-carousel .slide-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Owl Carousel Navigation */
.images-carousel .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    padding: 0 20px;
}

.images-carousel .owl-nav [class*='owl-'] {
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.5) !important;
    border-radius: 50%;
    color: var(--white) !important;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
    transition: var(--transition);
}

.images-carousel .owl-nav [class*='owl-']:hover {
    background: var(--primary) !important;
}

/* Package Icons Bar */
.package-icons-bar {
    display: flex;
    background: var(--white);
    border-radius: 0 0 15px 15px;
    box-shadow: var(--shadow);
    margin-bottom: 20px;
}

.icon-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    border-right: 1px solid rgba(212, 175, 55, 0.2);
}

.icon-item:last-child {
    border-right: none;
}

.icon-item i {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 8px;
}

.icon-item span {
    font-size: 14px;
    color: var(--text);
    font-weight: 600;
}

/* ============================================
   CONTENT SECTIONS
   ============================================ */
.content-section {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin-bottom: 20px;
}

.section-title {
    font-size: 1.5rem;
    color: var(--secondary);
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
}

/* Overview Box */
.overview-box {
    background: var(--light);
    padding: 25px;
    border-radius: 10px;
}

.overview-title {
    font-size: 1.2rem;
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 15px;
}

.overview-text {
    color: var(--text);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.btn-read-more {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 8px 25px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-read-more:hover {
    background: var(--primary-dark);
}

/* ============================================
   ITINERARY DAYS
   ============================================ */
.itinerary-day {
    padding: 20px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.itinerary-day:last-child {
    border-bottom: none;
}

.day-header {
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
}

.day-badge {
    width: 70px;
    height: 70px;
    min-width: 70px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.day-text {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.day-num {
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
}

.day-info {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.day-title {
    font-size: 1.1rem;
    color: var(--secondary);
    font-weight: 600;
    margin: 0;
}

.btn-expand {
    width: 35px;
    height: 35px;
    background: var(--light);
    border: none;
    border-radius: 50%;
    color: var(--primary);
    cursor: pointer;
    transition: var(--transition);
}

.btn-expand:hover {
    background: var(--primary);
    color: var(--white);
}

.meal-info {
    color: var(--text-light);
    font-size: 14px;
    margin-left: 90px;
    margin-bottom: 10px;
}

.meal-info i {
    color: var(--primary);
    margin-right: 5px;
}

.day-details {
    background: var(--light);
    padding: 20px;
    border-radius: 8px;
    margin: 10px 0 0 90px;
}

.day-details p {
    margin: 0;
    color: var(--text);
    line-height: 1.7;
}

/* ============================================
   POLICY CONTENT
   ============================================ */
.policy-content h5 {
    color: var(--secondary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    margin-top: 20px;
}

.policy-content h5:first-child {
    margin-top: 0;
}

.policy-content h5 i {
    color: var(--primary);
    margin-right: 8px;
}

.policy-content ul {
    list-style: none;
    padding: 0;
}

.policy-content ul li {
    padding: 8px 0 8px 25px;
    position: relative;
    color: var(--text);
    line-height: 1.6;
}

.policy-content ul li::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary);
}

/* ============================================
   RIGHT SIDE CARDS
   ============================================ */
.package-header-card {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin-bottom: 15px;
}

.package-name {
    font-size: 1.6rem;
    color: var(--secondary);
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}

.package-duration {
    display: inline-block;
    background: #ffebee;
    color: #c62828;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 10px;
}

.package-badge {
    display: inline-block;
    background: #e8f5e9;
    color: #2e7d32;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
    margin-left: 8px;
}

.package-route {
    color: var(--text);
    font-size: 14px;
    font-weight: 500;
}

.package-route span {
    margin: 0 5px;
}

.package-route i {
    color: var(--primary);
    font-size: 12px;
}

/* Price Card */
.price-card {
    background: var(--white);
    padding: 20px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin-bottom: 15px;
}

.price-wrapper {
    border: 2px dashed var(--primary);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.price-label {
    display: block;
    font-size: 1.3rem;
    color: #e91e63;
    font-weight: 700;
    margin-bottom: 15px;
}

.btn-enquire {
    background: #ff6f00;
    color: var(--white);
    border: none;
    padding: 10px 35px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-enquire:hover {
    background: #e65100;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Share Card */
.share-card {
    background: var(--white);
    padding: 20px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.share-text {
    font-weight: 600;
    color: var(--text);
    font-size: 15px;
}

.social-buttons {
    display: flex;
    gap: 10px;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
    transition: var(--transition);
    text-decoration: none;
}

.social-btn.facebook {
    background: #1877f2;
}

.social-btn.twitter {
    background: #1da1f2;
}

.social-btn.whatsapp {
    background: #25d366;
}

.social-btn:hover {
    transform: scale(1.1);
}

/* ============================================
   BOOKING FORM CARD
   ============================================ */
.booking-form-card {
    background: #f5f5f5;
    padding: 25px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.sticky-form {
    position: sticky;
    top: 100px;
}

.form-title {
    font-size: 1.3rem;
    color: var(--secondary);
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.booking-form-card .form-control,
.booking-form-card .form-select {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px 12px;
    font-size: 14px;
}

.booking-form-card .form-control:focus,
.booking-form-card .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
    outline: none;
}

.btn-submit {
    width: 100%;
    background: #ff6f00;
    color: var(--white);
    border: none;
    padding: 12px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover {
    background: #e65100;
    transform: translateY(-2px);
}

/* ============================================
   ENQUIRY MODAL
   ============================================ */
.modal-content {
    border-radius: 20px;
    border: none;
    box-shadow: var(--shadow-lg);
}

.modal-header {
    background: var(--gradient);
    color: var(--white);
    border-radius: 20px 20px 0 0;
    padding: 20px 30px;
    border: none;
}

.modal-title {
    font-size: 1.4rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-title i {
    font-size: 1.3rem;
}

.modal-header .btn-close {
    filter: brightness(0) invert(1);
    opacity: 1;
}

.modal-body {
    padding: 30px;
}

.enquiry-form-wrapper {
    max-width: 100%;
}

.package-info-badge {
    background: var(--light);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 25px;
    border-left: 4px solid var(--primary);
}

.package-info-badge h6 {
    font-size: 1.1rem;
    color: var(--secondary);
    font-weight: 700;
    margin-bottom: 8px;
}

.badge-duration {
    display: inline-block;
    background: var(--gradient);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.modal-enquiry-form .form-label {
    font-weight: 600;
    color: var(--secondary);
    font-size: 14px;
    margin-bottom: 8px;
}

.modal-enquiry-form .required {
    color: #dc3545;
}

.modal-enquiry-form .form-control,
.modal-enquiry-form .form-select {
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 14px;
    transition: var(--transition);
}

.modal-enquiry-form .form-control:focus,
.modal-enquiry-form .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
    outline: none;
}

.modal-enquiry-form .input-group .form-select {
    border-right: none;
    border-radius: 8px 0 0 8px;
}

.modal-enquiry-form .input-group .form-control {
    border-radius: 0 8px 8px 0;
}

.modal-enquiry-form textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

.modal-enquiry-form .form-check-input {
    width: 18px;
    height: 18px;
    border: 2px solid var(--primary);
    margin-top: 2px;
}

.modal-enquiry-form .form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

.modal-enquiry-form .form-check-label {
    font-size: 14px;
    color: var(--text);
    margin-left: 8px;
}

.modal-form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.btn-modal-cancel {
    padding: 12px 30px;
    background: var(--light);
    color: var(--text);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-modal-cancel:hover {
    background: var(--white);
    border-color: var(--primary);
    color: var(--primary);
}

.btn-modal-submit {
    padding: 12px 35px;
    background: var(--gradient);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-modal-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-modal-submit i {
    font-size: 14px;
}

/* Success Toast */
.toast {
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    min-width: 300px;
}

.toast-body {
    padding: 15px 20px;
    font-size: 15px;
    font-weight: 500;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
    .images-carousel .slide-item {
        height: 400px;
    }
    
    .sticky-form {
        position: static;
    }
    
    .icon-item {
        border-right: none;
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    }
    
    .icon-item:last-child {
        border-bottom: none;
    }
}

@media (max-width: 768px) {
    .images-carousel .slide-item {
        height: 300px;
    }
    
    .day-header {
        flex-direction: column;
    }
    
    .day-badge {
        margin: 0 auto 10px;
    }
    
    .meal-info,
    .day-details {
        margin-left: 0;
    }
    
    .package-icons-bar {
        flex-direction: column;
    }
    
    .modal-dialog {
        margin: 10px;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .modal-header {
        padding: 15px 20px;
    }
    
    .modal-title {
        font-size: 1.2rem;
    }
    
    .modal-form-actions {
        flex-direction: column;
    }
    
    .btn-modal-cancel,
    .btn-modal-submit {
        width: 100%;
        justify-content: center;
    }
}
