/* ============================================================
   PAIN & HEALTH CLINIC — style.css
   Structural styles only — no color definitions here
   Colors are handled entirely by brand-colors.css
   ============================================================
   INDEX
   01. Global Reset & Base
   02. Typography
   03. Helper Classes
   04. Buttons — btn-phc (two-layer pill)
   05. Preloader
   06. Magic Cursor
   07. Topbar
   08. Header & Navbar (Bootstrap 5 native)
   09. Hero Slider
   10. Trust Strip / Benefits
   11. About Section
   12. Services Section
   13. About Doctor / Women's Wellness Section
   14. Why Choose Section
   15. Testimonials
   16. FAQ Accordion
   17. CTA Band
   18. Footer
   19. Back to Top
   20. Video Testimonials
   21. Video Modal
   22. Page Sections (inner pages)
   23. Pillar CTA
   24. Contact Form Modal
   25. Responsive
   ============================================================ */

/* ============================================================
   01. Global Reset & Base
============================================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--phc-font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--phc-text);
    background-color: var(--phc-white);
    cursor: none;
}

p {
    line-height: 1.7;
    margin-bottom: 1.4em;
}

p:last-child {
    margin-bottom: 0;
}

a {
    text-decoration: none;
    transition: var(--phc-transition);
}

a:hover,
a:focus {
    text-decoration: none;
    outline: none;
}

figure {
    margin: 0;
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

main {
    display: block;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1300px;
    padding-right: 15px;
    padding-left: 15px;
}

.row {
    margin-right: -15px;
    margin-left: -15px;
}

.row > * {
    padding-right: 15px;
    padding-left: 15px;
}

/* ============================================================
   02. Typography
============================================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--phc-font-heading);
    font-weight: 400;
    line-height: 1.15;
    color: var(--phc-dark);
    margin: 0;
}

h1 {
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
}
h2 {
    font-size: clamp(1.9rem, 4vw, 3.4rem);
}
h3 {
    font-size: clamp(1.3rem, 2.5vw, 2rem);
}
h4 {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
}

/* ============================================================
   03. Helper Classes
============================================================ */

/* Section radius overlap */
.phc-radius-section {
    position: relative;
    border-radius: 50px 50px 0 0;
    margin-top: -50px;
    z-index: 1;
}

/* Dark spacer block */
.phc-bg-spacer {
    position: relative;
    padding: 130px 0;
    z-index: 0;
}

/* Image shine sweep on hover */
.phc-img-shine {
    position: relative;
    overflow: hidden;
    display: block;
    margin: 0;
}

.phc-img-shine img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.55s ease-in-out;
}

.phc-img-shine:hover img {
    transform: scale(1.07);
}

.phc-img-shine::after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, 0.22);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
    pointer-events: none;
}

.phc-img-shine:hover::after {
    height: 250%;
    background-color: transparent;
    transition: all 600ms linear;
}

/* Section title pattern */
.phc-section-title {
    margin-bottom: 40px;
}

.phc-section-title h3 {
    display: inline-block;
    position: relative;
    font-family: var(--phc-font-body);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--phc-red);
    padding-left: 16px;
    margin-bottom: 14px;
}

.phc-section-title h3::before {
    content: "/";
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 800;
    color: var(--phc-red);
}

.phc-section-title h1,
.phc-section-title h2 {
    color: var(--phc-dark);
    margin-bottom: 0;
}

.phc-section-title h1 {
    font-size: clamp(2.2rem, 5vw, 4rem);
}
.phc-section-title h2 {
    font-size: clamp(1.8rem, 4vw, 3.2rem);
}

.phc-section-title p {
    margin-top: 18px;
    font-size: 1rem;
    line-height: 1.75;
    color: var(--phc-text);
    margin-bottom: 0;
}

/* White title variant */
.phc-section-title.phc-title-white h3,
.phc-section-title.phc-title-white h3::before {
    color: var(--phc-yellow);
}

.phc-section-title.phc-title-white h1,
.phc-section-title.phc-title-white h2 {
    color: var(--phc-white);
}

.phc-section-title.phc-title-white p {
    color: rgba(255, 255, 255, 0.65);
}

/* Section row */
.phc-section-row {
    margin-bottom: 54px;
}

.phc-section-row .phc-section-title {
    margin-bottom: 0;
}

.phc-section-btn {
    text-align: right;
}

/* Icon box */
.phc-icon-box {
    position: relative;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
}

.phc-icon-box::before {
    content: "";
    position: absolute;
    bottom: -6px;
    right: -6px;
    border-radius: 50%;
    width: 26px;
    height: 26px;
    background: var(--phc-red);
    opacity: 0.3;
    transition: var(--phc-transition);
}

.phc-icon-box i {
    position: relative;
    z-index: 1;
}

/* ============================================================
   04. Buttons — btn-phc (two-layer pill)
============================================================ */
.btn-phc {
    position: relative;
    display: inline-flex;
    align-items: center;
    border-radius: 100px;
    padding: 3px 28px 3px 3px;
    border: none;
    overflow: hidden;
    transition: var(--phc-transition);
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
    background: var(--phc-btn-outer-bg);
}

.btn-phc span {
    position: relative;
    display: inline-block;
    font-family: var(--phc-font-body);
    font-size: 15px;
    font-weight: 600;
    border-radius: 100px;
    padding: 13px 26px;
    z-index: 1;
    transition: var(--phc-transition);
    line-height: 1.2;
    background: var(--phc-btn-inner-bg);
    color: var(--phc-btn-inner-text);
}

.btn-phc::after {
    content: "";
    position: absolute;
    inset: 0;
    width: 0;
    border-radius: 100px;
    transition: var(--phc-transition);
    z-index: 0;
    background: var(--phc-btn-sweep-bg);
}

.btn-phc:hover::after {
    width: 100%;
}

.btn-phc:hover span {
    background-color: transparent;
    color: var(--phc-btn-sweep-text);
}

/* Alt variant */
.btn-phc-alt {
    background: var(--phc-btn-alt-outer-bg);
}

.btn-phc-alt span {
    background: var(--phc-btn-alt-inner-bg);
    color: var(--phc-btn-alt-inner-text);
}

.btn-phc-alt::after {
    background: var(--phc-btn-alt-sweep-bg);
}

.btn-phc-alt:hover span {
    background-color: transparent;
    color: var(--phc-btn-alt-sweep-text);
}

/* ============================================================
   05. Preloader
============================================================ */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--phc-dark);
}

.loading-container {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto;
}

.loading {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 1px solid transparent;
    border-color: transparent var(--phc-white) transparent var(--phc-white);
    animation: phcSpin 1.5s linear infinite;
}

#loading-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#loading-icon img {
    max-width: 52px;
}

@keyframes phcSpin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* ============================================================
   06. Magic Cursor
============================================================ */
.cb-cursor {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999999;
    contain: layout style size;
    pointer-events: none;
    will-change: transform;
    transition:
        opacity 0.3s,
        color 0.4s;
}

.cb-cursor::before {
    content: "";
    position: absolute;
    top: -24px;
    left: -24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    transform: scale(0);
    background: var(--phc-red);
    transition:
        transform 0.3s ease-in-out,
        opacity 0.1s;
}

.cb-cursor-text {
    position: absolute;
    top: -18px;
    left: -18px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0) rotate(10deg);
    opacity: 0;
    color: var(--phc-white);
    font-size: 12px;
    text-align: center;
    transition:
        opacity 0.4s,
        transform 0.3s;
}

.cb-cursor.-visible::before {
    transform: scale(0.2);
}
.cb-cursor.-visible.-active::before {
    transform: scale(0.23);
    transition-duration: 0.2s;
}
.cb-cursor.-pointer::before {
    transform: scale(0);
}
.cb-cursor.-text::before {
    opacity: 0.8;
    transform: scale(1.7);
}
.cb-cursor.-text .cb-cursor-text {
    opacity: 1;
    transform: scale(1);
}
.cb-cursor.-opaque::before {
    transform: scale(1.32);
}

@supports (mix-blend-mode: exclusion) {
    .cb-cursor.-exclusion,
    .cb-cursor.-opaque {
        mix-blend-mode: exclusion;
    }

    .cb-cursor.-exclusion::before,
    .cb-cursor.-opaque::before {
        background: var(--phc-white);
    }
}

/* ============================================================
   07. Topbar
============================================================ */
.topbar {
    padding: 12px 0 60px;
    background: var(--phc-dark);
}

.topbar-contact-info ul {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    padding: 0;
    margin: 0;
}

.topbar-contact-info ul li a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: var(--phc-transition);
}

.topbar-contact-info ul li a:hover {
    color: var(--phc-white);
}

.topbar-contact-info ul li a i {
    color: var(--phc-red);
    font-size: 14px;
}

.topbar-social-links {
    text-align: right;
}

.topbar-social-links ul {
    display: flex;
    justify-content: flex-end;
    gap: 18px;
}

.topbar-social-links ul li a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    transition: var(--phc-transition);
}

.topbar-social-links ul li a:hover {
    color: var(--phc-red);
}

/* ============================================================
   08. Header & Navbar — Bootstrap 5 native
============================================================ */
header.main-header {
    position: relative;
    z-index: 100;
    margin-top: -50px;
    background: var(--phc-dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

header.main-header .header-sticky {
    position: relative;
    top: 0;
    z-index: 100;
    transition: transform 0.3s ease-in-out;
}

header.main-header .header-sticky.hide {
    transform: translateY(-100%);
}

header.main-header .header-sticky.active {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin-top: 0;
    background: var(--phc-dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transform: translateY(0);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
}

/* Navbar */
.navbar {
    padding: 18px 0;
}

.navbar-brand {
    padding: 0;
    margin: 0;
}

.navbar-brand img {
    max-height: 60px;
    border-radius: 6px;
    border: 4px solid var(--phc-yellow);
    transition: var(--phc-transition);
}

/* Nav links */
.navbar-nav .nav-item {
    margin: 0 4px;
    position: relative;
}

.navbar-nav .nav-link {
    font-family: var(--phc-font-body);
    font-size: 15px;
    font-weight: 500;
    padding: 12px 14px !important;
    color: var(--phc-white) !important;
    text-transform: capitalize;
    transition: var(--phc-transition);
    position: relative;
}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 14px;
    bottom: 6px;
    width: 0;
    height: 2px;
    background: var(--phc-red);
    transition: var(--phc-transition);
    border-radius: 2px;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: calc(100% - 28px);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--phc-white) !important;
}

/* Header button */
.header-btn {
    flex-shrink: 0;
}

/* Mobile call button — hidden by default */
.header-mobile-call {
    display: none !important;
    margin-left: auto;
    margin-right: 8px;
    padding: 3px !important;
}

/* Custom hamburger */
.phc-navbar-toggler {
    background: var(--phc-red) !important;
    padding: 0 !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    border: none !important;
    border-radius: 8px !important;
    box-shadow: none !important;
    cursor: pointer;
}

.phc-navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(218, 56, 50, 0.3) !important;
    outline: none;
}

.phc-toggler-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--phc-white);
    border-radius: 4px;
    transition: all 0.3s ease-in-out;
}

.phc-navbar-toggler[aria-expanded="true"] .phc-toggler-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.phc-navbar-toggler[aria-expanded="true"] .phc-toggler-bar:nth-child(2) {
    opacity: 0;
}

.phc-navbar-toggler[aria-expanded="true"] .phc-toggler-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   09. Hero Slider
   Fixed: Owl wraps navText in <span> — icon is inside span,
   so we style the span, not hide it.
============================================================ */
.phc-hero-slider {
    position: relative;
    z-index: 0;
}

.phc-hero-slide {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.phc-hero {
    position: relative;
    background-color: var(--phc-dark);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 220px 0 200px;
    overflow: hidden;
}

.phc-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        var(--phc-dark-overlay-1) 0%,
        var(--phc-dark-overlay-2) 50%,
        var(--phc-dark-overlay-3) 100%
    );
    z-index: 0;
}

.phc-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at 15% 85%,
        rgba(218, 56, 50, 0.15) 0%,
        transparent 55%
    );
    z-index: 0;
    pointer-events: none;
}

.phc-hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.phc-hero-content .phc-section-title h1 {
    color: var(--phc-white);
    line-height: 1.1;
}

.phc-hero-content .phc-section-title h3,
.phc-hero-content .phc-section-title h3::before {
    color: var(--phc-yellow);
}

.phc-hero-content .phc-section-title p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.05rem;
}

.phc-hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 36px;
}

/* ============================================================
   Hero Slider — Owl Nav
   Fixed for actual DOM: <div class="owl-prev"><i>...</i></div>
============================================================ */

/* Nav wrapper — centered horizontally, above section bottom */
.phc-hero-slider .owl-nav {
    position: absolute;
    bottom: 60px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    display: flex !important;
    gap: 12px;
    z-index: 10;
    margin: 0 !important;
    text-align: initial !important;
}

/* Prev/Next buttons — Owl uses <div>, not <button> */
.phc-hero-slider .owl-nav .owl-prev,
.phc-hero-slider .owl-nav .owl-next {
    width: 46px !important;
    height: 46px !important;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 8px !important;
    background: rgba(255, 255, 255, 0.15) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: var(--phc-white) !important;
    font-size: 0.95rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
    cursor: pointer;
    transition: var(--phc-transition);
}

.phc-hero-slider .owl-nav .owl-prev:hover,
.phc-hero-slider .owl-nav .owl-next:hover {
    background: var(--phc-red) !important;
    border-color: var(--phc-red) !important;
}

/* Icon inside — direct child, no wrapper */
.phc-hero-slider .owl-nav .owl-prev i,
.phc-hero-slider .owl-nav .owl-next i {
    color: var(--phc-white) !important;
    font-size: 0.95rem !important;
    line-height: 1 !important;
    display: block !important;
    margin: 0 !important;
}

/* Disabled state */
.phc-hero-slider .owl-nav .owl-prev.disabled,
.phc-hero-slider .owl-nav .owl-next.disabled {
    opacity: 0.35;
    pointer-events: none;
}

/* Kill Owl theme default hover backgrounds */
.phc-hero-slider .owl-theme .owl-nav [class*="owl-"]:hover {
    background: var(--phc-red) !important;
    color: var(--phc-white) !important;
}

/* Owl dots */
.phc-hero-slider .owl-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex !important;
    gap: 8px;
    margin: 0 !important;
}

.phc-hero-slider .owl-dots .owl-dot {
    -webkit-appearance: none;
    appearance: none;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.phc-hero-slider .owl-dots .owl-dot span {
    display: block;
    width: 8px;
    height: 8px;
    margin: 0 !important;
    background: rgba(255, 255, 255, 0.4) !important;
    border-radius: 50%;
    transition: var(--phc-transition);
}

.phc-hero-slider .owl-dots .owl-dot.active span,
.phc-hero-slider .owl-dots .owl-dot:hover span {
    background: var(--phc-white) !important;
    width: 24px;
    border-radius: 4px;
}

/* ============================================================
   10. Trust Strip / Benefits
============================================================ */
.phc-benefits {
    background: var(--phc-dark);
    padding: 50px 0 88px;
    position: relative;
    z-index: 1;
}

.phc-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding-right: 15px;
    transition: var(--phc-transition);
}

.phc-benefits .col-lg-3:last-child .phc-benefit-item {
    border-right: none;
}

.phc-benefit-item .phc-icon-box::before {
    background: var(--phc-red);
    opacity: 0.3;
}

.phc-benefit-item:hover .phc-icon-box::before {
    opacity: 0.9;
}

.phc-benefit-item .phc-icon-box i {
    color: var(--phc-white);
    font-size: 1.3rem;
}

.phc-benefit-content h3 {
    font-family: var(--phc-font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--phc-white);
    margin-bottom: 5px;
    text-transform: capitalize;
}

.phc-benefit-content p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.5;
}

/* ============================================================
   11. About Section
============================================================ */
.phc-about {
    background: var(--phc-white);
    padding: 100px 0 120px;
    position: relative;
    z-index: 1;
}

.phc-about-list {
    margin: 28px 0 36px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.phc-about-list-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.phc-about-list-item .phc-icon-box {
    width: 40px;
    height: 40px;
    background: var(--phc-light);
    border-radius: 50%;
    flex-shrink: 0;
}

.phc-about-list-item .phc-icon-box::before {
    background: var(--phc-green);
    width: 20px;
    height: 20px;
    bottom: -4px;
    right: -4px;
    opacity: 0.35;
}

.phc-about-list-item .phc-icon-box i {
    color: var(--phc-green);
    font-size: 0.85rem;
}

.phc-about-list-content p {
    font-family: var(--phc-font-body);
    font-weight: 600;
    color: var(--phc-dark);
    margin: 0;
    font-size: 0.95rem;
}

.phc-about-footer {
    margin-top: 36px;
}

/* 4-quadrant image grid */
.phc-about-images {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.phc-about-img {
    width: calc(50% - 10px);
}

.phc-about-img figure {
    display: block;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.phc-about-img img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.phc-img-box-1 figure,
.phc-img-box-1 img {
    border-radius: 260px 0 0 0;
}
.phc-img-box-2 figure,
.phc-img-box-2 img {
    border-radius: 0 260px 0 0;
}
.phc-img-box-3 figure,
.phc-img-box-3 img {
    border-radius: 0 0 0 260px;
}
.phc-img-box-4 figure,
.phc-img-box-4 img {
    border-radius: 0 0 260px 0;
}

/* Floating center circle */
.phc-about-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--phc-white);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.15);
    border-radius: 50%;
    width: 130px;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    overflow: hidden;
    transition: var(--phc-transition);
}

.phc-about-circle::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--phc-red);
    border-radius: 50%;
    transform: scale(0);
    transition: var(--phc-transition);
    z-index: 0;
}

.phc-about-images:hover .phc-about-circle::before {
    transform: scale(1.1);
}

.phc-about-circle i {
    position: relative;
    z-index: 1;
    color: var(--phc-red);
    font-size: 1.8rem;
    transition: var(--phc-transition);
}

.phc-about-images:hover .phc-about-circle i {
    color: var(--phc-white);
}

/* ============================================================
   12. Services Section
============================================================ */
.phc-services {
    background: var(--phc-light);
    padding: 100px 0 110px;
    position: relative;
    z-index: 1;
}

.phc-service-item {
    position: relative;
    margin-bottom: 30px;
    border-radius: 14px;
    overflow: hidden;
}

.phc-service-image {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
}

.phc-service-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        var(--phc-photo-overlay-dark) 0%,
        var(--phc-photo-overlay-mid) 60%,
        var(--phc-photo-overlay-light) 100%
    );
    z-index: 1;
    transition: var(--phc-transition);
}

.phc-service-item:hover .phc-service-image::before {
    background: linear-gradient(
        to top,
        var(--phc-photo-overlay-hover-dark) 0%,
        var(--phc-photo-overlay-hover-mid) 60%,
        var(--phc-photo-overlay-hover-light) 100%
    );
}

.phc-service-image figure {
    margin: 0;
    display: block;
}

.phc-service-image img {
    width: 100%;
    aspect-ratio: 1 / 1.1;
    object-fit: cover;
    border-radius: 14px;
    transition: transform 0.55s ease-in-out;
}

.phc-service-item:hover .phc-service-image img {
    transform: scale(1.08);
}

.phc-service-icon-box {
    position: absolute;
    top: 0;
    left: 24px;
    width: 72px;
    height: 72px;
    border-radius: 0 0 14px 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    overflow: hidden;
    transition: var(--phc-transition);
}

.phc-service-icon-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.phc-service-icon-box::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--phc-red);
    transform: scale(0);
    border-radius: 0 0 14px 14px;
    transition: var(--phc-transition);
    z-index: 0;
}

.phc-service-item:hover .phc-service-icon-box::after {
    transform: scale(1.05);
}

.phc-service-icon-box i {
    position: relative;
    color: var(--phc-white);
    font-size: 1.4rem;
    z-index: 1;
}

.phc-service-body {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 14px;
    z-index: 3;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
}

.phc-service-content {
    flex: 1;
}

.phc-service-content h3 {
    font-size: 1.15rem;
    color: var(--phc-white);
    text-transform: capitalize;
    margin-bottom: 8px;
    line-height: 1.3;
}

.phc-service-content p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.88rem;
    margin: 0;
    line-height: 1.55;
}

.phc-service-btn a {
    position: relative;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: var(--phc-transition);
    text-decoration: none;
    flex-shrink: 0;
}

.phc-service-btn a::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.2);
    transition: var(--phc-transition);
}

.phc-service-btn a:hover::before {
    background: var(--phc-red);
}

.phc-service-btn a i {
    position: relative;
    color: var(--phc-white);
    font-size: 0.9rem;
    z-index: 1;
    transition: transform 0.3s ease;
}

.phc-service-btn a:hover i {
    transform: translateX(3px);
}

.phc-more-services-btn {
    text-align: center;
    margin-top: 24px;
}

.phc-more-services-btn a {
    font-family: var(--phc-font-heading);
    font-size: 1.35rem;
    color: var(--phc-dark);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    transition: var(--phc-transition);
    padding-bottom: 4px;
    border-bottom: 1px solid transparent;
}

.phc-more-services-btn a:hover {
    color: var(--phc-red);
    border-bottom-color: var(--phc-red);
}

.phc-more-services-btn a i {
    transition: transform 0.3s ease;
}

.phc-more-services-btn a:hover i {
    transform: translateX(6px);
}

/* ============================================================
   13. About Doctor / Women's Wellness Section
============================================================ */
.phc-womens {
    background: var(--phc-light);
    padding: 100px 0 120px;
    position: relative;
    z-index: 1;
}

.phc-womens-image {
    position: relative;
}

.phc-womens-image figure {
    border-radius: 20px 0 20px 0;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    display: block;
}

.phc-womens-image img {
    width: 100%;
    aspect-ratio: 1 / 1.15;
    object-fit: cover;
    transition: transform 0.55s ease-in-out;
}

.phc-womens-image:hover img {
    transform: scale(1.04);
}

.phc-womens-badge {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: var(--phc-green);
    border-radius: 14px;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 10px 30px rgba(57, 127, 80, 0.3);
}

.phc-womens-badge i {
    color: var(--phc-white);
    font-size: 1.4rem;
}

.phc-womens-badge span {
    color: var(--phc-white);
    font-family: var(--phc-font-body);
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.5;
}

.phc-womens-content {
    padding-left: 60px;
}

.phc-womens-list {
    margin: 24px 0 36px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.phc-womens-list-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.phc-womens-list-item .phc-icon-box {
    width: 36px;
    height: 36px;
    background: rgba(57, 127, 80, 0.08);
    border-radius: 50%;
    flex-shrink: 0;
}

.phc-womens-list-item .phc-icon-box::before {
    background: var(--phc-green);
    width: 18px;
    height: 18px;
    opacity: 0.3;
}

.phc-womens-list-item .phc-icon-box i {
    color: var(--phc-green);
    font-size: 0.75rem;
}

.phc-womens-list-item p {
    font-family: var(--phc-font-body);
    font-weight: 500;
    color: var(--phc-dark);
    margin: 0;
    font-size: 0.95rem;
}

.phc-qual-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 20px 0 28px;
}

.phc-qual-tag {
    display: inline-block;
    font-family: var(--phc-font-body);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--phc-dark);
    background: var(--phc-light);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 100px;
    padding: 5px 14px;
    letter-spacing: 0.3px;
    transition: var(--phc-transition);
}

.phc-qual-tag:hover {
    background: var(--phc-red);
    color: var(--phc-white);
    border-color: var(--phc-red);
}

/* ============================================================
   14. Why Choose Section
============================================================ */
.phc-why {
    background: var(--phc-white);
    padding: 80px 0 100px;
    position: relative;
    z-index: 1;
}

.phc-why-item {
    background: var(--phc-dark);
    border-radius: 14px;
    text-align: center;
    padding: 38px 20px;
    margin-bottom: 24px;
    height: calc(100% - 24px);
    transition: var(--phc-transition);
}

.phc-why-item:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.phc-why-icon-box {
    position: relative;
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phc-why-icon-box::before {
    content: "";
    position: absolute;
    bottom: -8px;
    right: -8px;
    background: var(--phc-red);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    opacity: 0.35;
    transition: var(--phc-transition);
}

.phc-why-item:hover .phc-why-icon-box::before {
    opacity: 1;
}

.phc-why-icon-box i {
    position: relative;
    color: var(--phc-white);
    z-index: 1;
}

.phc-why-content h3 {
    font-family: var(--phc-font-body);
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    text-transform: capitalize;
    margin-bottom: 10px;
}

.phc-why-content p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.6;
}

/* ============================================================
   15. Testimonials
============================================================ */
.phc-testimonials {
    background: var(--phc-dark);
    padding: 100px 0 140px;
    position: relative;
    z-index: 1;
}

.phc-testimonial-sticky {
    position: sticky;
    top: 20px;
}

.phc-testimonials .phc-section-title h3,
.phc-testimonials .phc-section-title h3::before {
    color: var(--phc-yellow);
}

.phc-testimonials .phc-section-title h2 {
    color: var(--phc-white);
}

.phc-testimonials .phc-section-title p {
    color: rgba(255, 255, 255, 0.6);
}

.phc-testimonial-nav {
    display: flex;
    gap: 12px;
    margin-top: 32px;
}

.phc-testimonial-prev,
.phc-testimonial-next {
    width: 46px;
    height: 46px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--phc-transition);
}

.phc-testimonial-prev:hover,
.phc-testimonial-next:hover {
    background: var(--phc-red);
    border-color: var(--phc-red);
}

.phc-testimonial-prev i,
.phc-testimonial-next i {
    color: var(--phc-white);
    font-size: 0.9rem;
}

.phc-testimonial-item {
    background: var(--phc-white);
    border-radius: 14px;
    padding: 30px;
    margin: 10px 4px;
    transition: var(--phc-transition);
}

.phc-testimonial-header {
    margin-bottom: 22px;
}

.phc-testimonial-rating {
    margin-bottom: 14px;
}

.phc-testimonial-rating i {
    color: var(--phc-yellow);
    font-size: 14px;
    margin-right: 2px;
}

.phc-testimonial-header p {
    color: var(--phc-text);
    line-height: 1.7;
    margin: 0;
    font-size: 0.95rem;
}

.phc-testimonial-body {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid var(--phc-light);
}

.phc-testimonial-author-img img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--phc-light);
}

.phc-testimonial-author-content h3 {
    font-family: var(--phc-font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--phc-dark);
    margin-bottom: 3px;
    text-transform: capitalize;
}

.phc-testimonial-author-content p {
    color: var(--phc-text);
    font-size: 0.82rem;
    margin: 0;
    text-transform: capitalize;
}

.phc-testimonial-carousel.owl-carousel .owl-nav,
.phc-testimonial-carousel.owl-carousel .owl-dots {
    display: none;
}

/* ============================================================
   16. FAQ Accordion
   FIXES:
   — Font Awesome 5 family name (was FA6)
   — Gap between header and body — use overflow:hidden on item,
     remove inner border-radii so single item clips cleanly
============================================================ */
.phc-faq {
    background: var(--phc-light);
    padding: 100px 0 120px;
    position: relative;
    z-index: 2;
}

.phc-faq-image {
    padding-left: 40px;
}

.phc-faq-image figure {
    display: block;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.phc-faq-image img {
    width: 100%;
    aspect-ratio: 1 / 1.1;
    object-fit: cover;
}

/*
   Item — SINGLE border-radius wrapper.
   overflow: hidden clips children cleanly.
   Radius here only — none on inner header/body so they sit flush.
*/
.phc-faq-accordion .accordion-item {
    border-radius: 14px !important;
    margin-bottom: 16px;
    overflow: hidden; /* clips inner corners */
    border: none !important;
    box-shadow: none;
    background: var(--phc-white); /* base bg for smooth transition */
    position: relative;
}

.phc-faq-accordion .accordion-item:last-child {
    margin-bottom: 0;
}

/* Header — NO radius, item handles clipping */
.phc-faq-accordion .accordion-header {
    position: relative;
    border-radius: 0 !important;
    margin: 0;
}

/* Icon box */
.phc-faq-icon-box {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--phc-white);
    border-radius: 50%;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: var(--phc-transition);
    flex-shrink: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.phc-faq-icon-box i {
    color: var(--phc-red);
    font-size: 1rem;
    transition: var(--phc-transition);
}

/*
   Accordion button — NO radius, item handles clipping.
   margin: 0 !important prevents Bootstrap adding gap.
*/
.phc-faq-accordion .accordion-button {
    font-family: var(--phc-font-heading);
    font-size: 18px;
    line-height: 1.3;
    padding: 20px 52px 20px 88px;
    background: var(--phc-white);
    color: var(--phc-dark);
    box-shadow: none !important;
    transition: var(--phc-transition);
    border-radius: 0 !important;
    border: none !important;
    margin: 0 !important;
    position: relative;
    width: 100%;
}

.phc-faq-accordion .accordion-button:focus {
    box-shadow: 0 0 0 3px rgba(218, 56, 50, 0.2) inset !important;
    outline: none;
}

.phc-faq-accordion .accordion-button:not(.collapsed) {
    background: var(--phc-dark);
    color: var(--phc-white);
    padding-top: 26px;
    padding-bottom: 26px;
}

/* Font Awesome 5 chevron */
.phc-faq-accordion .accordion-button::after {
    content: "\f077" !important;
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 900 !important;
    font-size: 14px;
    background-image: none !important;
    background-size: unset !important;
    color: var(--phc-dark);
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    flex-shrink: 0;
    transition: var(--phc-transition);
    line-height: 1;
}

.phc-faq-accordion .accordion-button:not(.collapsed)::after {
    color: var(--phc-white);
    transform: translateY(-50%) rotate(180deg);
}

.phc-faq-accordion .accordion-button.collapsed::after {
    transform: translateY(-50%) rotate(0deg);
}

/*
   Collapse wrapper — Bootstrap adds this <div>.
   Remove any margin/padding it might have.
*/
.phc-faq-accordion .accordion-collapse {
    border: none !important;
    margin: 0 !important;
}

/*
   Body — NO radius, item handles clipping.
   margin-top: -1px covers any sub-pixel gap between header and body.
*/
.phc-faq-accordion .accordion-body {
    background: var(--phc-dark);
    padding: 0 52px 24px 88px;
    border-radius: 0 !important;
    border: none !important;
    margin-top: -1px; /* eliminate sub-pixel gap */
    overflow: hidden;
}

.phc-faq-accordion .accordion-body p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.75;
}

/* Active icon state — :has() modern + JS class fallback */
.phc-faq-accordion
    .accordion-item:has(.accordion-button:not(.collapsed))
    .phc-faq-icon-box,
.phc-faq-accordion .phc-faq-icon-box.phc-faq-icon-active {
    background: var(--phc-red);
}

.phc-faq-accordion
    .accordion-item:has(.accordion-button:not(.collapsed))
    .phc-faq-icon-box
    i,
.phc-faq-accordion .phc-faq-icon-box.phc-faq-icon-active i {
    color: var(--phc-white);
}

/* ============================================================
   17. CTA Band
============================================================ */
.phc-cta {
    position: relative;
    background-color: var(--phc-dark);
    background-size: cover;
    background-position: center center;
    padding: 120px 0;
    overflow: hidden;
    z-index: 1;
}

.phc-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 0;
}

.phc-cta::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at center,
        var(--phc-cta-glow) 0%,
        transparent 65%
    );
    z-index: 0;
    pointer-events: none;
}

.phc-cta .container {
    position: relative;
    z-index: 1;
}

.phc-cta-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 36px;
}

/* ============================================================
   18. Footer
============================================================ */
.main-footer {
    background: var(--phc-dark);
    padding: 80px 0;
    position: relative;
    z-index: 2;
}

.about-footer {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 50px;
    margin-bottom: 50px;
}

.footer-logo img {
    border-radius: 8px;
    border: 4px solid var(--phc-yellow);
    max-width: 200px;
}

.about-footer-content h3 {
    font-family: var(--phc-font-body);
    font-size: 20px;
    font-weight: 600;
    color: var(--phc-white);
    margin-bottom: 16px;
}

.about-footer-content p {
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
    line-height: 1.7;
    font-size: 0.95rem;
}

.about-footer-list {
    display: flex;
    flex-wrap: wrap;
    row-gap: 44px;
    column-gap: 40px;
}

.footer-links h3 {
    display: inline-block;
    background: rgba(255, 255, 255, 0.08);
    color: var(--phc-white);
    border-radius: 100px;
    font-family: var(--phc-font-body);
    font-size: 14px;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    padding: 6px 18px;
    margin-bottom: 20px;
}

.footer-links ul li {
    position: relative;
    color: rgba(255, 255, 255, 0.55);
    font-size: 14px;
    text-transform: capitalize;
    margin-bottom: 10px;
    padding-left: 14px;
    transition: var(--phc-transition);
}

.footer-links ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: var(--phc-red);
    border-radius: 50%;
    width: 5px;
    height: 5px;
    opacity: 0.5;
}

.footer-links ul li:last-child {
    margin-bottom: 0;
}

.footer-links ul li a {
    color: inherit;
    transition: var(--phc-transition);
}

.footer-links ul li:hover,
.footer-links ul li a:hover {
    color: var(--phc-white);
}

.footer-links.social-links ul li {
    display: inline-block;
    padding-left: 0;
    margin-right: 14px;
}

.footer-links.social-links ul li::before {
    display: none;
}

.footer-links.social-links ul li a i {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.5);
    transition: var(--phc-transition);
}

.footer-links.social-links ul li a:hover i {
    color: var(--phc-red);
}

.footer-info-box {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
}

.footer-info-box:last-child {
    margin-bottom: 0;
}

.footer-info-box i {
    color: var(--phc-red);
    font-size: 15px;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-info-box p {
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

.footer-links.quick-links {
    width: calc(18% - 30px);
}
.footer-links.service-links {
    width: calc(30% - 30px);
}
.footer-links.social-links {
    width: calc(16% - 30px);
}
.footer-links.contact-links {
    width: calc(36% - 30px);
}

.footer-links.terms-condition-links {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-copyright-text p {
    color: rgba(255, 255, 255, 0.35);
    font-size: 13px;
    margin: 0;
    text-transform: capitalize;
}

.footer-terms-condition ul {
    display: flex;
    gap: 20px;
}

.footer-terms-condition ul li a {
    color: rgba(255, 255, 255, 0.35);
    font-size: 13px;
    text-decoration: underline;
    transition: var(--phc-transition);
}

.footer-terms-condition ul li a:hover {
    color: var(--phc-white);
}

/* ============================================================
   19. Back to Top
============================================================ */
.phc-back-to-top {
    position: fixed;
    right: 28px;
    bottom: 28px;
    width: 48px;
    height: 48px;
    background: var(--phc-red);
    color: var(--phc-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(218, 56, 50, 0.4);
}

.phc-back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.phc-back-to-top:hover {
    background: var(--phc-dark);
    color: var(--phc-white);
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}

/* ============================================================
   20. Video Testimonials — Reel Format
============================================================ */
.phc-video-testimonials {
    background: var(--phc-light);
    padding: 100px 0 120px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.phc-video-row {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 20px 15px 30px;
    margin: 0 -15px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.phc-video-row::-webkit-scrollbar {
    display: none;
}

.phc-video-card {
    position: relative;
    flex-shrink: 0;
    width: 240px;
    aspect-ratio: 9 / 16;
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    background: var(--phc-dark);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    scroll-snap-align: start;
    transition: var(--phc-transition);
}

.phc-video-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
}

.phc-video-thumb {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.6s ease-in-out;
    pointer-events: none;
}

.phc-video-card:hover .phc-video-thumb {
    transform: scale(1.06);
}

.phc-video-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.82) 0%,
        rgba(0, 0, 0, 0.15) 45%,
        rgba(0, 0, 0, 0.15) 100%
    );
    z-index: 2;
    pointer-events: none;
    transition: var(--phc-transition);
}

.phc-video-card:hover::before {
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0.25) 45%,
        rgba(0, 0, 0, 0.05) 100%
    );
}

.phc-video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--phc-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    font-size: 1.1rem;
    padding-left: 4px;
    transition: var(--phc-transition);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.phc-video-card:hover .phc-video-play {
    transform: translate(-50%, -50%) scale(1.15);
    background: var(--phc-red);
    color: var(--phc-white);
}

.phc-video-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--phc-white);
    font-family: var(--phc-font-body);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 5px 10px;
    border-radius: 6px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 5px;
}

.phc-video-badge i {
    font-size: 10px;
    color: var(--phc-red);
}

.phc-video-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 18px 16px;
    z-index: 3;
}

.phc-video-info h4 {
    font-family: var(--phc-font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--phc-white);
    margin: 0 0 3px 0;
    text-transform: capitalize;
    line-height: 1.3;
}

.phc-video-info p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    text-transform: capitalize;
}

/* ============================================================
   21. Video Modal / Lightbox
============================================================ */
.phc-video-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 20px;
}

.phc-video-modal.active {
    opacity: 1;
    visibility: visible;
}

.phc-video-modal-inner {
    position: relative;
    width: 100%;
    max-width: 400px;
    aspect-ratio: 9 / 16;
    background: var(--phc-dark);
    border-radius: 18px;
    overflow: hidden;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.phc-video-modal.active .phc-video-modal-inner {
    transform: scale(1);
}

.phc-video-modal video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.phc-video-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    color: var(--phc-white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    transition: var(--phc-transition);
    z-index: 10;
}

.phc-video-close:hover {
    background: var(--phc-red);
    transform: rotate(90deg);
}

/* ============================================================
   22. Page Sections (inner pages)
============================================================ */

/* Page Header */
.phc-page-header {
    position: relative;
    background-color: var(--phc-dark);
    background-size: cover;
    background-position: center center;
    padding: 180px 0 140px;
    overflow: hidden;
    text-align: center;
}

.phc-page-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 0;
}

.phc-page-header::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at center,
        var(--phc-hero-glow) 0%,
        transparent 60%
    );
    z-index: 0;
}

.phc-page-header .container {
    position: relative;
    z-index: 1;
}

.phc-page-header-content {
    max-width: 900px;
    margin: 0 auto;
}

/* Expertise */
.phc-expertise {
    background: var(--phc-white);
    padding: 100px 0 120px;
}

.phc-expertise-item {
    background: var(--phc-light);
    border-radius: 14px;
    padding: 32px 20px;
    text-align: center;
    margin-bottom: 24px;
    transition: var(--phc-transition);
    height: calc(100% - 24px);
}

.phc-expertise-item:hover {
    background: var(--phc-dark);
    transform: translateY(-6px);
}

.phc-expertise-icon {
    width: 60px;
    height: 60px;
    background: var(--phc-white);
    border-radius: 50%;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--phc-transition);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

.phc-expertise-item:hover .phc-expertise-icon {
    background: var(--phc-red);
}

.phc-expertise-icon i {
    color: var(--phc-red);
    font-size: 1.4rem;
    transition: var(--phc-transition);
}

.phc-expertise-item:hover .phc-expertise-icon i {
    color: var(--phc-white);
}

.phc-expertise-item h3 {
    font-family: var(--phc-font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--phc-dark);
    text-transform: capitalize;
    transition: var(--phc-transition);
    margin: 0;
    line-height: 1.4;
}

.phc-expertise-item:hover h3 {
    color: var(--phc-white);
}

/* Philosophy */
.phc-philosophy {
    background: var(--phc-dark);
    padding: 100px 0 120px;
    position: relative;
    z-index: 1;
}

/* Five elements grid */
.phc-elements {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding-left: 40px;
}

.phc-element-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 24px 16px;
    text-align: center;
    transition: var(--phc-transition);
}

.phc-element-item:hover {
    background: rgba(218, 56, 50, 0.1);
    border-color: var(--phc-red);
    transform: translateY(-4px);
}

.phc-element-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phc-element-icon i {
    color: var(--phc-yellow);
    font-size: 1.1rem;
}

.phc-element-item h4 {
    font-family: var(--phc-font-heading);
    font-size: 1.2rem;
    color: var(--phc-white);
    margin-bottom: 4px;
}

.phc-element-item p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.8rem;
    margin: 0;
}

/* Pillars */
.phc-pillar {
    background: var(--phc-white);
    padding: 100px 0 110px;
    position: relative;
    z-index: 1;
}

.phc-pillar-alt {
    background: var(--phc-light);
}

.phc-pillar-image {
    position: relative;
}

.phc-pillar-image figure {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    display: block;
}

.phc-pillar-image img {
    width: 100%;
    aspect-ratio: 1 / 1.2;
    object-fit: cover;
}

.phc-pillar-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    background: var(--phc-red);
    color: var(--phc-white);
    width: 74px;
    height: 74px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--phc-font-heading);
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(218, 56, 50, 0.35);
    z-index: 2;
}

.phc-pillar-list {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.phc-pillar-list-item {
    padding: 20px 22px;
    background: var(--phc-white);
    border-left: 3px solid var(--phc-red);
    border-radius: 0 12px 12px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: var(--phc-transition);
}

.phc-pillar-alt .phc-pillar-list-item {
    background: var(--phc-white);
}

.phc-pillar-list-item:hover {
    transform: translateX(6px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.phc-pillar-list-item h4 {
    font-family: var(--phc-font-heading);
    font-size: 1.15rem;
    color: var(--phc-dark);
    margin-bottom: 6px;
}

.phc-pillar-list-item p {
    color: var(--phc-text);
    font-size: 0.9rem;
    line-height: 1.65;
    margin: 0;
}

/* Women's Prompt */
.phc-womens-prompt {
    background: var(--phc-dark);
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.phc-womens-prompt .phc-section-title h3,
.phc-womens-prompt .phc-section-title h3::before {
    color: var(--phc-yellow);
}

.phc-womens-prompt .phc-section-title h2 {
    color: var(--phc-white);
}

.phc-womens-prompt .phc-section-title p {
    color: rgba(255, 255, 255, 0.65);
}

/* Consultation Formats */
.phc-formats {
    background: var(--phc-light);
    padding: 100px 0 120px;
    position: relative;
    z-index: 1;
}

.phc-format-item {
    background: var(--phc-white);
    border-radius: 14px;
    padding: 40px 32px;
    text-align: center;
    height: 100%;
    transition: var(--phc-transition);
    border: 1px solid transparent;
}

.phc-format-item:hover {
    border-color: var(--phc-red);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.phc-format-icon {
    width: 72px;
    height: 72px;
    background: rgba(218, 56, 50, 0.08);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phc-format-icon i {
    color: var(--phc-red);
    font-size: 1.6rem;
}

.phc-format-item h3 {
    font-family: var(--phc-font-heading);
    font-size: 1.4rem;
    color: var(--phc-dark);
    margin-bottom: 12px;
}

.phc-format-item p {
    color: var(--phc-text);
    line-height: 1.7;
    margin-bottom: 20px;
}

.phc-format-link {
    color: var(--phc-red);
    font-family: var(--phc-font-body);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--phc-transition);
}

.phc-format-link:hover {
    color: var(--phc-dark);
    gap: 14px;
}

/* Testimonials Grid */
.phc-testimonials-grid {
    background: var(--phc-white);
    padding: 100px 0 120px;
    position: relative;
    z-index: 1;
}

.phc-testimonials-grid .phc-testimonial-item {
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

/* Contact */
.phc-contact {
    background: var(--phc-white);
    padding: 100px 0 120px;
    position: relative;
    z-index: 1;
}

.phc-contact-info {
    padding-right: 30px;
}

.phc-contact-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 30px;
}

.phc-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.phc-contact-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(218, 56, 50, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phc-contact-icon i {
    color: var(--phc-red);
    font-size: 1.05rem;
}

.phc-contact-item h4 {
    font-family: var(--phc-font-heading);
    font-size: 1.1rem;
    color: var(--phc-dark);
    margin-bottom: 4px;
}

.phc-contact-item p {
    color: var(--phc-text);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

.phc-contact-item p a {
    color: var(--phc-text);
    transition: var(--phc-transition);
}

.phc-contact-item p a:hover {
    color: var(--phc-red);
}

.phc-contact-form-wrapper {
    background: var(--phc-light);
    border-radius: 20px;
    padding: 40px;
}

.phc-form-group {
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
}

/* Form row — controls layout */
.phc-form-row {
    margin-bottom: 18px;
}

.phc-form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.phc-form-row-2 .phc-form-group {
    margin-bottom: 0;
}

.phc-form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
}

.phc-optional {
    text-transform: none;
    letter-spacing: 0;
    color: var(--phc-text-muted);
    font-weight: 400;
    font-size: 0.75rem;
}

/* Select arrow */
.phc-form-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%235a5a5a'%3e%3cpath d='M6 8l4 4 4-4' stroke='%235a5a5a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 18px;
    padding-right: 40px;
    cursor: pointer;
}

.phc-form-group label {
    display: block;
    font-family: var(--phc-font-body);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--phc-dark);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.phc-form-group input,
.phc-form-group textarea,
.phc-form-group select {
    width: 100%;
    background: var(--phc-white);
    border: 1.5px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 13px 16px;
    font-family: var(--phc-font-body);
    font-size: 0.95rem;
    color: var(--phc-dark);
    transition: var(--phc-transition);
    outline: none;
    line-height: 1.4;
}

.phc-form-group input:hover,
.phc-form-group textarea:hover,
.phc-form-group select:hover {
    border-color: rgba(0, 0, 0, 0.2);
}

.phc-form-group input:focus,
.phc-form-group textarea:focus,
.phc-form-group select:focus {
    border-color: var(--phc-red);
    box-shadow: 0 0 0 3px rgba(218, 56, 50, 0.1);
}

.phc-form-group input::placeholder,
.phc-form-group textarea::placeholder {
    color: var(--phc-text-muted);
}

.phc-form-radio-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    flex-wrap: nowrap;
}

.phc-radio {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 13px 16px;
    background: var(--phc-white);
    border-radius: 10px;
    transition: var(--phc-transition);
    border: 1.5px solid rgba(0, 0, 0, 0.1);
    margin: 0;
}

.phc-radio:hover {
    border-color: rgba(218, 56, 50, 0.5);
    background: rgba(218, 56, 50, 0.02);
}

.phc-radio input:checked ~ span {
    color: var(--phc-red);
    font-weight: 600;
}

.phc-radio:has(input:checked) {
    border-color: var(--phc-red);
    background: rgba(218, 56, 50, 0.04);
}

.phc-radio input {
    width: auto;
    margin: 0;
    accent-color: var(--phc-red);
}

.phc-radio span {
    font-family: var(--phc-font-body);
    font-weight: 500;
    color: var(--phc-dark);
    font-size: 0.95rem;
}

/* Map */
.phc-map {
    line-height: 0;
    position: relative;
    z-index: 1;
}

.phc-map iframe {
    filter: grayscale(0.3);
    transition: var(--phc-transition);
}

.phc-map iframe:hover {
    filter: grayscale(0);
}

/* ============================================================
   23. Pillar CTA
============================================================ */
.phc-pillar-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 40px;
}

/* ============================================================
   24. Contact Form Modal
============================================================ */
.phc-modal .modal-dialog {
    max-width: 720px;
}

.phc-modal .modal-content {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    background: var(--phc-white);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.phc-modal .modal-body {
    padding: 48px 48px 40px;
}

.phc-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.05);
    color: var(--phc-dark);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--phc-transition);
    font-size: 0.9rem;
}

.phc-modal-close:hover {
    background: var(--phc-red);
    color: var(--phc-white);
    transform: rotate(90deg);
}

.phc-modal-header {
    text-align: center;
    margin-bottom: 36px;
}

.phc-modal-eyebrow {
    display: inline-block;
    font-family: var(--phc-font-body);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--phc-red);
    padding-left: 16px;
    position: relative;
    margin: 0 0 12px 0;
}

.phc-modal-eyebrow::before {
    content: "/";
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 800;
    color: var(--phc-red);
}

.phc-modal-title {
    font-family: var(--phc-font-heading);
    font-size: 2rem;
    color: var(--phc-dark);
    margin: 0 0 10px 0;
    line-height: 1.2;
}

.phc-modal-lede {
    color: var(--phc-text);
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0 auto;
    max-width: 480px;
}

.phc-modal-form {
    margin-bottom: 32px;
}

.phc-form-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
}

.phc-col-6 {
    grid-column: span 6;
}
.phc-col-12 {
    grid-column: span 12;
}

.phc-modal .phc-form-group label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--phc-font-body);
    font-weight: 500;
    font-size: 0.85rem;
    color: var(--phc-dark);
    margin-bottom: 8px;
    text-transform: none;
    letter-spacing: 0;
}

.phc-optional {
    color: var(--phc-text-muted);
    font-weight: 400;
    font-size: 0.78rem;
    font-style: italic;
}

.phc-modal .phc-form-group input,
.phc-modal .phc-form-group textarea,
.phc-modal .phc-form-group select {
    width: 100%;
    background: var(--phc-white);
    border: 1.5px solid rgba(0, 0, 0, 0.12);
    border-radius: 10px;
    padding: 12px 14px;
    font-family: var(--phc-font-body);
    font-size: 0.95rem;
    color: var(--phc-dark);
    transition: var(--phc-transition);
    outline: none;
    line-height: 1.4;
}

.phc-modal .phc-form-group input:hover,
.phc-modal .phc-form-group textarea:hover,
.phc-modal .phc-form-group select:hover {
    border-color: rgba(0, 0, 0, 0.25);
}

.phc-modal .phc-form-group input:focus,
.phc-modal .phc-form-group textarea:focus,
.phc-modal .phc-form-group select:focus {
    border-color: var(--phc-red);
    box-shadow: 0 0 0 3px rgba(218, 56, 50, 0.08);
}

.phc-modal .phc-form-group input::placeholder,
.phc-modal .phc-form-group textarea::placeholder {
    color: var(--phc-text-muted);
    font-size: 0.92rem;
}

.phc-modal .phc-form-group textarea {
    resize: vertical;
    min-height: 90px;
    font-family: var(--phc-font-body);
}

.phc-radio-inline {
    display: flex;
    gap: 24px;
    align-items: center;
    padding-top: 12px;
    min-height: 46px;
}

.phc-radio-item {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    margin: 0;
}

.phc-radio-item input {
    width: auto !important;
    margin: 0;
    accent-color: var(--phc-red);
    cursor: pointer;
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
}

.phc-radio-item span {
    font-family: var(--phc-font-body);
    font-weight: 500;
    color: var(--phc-dark);
    font-size: 0.95rem;
    transition: var(--phc-transition);
}

.phc-radio-item input:checked ~ span {
    color: var(--phc-red);
    font-weight: 600;
}

.phc-form-submit {
    margin-top: 8px;
}

.phc-form-submit .btn-phc {
    width: 100%;
    justify-content: center;
    padding: 3px;
}

.phc-form-submit .btn-phc span {
    width: 100%;
    text-align: center;
}

.phc-modal-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.phc-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--phc-text);
}

.phc-meta-item i {
    color: var(--phc-red);
    font-size: 0.85rem;
}

.phc-meta-item a {
    color: var(--phc-text);
    transition: var(--phc-transition);
}

.phc-meta-item a:hover {
    color: var(--phc-red);
}

.phc-modal-success {
    text-align: center;
    padding: 60px 20px;
}

.phc-modal-success-icon {
    width: 80px;
    height: 80px;
    background: rgba(57, 127, 80, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.phc-modal-success-icon i {
    color: var(--phc-green);
    font-size: 2.2rem;
}

.phc-modal-success h4 {
    font-family: var(--phc-font-heading);
    font-size: 1.6rem;
    color: var(--phc-dark);
    margin-bottom: 10px;
}

.phc-modal-success p {
    color: var(--phc-text);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================================
   INFO MODAL — two-column with optional image
============================================================ */
.phc-info-modal-wrapper .modal-content {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    max-height: 90vh;
}

.phc-info-modal-wrapper .modal-body {
    padding: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.phc-info-modal-wrapper .modal-body > .row {
    flex: 1;
    min-height: 0;
}

/* ── Left panel — base (no image) ── */
.phc-info-panel {
    position: relative;
    background: var(--phc-dark);
    padding: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 500px;
    overflow: hidden;
}

/* Background gradient when no image */
.phc-info-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at 20% 80%,
        var(--phc-hero-glow) 0%,
        transparent 60%
    );
    z-index: 1;
    pointer-events: none;
}

/* ── Image layer ── */
.phc-info-panel-image {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
    overflow: hidden;
}

.phc-info-panel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.phc-info-panel-image-visible {
    opacity: 1;
}

/* ── Dark overlay on image ── */
.phc-info-panel-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.88) 0%,
        rgba(0, 0, 0, 0.55) 40%,
        rgba(0, 0, 0, 0.35) 100%
    );
    pointer-events: none;
}

/* When no image, hide overlay gradient */
.phc-info-panel:not(.phc-info-panel-has-image) .phc-info-panel-overlay {
    background: none;
}

/* ── Content inner — sits on top ── */
.phc-info-panel-inner {
    position: relative;
    z-index: 2;
    padding: 48px 36px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Ghost badge number */
.phc-info-panel-badge {
    font-family: var(--phc-font-heading);
    font-size: 3.5rem;
    color: rgba(255, 255, 255, 0.1);
    line-height: 1;
    margin-bottom: 32px;
    letter-spacing: -2px;
    user-select: none;
}

.phc-info-panel-has-image .phc-info-panel-badge {
    color: rgba(255, 255, 255, 0.15);
}

.phc-info-panel-body {
    flex: 1;
}

.phc-info-panel-eyebrow {
    display: inline-block;
    font-family: var(--phc-font-body);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--phc-yellow);
    padding-left: 16px;
    position: relative;
    margin-bottom: 16px;
}

.phc-info-panel-eyebrow::before {
    content: "/";
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 800;
    color: var(--phc-yellow);
}

.phc-info-panel-title {
    font-family: var(--phc-font-heading);
    font-size: 1.6rem;
    color: var(--phc-white);
    line-height: 1.2;
    margin: 0 0 20px 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.phc-info-panel-intro {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.88rem;
    line-height: 1.7;
    margin: 0;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

/* Panel footer meta */
.phc-info-panel-footer {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 32px;
}

.phc-info-panel-meta {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.phc-info-panel-meta-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

.phc-info-panel-meta-item i {
    color: var(--phc-yellow);
    font-size: 0.8rem;
    margin-top: 2px;
    flex-shrink: 0;
    width: 14px;
    text-align: center;
}

/* ── Right panel ── */
.phc-info-content-panel {
    padding: 48px 40px;
    background: var(--phc-white);
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow-y: auto;
    max-height: 90vh;
}

/* Mobile header */
.phc-info-mobile-header {
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.phc-info-mobile-title {
    font-family: var(--phc-font-heading);
    font-size: 1.3rem;
    color: var(--phc-dark);
    margin: 8px 0 0 0;
    line-height: 1.25;
}

/* Content label */
.phc-info-content-label {
    font-family: var(--phc-font-body);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--phc-green);
    margin: 0 0 20px 0;
}

/* Content body paragraphs */
.phc-info-content-body {
    flex: 1;
}

.phc-info-content-body p {
    color: var(--phc-text);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1.3em;
}

.phc-info-content-body p:first-child {
    color: var(--phc-dark);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.75;
}

.phc-info-content-body p:last-child {
    margin-bottom: 0;
}

/* Content footer */
.phc-info-content-footer {
    padding-top: 28px;
    margin-top: 28px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.phc-info-content-footer-text {
    color: var(--phc-text);
    font-size: 0.88rem;
    line-height: 1.6;
    margin: 0 0 16px 0;
}

/* ── Close button ── */
.phc-info-modal-wrapper .phc-modal-close {
    background: rgba(0, 0, 0, 0.35);
    color: var(--phc-white);
    top: 14px;
    right: 14px;
    z-index: 10;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.phc-info-modal-wrapper .phc-modal-close:hover {
    background: var(--phc-red);
    color: var(--phc-white);
}

/* ── Responsive ── */
@media (max-width: 991px) {
    .phc-info-content-panel {
        padding: 32px 28px;
        max-height: none;
    }

    .phc-info-modal-wrapper .phc-modal-close {
        background: rgba(0, 0, 0, 0.08);
        color: var(--phc-dark);
        backdrop-filter: none;
    }
}

@media (max-width: 767px) {
    .phc-info-content-panel {
        padding: 24px 20px;
    }

    .phc-info-panel-title {
        font-size: 1.3rem;
    }
}

/* ============================================================
   25. Responsive — single consolidated block
============================================================ */

/* Desktop container max */
@media (max-width: 1366px) {
    .container {
        max-width: 1140px;
    }
}

/* Desktop video grid */
@media (min-width: 992px) {
    .phc-video-row {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
        overflow: visible;
        padding: 20px 0 0;
        margin: 0;
    }

    .phc-video-card {
        width: 100%;
    }
}

/* Tablet */
@media (max-width: 991px) {
    body {
        cursor: auto;
    }

    .cb-cursor {
        display: none !important;
    }

    .header-mobile-call {
        display: inline-flex !important;
    }

    .navbar-collapse {
        background: var(--phc-dark);
        margin-top: 18px;
        padding: 12px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .navbar-nav {
        margin: 0 !important;
    }

    .navbar-nav .nav-item {
        margin: 0;
    }

    .navbar-nav .nav-link {
        padding: 14px 20px !important;
        border-radius: 0;
    }

    .navbar-nav .nav-link::after {
        display: none;
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        background: rgba(255, 255, 255, 0.04);
        color: var(--phc-red) !important;
    }

    .navbar {
        justify-content: space-between;
    }

    .navbar-brand img {
        max-height: 40px;
    }

    .phc-hero {
        padding: 150px 0 100px;
    }

    .phc-radius-section {
        border-radius: 30px 30px 0 0;
        margin-top: -30px;
    }

    .phc-bg-spacer {
        padding: 70px 0;
    }

    .phc-section-btn {
        text-align: left;
        margin-top: 16px;
    }

    .phc-section-row {
        margin-bottom: 36px;
    }

    .phc-benefit-item {
        border-right: none;
        padding-right: 0;
        margin-bottom: 24px;
    }

    .phc-about {
        padding: 70px 0 90px;
    }

    .phc-about-images {
        max-width: 540px;
        margin: 40px auto 0;
    }

    .phc-about-circle {
        width: 100px;
        height: 100px;
    }

    .phc-about-circle i {
        font-size: 1.4rem;
    }

    .phc-services {
        padding: 70px 0 80px;
    }

    .phc-womens-content {
        padding-left: 0;
        margin-top: 60px;
    }

    .phc-womens-badge {
        right: 0;
        bottom: -16px;
    }

    .phc-why {
        padding: 60px 0 80px;
    }

    .phc-testimonials {
        padding: 70px 0 100px;
    }

    .phc-testimonial-sticky {
        position: static;
        margin-bottom: 40px;
    }

    .phc-faq {
        padding: 70px 0 90px;
    }

    .phc-faq-image {
        padding-left: 0;
        margin-top: 40px;
    }

    .phc-cta {
        padding: 80px 0;
    }

    .phc-cta-btns {
        flex-direction: column;
        align-items: center;
    }

    .about-footer-list {
        column-gap: 30px;
        row-gap: 32px;
    }

    .footer-links.quick-links,
    .footer-links.service-links,
    .footer-links.social-links,
    .footer-links.contact-links {
        width: calc(50% - 15px);
    }

    .footer-links.terms-condition-links {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .topbar {
        padding: 12px 0 50px;
    }

    header.main-header {
        margin-top: 0;
    }

    /* Inner pages */
    .phc-page-header {
        padding: 130px 0 100px;
    }

    .phc-elements {
        grid-template-columns: repeat(2, 1fr);
        padding-left: 0;
        margin-top: 40px;
    }

    .phc-pillar-content,
    .phc-contact-info {
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-top: 40px;
    }

    .phc-pillar-badge {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        top: -14px;
        left: -14px;
    }

    .phc-contact-form-wrapper {
        padding: 28px;
        margin-top: 30px;
    }

    .phc-hero-slider .owl-nav {
        bottom: 50px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
    }

    .phc-hero-slider .owl-nav .owl-prev,
    .phc-hero-slider .owl-nav .owl-next {
        width: 38px !important;
        height: 38px !important;
    }

    /* Modal */
    .phc-modal .modal-dialog {
        margin: 0.5rem;
        max-width: calc(100% - 1rem);
    }

    .phc-modal .modal-body {
        padding: 36px 24px 32px;
    }
    .phc-modal-title {
        font-size: 1.5rem;
    }
    .phc-modal-header {
        margin-bottom: 28px;
    }
    .phc-col-6 {
        grid-column: span 12;
    }
    .phc-modal-meta {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    .phc-info-content-panel {
        padding: 32px 28px;
        max-height: none;
    }

    .phc-info-modal-wrapper .phc-modal-close {
        background: rgba(0, 0, 0, 0.08);
        color: var(--phc-dark);
    }
}

/* Mobile */
@media (max-width: 767px) {
    .phc-hero {
        padding: 110px 0 80px;
    }

    /* Full-width stacked buttons */
    .phc-hero-btns,
    .phc-cta-btns,
    .phc-pillar-cta {
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: stretch;
        width: 100%;
        gap: 12px;
    }

    .phc-hero-btns .btn-phc,
    .phc-cta-btns .btn-phc,
    .phc-pillar-cta .btn-phc {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: stretch;
        padding: 3px;
        white-space: normal;
    }

    .phc-hero-btns .btn-phc span,
    .phc-cta-btns .btn-phc span,
    .phc-pillar-cta .btn-phc span {
        width: 100%;
        text-align: center;
        white-space: normal;
        line-height: 1.35;
        padding: 14px 18px;
    }

    .phc-section-title h1 {
        font-size: 1.9rem;
    }
    .phc-section-title h2 {
        font-size: 1.6rem;
    }

    .phc-about-img img {
        aspect-ratio: 1 / 0.9;
    }

    .phc-about-circle {
        width: 80px;
        height: 80px;
    }

    .phc-about-circle i {
        font-size: 1.1rem;
    }

    .phc-img-box-1 figure,
    .phc-img-box-1 img {
        border-radius: 120px 0 0 0;
    }
    .phc-img-box-2 figure,
    .phc-img-box-2 img {
        border-radius: 0 120px 0 0;
    }
    .phc-img-box-3 figure,
    .phc-img-box-3 img {
        border-radius: 0 0 0 120px;
    }
    .phc-img-box-4 figure,
    .phc-img-box-4 img {
        border-radius: 0 0 120px 0;
    }

    .phc-service-image img {
        aspect-ratio: 1 / 0.85;
    }

    .phc-service-icon-box {
        width: 60px;
        height: 60px;
        left: 16px;
    }

    .phc-service-body {
        bottom: 16px;
        left: 16px;
    }

    .phc-womens-badge {
        position: relative;
        bottom: auto;
        right: auto;
        max-width: 172px;
        margin-top: 20px;
        border-radius: 10px;
    }

    .phc-why-item {
        padding: 28px 16px;
    }

    /* FAQ mobile */
    .phc-faq-accordion .accordion-button,
    .phc-faq-accordion .accordion-button:not(.collapsed) {
        padding-left: 76px;
        font-size: 16px;
    }

    .phc-faq-accordion .accordion-body {
        padding-left: 20px;
        padding-right: 20px;
    }

    .phc-faq-icon-box {
        width: 44px;
        height: 44px;
        left: 14px;
    }

    /* Footer */
    .footer-links.quick-links,
    .footer-links.service-links,
    .footer-links.social-links,
    .footer-links.contact-links {
        width: 100%;
    }

    .about-footer-list {
        row-gap: 24px;
    }

    /* Inner pages */
    .phc-elements {
        grid-template-columns: 1fr;
    }

    .phc-form-radio-group {
        flex-direction: column;
        gap: 10px;
    }

    /* Video modal */
    .phc-video-close {
        top: -46px;
        width: 36px;
        height: 36px;
    }

    .phc-video-modal-inner {
        max-width: 100%;
    }

    /* Slider mobile */
    .phc-hero-slider .owl-nav {
        bottom: 35px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        gap: 8px;
    }

    .phc-hero-slider .owl-nav .owl-prev,
    .phc-hero-slider .owl-nav .owl-next {
        width: 38px !important;
        height: 38px !important;
    }

    /* Modal mobile */

    .phc-form-radio-group {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    /* Info modal mobile */
    .phc-info-header {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        padding: 24px 20px;
    }

    .phc-info-badge {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }

    .phc-info-header-content h3 {
        font-size: 1.2rem;
    }

    .phc-info-body {
        padding: 24px 20px;
    }

    .phc-info-item {
        padding: 14px 16px;
    }
}

/* ============================================================
   Global Training & Mentorship Section
============================================================ */
.phc-training {
    background: var(--phc-white);
    padding: 100px 0 120px;
    position: relative;
    z-index: 1;
}

/* Outer grid: 2 cards per row, last card centered */
.phc-training-split-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 50px;
    justify-items: center;
}

/* Center the last card if it's alone in its row */
.phc-training-split-grid .phc-training-split-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: calc(50% - 12px);
    justify-self: center;
}

/* Individual card: info left, image right — all same size */
.phc-training-split-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "info media";
    background: var(--phc-light);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--phc-transition);
    min-height: 240px;
    border: 1px solid transparent;
    width: 100%;
}

.phc-training-split-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

/* Left info panel */
.phc-training-split-info {
    grid-area: info;
    padding: 28px 26px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.phc-training-flag {
    display: inline-block;
    font-family: var(--phc-font-body);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    margin-bottom: 10px;
}

.phc-training-split-info h4 {
    font-family: var(--phc-font-heading);
    font-size: 1.15rem;
    line-height: 1.25;
    margin: 0 0 10px 0;
}

.phc-training-split-info p {
    font-size: 0.88rem;
    line-height: 1.65;
    margin: 0;
}

/* Right image panel */
.phc-training-split-media {
    grid-area: media;
    position: relative;
    overflow: hidden;
    margin: 0;
    min-height: 240px;
    height: 100%;
}

.phc-training-split-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Training tags */
.phc-training-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.phc-training-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--phc-font-body);
    font-size: 0.8rem;
    font-weight: 500;
    border-radius: 100px;
    padding: 8px 18px;
    transition: var(--phc-transition);
}

.phc-training-tag i {
    font-size: 0.7rem;
    transition: var(--phc-transition);
}

/* ============================================================
   Training Responsive
============================================================ */
@media (max-width: 991px) {
    .phc-training {
        padding: 70px 0 90px;
    }

    .phc-training-split-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .phc-training-split-grid
        .phc-training-split-card:last-child:nth-child(odd) {
        grid-column: auto;
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .phc-training-split-card {
        grid-template-columns: 1fr;
        grid-template-areas:
            "media"
            "info";
        min-height: auto;
    }

    .phc-training-split-media {
        min-height: 220px;
    }

    .phc-training-split-info {
        padding: 20px 18px 22px;
    }

    .phc-training-split-info h4 {
        font-size: 1rem;
    }

    .phc-training-split-info p {
        font-size: 0.82rem;
    }

    .phc-training-tags {
        gap: 8px;
    }

    .phc-training-tag {
        font-size: 0.75rem;
        padding: 6px 14px;
    }
}

/* =============================================
   FLOATING WHATSAPP BUTTON
   Positioned RIGHT side, above back-to-top
============================================= */
.phc-whatsapp-btn {
    position: fixed;
    right: 28px;
    bottom: 88px;
    left: auto;
    width: 54px;
    height: 54px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    animation: phcWaPulse 2.5s ease-in-out infinite;
}

.phc-whatsapp-btn svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.phc-whatsapp-btn:hover {
    background: #128c7e;
    color: #fff;
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
    animation: none;
}

.phc-whatsapp-btn:hover svg {
    transform: scale(1.1);
}

@keyframes phcWaPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.phc-whatsapp-tooltip {
    position: absolute;
    right: 64px;
    left: auto;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    color: #128c7e;
    font-family: var(--phc-font-body);
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    padding: 6px 14px;
    border-radius: 100px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.phc-whatsapp-tooltip::before {
    content: "";
    position: absolute;
    left: 100%;
    right: auto;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: #fff;
}

.phc-whatsapp-btn:hover .phc-whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    right: 68px;
}

@media (max-width: 767px) {
    .phc-whatsapp-btn {
        width: 48px;
        height: 48px;
        right: 20px;
        bottom: 80px;
    }

    .phc-whatsapp-btn svg {
        width: 24px;
        height: 24px;
    }

    .phc-whatsapp-tooltip {
        display: none;
    }
}

/* =============================================
   TESTIMONIAL CAROUSEL — HEIGHT FIX
============================================= */

/* Let owl height animate smoothly */
.phc-testimonial-carousel.owl-carousel .owl-height {
    transition: height 0.4s ease-in-out;
}

/* Card — no fixed height, let content define it */
.phc-testimonial-item {
    display: flex;
    flex-direction: column;
    height: auto; /* ✅ remove any fixed height */
    min-height: 0;
}

/* Quote area — let it grow */
.phc-testimonial-header {
    flex: 1;
    margin-bottom: 22px;
}

/* Quote text — clamp on mobile to prevent extreme lengths */
.phc-testimonial-header p {
    color: var(--phc-text);
    line-height: 1.7;
    margin: 0;
    font-size: 0.95rem;

    /* ✅ Clamp to 8 lines on mobile — show full on desktop */
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Mobile — clamp to 7 lines */
@media (max-width: 767px) {
    .phc-testimonial-header p {
        -webkit-line-clamp: 7;
    }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 991px) {
    .phc-testimonial-header p {
        -webkit-line-clamp: 8;
    }
}

/* Desktop — show full quote, no clamp */
@media (min-width: 992px) {
    .phc-testimonial-header p {
        -webkit-line-clamp: unset;
        overflow: visible;
        display: block;
    }
}

/* Body always at bottom */
.phc-testimonial-body {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid var(--phc-light);
    flex-shrink: 0;
}

/* Carousel item wrapper — padding fix on mobile */
.phc-testimonial-carousel .owl-item {
    padding: 4px 0 8px; /* prevents box-shadow clipping */
}

/* ✅ Mobile — single full-width card */
@media (max-width: 991px) {
    .phc-testimonial-item {
        margin: 4px 4px 8px;
    }
}

.border-red {
    border: 4px solid var(--phc-red);
}

/* =============================================
   FLASH MESSAGES
============================================= */
.phc-flash {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 20px;
    border-radius: 12px;
    margin-bottom: 24px;
    position: relative;
    animation: phcFlashIn 0.4s ease-out;
}

@keyframes phcFlashIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Success */
.phc-flash-success {
    background: rgba(57, 127, 80, 0.08);
    border: 1px solid rgba(57, 127, 80, 0.25);
    border-left: 4px solid var(--phc-green);
}

.phc-flash-success .phc-flash-icon i {
    color: var(--phc-green);
}

/* Error */
.phc-flash-error {
    background: rgba(218, 56, 50, 0.06);
    border: 1px solid rgba(218, 56, 50, 0.2);
    border-left: 4px solid var(--phc-red);
}

.phc-flash-error .phc-flash-icon i {
    color: var(--phc-red);
}

/* Icon */
.phc-flash-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.8);
}

.phc-flash-icon i {
    font-size: 1.1rem;
}

/* Content */
.phc-flash-content {
    flex: 1;
}

.phc-flash-content h4 {
    font-family: var(--phc-font-body);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--phc-dark);
    margin: 0 0 4px;
}

.phc-flash-content p {
    font-size: 0.9rem;
    color: var(--phc-text);
    margin: 0;
    line-height: 1.6;
}

/* Close button */
.phc-flash-close {
    flex-shrink: 0;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: var(--phc-text);
    font-size: 0.85rem;
    opacity: 0.5;
    transition: var(--phc-transition);
    line-height: 1;
    margin-top: 2px;
}

.phc-flash-close:hover {
    opacity: 1;
    color: var(--phc-dark);
}

/* ============================================================
   Treatment Video Section — portrait reel + text
============================================================ */
.phc-treatment-video {
    background: var(--phc-dark);
    padding: 100px 0 120px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

/* Left content */
.phc-treatment-video-content {
    padding-right: 40px;
}

/* Feature list */
.phc-treatment-video-features {
    margin: 32px 0 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.phc-treatment-video-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.phc-treatment-video-feature-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--phc-transition);
}

.phc-treatment-video-feature:hover .phc-treatment-video-feature-icon {
    background: var(--phc-yellow);
}

.phc-treatment-video-feature-icon i {
    color: var(--phc-yellow);
    font-size: 0.9rem;
    transition: var(--phc-transition);
}

.phc-treatment-video-feature:hover .phc-treatment-video-feature-icon i {
    color: var(--phc-dark);
}

.phc-treatment-video-feature-text h4 {
    font-family: var(--phc-font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--phc-white);
    margin: 0 0 4px 0;
    line-height: 1.3;
}

.phc-treatment-video-feature-text p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    line-height: 1.55;
}

/* CTA */
.phc-treatment-video-cta {
    margin-top: 0;
}

/* ── Right — portrait video card ── */
.phc-treatment-video-player {
    position: relative;
    width: 100%;
    max-width: 320px;
    aspect-ratio: 9 / 16;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: var(--phc-transition);
}

.phc-treatment-video-player:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
}

/* Thumbnail video */
.phc-treatment-video-thumb {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    pointer-events: none;
}

/* Overlay */
.phc-treatment-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.1) 40%,
        rgba(0, 0, 0, 0.15) 100%
    );
    z-index: 2;
    pointer-events: none;
    transition: var(--phc-transition);
}

.phc-treatment-video-player:hover .phc-treatment-video-overlay {
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.2) 40%,
        rgba(0, 0, 0, 0.05) 100%
    );
}

/* Play button */
.phc-treatment-video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--phc-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    font-size: 1.2rem;
    padding-left: 4px;
    transition: var(--phc-transition);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.phc-treatment-video-player:hover .phc-treatment-video-play {
    transform: translate(-50%, -50%) scale(1.12);
    background: var(--phc-yellow);
    color: var(--phc-dark);
}

/* Badge */
.phc-treatment-video-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--phc-white);
    font-family: var(--phc-font-body);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 6px 12px;
    border-radius: 6px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 6px;
}

.phc-treatment-video-badge i {
    font-size: 8px;
    color: var(--phc-red);
    animation: phcPulse 1.5s ease-in-out infinite;
}

@keyframes phcPulse {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

/* ── Lightbox modal ── */
.phc-treatment-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 20px;
}

.phc-treatment-modal.active {
    opacity: 1;
    visibility: visible;
}

.phc-treatment-modal-inner {
    position: relative;
    width: 100%;
    max-width: 400px;
    aspect-ratio: 9 / 16;
    background: var(--phc-dark);
    border-radius: 20px;
    overflow: hidden;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.phc-treatment-modal.active .phc-treatment-modal-inner {
    transform: scale(1);
}

.phc-treatment-modal video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.phc-treatment-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    color: var(--phc-white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    transition: var(--phc-transition);
    z-index: 10;
}

.phc-treatment-modal-close:hover {
    background: var(--phc-red);
    transform: rotate(90deg);
}

/* ── Responsive ── */
@media (max-width: 991px) {
    .phc-treatment-video {
        padding: 70px 0 90px;
    }

    .phc-treatment-video-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .phc-treatment-video-player {
        max-width: 280px;
    }
}

@media (max-width: 767px) {
    .phc-treatment-video-player {
        max-width: 260px;
    }

    .phc-treatment-video-play {
        width: 60px;
        height: 60px;
        font-size: 1rem;
    }

    .phc-treatment-video-feature-icon {
        width: 36px;
        height: 36px;
    }

    .phc-treatment-video-feature-icon i {
        font-size: 0.8rem;
    }

    .phc-treatment-video-feature-text h4 {
        font-size: 0.88rem;
    }

    .phc-treatment-modal-inner {
        max-width: 100%;
    }

    .phc-treatment-modal-close {
        top: -46px;
        width: 36px;
        height: 36px;
    }
}
