/* ============================================================
   PACKAGE DETAILS PAGE — PREMIUM MOBILE-FIRST STYLESHEET
   /GoGoldenTrip/package-details.css
   ============================================================ */

/* --- DESIGN SYSTEM TOKENS --- */
:root {
    --color-navy-dark: #041234;
    --color-navy-primary: #0d2a5e;
    --color-navy-light: #1e3d75;
    --color-gold: #FDBB2D;
    --color-gold-hover: #f5a623;
    --color-bg-page: #f0f4fb;
    --color-white: #ffffff;
    --color-slate-400: #94a3b8;
    --color-slate-500: #64748b;
    --color-slate-600: #475569;
    --color-slate-700: #334155;
    --color-border-light: rgba(13, 42, 94, 0.08);
    
    --shadow-sm: 0 2px 10px rgba(13, 42, 94, 0.04);
    --shadow-md: 0 8px 30px rgba(13, 42, 94, 0.08);
    --shadow-lg: 0 20px 48px rgba(13, 42, 94, 0.12);
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-spring: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* --- RESET & WRAPPER --- */
.pkg-details-wrapper {
    background: var(--color-bg-page);
    min-height: 100vh;
    font-family: 'Poppins', sans-serif;
    color: var(--color-slate-700);
}

/* --- DYNAMIC HERO SECTION --- */
.details-hero {
    position: relative;
    min-height: 380px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding-top: 130px;
    padding-bottom: 110px;
    color: var(--color-white);
    overflow: hidden;
}

.details-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg, 
        rgba(4, 18, 52, 0.90) 0%, 
        rgba(13, 42, 94, 0.68) 50%, 
        rgba(4, 18, 52, 0.25) 100%
    );
    z-index: 1;
}

.details-hero .container {
    position: relative;
    z-index: 2;
}

/* --- BREADCRUMBS --- */
.details-breadcrumb {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 16px;
    opacity: 0.9;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
}

.details-breadcrumb a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.2s ease;
}

.details-breadcrumb a:hover {
    color: var(--color-gold);
}

.details-breadcrumb .sep {
    opacity: 0.6;
    color: rgba(255, 255, 255, 0.6);
}

.details-breadcrumb .current {
    color: var(--color-gold);
    font-weight: 600;
}

.details-hero h1 {
    font-size: clamp(28px, 4.5vw, 48px);
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.15;
    margin-bottom: 15px;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.details-hero h1 span {
    color: var(--color-gold);
}

/* --- FLOATING HEADER CARD --- */
.floating-header-card {
    background: var(--color-white);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border-light);
    padding: 24px 32px;
    margin-top: -80px;
    position: relative;
    z-index: 10;
    margin-bottom: 32px;
}

.floating-header-layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.floating-header-left {
    flex: 1;
    min-width: 280px;
}

.floating-header-right {
    text-align: right;
    min-width: 200px;
}

.floating-header-left h2 {
    color: var(--color-navy-primary);
    font-size: 24px;
    font-weight: 800;
    margin-top: 8px;
    margin-bottom: 12px;
    line-height: 1.25;
}

/* Badge tags */
.pkg-badge-pill {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

/* Meta list inside header */
.header-meta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    font-size: 13.5px;
    color: var(--color-slate-500);
}

.header-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.header-meta-item i {
    color: var(--color-gold);
}

.header-rating-badge {
    background: #fff8eb;
    border: 1px solid #ffe8cc;
    color: #e27c00;
    padding: 2px 8px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 12.5px;
}

.price-start-label {
    font-size: 11.5px;
    color: var(--color-slate-400);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: block;
}

.price-big-amount {
    font-size: 32px;
    font-weight: 800;
    color: var(--color-navy-primary);
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.discount-tag {
    font-size: 11.5px;
    font-weight: 700;
    background: #22c55e;
    color: #fff;
    padding: 3px 9px;
    border-radius: 30px;
}

.price-sub-label {
    font-size: 12px;
    color: var(--color-slate-500);
    margin-top: 4px;
    display: block;
}

/* --- GALLERY GRID --- */
.gallery-container {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    background: #e2e8f0;
    margin-bottom: 32px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 8px;
    height: 420px;
}

.gallery-main {
    height: 100%;
    position: relative;
    overflow: hidden;
}

.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 8px;
    height: 100%;
}

.gallery-item {
    position: relative;
    height: 100%;
    overflow: hidden;
    cursor: pointer;
}

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

.gallery-item:hover img {
    transform: scale(1.05);
}

.view-all-photos-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 5;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(13, 42, 94, 0.15);
    color: var(--color-navy-primary);
    padding: 8px 16px;
    font-size: 12.5px;
    font-weight: 700;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 8px;
}

.view-all-photos-btn:hover {
    background: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

/* --- OVERVIEW & QUICK HIGHLIGHTS --- */
.details-section-card {
    background: var(--color-white);
    border-radius: 18px;
    box-shadow: var(--shadow-sm);
    padding: 32px;
    border: 1px solid var(--color-border-light);
    margin-bottom: 28px;
}

.details-section-title {
    color: var(--color-navy-primary);
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.details-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--color-gold);
    border-radius: 2px;
}

.overview-text {
    line-height: 1.8;
    color: var(--color-slate-600);
    font-size: 14.5px;
    margin-bottom: 24px;
}

/* Quick highlights row */
.qh-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
    margin-top: 10px;
}

.qh-card {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    padding: 12px 14px;
    transition: var(--transition-smooth);
}

.qh-card:hover {
    background: #fff;
    border-color: rgba(253, 187, 45, 0.4);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.qh-card i {
    color: #10b981;
    font-size: 16px;
}

.qh-card span {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--color-navy-primary);
}

/* --- EXPERIENCE HIGHLIGHTS --- */
.exp-highlights-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.exp-highlight-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.exp-highlight-item i {
    color: var(--color-gold);
    font-size: 16px;
    margin-top: 2px;
}

.exp-highlight-item span {
    font-size: 13.5px;
    line-height: 1.5;
    color: var(--color-slate-600);
}

/* --- WHAT'S INCLUDED --- */
.inclusions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 12px;
}

.inclusion-card {
    border-radius: 14px;
    padding: 18px 12px;
    text-align: center;
    transition: var(--transition-spring);
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}

.inclusion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.inclusion-card i {
    font-size: 26px;
    display: block;
    margin-bottom: 8px;
}

.inclusion-card span {
    font-size: 12px;
    font-weight: 700;
}

/* --- INTERACTIVE TIMELINE --- */
.timeline-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.timeline-toggle-all {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--color-navy-primary);
    background: #f1f5f9;
    border: none;
    padding: 6px 14px;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.timeline-toggle-all:hover {
    background: var(--color-gold);
}

.details-timeline-wrap {
    position: relative;
    padding-left: 20px;
}

/* Vertical line */
.details-timeline-wrap::before {
    content: '';
    position: absolute;
    top: 10px;
    bottom: 20px;
    left: 4px;
    width: 2px;
    background: rgba(13, 42, 94, 0.12);
}

.timeline-accordion-item {
    position: relative;
    margin-bottom: 20px;
}

/* Custom bullet node */
.timeline-node {
    position: absolute;
    left: -20px;
    top: 14px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-gold);
    border: 2px solid var(--color-white);
    box-shadow: 0 0 0 2px var(--color-navy-primary);
    z-index: 2;
    transition: var(--transition-smooth);
}

.timeline-accordion-item.active-day .timeline-node {
    background: var(--color-white);
    box-shadow: 0 0 0 3px var(--color-gold);
    transform: scale(1.3);
}

.timeline-card-header {
    background: var(--color-white);
    border: 1px solid var(--color-border-light);
    border-radius: 12px;
    padding: 14px 20px;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.timeline-card-header:hover {
    background: #fafcff;
    border-color: rgba(13, 42, 94, 0.2);
}

.timeline-day-title-wrap {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.timeline-day-num {
    font-size: 11px;
    font-weight: 700;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.timeline-day-title {
    font-size: 14.5px;
    font-weight: 750;
    color: var(--color-navy-primary);
}

.timeline-day-subtitle {
    font-size: 12px;
    color: var(--color-slate-500);
    font-weight: 500;
}

.timeline-header-icon {
    font-size: 12px;
    color: var(--color-slate-400);
    transition: transform 0.3s ease;
}

/* Accordion expand/collapse transitions */
.timeline-card-body {
    border: 1px solid var(--color-border-light);
    border-top: none;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    padding: 20px;
    background: #fafcff;
    display: none;
}

.timeline-accordion-item.expanded .timeline-card-header {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    background: #f8fafc;
}

.timeline-accordion-item.expanded .timeline-card-body {
    display: block;
}

.timeline-accordion-item.expanded .timeline-header-icon {
    transform: rotate(180deg);
    color: var(--color-navy-primary);
}

.timeline-card-body p {
    font-size: 13.5px;
    line-height: 1.7;
    color: var(--color-slate-600);
    margin: 0;
}

/* --- BOOKING SIDEBAR CARD --- */
.booking-sticky-wrapper {
    position: sticky;
    top: 100px;
    margin-bottom: 30px;
}

.booking-sidebar-card {
    background: var(--color-white);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border-light);
    overflow: hidden;
    position: relative;
    padding: 24px;
}

.booking-sidebar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--color-navy-primary);
}

.booking-card-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--color-navy-primary);
    margin-bottom: 20px;
}

.booking-price-box {
    background: linear-gradient(135deg, var(--color-navy-primary) 0%, #174c8c 100%);
    border-radius: 16px;
    padding: 18px;
    color: var(--color-white);
    margin-bottom: 20px;
}

.booking-price-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.booking-price-lbl {
    font-size: 11px;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
}

.booking-price-val {
    font-size: 26px;
    font-weight: 800;
}

.booking-price-sub {
    font-size: 11px;
    opacity: 0.8;
    margin-top: 2px;
    display: block;
}

.booking-discount-badge {
    background: var(--color-gold);
    color: var(--color-navy-primary);
    font-size: 10.5px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 30px;
}

.booking-old-price {
    font-size: 13.5px;
    text-decoration: line-through;
    opacity: 0.5;
    margin-top: 4px;
}

/* Custom inputs */
.booking-form .form-label-custom {
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-slate-500);
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.booking-form .form-control-custom {
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    background: #f8fafc;
    padding: 10px 14px;
    font-size: 13.5px;
    font-family: 'Poppins', sans-serif;
    color: var(--color-navy-primary);
    transition: var(--transition-smooth);
}

.booking-form .form-control-custom:focus {
    background: #fff;
    border-color: var(--color-gold);
    outline: none;
    box-shadow: 0 0 0 3px rgba(253, 187, 45, 0.2);
}

.booking-form .input-group-custom-text {
    border: 1.5px solid #e2e8f0;
    border-right: none;
    background: #f1f5f9;
    font-size: 13px;
    font-weight: 700;
    color: var(--color-slate-600);
    padding: 10px 14px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.booking-form .input-group-custom-control {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

/* CTA buttons */
.booking-cta-btn {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-hover) 100%);
    color: var(--color-navy-primary);
    border: none;
    border-radius: 10px;
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(253, 187, 45, 0.35);
    transition: var(--transition-spring);
}

.booking-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(253, 187, 45, 0.5);
    color: var(--color-navy-primary);
}

/* Call and whatsapp quick rows */
.sidebar-quick-contact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-top: 12px;
}

.quick-contact-btn {
    border-radius: 10px;
    padding: 9px 12px;
    font-size: 12.5px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.quick-contact-btn.btn-phone-quick {
    border: 1.5px solid #e2e8f0;
    color: var(--color-slate-700);
}

.quick-contact-btn.btn-phone-quick:hover {
    background: #f1f5f9;
    border-color: var(--color-slate-400);
}

.quick-contact-btn.btn-wa-quick {
    background: #25D366;
    color: #fff;
    border: none;
}

.quick-contact-btn.btn-wa-quick:hover {
    background: #1eaf53;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.trust-signals-row {
    display: flex;
    justify-content: space-around;
    border-top: 1px solid var(--color-border-light);
    margin-top: 20px;
    padding-top: 16px;
}

.trust-signal-item {
    text-align: center;
}

.trust-signal-item i {
    font-size: 16px;
    margin-bottom: 2px;
    display: block;
}

.trust-signal-item span {
    font-size: 10px;
    font-weight: 600;
    color: var(--color-slate-500);
}

/* --- EXPERT CARD --- */
.expert-card {
    background: var(--color-white);
    border-radius: 18px;
    border: 1px solid var(--color-border-light);
    box-shadow: var(--shadow-sm);
    padding: 24px;
}

.expert-card-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.expert-avatar-wrap {
    position: relative;
}

.expert-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f1f5f9;
    box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.expert-badge {
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    background: #10b981;
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 30px;
    white-space: nowrap;
}

.expert-info {
    flex: 1;
    min-width: 200px;
}

.expert-name {
    font-size: 16px;
    font-weight: 750;
    color: var(--color-navy-primary);
    margin-bottom: 4px;
}

.expert-bio {
    font-size: 12.5px;
    color: var(--color-slate-500);
    line-height: 1.6;
    margin: 0;
}

.expert-btn {
    border: 1.5px solid var(--color-navy-primary);
    color: var(--color-navy-primary);
    background: transparent;
    padding: 8px 16px;
    font-size: 12.5px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.expert-btn:hover {
    background: var(--color-navy-primary);
    color: var(--color-white);
}

/* --- REVIEWS SECTION --- */
.reviews-summary-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
}

.reviews-summary-stars {
    color: var(--color-gold);
    font-size: 18px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.review-item-card {
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    border-radius: 14px;
    padding: 20px;
    transition: var(--transition-smooth);
}

.review-item-card:hover {
    background: var(--color-white);
    box-shadow: var(--shadow-sm);
    border-color: var(--color-border-light);
}

.review-author-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.review-author-name {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--color-navy-primary);
    margin: 0;
}

.review-date {
    font-size: 11px;
    color: var(--color-slate-400);
}

.review-stars {
    color: var(--color-gold);
    font-size: 11px;
    margin-bottom: 8px;
}

.review-comment {
    font-size: 13px;
    line-height: 1.6;
    color: var(--color-slate-600);
    margin: 0;
}

/* --- SIMILAR PACKAGES SECTION (PKG-CARD STYLES COPIED/ADAPTED) --- */
.similar-packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 16px;
}

/* Card container */
.pkg-card {
    background: var(--color-white);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(13, 42, 94, 0.07);
    transition: var(--transition-spring);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pkg-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

/* Card image */
.pkg-card-img-wrap {
    position: relative;
    height: 180px;
    overflow: hidden;
    flex-shrink: 0;
}

.pkg-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}

.pkg-card:hover .pkg-card-img-wrap img {
    transform: scale(1.07);
}

.pkg-card-img-wrap::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(4, 18, 52, 0.45), transparent);
    pointer-events: none;
}

.pkg-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.4px;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.pkg-heart {
    position: absolute;
    top: 14px;
    right: 14px;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-slate-500);
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 2;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.pkg-heart:hover {
    transform: scale(1.1);
    color: #ef4444;
}

.pkg-heart.liked {
    color: #ef4444;
    background: #fff;
    box-shadow: 0 3px 12px rgba(239, 68, 68, 0.25);
    transform: scale(1.1);
}

.pkg-card-body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.pkg-card-title {
    font-size: 15px;
    font-weight: 750;
    color: var(--color-navy-primary);
    margin: 0 0 6px 0;
    line-height: 1.35;
    transition: color 0.2s;
}

.pkg-card-title a {
    color: inherit;
    text-decoration: none;
}

.pkg-card:hover .pkg-card-title {
    color: var(--color-navy-light);
}

.pkg-card-location {
    font-size: 12px;
    color: var(--color-slate-500);
    font-weight: 500;
    margin: 0 0 12px 0;
    display: flex;
    align-items: center;
    gap: 4px;
}

.pkg-card-location::before {
    content: '\f3c5';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--color-gold);
}

.pkg-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

.meta-item {
    background: #f1f5f9;
    color: var(--color-slate-600);
    font-size: 10.5px;
    font-weight: 600;
    border-radius: 6px;
    padding: 3px 8px;
}

.pkg-meta-row .meta-item i {
    color: var(--color-gold);
    font-size: 10px;
}

.pkg-rating-row {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    margin-bottom: 12px;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 10px;
}

.pkg-stars {
    color: var(--color-gold);
    font-size: 10.5px;
    letter-spacing: -0.5px;
}

.pkg-rating-val {
    font-weight: 700;
    color: var(--color-navy-primary);
    font-size: 12px;
}

.pkg-review-count {
    color: var(--color-slate-400);
    font-size: 11px;
    font-weight: 500;
}

.pkg-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pkg-price-label {
    display: block;
    font-size: 10px;
    color: var(--color-slate-400);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 1;
}

.pkg-price-amount {
    font-size: 18px;
    font-weight: 800;
    color: var(--color-navy-primary);
}

.pkg-price-amount sup {
    font-size: 11px;
    font-weight: 700;
    margin-right: 1px;
    top: -0.3em;
}

.pkg-price-per {
    font-size: 10.5px;
    color: var(--color-slate-400);
    font-weight: 500;
}

.pkg-arrow-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--color-gold);
    color: var(--color-navy-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12.5px;
    transition: var(--transition-smooth);
    flex-shrink: 0;
    text-decoration: none;
    box-shadow: 0 3px 10px rgba(253, 187, 45, 0.3);
}

.pkg-arrow-btn:hover {
    transform: scale(1.12) rotate(-3deg);
    box-shadow: 0 5px 16px rgba(253, 187, 45, 0.45);
    color: var(--color-navy-primary);
}

/* --- STICKY MOBILE BOTTOM BAR --- */
.sticky-mobile-booking-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(13, 42, 94, 0.08);
    box-shadow: 0 -8px 32px rgba(13, 42, 94, 0.08);
    padding: 12px 20px;
    z-index: 999;
    display: none;
}

.sticky-mobile-booking-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.sticky-mobile-price-wrap {
    display: flex;
    flex-direction: column;
}

.sticky-mobile-price-amount {
    font-size: 20px;
    font-weight: 800;
    color: var(--color-navy-primary);
    line-height: 1.1;
}

.sticky-mobile-price-label {
    font-size: 11px;
    color: var(--color-slate-500);
}

.sticky-mobile-btn {
    flex: 1;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-hover) 100%);
    color: var(--color-navy-primary);
    border: none;
    border-radius: 10px;
    padding: 12px 24px;
    font-size: 13.5px;
    font-weight: 750;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(253, 187, 45, 0.3);
    max-width: 200px;
}

/* --- RESPONSIVENESS AND MEDIA QUERIES --- */
@media (max-width: 1199px) {
    .floating-header-card {
        padding: 20px 24px;
    }
    .gallery-grid {
        height: 380px;
    }
}

@media (max-width: 991px) {
    .details-hero {
        padding-top: 100px;
        padding-bottom: 90px;
        min-height: 320px;
    }
    
    .floating-header-card {
        margin-top: -60px;
    }
    
    .booking-sticky-wrapper {
        position: static;
        margin-top: 30px;
    }
    
    .gallery-grid {
        height: 340px;
    }
}

@media (max-width: 767px) {
    .floating-header-layout {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }
    
    .floating-header-right {
        text-align: left;
        width: 100%;
        border-top: 1px solid var(--color-border-light);
        padding-top: 14px;
    }
    
    .price-big-amount {
        justify-content: flex-start;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        height: 260px;
    }
    
    .gallery-thumbs {
        display: none; /* Hide secondary thumbs on mobile to save vertical space and display beautifully */
    }
    
    .exp-highlights-list {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .details-section-card {
        padding: 24px;
    }
    
    /* Sticky mobile footer active */
    .sticky-mobile-booking-bar {
        display: block;
    }
    
    /* Extra padding at bottom of main content to prevent sticky footer overlapping */
    .pkg-details-wrapper {
        padding-bottom: 80px;
    }
}

@media (max-width: 480px) {
    .details-hero {
        padding-top: 90px;
        padding-bottom: 70px;
        min-height: 260px;
    }
    
    .floating-header-card {
        padding: 16px 20px;
        margin-top: -40px;
        border-radius: 16px;
    }
    
    .floating-header-left h2 {
        font-size: 20px;
    }
    
    .price-big-amount {
        font-size: 26px;
    }
    
    .details-section-card {
        padding: 20px 16px;
        border-radius: 16px;
    }
    
    .inclusions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
