/* Package Details Hero */
.pd-hero {
    position: relative;
    height: 380px;
    background-size: 140% 140%;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    padding: 30px 5%;
}

.pd-hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(10, 61, 145, 0.95) 0%, rgba(10, 61, 145, 0.6) 50%, rgba(243, 105, 32, 0.8) 100%);
}

.pd-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.pd-badge {
    background-color: var(--primary-blue);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.pd-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 8px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.pd-hero-meta {
    display: flex;
    gap: 20px;
    font-size: 15px;
    font-weight: 500;
}

.pd-hero-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pd-hero-price {
    margin-top: 8px;
}

.hero-price-label {
    font-size: 10px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 2px;
}

.hero-price-amount {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-yellow);
}

.hero-price-person {
    font-size: 18px;
    font-weight: 600;
    opacity: 0.9;
}

/* Package Details Layout */
.pd-section {
    padding: 60px 5%;
    background-color: #f8f9fa;
}

.pd-container {
    max-width: 1200px;
    margin: 0 auto;
}

.pd-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Left Content */
.pd-overview, .pd-highlights, .pd-gallery {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.pd-overview h2, .pd-highlights h2, .pd-gallery h2 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-bottom: 20px;
    border-bottom: 2px solid rgba(10, 61, 145, 0.1);
    padding-bottom: 10px;
}

.pd-overview p {
    color: #4a5568;
    line-height: 1.8;
    font-size: 15px;
}

.pd-gallery-img {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.pd-gallery-img img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.pd-gallery-img:hover img {
    transform: scale(1.03);
}

.pd-highlights ul {
    list-style: none;
    padding: 0;
}

.pd-highlights li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: #4a5568;
    font-size: 15px;
}

.pd-highlights li i {
    color: var(--primary-orange);
    font-size: 18px;
}

/* Right Content (Pricing Card) */
.pd-right {
    position: sticky;
    top: 100px;
}

.pd-pricing-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    overflow: hidden;
}

.pd-price-header {
    background: var(--primary-blue);
    color: #fff;
    padding: 30px;
    text-align: center;
}

.pd-starting {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
    display: block;
    margin-bottom: 5px;
}

.pd-price {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    color: var(--primary-yellow);
}

.pd-per-person {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255,255,255,0.8);
}

.pd-enquiry-form {
    padding: 30px;
}

.pd-enquiry-form h3 {
    text-align: center;
    margin-bottom: 25px;
    color: #333;
    font-size: 1.4rem;
    position: relative;
    padding-bottom: 12px;
}

.pd-enquiry-form h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background-color: var(--primary-orange);
}

.pd-form-group {
    margin-bottom: 15px;
}

.pd-form-group input,
.pd-form-group textarea,
.custom-select-trigger {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    outline: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
    resize: vertical;
}

.pd-form-group input:focus,
.pd-form-group textarea:focus {
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(243, 105, 32, 0.1);
}

.pd-btn-enquire {
    width: 100%;
    background: var(--primary-orange);
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    display: inline-block;
    text-align: center;
}

.pd-btn-enquire:hover {
    background: #d95a1a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(243, 105, 32, 0.3);
}

/* Custom Select Styling */
.custom-select-wrapper {
    position: relative;
    width: 100%;
}
.custom-select-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background-color: #fff;
}
.pd-form-group:focus-within .custom-select-trigger,
.custom-select-trigger:active {
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(243, 105, 32, 0.1);
}
.custom-select-trigger .arrow {
    position: relative !important;
    left: auto !important;
    font-size: 12px;
    color: #888;
}
.custom-options {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    width: 100%;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    z-index: 100;
    max-height: 250px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}
.custom-options.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.custom-option {
    padding: 10px 15px;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    transition: all 0.2s ease;
}
.custom-option:hover {
    background-color: var(--primary-orange);
    color: #fff;
}

/* Error Message */
.error-msg {
    color: #c81e1e;
    background-color: #fde8e8;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12.5px;
    font-weight: 500;
    margin-top: 4px;
    margin-bottom: 12px;
}

/* Responsive */
@media (max-width: 992px) {
    .pd-grid {
        grid-template-columns: 1fr;
    }
    .pd-pricing-card {
        position: static;
    }
}

@media (max-width: 768px) {
    .pd-hero {
        height: 280px;
        padding: 30px 5%;
    }
    .pd-badge {
        font-size: 10px;
        padding: 4px 12px;
        margin-bottom: 10px;
    }
    .pd-hero-content h1 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }
    .pd-hero-meta {
        flex-direction: row;
        font-size: 13px;
        gap: 15px;
    }
    .pd-hero-price {
        margin-top: 10px;
    }
    .hero-price-amount {
        font-size: 1.6rem;
    }
    .hero-price-person {
        font-size: 13px;
    }
    .pd-overview, .pd-highlights, .pd-gallery {
        padding: 20px;
        margin-bottom: 20px;
    }
    .pd-overview p, .pd-highlights li {
        font-size: 13.5px;
    }
    .pd-overview h2, .pd-highlights h2, .pd-gallery h2 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    .pd-enquiry-form {
        padding: 20px 10px;
    }
    .error-msg {
        font-size: 11px;
        padding: 6px 8px;
        margin-top: 2px;
        margin-bottom: 8px;
    }
    .pd-section {
        padding: 20px 0;
    }
}
