:root {
    --pm-pink: #E91E8C;
    --pm-pink-dark: #C2177A;
    --pm-navy: #001228;
    --pm-navy-deep: #002343;
    --pm-blue: #4A6CF7;
    --pm-light-blue: #E2EFFF;
}

body {
    color: #001228;
}

* {
    box-sizing: border-box;
}

/* ── 1. ANNOUNCEMENT BAR ── */
.pm-ann-bar {
    background: var(--pm-pink);
    color: #fff;
    text-align: center;
    padding: 12px 18px;
    font-size: 14px;
    font-weight: 600;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1100;
    letter-spacing: 0.3px;
    gap: 10px 16px !important;
    box-shadow: 0 10px 30px rgba(194, 23, 122, 0.2);
}

.pm-ann-copy {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    line-height: 1.35;
}

.pm-ann-copy strong,
.pm-ann-bonus strong {
    font-weight: 800;
}

.pm-ann-copy-muted {
    opacity: 0.9;
}

.pm-ann-countdown {
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
}

.pm-ann-bar .countdown-unit {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    margin: 0;
    padding: 4px 6px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.12);
    font-size: 11px;
    line-height: 1.1;
    text-transform: lowercase;
}

.pm-ann-bar .countdown-unit span {
    margin-top: 4px;
    opacity: 0.82;
}

.pm-ann-bar .countdown-unit b {
    font-size: 21px;
    font-weight: 800;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.pm-sep {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
    opacity: 0.7;
}

.pm-ann-bonus {
    opacity: 0.95;
}

/* ── 2. HEADER ── */
header.pm-header {
    position: fixed !important;
    top: 54px;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: background 0.3s, box-shadow 0.3s, top 0.3s;
}

header.pm-header.scrolled {
    background: #fff !important;
    box-shadow: 0 2px 20px rgba(0, 18, 40, 0.12);
}

header.pm-header .pm-hdr-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    max-width: 1280px;
    margin: 0 auto;
}

header.pm-header .pm-logo img {
    height: 40px;
}

header.pm-header .pm-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

header.pm-header .pm-nav a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
}

header.pm-header.scrolled .pm-nav a {
    color: #001228;
}

header.pm-header .pm-nav a:hover {
    color: var(--pm-pink);
}

header.pm-header .pm-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

header.pm-header.scrolled .pm-phone {
    color: #001228;
}

.btn-hdr {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--pm-pink);
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none !important;
    transition: background 0.2s, transform 0.2s;
    white-space: nowrap;
}

.btn-hdr:hover {
    background: var(--pm-pink-dark);
    transform: translateY(-1px);
}

/* ── 3. HERO ── */
#pm-hero {
    background: linear-gradient(135deg, #001228 0%, #002343 60%, #001A35 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 135px 0 80px;
}

#pm-hero::before {
    content: '';
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(74, 108, 247, 0.12) 0%, transparent 65%);
    top: -200px;
    right: -150px;
    pointer-events: none;
}

#pm-hero::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(233, 30, 140, 0.10) 0%, transparent 65%);
    bottom: -100px;
    left: -80px;
    pointer-events: none;
}

.pm-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(233, 30, 140, 0.15);
    border: 1px solid rgba(233, 30, 140, 0.5);
    color: #FFB3DA;
    padding: 7px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.pm-hero-badge .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--pm-pink);
    box-shadow: 0 0 0 3px rgba(233, 30, 140, 0.3);
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        box-shadow: 0 0 0 3px rgba(233, 30, 140, 0.3);
    }

    50% {
        box-shadow: 0 0 0 6px rgba(233, 30, 140, 0.1);
    }
}

.pm-h1 {
    font-size: clamp(32px, 4.5vw, 52px);
    font-weight: 900;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.pm-accent {
    color: var(--pm-pink);
}

.pm-subtext {
    color: rgba(255, 255, 255, 0.75);
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 520px;
}

/* Hero bullet list */
.pm-bullets {
    list-style: none;
    padding: 0;
    margin-bottom: 36px;
}

.pm-bullets li {
    color: #E2EFFF;
    padding: 8px 0;
    font-size: clamp(14px, 1.4vw, 16px);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border-bottom: 1px solid rgba(226, 239, 255, 0.08);
}

.pm-bullets li:last-child {
    border-bottom: none;
}

.pm-bullets li .pm-bullet-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(233, 30, 140, 0.2);
    border: 1px solid rgba(233, 30, 140, 0.5);
    color: var(--pm-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
    margin-top: 2px;
}

.pm-bullets li strong {
    color: #fff;
}

/* CTA block */
.pm-cta-block {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 480px;
    margin-bottom: 32px;
}

.btn-pm-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--pm-pink);
    color: #fff !important;
    padding: 20px 32px;
    border-radius: 10px;
    font-size: 17px;
    font-weight: 800;
    text-decoration: none !important;
    border: none;
    cursor: pointer;
    transition: all 0.25s;
    box-shadow: 0 8px 32px rgba(233, 30, 140, 0.45);
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

.btn-pm-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
}

.btn-pm-primary:hover {
    background: var(--pm-pink-dark);
    transform: translateY(-3px);
    box-shadow: 0 14px 45px rgba(233, 30, 140, 0.55);
    color: #fff !important;
}

.btn-pm-wa {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25D366;
    color: #fff !important;
    padding: 18px 32px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none !important;
    transition: all 0.25s;
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.35);
}

.btn-pm-wa:hover {
    background: #1da851;
    transform: translateY(-3px);
    box-shadow: 0 14px 45px rgba(37, 211, 102, 0.5);
    color: #fff !important;
}

.btn-pm-wa .wa-icon {
    font-size: 22px;
}

.pm-urgency-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #8DAFC8;
}

.pm-urgency-pill .fire {
    color: #FF6B35;
}

/* Hero visual */
.pm-hero-visual {
    position: relative;
    height: 580px;
}

.pm-img-main {
    position: absolute;
    top: 0;
    right: 0;
    width: 75%;
    height: 100%;
    border-radius: 20px 0 0 20px;
    overflow: hidden;
    box-shadow: -20px 20px 80px rgba(0, 0, 0, 0.5);
}

.pm-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pm-img-sec {
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 45%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 10px 10px 40px rgba(0, 0, 0, 0.5);
    border: 4px solid rgba(0, 18, 40, 0.8);
}

.pm-img-sec img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.pm-float-card {
    position: absolute;
    background: #fff;
    border-radius: 14px;
    padding: 13px 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 5;
    min-width: 180px;
}

.pm-float-card .fc-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pm-float-card .fc-icon.pink {
    background: rgba(233, 30, 140, 0.12);
}

.pm-float-card .fc-icon.blue {
    background: var(--pm-light-blue);
}

.pm-float-card .fc-icon.green {
    background: rgba(37, 211, 102, 0.12);
}

.pm-float-card .fc-title {
    font-weight: 800;
    font-size: 15px;
    color: #001228;
    line-height: 1.2;
}

.pm-float-card .fc-sub {
    font-size: 11px;
    color: #7A8EA0;
    margin-top: 2px;
}

.pm-float-card .fc-stars {
    color: #FEC42C;
    font-size: 11px;
}

.pm-fc-reviews {
    top: 30px;
    left: -10px;
    animation: fc-float1 4s ease-in-out infinite;
}

.pm-fc-patients {
    bottom: 60px;
    left: 30px;
    animation: fc-float2 4s ease-in-out infinite 1.3s;
}

.pm-fc-price {
    top: 180px;
    left: -30px;
    animation: fc-float3 4s ease-in-out infinite 2.6s;
}

@keyframes fc-float1 {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-8px)
    }
}

@keyframes fc-float2 {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-6px)
    }
}

@keyframes fc-float3 {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-7px)
    }
}

/* Trust row under hero copy */
.pm-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    margin-top: 28px;
}

.pm-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
}

.pm-trust-item i {
    color: var(--pm-pink);
}

.pm-trust-item .pm-stars {
    color: #FEC42C;
    font-size: 13px;
}

.pm-trust-divider {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
}

/* ── 4. STATS STRIP ── */
.pm-stats-strip {
    background: var(--pm-light-blue);
    padding: 40px 0;
}

.pm-stat-card {
    padding: 24px 32px;
    text-align: center;
    position: relative;
}

.pm-stat-card::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(74, 108, 247, 0.2);
}

.pm-stat-icon {
    font-size: 28px;
    color: var(--pm-blue);
    margin-bottom: 8px;
}

.pm-stat-number {
    font-size: 32px;
    font-weight: 900;
    color: #001228;
    line-height: 1;
    margin-bottom: 4px;
}

.pm-pink-num {
    color: var(--pm-pink);
}

.pm-stat-label {
    font-size: 14px;
    font-weight: 700;
    color: #001228;
    margin-bottom: 2px;
}

.pm-stat-desc {
    font-size: 12px;
    color: #6b7a8d;
}

/* ── 5. CANDIDATES SECTION ── */
.pm-candidates-section {
    background: #fff;
    padding: 80px 0;
}

.pm-candidate-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    transition: border-color 0.2s, box-shadow 0.2s;
    height: 100%;
}

.pm-candidate-card:hover {
    border-color: var(--pm-blue);
    box-shadow: 0 8px 30px rgba(74, 108, 247, 0.1);
}

.pm-cand-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: var(--pm-light-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pm-cand-icon i {
    color: var(--pm-blue);
    font-size: 20px;
}

.pm-cand-title {
    font-size: 16px;
    font-weight: 700;
    color: #001228;
    margin-bottom: 6px;
}

.pm-cand-desc {
    font-size: 14px;
    color: #6b7a8d;
    line-height: 1.5;
    margin: 0;
}

/* ── 6. BENEFITS (E-E-A-T) ── */
.pm-benefits-section {
    background: var(--pm-light-blue);
    padding: 80px 0;
}

.pm-benefit-card {
    background: #fff;
    border-radius: 14px;
    padding: 32px 28px;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 18, 40, 0.06);
    transition: transform 0.2s, box-shadow 0.2s;
}

.pm-benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 18, 40, 0.12);
}

.pm-benefit-num {
    font-size: 48px;
    font-weight: 900;
    color: var(--pm-light-blue);
    line-height: 1;
    margin-bottom: 12px;
}

.pm-benefit-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: var(--pm-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.pm-benefit-icon i {
    color: var(--pm-pink);
    font-size: 24px;
}

.pm-benefit-title {
    font-size: 20px;
    font-weight: 800;
    color: #001228;
    margin-bottom: 12px;
}

.pm-benefit-desc {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.6;
}

.pm-eeat-tag {
    display: inline-block;
    background: rgba(74, 108, 247, 0.1);
    color: var(--pm-blue);
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

/* ── 7. PRICING ── */
.pm-pricing-section {
    background: #fff;
    padding: 80px 0;
}

.pm-price-card {
    border: 2px solid #e2e8f0;
    border-radius: 14px;
    padding: 32px;
    text-align: center;
    height: 100%;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.pm-price-card.featured {
    border-color: var(--pm-pink);
    box-shadow: 0 8px 40px rgba(233, 30, 140, 0.15);
}

.pm-price-badge {
    background: var(--pm-pink);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 16px;
}

.pm-price-title {
    font-size: 18px;
    font-weight: 800;
    color: #001228;
    margin-bottom: 8px;
}

.pm-price-amount {
    font-size: 42px;
    font-weight: 900;
    color: var(--pm-pink);
    line-height: 1;
}

.pm-price-amount span {
    font-size: 16px;
    color: #6b7a8d;
    font-weight: 400;
}

.pm-price-desc {
    font-size: 14px;
    color: #6b7a8d;
    margin: 12px 0 20px;
}

.pm-price-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    text-align: left;
}

.pm-price-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #374151;
    padding: 6px 0;
    border-bottom: 1px solid #f1f5f9;
}

.pm-price-list li i {
    color: var(--pm-blue);
    font-size: 13px;
    flex-shrink: 0;
}

/* ── 8. URGENCY STRIP ── */
.pm-urgency-strip {
    background: var(--pm-navy-deep);
    color: #fff;
    text-align: center;
    padding: 14px 16px;
    font-size: 14px;
    font-weight: 600;
}

.pm-urg-spots {
    display: inline-flex;
    gap: 4px;
    margin: 0 6px;
    vertical-align: middle;
}

.pm-urg-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--pm-pink);
    display: inline-block;
}

.pm-urg-dot.empty {
    background: rgba(255, 255, 255, 0.2);
}

/* ── 9. FORM SECTION ── */
.pm-form-strip {
    background: linear-gradient(135deg, #001228 0%, #002343 100%);
    padding: 80px 0;
}

.pm-form-strip h2 {
    color: #fff;
}

.pm-form-subtext {
    color: rgba(255, 255, 255, 0.65);
    font-size: 16px;
}

.pm-form-benefits {
    margin-top: 28px;
}

.pm-form-strip .relative {
    position: relative;
}

.pm-form-strip #booking_form {
    background: rgba(4, 25, 48, 0.78);
    border: 1px solid rgba(127, 168, 255, 0.12);
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 24px 60px rgba(0, 10, 24, 0.28);
    backdrop-filter: blur(12px);
}

.pm-form-benefit {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.pm-fb-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(233, 30, 140, 0.15);
    border: 1px solid rgba(233, 30, 140, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pm-fb-icon i {
    color: var(--pm-pink);
    font-size: 18px;
}

.pm-fb-text h5 {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}

.pm-fb-text p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 13px;
    margin: 0;
    line-height: 1.5;
}

.pm-form-strip .form-control {
    min-height: 56px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #fff;
    border-radius: 14px;
    padding: 0 18px;
    box-shadow: none;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.pm-form-strip textarea.form-control {
    min-height: 120px;
    padding: 16px 18px;
    resize: vertical;
}

.pm-form-strip select.form-control {
    appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.7) 50%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.7) 50%, transparent 50%);
    background-position:
        calc(100% - 22px) calc(50% - 3px),
        calc(100% - 16px) calc(50% - 3px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
    padding-right: 42px;
}

.pm-form-strip input[type="date"].form-control {
    color-scheme: dark;
}

.pm-form-strip .form-control::placeholder,
.pm-form-strip input[type="date"].form-control:not(:focus):invalid {
    color: rgba(255, 255, 255, 0.48);
}

.pm-form-strip .form-control:focus {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(233, 30, 140, 0.65);
    color: #fff;
    box-shadow: 0 0 0 4px rgba(233, 30, 140, 0.14);
}

.pm-form-strip select.form-control option {
    background: #041930;
    color: #fff;
}

.pm-form-strip .text-center.mt-3 {
    color: #8dafc8;
    font-size: 12px;
    margin-bottom: 0;
}

.pm-form-strip #error_message {
    margin-top: 16px;
    font-size: 14px;
}

.pm-form-strip #success_message_col {
    background: rgba(4, 25, 48, 0.92);
    border: 1px solid rgba(127, 168, 255, 0.12);
    border-radius: 24px;
}

.pm-submit-btn {
    width: 100%;
    background: var(--pm-pink);
    color: #fff;
    border: none;
    border-radius: 14px;
    padding: 18px 22px;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    letter-spacing: 0.3px;
    box-shadow: 0 18px 32px rgba(233, 30, 140, 0.24);
}

.pm-submit-btn:hover {
    background: var(--pm-pink-dark);
    transform: translateY(-1px);
}

/* ── 10. LOCATION ── */
.pm-location-section {
    background: var(--pm-light-blue);
    padding: 80px 0;
}

.pm-location-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 24px rgba(0, 18, 40, 0.08);
}

.pm-loc-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 24px;
}

.pm-loc-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--pm-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pm-loc-icon i {
    color: var(--pm-pink);
    font-size: 18px;
}

.pm-loc-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--pm-blue);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pm-loc-value {
    font-size: 15px;
    color: #374151;
    font-weight: 600;
    margin-top: 2px;
    line-height: 1.4;
}

.pm-map-placeholder {
    background: #e2e8f0;
    border-radius: 12px;
    height: 320px;
    overflow: hidden;
    position: relative;
}

.pm-map-placeholder iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.pm-references {
    background: rgba(74, 108, 247, 0.06);
    border: 1px solid rgba(74, 108, 247, 0.15);
    border-radius: 10px;
    padding: 16px 20px;
    margin-top: 20px;
}

.pm-references p {
    margin: 0;
    font-size: 13px;
    color: #4b5563;
    line-height: 1.6;
}

.pm-references strong {
    color: var(--pm-blue);
}

/* ── 11. FLOATING & MOBILE ── */
.pm-wa-float {
    position: fixed;
    bottom: 28px;
    right: 24px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 900;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    animation: wa-pulse 2.5s infinite;
}

.pm-wa-float i {
    color: #fff;
    font-size: 28px;
}

@keyframes wa-pulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6);
    }
}

.pm-mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: #001228;
    padding: 12px 16px;
    display: none;
    gap: 10px;
    align-items: center;
    box-shadow: 0 -4px 24px rgba(0, 18, 40, 0.4);
}

.pm-mobile-cta .btn-book-mob {
    flex: 1;
    background: var(--pm-pink);
    color: #fff;
    text-align: center;
    padding: 14px 12px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 14px;
    text-decoration: none;
}

.pm-mobile-cta .btn-wa-mob {
    background: #25D366;
    color: #fff;
    padding: 14px 16px;
    border-radius: 8px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pm-mobile-cta .btn-wa-mob i {
    font-size: 22px;
}

/* ── 12. RESPONSIVE ── */
@media (max-width: 991px) {
    #pm-hero {
        padding: 150px 0 50px;
        min-height: auto;
    }

    .pm-hero-visual {
        height: 360px;
        margin-top: 40px;
    }

    .pm-img-main {
        width: 100%;
        border-radius: 16px;
    }

    .pm-img-sec {
        display: none;
    }

    .pm-float-card {
        display: none;
    }

    .pm-cta-block {
        max-width: 100%;
    }

    .btn-pm-primary,
    .btn-pm-wa {
        width: 100%;
    }

    header.pm-header .pm-nav {
        display: none;
    }

    header.pm-header .pm-phone {
        display: none;
    }

    body {
        padding-bottom: 74px;
    }

    .pm-mobile-cta {
        display: flex !important;
    }

    .pm-wa-float {
        bottom: 88px;
        right: 16px;
        width: 52px;
        height: 52px;
    }

    .pm-wa-float i {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .pm-form-strip {
        padding: 64px 0;
    }

    .pm-form-strip #booking_form,
    .pm-form-strip #success_message_col {
        padding: 22px 18px;
        border-radius: 20px;
    }

    .pm-form-strip .form-control {
        min-height: 52px;
        padding: 0 16px;
    }

    .pm-form-strip textarea.form-control {
        min-height: 110px;
        padding: 14px 16px;
    }

    .pm-submit-btn {
        padding: 16px 18px;
        font-size: 15px;
    }

    .pm-ann-bar {
        padding: 10px 12px;
        gap: 8px 10px !important;
    }

    .pm-ann-copy {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        font-size: 12px;
    }

    .pm-ann-countdown {
        margin-left: 0 !important;
        padding: 3px 6px;
    }

    .pm-ann-bar .countdown-unit {
        min-width: 40px;
        padding: 4px;
    }

    .pm-ann-bar .countdown-unit b {
        font-size: 18px;
    }

    .pm-sep {
        font-size: 16px;
    }

    header.pm-header {
        top: 72px;
    }

    .pm-stat-card::after {
        display: none;
    }

    .pm-stat-card {
        border-bottom: 1px solid rgba(74, 108, 247, 0.15);
    }

    .pm-trust-row {
        gap: 12px;
    }

    .pm-trust-divider {
        display: none;
    }
}

/* Template overrides */
.btn-main,
a.btn-main,
input[type=submit].btn-main {
    background: #E91E8C;
}

a.btn-main:hover,
.btn-main:hover {
    background: #C2177A;
}

#send_message {
    background: #E91E8C;
}

#send_message:hover {
    background: #C2177A;
}
