/* ============================================================
   css/package-detail.css
   Maldives Holiday Package — Individual Package Detail Page
   Fixed: All content visible, hidden scrollbars, responsive
   ============================================================ */

/* ===== DETAIL PAGE HERO ===== */
.pd-hero {
    position: relative;
    min-height: 480px;
    height: auto;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    padding-bottom: 2rem;
}

.pd-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 40%;
    transform: scale(1.04);
    transition: transform 8s ease;
}

.pd-hero:hover .pd-hero-bg {
    transform: scale(1.0);
}

.pd-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(5,31,33,0.25) 0%,
        rgba(5,31,33,0.35) 40%,
        rgba(5,31,33,0.75) 100%
    );
}

.pd-hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem 0 3rem;
    width: 100%;
}

.pd-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem;
    font-family: var(--font-body);
    font-weight: 500;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.pd-breadcrumb a {
    color: rgba(255,255,255,0.7);
    transition: color 0.25s;
}

.pd-breadcrumb a:hover { color: var(--teal-300); }

.pd-breadcrumb i {
    font-size: 0.58rem;
    opacity: 0.5;
}

.pd-hero-badges {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.9rem;
    flex-wrap: wrap;
}

.pd-badge {
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    padding: 0.25rem 0.85rem;
    border-radius: 30px;
}

.pd-badge-hot    { background: #ef4444; color: #fff; }
.pd-badge-luxury { background: var(--gold); color: #1a0e00; }
.pd-badge-family { background: #3b82f6; color: #fff; }
.pd-badge-value  { background: #22c55e; color: #fff; }
.pd-badge-adventure { background: #f97316; color: #fff; }
.pd-badge-cat    { background: rgba(255,255,255,0.92); color: var(--teal-700); }

.pd-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .pd-hero-title {
        white-space: normal;
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }
}

.pd-hero-subtitle {
    font-size: 1rem;
    color: rgba(255,255,255,0.78);
    font-family: var(--font-body);
    font-weight: 500;
    margin-bottom: 1.2rem;
    letter-spacing: 0.5px;
}

.pd-hero-meta {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.pd-meta-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.22);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
}

.pd-meta-pill i {
    font-size: 0.75rem;
    color: var(--teal-300);
}

.pd-hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    z-index: 3;
    line-height: 0;
}

.pd-hero-wave svg {
    width: 100%;
    height: 60px;
    display: block;
}

/* ===== GALLERY STRIP ===== */
.pd-gallery-strip {
    padding: 2.5rem 0 0;
    background: var(--bg-body);
}

.pd-gallery-mosaic {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 12px;
    border-radius: 20px;
    overflow: hidden;
    height: auto;
    min-height: 380px;
}

.pd-gallery-main {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.pd-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    min-height: 280px;
}

.pd-gallery-main:hover img {
    transform: scale(1.04);
}

.pd-gallery-side {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.pd-gallery-thumb {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
}

.pd-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    min-height: 140px;
}

.pd-gallery-thumb:hover img {
    transform: scale(1.06);
}

.pd-gallery-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(5,31,33,0.75) 0%, transparent 100%);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 1.2rem 0.7rem 0.5rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pd-gallery-main:hover .pd-gallery-label,
.pd-gallery-thumb:hover .pd-gallery-label {
    opacity: 1;
}

/* ===== BODY SECTION - NATURAL FLOW ===== */
.pd-body-section {
    background: var(--bg-body);
    padding: 2rem 0 4rem;
}

.pd-layout-container {
    display: flex;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* LEFT SECTION - ALL CONTENT VISIBLE, NO SCROLLBAR */
.pd-main-scrollable {
    flex: 1;

    height: calc(150vh - 120px); /* full height minus header */
    overflow-y: auto;

    /* Hide scrollbar */
    scrollbar-width: none;        /* Firefox */
    -ms-overflow-style: none;     /* IE/Edge */
}

.pd-main-scrollable::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.pd-main-content {
    max-width: 900px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* RIGHT SIDEBAR - STICKY */
.pd-sidebar-fixed {
    width: 380px;
    flex-shrink: 0;
    position: sticky;
    top: 100px;
    align-self: flex-start;
}

.pd-sticky-card {
    background: var(--white);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(10,44,47,0.12);
    border: 1px solid rgba(44,154,156,0.12);
}

.pd-sticky-header {
    background: linear-gradient(135deg, var(--teal-800), var(--teal-600));
    padding: 1.5rem 1.6rem;
    color: var(--white);
}

.pd-sticky-price {
    display: flex;
    flex-direction: column;
    margin-bottom: 0.6rem;
}

.pd-sticky-from {
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.65);
    margin-bottom: 0.1rem;
}

.pd-sticky-amount {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    letter-spacing: -0.02em;
}

.pd-sticky-per {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: rgba(255,255,255,0.65);
    margin-top: 0.2rem;
}

.pd-sticky-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: rgba(255,255,255,0.8);
}

.pd-stars { color: #fbbf24; letter-spacing: 1px; }

/* Enquiry Form */
.pd-enquiry-form {
    padding: 1.5rem 1.6rem 0;
}

.pd-form-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--teal-800);
    margin-bottom: 1.2rem;
}

.pd-form-group {
    margin-bottom: 0.9rem;
}

.pd-form-group label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.76rem;
    font-weight: 600;
    color: var(--text-mid);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 0.35rem;
}

.pd-form-group input,
.pd-form-group select,
.pd-form-group textarea {
    width: 100%;
    padding: 0.7rem 1rem;
    border: 1.5px solid rgba(44,154,156,0.2);
    border-radius: 10px;
    background: var(--bg-section);
    color: var(--text-dark);
    font-family: var(--font-body);
    font-size: 0.85rem;
    transition: border-color 0.25s, box-shadow 0.25s;
    outline: none;
}

.pd-form-group input:focus,
.pd-form-group select:focus,
.pd-form-group textarea:focus {
    border-color: var(--teal-500);
    box-shadow: 0 0 0 3px rgba(44,154,156,0.12);
    background: var(--white);
}

.pd-form-group textarea {
    resize: vertical;
    min-height: 70px;
}

.pd-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}

.pd-form-submit {
    width: 100%;
    padding: 0.9rem;
    background: linear-gradient(135deg, var(--teal-600), var(--teal-800));
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.28s ease;
    box-shadow: 0 4px 18px rgba(27,98,100,0.3);
    margin-top: 0.5rem;
}

.pd-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(27,98,100,0.4);
}

.pd-form-success {
    text-align: center;
    padding: 0.9rem;
    background: rgba(34,197,94,0.1);
    border-radius: 10px;
    color: #16a34a;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.pd-form-error {
    text-align: center;
    padding: 0.9rem;
    background: rgba(239,68,68,0.1);
    border-radius: 10px;
    color: #dc2626;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.pd-or-divider {
    text-align: center;
    position: relative;
    margin: 1.2rem 1.6rem;
}

.pd-or-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(44,154,156,0.15);
}

.pd-or-divider span {
    position: relative;
    background: var(--white);
    padding: 0 0.8rem;
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.pd-whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0 1.6rem;
    padding: 0.85rem;
    background: #25d366;
    color: var(--white);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 700;
    transition: all 0.28s ease;
    box-shadow: 0 4px 16px rgba(37,211,102,0.28);
    text-decoration: none;
}

.pd-whatsapp-btn:hover {
    background: #20b858;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37,211,102,0.38);
}

.pd-whatsapp-btn i { font-size: 1.1rem; }

.pd-trust-badges {
    display: flex;
    gap: 0;
    border-top: 1px solid rgba(44,154,156,0.1);
    margin-top: 1.2rem;
}

.pd-trust-badges span {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    padding: 0.9rem 0.5rem;
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--text-soft);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    text-align: center;
    border-right: 1px solid rgba(44,154,156,0.1);
}

.pd-trust-badges span:last-child { border-right: none; }

.pd-trust-badges span i {
    font-size: 1rem;
    color: var(--teal-500);
}

/* ===== OVERVIEW STRIP ===== */
.pd-overview-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(10,44,47,0.07);
    border: 1px solid rgba(44,154,156,0.1);
}

.pd-ov-item {
    flex: 1;
    min-width: 120px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.2rem;
    border-right: 1px solid rgba(44,154,156,0.1);
    transition: background 0.2s;
}

.pd-ov-item:last-child { border-right: none; }

.pd-ov-item:hover { background: var(--teal-50); }

.pd-ov-item > i {
    font-size: 1.2rem;
    color: var(--teal-500);
    flex-shrink: 0;
    width: 28px;
    text-align: center;
}

.pd-ov-item div {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.pd-ov-item strong {
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--text-muted);
}

.pd-ov-item span {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--teal-800);
}

/* ===== CONTENT SECTIONS ===== */
.pd-section {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(10,44,47,0.07);
    border: 1px solid rgba(44,154,156,0.08);
}

.pd-section-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1.5px solid rgba(44,154,156,0.1);
}

.pd-section-header h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--teal-800);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.pd-section-header h2 i {
    color: var(--teal-500);
    font-size: 1.1rem;
}

.pd-description p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-soft);
    line-height: 1.8;
    margin-bottom: 0.9rem;
}

.pd-description p:last-child { margin-bottom: 0; }

.pd-description strong { color: var(--teal-700); font-weight: 600; }

/* ===== HIGHLIGHTS GRID ===== */
.pd-highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.pd-highlight-card {
    background: var(--bg-section);
    border-radius: 14px;
    padding: 1.2rem;
    border: 1px solid rgba(44,154,156,0.1);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pd-highlight-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(10,44,47,0.1);
}

.pd-hl-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(44,154,156,0.15), rgba(44,154,156,0.08));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.9rem;
}

.pd-hl-icon i {
    font-size: 1.1rem;
    color: var(--teal-600);
}

.pd-highlight-card h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--teal-800);
    margin-bottom: 0.45rem;
}

.pd-highlight-card p {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--text-soft);
    line-height: 1.6;
}

/* ===== ITINERARY ===== */
.pd-itinerary {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.pd-day {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 0 1.5rem;
}

.pd-day-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 0.2rem;
}

.pd-day-num {
    background: var(--teal-700);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.35rem 0.7rem;
    border-radius: 30px;
    white-space: nowrap;
    text-align: center;
    flex-shrink: 0;
}

.pd-day-line {
    width: 2px;
    flex: 1;
    background: linear-gradient(to bottom, var(--teal-200, #b2e4e5), transparent);
    margin-top: 8px;
    min-height: 30px;
}

.pd-day-last .pd-day-line { display: none; }

.pd-day-content {
    padding-bottom: 2rem;
}

.pd-day-last .pd-day-content { padding-bottom: 0; }

.pd-day-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.pd-day-header h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--teal-800);
}

.pd-day-tag {
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--teal-600);
    background: rgba(44,154,156,0.1);
    padding: 0.2rem 0.75rem;
    border-radius: 30px;
    border: 1px solid rgba(44,154,156,0.2);
    white-space: nowrap;
}

.pd-day-body {
    background: var(--bg-section);
    border-radius: 14px;
    padding: 1.2rem 1.4rem;
    border: 1px solid rgba(44,154,156,0.08);
}

.pd-day-times {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.1rem;
}

.pd-time-item {
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
    flex-wrap: wrap;
}

.time-label {
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--teal-600);
    background: rgba(44,154,156,0.1);
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    white-space: nowrap;
    flex-shrink: 0;
    margin-top: 0.18rem;
}

.pd-time-item p {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--text-soft);
    line-height: 1.7;
    flex: 1;
}

.pd-day-includes {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    padding-top: 0.9rem;
    border-top: 1px solid rgba(44,154,156,0.1);
}

.pd-day-includes span {
    font-family: var(--font-body);
    font-size: 0.76rem;
    font-weight: 600;
    color: var(--teal-700);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.pd-day-includes span i {
    font-size: 0.68rem;
    color: var(--teal-500);
}

/* ===== INCLUSIONS / EXCLUSIONS ===== */
.pd-incl-excl {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.pd-incl-col {
    border-radius: 14px;
    padding: 1.4rem 1.5rem;
}

.pd-incl {
    background: rgba(34,197,94,0.05);
    border: 1.5px solid rgba(34,197,94,0.2);
}

.pd-excl {
    background: rgba(239,68,68,0.05);
    border: 1.5px solid rgba(239,68,68,0.15);
}

.pd-incl-col h3 {
    font-family: var(--font-display);
    font-size: 1.08rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.pd-incl h3 { color: #16a34a; }
.pd-excl h3 { color: #dc2626; }

.pd-incl h3 i { color: #22c55e; }
.pd-excl h3 i { color: #ef4444; }

.pd-incl-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.pd-incl-col ul li {
    font-family: var(--font-body);
    font-size: 0.84rem;
    line-height: 1.5;
    padding-left: 1.2rem;
    position: relative;
}

.pd-incl ul li { color: #1a4a23; }
.pd-excl ul li { color: #5a1a1a; }

.pd-incl ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: 700;
    font-size: 0.78rem;
}

.pd-excl ul li::before {
    content: '✕';
    position: absolute;
    left: 0;
    color: #ef4444;
    font-weight: 700;
    font-size: 0.78rem;
}

/* ===== IMPORTANT NOTES ===== */
.pd-notes {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pd-note-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem 1.2rem;
    background: var(--bg-section);
    border-radius: 12px;
    border: 1px solid rgba(44,154,156,0.08);
}

.pd-note-item > i {
    font-size: 1.1rem;
    color: var(--teal-500);
    flex-shrink: 0;
    margin-top: 0.1rem;
    width: 22px;
    text-align: center;
}

.pd-note-item strong {
    display: block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--teal-800);
    margin-bottom: 0.3rem;
}

.pd-note-item p {
    font-family: var(--font-body);
    font-size: 0.83rem;
    color: var(--text-soft);
    line-height: 1.65;
}

/* Input Error State */
.input-error {
    border-color: #ef4444 !important;
    background-color: rgba(239,68,68,0.05) !important;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .pd-layout-container {
        padding: 0 1.5rem;
    }
    
    .pd-sidebar-fixed {
        width: 340px;
    }
}

@media (max-width: 992px) {
    .pd-layout-container {
        flex-direction: column;
    }
    
    .pd-sidebar-fixed {
        width: 100%;
        position: static;
        margin-top: 2rem;
    }
    
    .pd-main-scrollable {
        width: 100%;
    }
    
    .pd-main-content {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .pd-hero {
        min-height: 400px;
    }
    
    .pd-hero-content {
        padding: 1.5rem 0 2rem;
    }
    
    .pd-layout-container {
        padding: 0 1rem;
    }
    
    .pd-section {
        padding: 1.5rem;
    }
    
    .pd-section-header h2 {
        font-size: 1.3rem;
    }
    
    .pd-highlights-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .pd-gallery-mosaic {
        grid-template-columns: 1fr;
    }
    
    .pd-gallery-main {
        min-height: 250px;
    }
    
    .pd-gallery-side {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .pd-gallery-thumb {
        min-height: 100px;
    }
    
    .pd-incl-excl {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .pd-day {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .pd-day-marker {
        flex-direction: row;
        justify-content: flex-start;
        gap: 1rem;
        padding-bottom: 0.5rem;
    }
    
    .pd-day-line {
        display: none;
    }
    
    .pd-day-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .pd-overview-strip {
        flex-wrap: wrap;
    }
    
    .pd-ov-item {
        flex: 1 1 calc(50% - 1px);
        border-bottom: 1px solid rgba(44,154,156,0.1);
    }
    
    .pd-ov-item:nth-child(even) {
        border-right: none;
    }
}

@media (max-width: 480px) {
    .pd-hero {
        padding: 40px 20px;
        min-height: 450px;
    }
    
    .pd-hero-title {
        font-size: 1.8rem;
        white-space: normal;
    }
    
    .pd-hero-meta {
        gap: 0.4rem;
    }
    
    .pd-meta-pill {
        font-size: 0.7rem;
        padding: 0.25rem 0.7rem;
    }
    
    .pd-gallery-side {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pd-highlights-grid {
        grid-template-columns: 1fr;
    }
    
    .pd-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .pd-sticky-amount {
        font-size: 1.6rem;
    }
    
    .pd-sticky-card {
        margin: 0;
    }
    
    .pd-enquiry-form {
        padding: 1rem;
    }
    
    .pd-whatsapp-btn {
        margin: 0 1rem;
    }
    
    .pd-or-divider {
        margin: 1rem;
    }
    
    .pd-trust-badges {
        flex-wrap: wrap;
    }
    
    .pd-trust-badges span {
        flex: 1 1 50%;
        border-bottom: 1px solid rgba(44,154,156,0.1);
    }
    
    .pd-trust-badges span:last-child {
        border-right: 1px solid rgba(44,154,156,0.1);
    }
}