: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;
    font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
    background: #fff;
}

* {
    box-sizing: border-box;
}

h1,
h2,
h3,
h4,
.pm-fb-title,
.widget h3 {
    font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
}

.qll-home-main {
    display: block;
}

.qll-home-main>section:not(#pm-hero) {
    content-visibility: auto;
    contain-intrinsic-size: 900px;
}

/* ── 1. ANNOUNCEMENT BAR ── */
.pm-ann-bar {
    background: var(--pm-pink);
    color: #fff;
    text-align: center;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1100;
    letter-spacing: 0.3px;
}

.pm-ann-bar .countdown-unit {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    margin: 0 4px;
    font-size: 13px;
}

.pm-ann-bar .countdown-unit b {
    font-size: 16px;
    font-weight: 800;
}

.pm-sep {
    margin: 0 2px;
    font-size: 16px;
    font-weight: 800;
}

/* ── 2. HEADER — Flotante pill → full-width on scroll ── */
header.pm-header {
    position: fixed !important;
    top: 20px;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 14px 20px;
    transition: padding 0.35s cubic-bezier(.4, 0, .2, 1), top 0.3s;
}

header.pm-header .pm-hdr-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 24px;
    max-width: 1200px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 50px;
    box-shadow: 0 4px 28px rgba(0, 18, 40, 0.13), 0 1px 4px rgba(0, 18, 40, 0.07);
    transition: border-radius 0.35s cubic-bezier(.4, 0, .2, 1),
        box-shadow 0.35s cubic-bezier(.4, 0, .2, 1),
        max-width 0.35s cubic-bezier(.4, 0, .2, 1),
        padding 0.35s cubic-bezier(.4, 0, .2, 1);
}

/* Scrolled: expande a full-width */
header.pm-header.scrolled {
    padding: 0;
}

header.pm-header.scrolled .pm-hdr-inner {
    border-radius: 0;
    max-width: 100%;
    padding: 10px 40px;
    box-shadow: 0 2px 20px rgba(0, 18, 40, 0.10);
}

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: #001228;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
}

header.pm-header .pm-nav a:hover {
    color: var(--pm-pink);
}

header.pm-header .pm-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #001228;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.btn-hdr {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--pm-pink);
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none !important;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(233, 30, 140, 0.35);
}

.btn-hdr:hover {
    background: var(--pm-pink-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(233, 30, 140, 0.45);
}

/* ── 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;
    height: 100%;
}

.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-title {
    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;
}

#success_message_col,
#error_message {
    display: none;
}

.error_input {
    border-color: #ff6b6b !important;
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.16) !important;
}

.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-ann-bar removed */
    header.pm-header {
        top: 12px;
    }

    .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;
}

.fx-slide {
    position: relative;
    overflow: hidden;
}

.fx-slide span {
    position: relative;
    z-index: 1;
}

.fx-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0));
    opacity: 0;
    transition: opacity 0.2s ease;
}

.fx-slide:hover::before {
    opacity: 1;
}

#send_message {
    background: #E91E8C;
}

#send_message:hover {
    background: #C2177A;
}

/* ═══ SOCIAL / COMMUNITY SECTION ═══ */
.pm-social-section {
    padding: 80px 0;
    background: linear-gradient(150deg, #001228 0%, #0c2548 55%, #1a3a6e 100%);
    position: relative;
    overflow: hidden;
}

.pm-social-section::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(74, 108, 247, 0.18) 0%, transparent 70%);
    pointer-events: none;
}

.pm-social-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(233, 30, 140, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.pm-social-section h2 {
    color: #ffffff;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    margin-bottom: 12px;
}

.pm-social-section p {
    color: rgba(226, 239, 255, 0.80);
    font-size: 1rem;
    max-width: 560px;
    margin: 0 auto;
}

.pm-social-section .subtitle {
    color: var(--pm-pink) !important;
}

.pm-social-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 24px 28px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 20px;
    text-decoration: none;
    transition: transform 0.28s ease, background 0.28s ease, box-shadow 0.28s ease;
    backdrop-filter: blur(8px);
    cursor: pointer;
    height: 100%;
}

.pm-social-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.10);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
    text-decoration: none;
}

.pm-social-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 16px;
    transition: transform 0.28s ease;
}

.pm-social-card:hover .pm-social-icon {
    transform: scale(1.08);
}

.pm-social-icon--fb {
    background: #1877F2;
    color: #fff;
}

.pm-social-icon--tt {
    background: #000;
    color: #fff;
}

.pm-social-icon--yt {
    background: #FF0000;
    color: #fff;
}

.pm-social-icon--li {
    background: #0A66C2;
    color: #fff;
}

.pm-social-platform {
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 4px;
}

.pm-social-handle {
    font-size: 0.80rem;
    color: rgba(226, 239, 255, 0.60);
    margin-bottom: 12px;
}

.pm-social-stat {
    font-size: 0.92rem;
    color: rgba(226, 239, 255, 0.85);
    line-height: 1.5;
    flex-grow: 1;
    margin-bottom: 20px;
}

.pm-social-stat strong {
    color: #ffffff;
}

.pm-social-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 22px;
    border: 1.5px solid rgba(255, 255, 255, 0.30);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #ffffff;
    transition: background 0.22s ease, border-color 0.22s ease;
    margin-top: auto;
}

.pm-social-card:hover .pm-social-btn {
    background: var(--pm-pink);
    border-color: var(--pm-pink);
}

@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-social-section {
        padding: 60px 0;
    }

    .pm-social-section .row.g-4>[class*="col-"] {
        max-width: 340px;
        margin: 0 auto;
    }
}

/* Home-only replacements for legacy theme utilities/components */
.pm-testimonial-nav {
    gap: 12px;
    justify-content: flex-end;
}

.pm-testimonial-btn {
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 999px;
    background: #fff;
    color: var(--pm-navy);
    box-shadow: 0 12px 30px rgba(0, 18, 40, 0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.pm-testimonial-btn:hover {
    color: var(--pm-pink);
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(0, 18, 40, 0.16);
}

.pm-testimonial-slider {
    overflow-x: auto;
    scrollbar-width: none;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding-bottom: 4px;
}

.pm-testimonial-slider::-webkit-scrollbar {
    display: none;
}

.pm-testimonial-track {
    display: grid;
    gap: 24px;
    grid-auto-flow: column;
    grid-auto-columns: 100%;
}

.pm-testimonial-slide {
    scroll-snap-align: start;
}

.de-tab .d-tab-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.de-tab .d-tab-nav li {
    padding: 12px 18px;
    border-radius: 999px;
    background: rgba(74, 108, 247, 0.08);
    color: var(--pm-navy);
    cursor: pointer;
    font-weight: 700;
    transition: background 0.2s ease, color 0.2s ease;
}

.de-tab .d-tab-nav .active-tab {
    background: var(--pm-pink);
    color: #fff;
}

.de-tab .d-tab-content {
    list-style: none;
    padding: 0;
    margin: 0;
}

.de-tab .d-tab-content>li {
    display: none;
}

.de-tab .d-tab-content>li.active-tab-panel {
    display: block;
}

.accordion-section-title {
    position: relative;
    padding: 18px 56px 18px 20px;
    margin-bottom: 12px;
    border-radius: 18px;
    background: #fff;
    color: var(--pm-navy);
    box-shadow: 0 12px 28px rgba(0, 18, 40, 0.08);
    cursor: pointer;
    font-weight: 700;
    line-height: 1.45;
}

.accordion-section-title::before {
    content: "+";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: var(--pm-pink);
}

.accordion-section-title.active {
    background: linear-gradient(135deg, #fff 0%, #fdf2f8 100%);
}

.accordion-section-title.active::before {
    content: "−";
}

.accordion-section-content {
    display: none;
    padding: 0 6px 20px 20px;
    color: #44576d;
    line-height: 1.7;
}

.accordion-section-content.is-open {
    display: block;
}

.de-step {
    position: relative;
    text-align: center;
    padding: 0 18px 18px;
}

.de-step-icon {
    width: 88px;
    height: 88px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    margin: 0 auto 18px;
    box-shadow: 0 16px 40px rgba(0, 18, 40, 0.16);
}

.de-step h4 {
    color: #fff;
    margin-bottom: 12px;
}

.de-step p {
    color: rgba(255, 255, 255, 0.76);
    margin-bottom: 0;
}

.de-step-arrow::after {
    content: "";
    position: absolute;
    top: 44px;
    right: -12px;
    width: 24px;
    height: 2px;
    background: rgba(255, 255, 255, 0.25);
}

.section-dark {
    background: #001228;
    color: rgba(255, 255, 255, 0.78);
    padding: 72px 0 0;
}

.bg-color {
    background: var(--pm-pink);
}

.id-color {
    color: var(--pm-pink);
}

.section-dark a {
    color: rgba(255, 255, 255, 0.78);
}

.section-dark .logo-footer {
    width: 170px;
    height: auto;
}

.spacer-20 {
    height: 20px;
}

.section-dark .widget {
    margin-bottom: 40px;
}

.section-dark .widget h3 {
    color: #fff;
    font-size: 1.15rem;
    margin-bottom: 18px;
}

.section-dark .widget ul,
.menu-simple {
    list-style: none;
    padding: 0;
    margin: 0;
}

.section-dark .widget li {
    margin-bottom: 10px;
}

.section-dark .social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.section-dark .social-icons a {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    transition: background 0.2s ease, transform 0.2s ease;
}

.section-dark .social-icons a:hover {
    background: rgba(233, 30, 140, 0.22);
    transform: translateY(-2px);
}

.subfooter {
    margin-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
}

.de-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.menu-simple {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.relative {
    position: relative;
}

.abs,
.absolute {
    position: absolute;
}

.circle {
    border-radius: 999px;
}

.flex-end {
    display: flex;
    justify-content: flex-end;
}

.w-50px {
    width: 50px;
    height: 50px;
    object-fit: cover;
}

.w-60px {
    width: 60px;
}

.h-60px {
    height: 60px;
}

.h-80 {
    height: 80px;
}

.h-90 {
    height: 90%;
}

.p-40 {
    padding: 40px;
}

.pt-50 {
    padding-top: 50px;
}

.pb-50 {
    padding-bottom: 50px;
}

.mt-min-30 {
    margin-top: -30px;
}

.mt-min-100 {
    margin-top: -100px;
}

.start-40px {
    left: 40px;
}

.bg-color-op-1 {
    background: rgba(74, 108, 247, 0.06);
}

.bg-color-op-3 {
    background: rgba(0, 18, 40, 0.24);
}

.op-3 {
    opacity: 0.3;
}

.op-8 {
    opacity: 0.8;
}

.gradient-edge-top,
.gradient-edge-bottom {
    position: absolute;
    left: 0;
    width: 100%;
    pointer-events: none;
}

.gradient-edge-top {
    top: 0;
    background: linear-gradient(180deg, rgba(74, 108, 247, 0.2), rgba(74, 108, 247, 0));
}

.gradient-edge-bottom {
    bottom: 0;
    background: linear-gradient(0deg, rgba(0, 18, 40, 0.32), rgba(0, 18, 40, 0));
}

.gradient-edge-top.color,
.gradient-edge-bottom.color {
    background: linear-gradient(180deg, rgba(233, 30, 140, 0.2), rgba(233, 30, 140, 0));
}

.gradient-edge-bottom.color {
    background: linear-gradient(0deg, rgba(0, 18, 40, 0.42), rgba(0, 18, 40, 0));
}

.hover-scale-1-2 {
    transition: transform 0.35s ease;
}

.hover:hover .hover-scale-1-2 {
    transform: scale(1.04);
}

.subtitle {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--pm-blue);
}

.success {
    background: rgba(4, 25, 48, 0.78);
    border: 1px solid rgba(127, 168, 255, 0.12);
    border-radius: 24px;
    box-shadow: 0 24px 60px rgba(0, 10, 24, 0.28);
}

.error {
    margin-top: 16px;
    font-size: 14px;
}

@media (max-width: 991.98px) {
    .de-step {
        margin-bottom: 24px;
    }

    .de-step-arrow::after {
        display: none;
    }

    .pm-testimonial-nav {
        justify-content: flex-start;
    }

    .section-dark {
        padding-top: 56px;
    }

    .de-flex {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 767px) {
    .p-40 {
        padding: 28px 24px;
    }

    .start-40px {
        left: 24px;
    }
}

@media (min-width: 992px) {
    .pm-testimonial-track {
        grid-auto-columns: calc((100% - 24px) / 2);
    }
}
