/* =========================================
   Park Sleep Travel — PIT Landing Page v3
   Professional Design System
   ========================================= */

:root {
    --pst-navy: #0f172a;
    --pst-blue: #2563eb;
    --pst-blue-light: #3b82f6;
    --pst-accent: #f59e0b;
    --pst-bg: #f8fafc;
    --pst-card: #ffffff;
    --pst-text: #334155;
    --pst-text-light: #64748b;
    --pst-border: #e2e8f0;
    --pst-radius: 18px;
    --pst-radius-lg: 28px;
    --pst-shadow: 0 10px 40px rgba(15, 23, 42, 0.08);
    --pst-shadow-lg: 0 25px 60px rgba(15, 23, 42, 0.14);
    --pst-shadow-xl: 0 35px 80px rgba(15, 23, 42, 0.18);
    --pst-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --pst-transition-smooth: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation delays for visual rhythm */
.reveal:nth-child(1) { transition-delay: 0.05s; }
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.15s; }
.reveal:nth-child(4) { transition-delay: 0.2s; }
.reveal:nth-child(5) { transition-delay: 0.25s; }
.reveal:nth-child(6) { transition-delay: 0.3s; }

/* Hero Section */
.pst-hero {
    position: relative;
    padding: 120px 0 100px;
    background: linear-gradient(to right, #0f4c81, #1e88e5);
    color: #fff;
    overflow: hidden;
}
.pst-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.03)" d="M0,192L48,197.3C96,203,192,213,288,229.3C384,245,480,267,576,250.7C672,235,768,181,864,181.3C960,181,1056,235,1152,234.7C1248,235,1344,181,1392,154.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    opacity: 0.6;
}
.pst-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.08) 0%, transparent 50%);
}
.pst-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
}
.pst-hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 20px rgba(0,0,0,0.15);
}
.pst-hero-title .accent {
    color: #fbbf24;
    position: relative;
}
.pst-hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.7;
    font-weight: 300;
}
.pst-trust-bar {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    padding: 16px 32px;
    border-radius: 50px;
    margin-bottom: 40px;
    backdrop-filter: blur(12px);
    flex-wrap: wrap;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    justify-content: center;
}
.pst-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600;
}
.pst-trust-icon {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}
.pst-trust-divider {
    width: 1px;
    height: 24px;
    background: rgba(255,255,255,0.2);
}

/* Section Layout */
.pst-section {
    padding: 90px 0;
}
.pst-section-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--pst-blue);
    background: rgba(37,99,235,0.08);
    padding: 6px 16px;
    border-radius: 50px;
    margin: 0 auto 14px;
}
.pst-section-label.light {
    color: #bfdbfe;
    background: rgba(255,255,255,0.1);
}
.pst-section-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--pst-navy);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    text-shadow: 0 1px 2px rgba(0,0,0,0.04);
}
.pst-section-title.light { color: #fff; }
.pst-section-text {
    font-size: 1.1rem;
    color: var(--pst-text-light);
    line-height: 1.7;
}
.pst-section-text.light { color: rgba(255,255,255,0.8); }
.pst-lead {
    font-size: 1.15rem;
    color: var(--pst-text);
    line-height: 1.8;
}

/* Benefit Cards */
.pst-benefit-card {
    background: var(--pst-card);
    border-radius: var(--pst-radius-lg);
    padding: 44px 32px;
    text-align: center;
    height: 100%;
    border: 1px solid var(--pst-border);
    transition: var(--pst-transition);
}
.pst-benefit-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--pst-shadow-xl);
    border-color: rgba(37,99,235,0.2);
}

/* Enhanced card lift effect with underline */
.pst-benefit-card {
    position: relative;
}
.pst-benefit-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--pst-blue), var(--pst-blue-light));
    transition: width 0.4s ease;
    border-radius: 3px 3px 0 0;
}
.pst-benefit-card:hover::after {
    width: 60%;
}
.pst-benefit-icon {
    width: 72px;
    height: 72px;
    background: rgba(37,99,235,0.08);
    color: var(--pst-blue);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 22px;
}
.pst-benefit-icon.bg-success-soft { background: rgba(34,197,94,0.08); }
.pst-benefit-icon.bg-info-soft { background: rgba(14,165,233,0.08); }
.pst-benefit-card h5 {
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 12px;
    color: var(--pst-navy);
}
.pst-benefit-card p {
    color: var(--pst-text-light);
    line-height: 1.7;
    margin: 0;
    font-size: 0.95rem;
}

/* Why Section - Local Insights matching hero */
.pst-why-section {
    background: linear-gradient(to right, #0f4c81, #1e88e5);
    color: #fff;
    padding: 80px 20px;
}
.pst-why-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--pst-radius-lg);
    padding: 36px 30px;
    height: 100%;
    transition: var(--pst-transition);
}
.pst-why-card:hover {
    background: rgba(255,255,255,0.07);
    transform: translateY(-5px);
}
.pst-why-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(255,255,255,0.1);
    line-height: 1;
    margin-bottom: 12px;
}
.pst-why-card h4 {
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 10px;
}
.pst-why-card p {
    opacity: 0.75;
    line-height: 1.7;
    margin: 0;
    font-size: 0.95rem;
}

/* Buttons */
.pst-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    color: #1e293b;
    border: none;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--pst-transition);
    box-shadow: 0 8px 25px rgba(245,158,11,0.35);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.pst-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}
.pst-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(245,158,11,0.45), 0 0 20px 5px rgba(251,191,36,0.2);
    color: #0f172a;
}
.pst-btn-primary:hover::before {
    left: 100%;
}
.pst-btn-primary.alt {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    color: #1e293b;
    box-shadow: 0 8px 25px rgba(245,158,11,0.35);
}
.pst-btn-primary.alt:hover {
    box-shadow: 0 12px 35px rgba(245,158,11,0.45);
    color: #0f172a;
}
.pst-btn-warning {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    color: #1e293b;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 800;
    text-decoration: none;
    transition: var(--pst-transition);
    box-shadow: 0 8px 25px rgba(245,158,11,0.35);
}
.pst-btn-warning:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(245,158,11,0.45);
    color: #0f172a;
}
.pst-btn-light {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: var(--pst-navy);
    border: none;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: var(--pst-transition);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    cursor: pointer;
}
.pst-btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

/* Help Sheets */
.pst-help-sheet {
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    border-radius: var(--pst-radius-lg);
    padding: 60px 70px;
    box-shadow: var(--pst-shadow-lg);
    border: 1px solid #dbeafe;
    position: relative;
    overflow: hidden;
    transition: var(--pst-transition);
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}
.pst-help-sheet:hover {
    box-shadow: 0 30px 70px rgba(15, 23, 42, 0.18);
    border-color: #bfdbfe;
}
.pst-help-sheet::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(37,99,235,0.05) 0%, transparent 70%);
    pointer-events: none;
}
.pst-help-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: linear-gradient(135deg, var(--pst-blue), #60a5fa);
    color: #fff;
    padding: 6px 14px;
    border-radius: 50px;
    margin: 0 auto 16px;
}
.pst-help-label.alt {
    background: linear-gradient(135deg, var(--pst-blue), #60a5fa);
}
.pst-help-label.teal {
    background: linear-gradient(135deg, var(--pst-blue), #60a5fa);
}
.pst-help-sheet h2 {
    font-weight: 800;
    font-size: 1.9rem;
    margin-bottom: 14px;
    color: var(--pst-navy);
}
.pst-help-sheet p {
    color: var(--pst-text);
    line-height: 1.9;
    font-size: 1.05rem;
    margin-bottom: 20px;
    max-width: 540px;
}
.pst-help-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 6px;
}
.pst-meta-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid var(--pst-border);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--pst-navy);
}
.pst-meta-pill i {
    color: var(--pst-blue);
    font-size: 0.8rem;
}

/* Help Visual Box */
.pst-help-visual {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border: 1px solid #bfdbfe;
    border-radius: var(--pst-radius);
    padding: 44px 36px;
    height: 100%;
    text-align: center;
    transition: var(--pst-transition);
}
.pst-help-visual:hover {
    transform: translateY(-6px);
    box-shadow: var(--pst-shadow);
    border-color: #93c5fd;
}
.pst-help-visual.indigo {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border-color: #bfdbfe;
}
.pst-help-visual.indigo:hover { border-color: #93c5fd; }
.pst-help-visual.teal {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border-color: #bfdbfe;
}
.pst-help-visual.teal:hover { border-color: #93c5fd; }
.pst-visual-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--pst-blue), #60a5fa);
    color: #fff;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 24px;
    box-shadow: 0 12px 30px rgba(37,99,235,0.2);
}
.pst-help-visual.indigo .pst-visual-icon {
    background: linear-gradient(135deg, var(--pst-blue), #60a5fa);
    box-shadow: 0 12px 30px rgba(37,99,235,0.2);
}
.pst-help-visual.teal .pst-visual-icon {
    background: linear-gradient(135deg, var(--pst-blue), #60a5fa);
    box-shadow: 0 12px 30px rgba(37,99,235,0.2);
}
.pst-help-visual h4 {
    font-weight: 800;
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--pst-navy);
}
.pst-help-visual p {
    color: var(--pst-text-light);
    line-height: 1.8;
    font-size: 0.95rem;
    margin: 0 auto;
    max-width: 320px;
}

/* Service Cards */
.pst-service-card {
    background: var(--pst-card);
    border-radius: var(--pst-radius);
    overflow: hidden;
    border: 1px solid var(--pst-border);
    height: 100%;
    transition: var(--pst-transition);
}
.pst-service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--pst-shadow-lg);
    border-color: transparent;
}
.pst-service-card:hover .pst-service-img img {
    transform: scale(1.08);
}
.pst-service-img {
    height: 200px;
    overflow: hidden;
}
.pst-service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.pst-service-body {
    padding: 24px;
    text-align: center;
}
.pst-service-body h6 {
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 10px;
    color: var(--pst-navy);
}
.pst-service-body p {
    color: var(--pst-text-light);
    font-size: 0.92rem;
    line-height: 1.7;
    margin: 0;
}

/* Featured Box */
.pst-featured-box {
    background: linear-gradient(135deg, #fff, #eff6ff);
    border-radius: var(--pst-radius-lg);
    padding: 50px 50px;
    box-shadow: var(--pst-shadow);
    border: 1px solid #dbeafe;
    position: relative;
    overflow: hidden;
}
.pst-featured-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(37,99,235,0.06) 0%, transparent 70%);
    pointer-events: none;
}
.pst-featured-label {
    display: inline-block;
    background: linear-gradient(135deg, var(--pst-blue), #60a5fa);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 14px;
}
.pst-featured-box h2 {
    font-weight: 800;
    font-size: 1.9rem;
    margin-bottom: 10px;
    color: var(--pst-navy);
}
.pst-featured-box p {
    color: var(--pst-text-light);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* FAQ */
.pst-faq-wrap {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.pst-faq-item {
    background: var(--pst-card);
    border-radius: var(--pst-radius);
    border: 1px solid var(--pst-border);
    overflow: hidden;
    transition: var(--pst-transition);
}
.pst-faq-item:hover {
    border-color: #cbd5e1;
}
.pst-faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 22px 26px;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--pst-navy);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
}
.pst-faq-question .icon {
    width: 32px;
    height: 32px;
    background: rgba(37,99,235,0.08);
    color: var(--pst-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: var(--pst-transition);
    flex-shrink: 0;
    margin-left: 15px;
}
.pst-faq-item.active .pst-faq-question .icon {
    transform: rotate(45deg);
    background: var(--pst-blue);
    color: #fff;
}
.pst-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 26px;
}
.pst-faq-item.active .pst-faq-answer {
    max-height: 300px;
    padding-bottom: 24px;
}
.pst-faq-answer p {
    color: var(--pst-text-light);
    line-height: 1.8;
    margin: 0;
}

/* Hotel Sheet */
.pst-hotel-sheet {
    background: var(--pst-card);
    border-radius: var(--pst-radius-lg);
    box-shadow: var(--pst-shadow-lg);
    overflow: hidden;
    border: 1px solid var(--pst-border);
}
.pst-hotel-mainimage {
    position: relative;
    height: 420px;
    overflow: hidden;
}
.pst-hotel-mainimage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.pst-hotel-imgbadge {
    position: absolute;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--pst-blue), var(--pst-blue-light));
    color: #fff;
    font-weight: 800;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 8px 25px rgba(37,99,235,0.3);
}
.pst-hotel-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 24px 40px;
    background: #f8fafc;
    border-bottom: 1px solid var(--pst-border);
}
.pst-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid var(--pst-border);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--pst-navy);
}
.pst-pill i {
    color: var(--pst-blue);
    font-size: 0.8rem;
}
.pst-hotel-block {
    padding: 40px;
    border-bottom: 1px solid var(--pst-border);
}
.pst-hotel-block:last-of-type {
    border-bottom: none;
}
.pst-hotel-block h3 {
    font-weight: 800;
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--pst-navy);
}
.pst-hotel-block p {
    color: var(--pst-text);
    line-height: 1.9;
    margin-bottom: 16px;
}
.pst-hotel-block p:last-child { margin-bottom: 0; }

/* Shuttle Table */
.pst-shuttle-table {
    border: 1px solid var(--pst-border);
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 12px;
}
.pst-shuttle-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    background: #fff;
    border-bottom: 1px solid var(--pst-border);
    font-size: 0.95rem;
}
.pst-shuttle-row:last-child { border-bottom: none; }
.pst-shuttle-row.head {
    background: var(--pst-navy);
    color: #fff;
    font-weight: 700;
}
.badge-shift {
    display: inline-block;
    background: #dbeafe;
    color: #1e40af;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
}

/* Feature List */
.pst-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.pst-feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--pst-text);
}
.pst-feature-list i {
    width: 24px;
    height: 24px;
    background: #dcfce7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    flex-shrink: 0;
}

/* Sidebar */
.pst-hotel-sidebar {
    background: #f8fafc;
    border-radius: var(--pst-radius);
    padding: 32px;
    border: 1px solid var(--pst-border);
    position: sticky;
    top: 30px;
}
.pst-sidebar-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid var(--pst-border);
}
.pst-sidebar-item:last-child { border-bottom: none; }
.pst-sidebar-item i {
    width: 40px;
    height: 40px;
    background: #fff;
    border: 1px solid var(--pst-border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pst-blue);
    font-size: 0.95rem;
    flex-shrink: 0;
    margin-top: 2px;
}
.pst-sidebar-item div {
    display: flex;
    flex-direction: column;
}
.pst-sidebar-item strong {
    font-size: 0.95rem;
    color: var(--pst-navy);
}
.pst-sidebar-item span {
    font-size: 0.88rem;
    color: var(--pst-text-light);
    margin-top: 2px;
}

/* Amenities */
.pst-amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 14px;
}
.pst-amenity {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border: 1px solid var(--pst-border);
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--pst-navy);
    transition: var(--pst-transition);
}
.pst-amenity:hover {
    transform: translateY(-4px);
    box-shadow: var(--pst-shadow);
    border-color: transparent;
}
.pst-amenity i {
    color: var(--pst-blue);
    font-size: 1rem;
    width: 22px;
    text-align: center;
}

/* Search Form - match index.php container */
.pst-hero .search-container {
    width: 100%;
    margin: 0 auto;
}

.pst-hero .search-form .row {
    flex-wrap: nowrap;
}

/* Make rooms and guests fields compact */
.pst-hero .rooms-field,
.pst-hero .guests-field {
    min-width: 80px;
    flex: 0 0 auto;
}

.pst-hero .rooms-field input,
.pst-hero .guests-field input {
    min-width: 28px;
    padding-left: 2px;
    padding-right: 2px;
    font-size: 0.85rem;
}

/* Make search button column fit */
.pst-hero #searchBtnCol {
    min-width: 50px;
    flex: 0 0 auto;
}

/* Responsive: wrap on smaller screens */
@media (max-width: 1200px) {
    .pst-hero .search-form .row {
        flex-wrap: wrap;
    }
    .pst-hero .rooms-field,
    .pst-hero .guests-field {
        min-width: 90px;
    }
}

/* Map */
.pst-map-wrap {
    border-radius: 0 0 var(--pst-radius-lg) var(--pst-radius-lg);
    overflow: hidden;
    line-height: 0;
    border-top: 1px solid var(--pst-border);
}
.pst-map-wrap iframe {
    width: 100%;
    height: 400px;
    border: 0;
    filter: grayscale(20%) contrast(1.05);
}

/* CTA Section */
.pst-cta-section {
    background: linear-gradient(135deg, #0f4c81, #2563eb);
    color: #fff;
    text-align: center;
}
.pst-cta-section h2 {
    font-weight: 800;
    font-size: 2.4rem;
    margin-bottom: 16px;
}
.pst-lead-light {
    font-size: 1.15rem;
    opacity: 0.9;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* CTA Buttons container */
.pst-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

.pst-cta-section .pst-btn-light {
    font-size: 1.1rem;
    padding: 18px 40px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.pst-cta-section .pst-btn-light:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.3);
}

/* CTA decorative element */
.pst-cta-section {
    position: relative;
    overflow: hidden;
}

.pst-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

/* Final CTA */
.pst-final-cta {
    background: linear-gradient(135deg, #0f172a, #1e3a8a);
}
.pst-final-box {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--pst-radius-lg);
    padding: 50px 50px;
    backdrop-filter: blur(10px);
    color: #fff;
}
.pst-final-box h2 {
    font-weight: 800;
    font-size: 1.8rem;
    margin-bottom: 12px;
}
.pst-final-box p {
    font-size: 1.05rem;
    opacity: 0.85;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 991px) {
    .pst-hero { padding: 90px 0 70px; }
    .pst-hero-title { font-size: 2.2rem; }
    .pst-hero-subtitle { font-size: 1.05rem; }
    .pst-trust-bar { gap: 14px; padding: 14px 24px; }
    .pst-trust-divider { display: none; }
    .pst-section { padding: 60px 0; }
    .pst-section-title { font-size: 1.9rem; }
    .pst-help-sheet { padding: 40px 28px; }
    .pst-help-sheet p { max-width: 100%; }
    .pst-help-visual { margin-top: 24px; }
    .pst-hotel-mainimage { height: 280px; }
    .pst-hotel-pills { padding: 18px 24px; }
    .pst-hotel-block { padding: 28px 24px; }
    .pst-hotel-sidebar { position: static; margin-top: 24px; }
    .pst-final-box { padding: 36px 28px; text-align: center; }
    .pst-featured-box { padding: 36px 28px; text-align: center; }
}

@media (max-width: 576px) {
    .pst-hero-title { font-size: 1.8rem; }
    .pst-trust-bar { flex-direction: column; border-radius: 20px; }
    .pst-amenities-grid { grid-template-columns: 1fr; }
    .pst-pill { font-size: 0.8rem; }
    .pst-help-meta { flex-direction: column; }
    .pst-meta-pill { justify-content: center; }
    /* Mobile: center all labels */
    .pst-section-label,
    .pst-help-label {
        display: flex;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Mobile: center call buttons */
@media (max-width: 767px) {
    a.pst-btn-primary[href^="tel"] {
        display: flex;
        margin-left: auto;
        margin-right: auto;
        width: fit-content;
        text-align: center;
    }
    body { padding-bottom: 72px; }
}

/* Sticky call bar (page-level, hidden now — handled globally in footer) */
.pst-sticky-call {
    display: none;
}
