/* Package Detail Page Styles - Ultra Clean & Seamless Design */

/* Clean Header Section with Right-Side Image */
.package-detail-header-section {
    padding: 120px 0 40px;
    background-color: var(--bg-pastel-cream);
    border-bottom: 1px solid rgba(71, 81, 40, 0.12);
}

.package-header-grid {
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 48px;
    align-items: center;
}

@media (max-width: 992px) {
    .package-header-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: #666666;
    margin-bottom: 16px;
}

.breadcrumb-nav a {
    color: #475128;
    text-decoration: none;
    font-weight: 700;
}

.breadcrumb-nav a:hover {
    text-decoration: underline;
}

.active-crumb {
    color: #333333;
    font-weight: 600;
}

.header-tags {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
    flex-wrap: wrap;
    align-items: center;
}

.detail-header-title {
    font-size: 2.6rem;
    color: #233325;
    line-height: 1.2;
    margin-bottom: 12px;
    font-family: var(--font-heading);
    font-weight: 800;
}

.detail-header-subtitle {
    font-size: 1.02rem;
    color: #475128;
    margin-bottom: 24px;
    font-weight: 500;
    line-height: 1.6;
}

.detail-meta-pills-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.meta-pill-dark {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #E7EBD9;
    color: #475128;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 7px 16px;
    border-radius: var(--radius-pill);
}

/* Right-Side Clean Image Container */
.header-img-container {
    width: 100%;
    height: 320px;
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(71, 81, 40, 0.12);
}

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

.header-img-container:hover img {
    transform: scale(1.03);
}

/* Package Main Section - Seamless Background */
.package-detail-section {
    padding: 50px 0 90px;
    background-color: var(--bg-pastel-cream);
}

.package-detail-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 56px;
}

@media (max-width: 992px) {
    .package-detail-grid {
        grid-template-columns: 1fr;
    }
}

/* Left Column Content - Clean & Borderless */
.detail-block {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 0 36px 0;
    margin-bottom: 36px;
    border-bottom: 1px solid rgba(71, 81, 40, 0.12) !important;
}

.detail-block:last-child {
    border-bottom: none !important;
}

.detail-block-title {
    font-size: 1.3rem;
    color: #475128;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: none !important;
    padding-bottom: 0 !important;
}

.detail-description-p {
    font-size: 0.95rem;
    line-height: 1.85;
    color: #333333;
    white-space: pre-line;
}

/* Specs Grid - Clean Minimal Lines */
.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 8px;
}

.spec-item {
    background: transparent !important;
    padding: 2px 0 2px 14px;
    border-radius: 0 !important;
    border: none !important;
    border-left: 2px solid #606C38 !important;
}

.spec-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #475128;
    font-weight: 700;
    margin-bottom: 2px;
}

.spec-value {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text-primary);
}

/* Highlights List - Seamless */
.highlights-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.highlight-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: transparent !important;
    padding: 4px 0;
    border: none !important;
    border-radius: 0 !important;
}

.highlight-icon {
    color: #606C38;
    font-size: 0.95rem;
    margin-top: 4px;
}

.highlight-text {
    font-size: 0.92rem;
    color: var(--text-primary);
    line-height: 1.55;
}

/* Inclusions & Exclusions Side-by-Side - Seamless */
.inc-exc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

@media (max-width: 768px) {
    .inc-exc-grid {
        grid-template-columns: 1fr;
    }
}

.inc-card, .exc-card {
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
}

.inc-title {
    color: #475128;
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.exc-title {
    color: #C0392B;
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.inc-list, .exc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.inc-list li {
    font-size: 0.88rem;
    color: #233325;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.inc-list li i {
    color: #606C38;
    margin-top: 3px;
}

.exc-list li {
    font-size: 0.88rem;
    color: #4A2323;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.exc-list li i {
    color: #C0392B;
    margin-top: 3px;
}

/* Right Column Booking Sticky Widget - Clean Seamless */
.booking-sticky-card {
    position: sticky;
    top: 90px;
    background: transparent !important;
    border-radius: 0 !important;
    border: none !important;
    padding: 0 !important;
    box-shadow: none !important;
}

.booking-price-header {
    margin-bottom: 16px;
    padding-bottom: 0;
    border-bottom: none !important;
}

.booking-price-amount {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 800;
    color: #475128;
    line-height: 1;
    margin-top: 4px;
}

.booking-price-unit {
    font-size: 0.85rem;
    color: #666666;
    margin-top: 6px;
    font-weight: 500;
}

.addons-breakdown-box {
    background: transparent !important;
    border: none !important;
    border-top: 1px solid rgba(71, 81, 40, 0.12) !important;
    border-bottom: 1px solid rgba(71, 81, 40, 0.12) !important;
    border-radius: 0 !important;
    padding: 16px 0;
    margin-bottom: 24px;
}

.addon-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    margin-bottom: 10px;
    color: #333333;
}

.addon-row:last-child {
    margin-bottom: 0;
}

.addon-val {
    font-weight: 700;
    color: #475128;
}

.btn-reserve-package {
    width: 100%;
    display: block;
    text-align: center;
    background: #606C38;
    color: #FFFFFF;
    padding: 16px;
    border-radius: var(--radius-pill);
    font-family: var(--font-brand);
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(96, 108, 56, 0.25);
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-reserve-package:hover {
    background: #475128;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(96, 108, 56, 0.4);
}

/* Interactive Booking Modal Styles */
.booking-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(18, 33, 24, 0.75);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.booking-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.booking-modal-card {
    background: #FAF6EE;
    width: 100%;
    max-width: 680px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 24px;
    padding: 36px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(71, 81, 40, 0.2);
    animation: modalSlideUp 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close-btn {
    position: absolute;
    top: 24px;
    right: 24px;
    background: rgba(71, 81, 40, 0.1);
    color: #475128;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
}

.modal-close-btn:hover {
    background: #606C38;
    color: #FFFFFF;
    transform: rotate(90deg);
}

.modal-package-badge {
    display: inline-block;
    background: #E7EBD9;
    color: #475128;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    margin-bottom: 8px;
}

.modal-package-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: #233325;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.25;
}

/* Form Steps */
.form-step-section {
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(71, 81, 40, 0.12);
}

.form-step-section:last-of-type {
    border-bottom: none;
}

.step-num-title {
    font-family: var(--font-brand);
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #606C38;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

@media (max-width: 600px) {
    .form-grid-2 {
        grid-template-columns: 1fr;
    }
}

.form-field-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 14px;
}

.form-field-group label {
    font-size: 0.82rem;
    font-weight: 700;
    color: #333333;
}

.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid rgba(71, 81, 40, 0.25);
    background: #FFFFFF;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: #233325;
    outline: none;
    transition: var(--transition);
    box-sizing: border-box;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: #606C38;
    box-shadow: 0 0 0 3px rgba(96, 108, 56, 0.15);
}

.phone-input-group {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 8px;
}

/* Checkbox Toggle Items */
.toggle-addon-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #FFFFFF;
    padding: 14px 18px;
    border-radius: 14px;
    border: 1px solid rgba(71, 81, 40, 0.18);
    margin-bottom: 10px;
    cursor: pointer;
    transition: var(--transition);
}

.toggle-addon-item:hover {
    border-color: #606C38;
    background: #F8FAF5;
}

.addon-toggle-left {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #233325;
}

.addon-toggle-checkbox {
    width: 18px;
    height: 18px;
    accent-color: #606C38;
    cursor: pointer;
}

.addon-toggle-price {
    font-weight: 800;
    color: #475128;
    font-size: 0.9rem;
}

/* Summary Box inside Modal */
.modal-summary-box {
    background: #E7EBD9;
    border-radius: 16px;
    padding: 20px;
    margin: 24px 0;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.88rem;
    margin-bottom: 8px;
    color: #333333;
}

.summary-line.total-line {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: #475128;
    border-top: 1px dashed rgba(71, 81, 40, 0.3);
    padding-top: 12px;
    margin-top: 10px;
    margin-bottom: 0;
}

/* Guest Age Breakdown Grid */
.guest-breakdown-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 16px;
}

@media (max-width: 600px) {
    .guest-breakdown-grid {
        grid-template-columns: 1fr;
    }
}

.guest-type-box {
    background: #FFFFFF;
    border: 1px solid rgba(71, 81, 40, 0.2);
    border-radius: 14px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.guest-type-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: #233325;
}

.guest-type-sub {
    font-size: 0.7rem;
    color: #606C38;
    font-weight: 600;
}

/* Meal Count Input Sub-wrapper */
.meal-count-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #F8FAF5;
    padding: 10px 16px;
    border-radius: 12px;
    border: 1px dashed rgba(71, 81, 40, 0.25);
    margin-top: 8px;
    margin-bottom: 12px;
}

.meal-count-label {
    font-size: 0.82rem;
    font-weight: 700;
    color: #475128;
}

.meal-count-input {
    width: 70px;
    padding: 6px 10px;
    border-radius: 8px;
    border: 1px solid rgba(71, 81, 40, 0.3);
    text-align: center;
    font-weight: 700;
}

/* Ultra-Charming Success Confirmation Modal */
.success-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(18, 33, 24, 0.85);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.success-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.success-modal-card {
    background: #FAF6EE;
    width: 100%;
    max-width: 520px;
    border-radius: 28px;
    padding: 40px 32px;
    text-align: center;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
    border: 2px solid #D4AF37;
    position: relative;
    animation: successBadgePop 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes successBadgePop {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(30px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.success-icon-ring {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #606C38 0%, #475128 100%);
    color: #D4AF37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin: 0 auto 20px;
    box-shadow: 0 10px 25px rgba(96, 108, 56, 0.3);
    border: 3px solid #D4AF37;
}

.success-modal-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: #233325;
    margin-bottom: 10px;
    line-height: 1.2;
}

.success-modal-subtitle {
    font-size: 0.95rem;
    color: #475128;
    margin-bottom: 24px;
    line-height: 1.6;
}

.success-ref-box {
    background: #E7EBD9;
    border: 1px dashed rgba(71, 81, 40, 0.3);
    border-radius: 14px;
    padding: 12px 20px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #475128;
    margin-bottom: 24px;
    display: inline-block;
}

.btn-success-close {
    background: #606C38;
    color: #FFFFFF;
    border: none;
    padding: 14px 32px;
    border-radius: var(--radius-pill);
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 6px 20px rgba(96, 108, 56, 0.25);
}

.btn-success-close:hover {
    background: #475128;
    transform: translateY(-2px);
}

/* Responsive Media Queries for Package Detail Page */
@media (max-width: 992px) {
    .package-detail-layout {
        grid-template-columns: 1fr !important;
        gap: 36px !important;
    }

    .booking-sticky-card {
        position: static !important;
        top: auto !important;
    }
}

@media (max-width: 768px) {
    .package-detail-hero {
        padding: 95px 16px 30px !important;
    }

    .package-detail-title {
        font-size: 1.7rem !important;
    }

    .package-gallery-grid {
        grid-template-columns: 1fr !important;
        height: auto !important;
    }

    .booking-modal-card {
        padding: 24px 18px !important;
        max-height: 85vh !important;
    }

    .package-price-amount {
        font-size: 2.2rem !important;
    }
}

@media (max-width: 480px) {
    .package-detail-title {
        font-size: 1.4rem !important;
    }

    .btn-reserve-package,
    .btn-gold-pill,
    .btn-success-close {
        width: 100% !important;
        text-align: center !important;
        padding: 12px 18px !important;
    }
}


