/* ============================================================
   PAIN & HEALTH CLINIC — custom.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
   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. 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: 52px;
    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;
}

/* Hamburger → X animation */
.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
============================================================ */
.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,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.45) 50%,
        rgba(0, 0, 0, 0.65) 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;
}

/* Owl nav */
.phc-hero-slider .owl-nav {
    position: absolute;
    bottom: 40px;
    right: 40px;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.phc-hero-slider .owl-nav button {
    width: 46px;
    height: 46px;
    border-radius: 8px;
    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: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--phc-transition);
}

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

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

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

.phc-hero-slider .owl-dot.active 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,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.25) 60%,
        rgba(0, 0, 0, 0.1) 100%
    );
    z-index: 1;
    transition: var(--phc-transition);
}

.phc-service-item:hover .phc-service-image::before {
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.45) 60%,
        rgba(0, 0, 0, 0.2) 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);
}

/* Glass icon tab */
.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;
}

/* Body — absolute bottom */
.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;
}

/* Arrow button */
.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);
}

/* More services link */
.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);
}

/* Floating badge */
.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;
}

/* ============================================================
   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);
}

/* Custom nav buttons */
.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;
}

/* Testimonial card */
.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;
}

/* Author */
.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
   Fixed: font-family updated for Font Awesome 5
============================================================ */
.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;
}

.phc-faq-accordion .accordion-item {
    border-radius: 14px !important;
    margin-bottom: 16px;
    overflow: visible;
    border: none !important;
    box-shadow: none;
    background: transparent;
}

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

.phc-faq-accordion .accordion-header {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
}

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

.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: 14px !important;
    position: relative;
}

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

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

/*
   Custom chevron — FONT AWESOME 5 (matches loaded FA version).
   FA5 uses "Font Awesome 5 Free" NOT "Font Awesome 6 Free".
   That was why the icon showed as a box glyph.
*/
.phc-faq-accordion .accordion-button::after {
    content: "\f077" !important; /* fa-chevron-up */
    font-family: "Font Awesome 5 Free" !important; /* ← was "6 Free" */
    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-left: 0 !important;
    margin-right: 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);
}

.phc-faq-accordion .accordion-body {
    background: var(--phc-dark);
    padding: 0 52px 24px 88px;
    border-radius: 0 0 14px 14px;
    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,
        rgba(218, 56, 50, 0.12) 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 {
    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 column widths */
.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);
}

/* Copyright bar */
.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;
}

/* Mobile — horizontal scroll */
.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;
}

/* Video card */
.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);
}

/* Thumbnail */
.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);
}

/* Overlay */
.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%
    );
}

/* Play button */
.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);
}

/* Reel badge */
.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);
}

/* Author info */
.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,
        rgba(218, 56, 50, 0.15) 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: 20px;
}

.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: 1px solid transparent;
    border-radius: 10px;
    padding: 14px 18px;
    font-family: var(--phc-font-body);
    font-size: 0.95rem;
    color: var(--phc-dark);
    transition: var(--phc-transition);
    outline: none;
}

.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: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.phc-radio {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 12px 20px;
    background: var(--phc-white);
    border-radius: 10px;
    transition: var(--phc-transition);
    border: 1px solid transparent;
}

.phc-radio:hover {
    border-color: var(--phc-red);
}

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

    .responsive-menu {
        display: block;
    }

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

    .slicknav_btn {
        position: relative;
        z-index: 101;
    }

    .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: 0px;
    }

    /* 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: 24px;
        right: 24px;
    }
}

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

    /* Full-width stacked buttons */
    .phc-hero-btns,
    .phc-pillar-cta {
        flex-direction: column;
    }

    .phc-hero-btns .btn-phc,
    .phc-cta-btns .btn-phc,
    .phc-pillar-cta .btn-phc {
        width: 100%;
        justify-content: center;
        padding: 3px;
    }

    .phc-hero-btns .btn-phc span,
    .phc-cta-btns .btn-phc span,
    .phc-pillar-cta .btn-phc span {
        width: 100%;
        text-align: center;
    }

    .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;
        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 */
    .phc-hero-slider .owl-nav {
        bottom: 20px;
        right: 20px;
    }

    .phc-hero-slider .owl-nav button {
        width: 38px;
        height: 38px;
    }
}

/* ============================================================
   25. Contact Form Modal
============================================================ */

/* Modal overrides */
.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.3);
}

.phc-modal .modal-body {
    padding: 0;
}

/* Close button */
.phc-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.08);
    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);
}

/* Left — visual panel */
.phc-modal-visual {
    background: var(--phc-dark);
    background-image: radial-gradient(
        ellipse at 30% 80%,
        rgba(218, 56, 50, 0.2) 0%,
        transparent 60%
    );
    padding: 50px 40px;
    display: flex;
    align-items: center;
}

.phc-modal-visual-content {
    color: var(--phc-white);
    width: 100%;
}

.phc-modal-icon {
    width: 64px;
    height: 64px;
    background: var(--phc-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 10px 30px rgba(218, 56, 50, 0.35);
}

.phc-modal-icon i {
    color: var(--phc-white);
    font-size: 1.5rem;
}

.phc-modal-visual h3 {
    font-family: var(--phc-font-heading);
    font-size: 1.6rem;
    color: var(--phc-white);
    margin-bottom: 12px;
    line-height: 1.25;
}

.phc-modal-visual p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.92rem;
    line-height: 1.65;
    margin-bottom: 28px;
}

/* Info list */
.phc-modal-info-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.phc-modal-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.88rem;
}

.phc-modal-info-item i {
    color: var(--phc-red);
    font-size: 0.9rem;
    width: 20px;
    text-align: center;
}

/* Right — form panel */
.phc-modal-form-wrapper {
    padding: 44px 40px;
    background: var(--phc-white);
}

.phc-modal-form-title {
    font-family: var(--phc-font-heading);
    font-size: 1.4rem;
    color: var(--phc-dark);
    margin-bottom: 24px;
}

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

/* Success state */
.phc-modal-success {
    text-align: center;
    padding: 40px 20px;
}

.phc-modal-success-icon {
    width: 72px;
    height: 72px;
    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: 2rem;
}

.phc-modal-success h4 {
    font-family: var(--phc-font-heading);
    font-size: 1.4rem;
    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: 300px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive */
@media (max-width: 991px) {
    .phc-modal .modal-dialog {
        margin: 0.5rem;
        max-width: calc(100% - 1rem);
    }

    .phc-modal-visual {
        padding: 36px 28px;
    }

    .phc-modal-form-wrapper {
        padding: 32px 28px;
    }

    .phc-modal-close {
        top: 12px;
        right: 12px;
        background: rgba(255, 255, 255, 0.15);
        color: var(--phc-white);
    }
}

@media (max-width: 767px) {
    .phc-modal-visual {
        padding: 28px 24px;
    }

    .phc-modal-icon {
        width: 52px;
        height: 52px;
        margin-bottom: 16px;
    }

    .phc-modal-visual h3 {
        font-size: 1.35rem;
    }

    .phc-modal-form-wrapper {
        padding: 24px 20px;
    }
}
