/* ==========================================================================
   HEALING HAVEN — Women's Health Physiotherapy
   Main Stylesheet
   Fonts: Playfair Display (headings) + Poppins (body)
   ========================================================================== */

/* ============ CSS VARIABLES ============ */
:root {
    --primary: #C2185B;
    --primary-dark: #A0144B;
    --secondary: #FCE4EC;
    --accent: #8E24AA;
    --accent-dark: #6A1B9A;
    --bg: #FFF8FA;
    --bg-lavender: #F6EEFB;
    --text: #2C2C2C;
    --text-muted: #3f3f3f;
    --white: #ffffff;
    --grad-primary: linear-gradient(135deg, #C2185B 0%, #8E24AA 100%);
    --grad-soft: linear-gradient(180deg, #FFF8FA 0%, #FCE4EC 100%);
    --shadow-soft: 0 20px 50px rgba(194, 24, 91, 0.10);
    --shadow-card: 0 10px 30px rgba(142, 36, 170, 0.08);
    --radius: 24px;
    --radius-lg: 30px;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Poppins', sans-serif;
    --transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ============ BASE ============ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg);
    color: var(--text);
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text);
}

img {
    max-width: 100%;
    height: auto;
}

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

.rounded-30 {
    border-radius: var(--radius-lg);
}

.shadow-soft {
    box-shadow: var(--shadow-soft);
}

.section-pad {
    padding: 100px 0;
}

.section-pad-sm {
    padding: 60px 0;
}

.bg-soft {
    background: var(--grad-soft);
}

.bg-soft-lavender {
    background: linear-gradient(180deg, #FFF8FA 0%, var(--bg-lavender) 100%);
}

/* Gradient text */
.text-grad {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.text-grad-light {
    background: linear-gradient(135deg, #FCE4EC, #E1BEE7);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* Section headings (reusable) */
.section-eyebrow {
    display: inline-block;
    background: var(--secondary);
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 8px 22px;
    border-radius: 50px;
    margin-bottom: 18px;
}

.section-eyebrow.light {
    background: rgba(255, 255, 255, 0.15);
    color: #FCE4EC;
}

.section-title {
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.25;
    margin-bottom: 18px;
}

.section-desc {
    color: var(--text-muted);
    max-width: 640px;
}

.section-head {
    margin-bottom: 56px;
}

.section-head .section-desc {
    margin-left: auto;
    margin-right: auto;
}

/* ============ BUTTONS ============ */
.btn {
    font-family: var(--font-body);
    font-weight: 500;
    padding: 12px 28px;
    transition: var(--transition);
}

.btn-lg {
    padding: 10px 40px;
}

.btn-primary-grad {
    background: var(--grad-primary);
    color: var(--white);
    border: none;
    font-size: 16px;
    box-shadow: 0 8px 24px rgba(194, 24, 91, 0.35);
}

.btn-primary-grad:hover {
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(142, 36, 170, 0.45);
}

.btn-outline-soft {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
    font-size: 16px;
}

.btn-outline-soft:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-topbar {
    background: var(--white);
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 18px;
    border-radius: 50px;
}

.btn-topbar:hover {
    background: var(--secondary);
    color: var(--primary-dark);
}

/* Ripple effect */
.btn-ripple {
    position: relative;
    overflow: hidden;
}

.btn-ripple .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.55);
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* ============ PRELOADER ============ */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--grad-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    text-align: center;
    color: var(--white);
}

.preloader-heart {
    font-size: 54px;
    animation: heartbeat 1.2s ease-in-out infinite;
}

.preloader-text {
    font-family: var(--font-heading);
    font-size: 24px;
    margin-top: 14px;
    letter-spacing: 3px;
}

@keyframes heartbeat {

    0%,
    100% {
        transform: scale(1);
    }

    25% {
        transform: scale(1.18);
    }

    50% {
        transform: scale(1);
    }

    75% {
        transform: scale(1.12);
    }
}

/* ============ SCROLL PROGRESS ============ */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    width: 0%;
    background: var(--grad-primary);
    z-index: 1100;
    transition: width 0.1s linear;
}

/* ============ TOPBAR ============ */
.topbar {
    background: var(--grad-primary);
    padding: 9px 0;
    font-size: 13px;
}

.topbar-list li {
    margin-right: 26px;
}

.topbar a,
.topbar span {
    color: rgb(255, 255, 255);
}

.topbar a:hover {
    color: var(--white);
}

.topbar i {
    margin-right: 2px;
}

.topbar-social a {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.topbar-social a:hover {
    background: var(--white);
    color: var(--primary);
}

/* ============ HEADER / NAVBAR ============ */
.header-area {
    position: sticky;
    top: 0;
    z-index: 1050;
    background: rgba(255, 248, 250, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: var(--transition);
}

.header-area.sticky-active {
    box-shadow: 0 6px 24px rgba(194, 24, 91, 0.10);
    background: rgba(255, 255, 255, 0.92);
}

.navbar {
    padding: 10px 0;
    background-color: #fff;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-icon {
    width: 48px;
    height: 48px;
    border-radius: 15px;
    background: var(--grad-primary);
    color: var(--white);
    font-size: 21px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(194, 24, 91, 0.35);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.brand-text strong {
    font-family: var(--font-heading);
    font-size: 21px;
    color: var(--text);
}

.brand-text small {
    font-size: 11px;
    color: var(--primary);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
}

.navbar-nav .nav-link {
    color: var(--text);
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
    margin: 0 10px;
    position: relative;
    padding: 8px 2px;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--grad-primary);
    transition: var(--transition);
    border-radius: 2px;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary);
}

/* Custom burger */
.navbar-toggler {
    border: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(194, 24, 91, 0.3);
    border-radius: 8px;
}

.navbar-toggler span {
    width: 26px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    transition: var(--transition);
}

/* Mobile offcanvas */
.mobile-nav {
    background: var(--bg);
    max-width: 320px;
}

.mobile-nav .offcanvas-title {
    font-family: var(--font-heading);
    color: var(--primary);
}

.mobile-nav-list li a {
    display: block;
    padding: 13px 16px;
    color: var(--text);
    font-weight: 500;
    border-radius: 14px;
    margin-bottom: 4px;
}

.mobile-nav-list li a:hover {
    background: var(--secondary);
    color: var(--primary);
    padding-left: 22px;
}

.mobile-nav-contact a {
    display: block;
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 10px;
}

.mobile-nav-contact a i {
    color: var(--primary);
    margin-right: 8px;
}

/* ============ HERO ============ */
.hero-section {
    position: relative;
    padding: 110px 0 140px;
    background:
        radial-gradient(ellipse at 12% 15%, rgba(252, 228, 236, 0.9) 0%, transparent 50%),
        radial-gradient(ellipse at 88% 80%, rgba(225, 190, 231, 0.55) 0%, transparent 55%),
        linear-gradient(160deg, #FFF8FA 0%, #FDF0F5 55%, #F6EEFB 100%);
    overflow: hidden;
}

/* Soft background shapes */
.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
    animation: floaty 9s ease-in-out infinite;
}

.hero-shape-1 {
    width: 380px;
    height: 380px;
    background: #F8BBD0;
    top: -110px;
    right: 8%;
}

.hero-shape-2 {
    width: 300px;
    height: 300px;
    background: #E1BEE7;
    bottom: -70px;
    left: -60px;
    animation-delay: 2.5s;
}

.hero-shape-3 {
    width: 200px;
    height: 200px;
    background: #F48FB1;
    top: 42%;
    left: 42%;
    opacity: 0.3;
    animation-delay: 5s;
}

@keyframes floaty {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-26px) scale(1.05);
    }
}

/* Floating medical icons */
.float-icon {
    position: absolute;
    color: var(--primary);
    opacity: 0.14;
    font-size: 30px;
    animation: floaty 7s ease-in-out infinite;
    z-index: 0;
}

.fi-1 {
    top: 18%;
    left: 5%;
}

.fi-2 {
    top: 65%;
    left: 12%;
    font-size: 24px;
    animation-delay: 1.6s;
}

.fi-3 {
    top: 22%;
    right: 40%;
    font-size: 26px;
    animation-delay: 3.2s;
}

.fi-4 {
    bottom: 22%;
    right: 6%;
    font-size: 34px;
    animation-delay: 4.8s;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    color: var(--primary);
    padding: 9px 22px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: var(--shadow-card);
    margin-bottom: 22px;
}

.hero-title {
    font-size: clamp(30px, 4.0vw, 45px);
    line-height: 1.18;
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: clamp(17px, 2vw, 21px);
    color: var(--accent-dark);
    font-weight: 500;
    margin-bottom: 14px;
}

.hero-desc {
    color: var(--text-muted);
    max-width: 540px;
    margin-bottom: 30px;
}

.hero-mini-stats>div {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.1;
}

.hero-mini-stats small {
    display: block;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-muted);
    font-weight: 400;
    margin-top: 4px;
}

/* Hero image */
.hero-image-wrap {
    position: relative;
    max-width: 520px;
    margin: 0 auto;
}

.hero-image-glow {
    position: absolute;
    inset: 10% 5%;
    background: var(--grad-primary);
    filter: blur(70px);
    opacity: 0.28;
    border-radius: 50%;
}

.hero-img {
    position: relative;
    z-index: 1;

    animation: heroBreath 8s ease-in-out infinite;
}

@keyframes heroBreath {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

/* Glassmorphism cards */
.glass-card {
    position: absolute;
    z-index: 2;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 18px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    box-shadow: 0 12px 32px rgba(142, 36, 170, 0.18);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: floaty 6s ease-in-out infinite;
}

.glass-card i {
    color: var(--primary);
    font-size: 18px;
}

.gc-1 {
    top: 12%;
    left: -8%;
}

.gc-2 {
    top: 48%;
    right: -10%;
    animation-delay: 1.8s;
}

.gc-3 {
    bottom: 8%;
    left: -4%;
    animation-delay: 3.4s;
}

/* Hero wave */
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: 90px;
    display: block;
}

/* ============ TRUST ============ */
.trust-section {
    margin-top: -40px;
    position: relative;
    background-color: #ffffff;
    z-index: 2;
}

.trust-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 25px;
    text-align: center;
    height: 100%;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(252, 228, 236, 0.8);
    transition: var(--transition);
}

.trust-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-soft);
}

.trust-icon {
    width: 68px;
    height: 68px;
    margin: 0 auto 18px;
    border-radius: 50px;
    background: var(--secondary);
    color: var(--primary);
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.trust-card:hover .trust-icon {
    background: var(--grad-primary);
    color: var(--white);
    transform: rotate(-8deg) scale(1.08);
}

.trust-card h3 {
    font-size: 25px;
    color: var(--primary);
    margin-bottom: 6px;
}

.trust-card p {
    color: var(--text-muted);
    margin: 0;
    font-size: 15px;
}

/* ============ ABOUT ============ */
.about-image-wrap {
    position: relative;
    max-width: 530px;
}

.about-badge {
    bottom: 30px;
    right: -20px;
    padding: 16px 24px;
    position: absolute;
    animation: floaty 6s ease-in-out infinite;
}

.about-badge i {
    font-size: 30px;
}

.about-badge strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--primary);
}

.about-badge small {
    color: var(--text-muted);
    font-size: 12px;
}

.check-list li {
    margin-bottom: 14px;
    color: var(--text);
    font-weight: 500;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.check-list li i {
    color: var(--primary);
    font-size: 19px;
    margin-top: 4px;
}

/* ============ SERVICES ============ */
.service-card {
    background: var(--white);
    padding: 20px 20px;
    height: 100%;
    border: 1px solid rgba(252, 228, 236, 0.9);
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--grad-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-soft);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 66px;
    height: 66px;
    border-radius: 20px;
    background: var(--secondary);
    color: var(--primary);
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--grad-primary);
    color: var(--white);
    transform: scale(1.1) rotate(6deg);
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 14.5px;
    margin-bottom: 18px;
}

.service-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
}

.service-link i {
    transition: var(--transition);
    margin-left: 4px;
}

.service-link:hover {
    color: var(--accent);
}

.service-link:hover i {
    transform: translateX(6px);
}

/* ============ CONDITIONS ============ */

.conditions-carousel {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 10px 0 26px;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.conditions-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: slide-conditions 38s linear infinite;
}

.conditions-carousel:hover .conditions-track {
    animation-play-state: paused;
}

/* ---- Card style chip ---- */
.condition-chip {
    flex: 0 0 auto;
    width: 190px;
    background: var(--white);
    border: 1px solid rgba(194, 24, 91, 0.12);
    border-radius: 20px;
    padding: 28px 18px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    text-align: center;
    cursor: default;
    box-shadow: 0 6px 18px rgba(194, 24, 91, 0.06);
    transition: var(--transition);
}

.chip-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(194, 24, 91, 0.08);
    transition: var(--transition);
}

.chip-icon i {
    font-size: 30px;
    color: var(--primary);
    transition: var(--transition);
}

.chip-text {
    font-weight: 600;
    font-size: 14.5px;
    line-height: 1.4;
    color: var(--text);
    transition: var(--transition);
}

.condition-chip:hover {
    transform: translateY(-8px);
    border-color: transparent;
    box-shadow: 0 16px 32px rgba(194, 24, 91, 0.25);
    background: var(--grad-primary);
}

.condition-chip:hover .chip-icon {
    background: rgba(255, 255, 255, 0.2);
}

.condition-chip:hover .chip-icon i,
.condition-chip:hover .chip-text {
    color: var(--white);
}

@keyframes slide-conditions {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 767px) {
    .condition-chip {
        width: 150px;
        padding: 22px 14px 18px;
    }

    .chip-icon {
        width: 46px;
        height: 46px;
    }

    .chip-icon i {
        font-size: 20px;
    }

    .chip-text {
        font-size: 13px;
    }

    .conditions-track {
        gap: 14px;
        animation-duration: 24s;
    }
}

section#conditions {
    background-color: #fff;
}

/* ============ WHY CHOOSE US ============ */
.why-image-wrap {
    position: relative;
    max-width: 520px;
}

.why-float {
    bottom: 26px;
    left: -18px;
    position: absolute;
    padding: 14px 22px;
}

.why-float i {
    color: #F9A825;
}

.why-item {
    background: var(--white);
    padding: 10px 10px;
    font-weight: 500;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-card);
    height: 100%;
    transition: var(--transition);
}

.why-item i {
    color: var(--primary);
    font-size: 19px;
    flex-shrink: 0;
}

.why-item:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-soft);
}

.why-stats>div strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--primary);
}

.why-stats>div small {
    color: var(--text-muted);
    font-size: 13px;
}

/* ============ TREATMENT PROCESS ============ */
.process-timeline {
    position: relative;
}

.process-step {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 26px 32px;
    text-align: center;
    height: 100%;
    box-shadow: var(--shadow-card);
    position: relative;
    border: 1px solid rgba(252, 228, 236, 0.9);
    transition: var(--transition);
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-soft);
}

.step-num {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--grad-primary);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(194, 24, 91, 0.4);
}

.step-icon {
    width: 72px;
    height: 72px;
    margin: 10px auto 20px;
    border-radius: 50%;
    background: var(--secondary);
    color: var(--primary);
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.process-step:hover .step-icon {
    background: var(--grad-primary);
    color: var(--white);
}

.process-step h3 {
    font-size: 21px;
    margin-bottom: 10px;
}

.process-step p {
    color: var(--text-muted);
    font-size: 14.5px;
    margin: 0;
}

/* ============ BENEFITS ============ */
.benefit-box {
    background: var(--white);
    border-radius: var(--radius);
    padding: 34px 20px;
    text-align: center;
    height: 100%;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(252, 228, 236, 0.9);
    transition: var(--transition);
}

section.benefits-section.section-pad {
    background-color: #ffffff;
}

.benefit-box i {
    font-size: 34px;
    margin-bottom: 16px;
    display: inline-block;
    background: var(--grad-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    transition: transform 0.35s ease;
}

.benefit-box:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-soft);
}

.benefit-box:hover i {
    transform: scale(1.2);
}

.benefit-box h3 {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

/* ============ DOCTOR ============ */
.doctor-image-wrap {
    position: relative;
    max-width: 460px;
    margin: 0 auto;
}

.doctor-ring {
    position: absolute;
    inset: -22px;
    border: 2px dashed rgba(194, 24, 91, 0.35);
    border-radius: var(--radius-lg);
    animation: spinSlow 30s linear infinite;
    pointer-events: none;
}

@keyframes spinSlow {
    to {
        transform: rotate(0.5deg);
    }
}

.doctor-role {
    color: var(--accent);
    font-weight: 600;
    font-size: 17px;
    margin-bottom: 20px;
}

.doctor-quals li {
    margin-bottom: 12px;
    color: var(--text);
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 15px;
}

.doctor-quals li i {
    color: var(--primary);
    margin-top: 4px;
}

/* ============ TESTIMONIALS ============ */
.bg-grad-purple {
    background: linear-gradient(135deg, #880E4F 0%, #6A1B9A 60%, #4A148C 100%);
    position: relative;
    overflow: hidden;
}

.bg-grad-purple::before {
    content: '';
    position: absolute;
    width: 460px;
    height: 460px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    top: -180px;
    right: -120px;
}

.testimonial-swiper {
    padding: 20px 6px 64px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    padding: 36px 30px;
    height: 100%;
    color: var(--white);
}

.testimonial-card .stars {
    color: #FFD54F;
    font-size: 15px;
    margin-bottom: 18px;
    letter-spacing: 3px;
}

.testimonial-card p {
    font-size: 15.5px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.92);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 22px;
}

.testimonial-swiper .swiper-slide {
    height: auto;
    display: flex;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #F48FB1, #CE93D8);
    color: #4A148C;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}

.testimonial-author strong {
    display: block;
    font-size: 16px;
}

.testimonial-author small {
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
}

.testimonial-swiper .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    width: 10px;
    height: 10px;
}

.testimonial-swiper .swiper-pagination-bullet-active {
    background: #F48FB1;
    width: 28px;
    border-radius: 6px;
}

/* ============ GALLERY (MASONRY) ============ */
.masonry-gallery {
    columns: 3;
    column-gap: 20px;
}

.masonry-item {
    display: block;
    margin-bottom: 20px;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    position: relative;
}

.masonry-item::after {
    content: '\f00e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(194, 24, 91, 0.75), rgba(142, 36, 170, 0.75));
    color: var(--white);
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.masonry-item:hover::after {
    opacity: 1;
}

.masonry-item img {
    display: block;
    width: 100%;
    transition: transform 0.5s ease;
}

.masonry-item:hover img {
    transform: scale(1.08);
}

/* ============ BLOG ============ */
.blog-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    height: 100%;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(252, 228, 236, 0.9);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-soft);
}

.blog-img-wrap {
    position: relative;
    overflow: hidden;
}

.blog-img-wrap img {
    width: 100%;
    transition: transform 0.5s ease;
    display: block;
}

.blog-card:hover .blog-img-wrap img {
    transform: scale(1.07);
}

.blog-date {
    position: absolute;
    bottom: 14px;
    left: 14px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    padding: 7px 16px;
    border-radius: 50px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--primary);
}

.blog-body {
    padding: 26px;
}

.blog-body h3 {
    font-size: 19px;
    line-height: 1.45;
    margin-bottom: 12px;
}

.blog-body p {
    color: var(--text-muted);
    font-size: 14.5px;
    margin-bottom: 16px;
}

.blog-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
}

.blog-link i {
    margin-left: 4px;
    transition: var(--transition);
}

.blog-link:hover i {
    transform: translateX(6px);
}

/* ============ FAQ ============ */
.faq-accordion .accordion-item {
    border: 1px solid rgba(252, 228, 236, 0.9);
    border-radius: 18px !important;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    background: var(--white);
}

.faq-accordion .accordion-button {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 16px;
    color: var(--text);
    background: var(--white);
    padding: 22px 26px;
    box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: var(--secondary);
    color: var(--primary);
}

.faq-accordion .accordion-button:focus {
    box-shadow: 0 0 0 3px rgba(194, 24, 91, 0.2);
}

.faq-accordion .accordion-button::after {
    filter: hue-rotate(120deg);
}

.faq-accordion .accordion-body {
    color: var(--text-muted);
    padding: 22px 26px;
    font-size: 15px;
}

/* ============ CONTACT ============ */
.contact-info-card {
    background: var(--grad-primary);
    border-radius: var(--radius);
    padding: 40px 34px;
    color: var(--white);
    height: 100%;
    box-shadow: var(--shadow-soft);
}

.contact-info-card h3 {
    color: var(--white);
    font-size: 26px;
    margin-bottom: 28px;
}

.contact-info-list li {
    display: flex;
    gap: 16px;
    margin-bottom: 26px;
}

.ci-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.contact-info-list strong {
    display: block;
    margin-bottom: 4px;
    font-size: 15px;
}

.contact-info-list p {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
}

.contact-info-list a {
    color: rgba(255, 255, 255, 0.9);
}

.contact-info-list a:hover {
    color: var(--white);
    text-decoration: underline;
}

.contact-form {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 34px;
    height: 100%;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(252, 228, 236, 0.9);
}

.form-label {
    font-weight: 500;
    font-size: 14px;
    color: var(--text);
}

.form-control,
.form-select {
    border: 1.5px solid #F3D8E3;
    border-radius: 14px;
    padding: 12px 18px;
    font-size: 15px;
    background: #FFFBFC;
    transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(194, 24, 91, 0.12);
    background: var(--white);
}

.form-control.is-invalid,
.form-select.is-invalid {
    border-color: #dc3545;
}

.form-status {
    font-size: 14px;
    font-weight: 500;
}

.form-status.success {
    color: #2E7D32;
}

.form-status.error {
    color: #C62828;
}

.map-wrap {
    overflow: hidden;
    line-height: 0;
}

.map-wrap iframe {
    filter: saturate(0.85) hue-rotate(-10deg);
}

/* ============ FOOTER ============ */
.footer-area {
    background: linear-gradient(160deg, #3E0A2A 0%, #2A0845 100%);
    color: rgba(255, 255, 255, 0.78);
    padding: 90px 0 0;
    position: relative;
    overflow: hidden;
}

.footer-shape {
    position: absolute;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(194, 24, 91, 0.18) 0%, transparent 70%);
    top: -160px;
    right: -140px;
    pointer-events: none;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-brand strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 21px;
    color: var(--white);
}

.footer-brand small {
    font-size: 11px;
    color: #F48FB1;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-desc {
    font-size: 14.5px;
    line-height: 1.8;
    color: #fff;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.85);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.footer-social a:hover {
    background: var(--grad-primary);
    color: var(--white);
    transform: translateY(-4px);
}

.footer-title {
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 17px;
    margin-bottom: 22px;
}

.footer-links li {
    margin-bottom: 11px;
}

.footer-links a {
    color: rgb(255, 255, 255);
    font-size: 14.5px;
    position: relative;
}

.footer-links a::before {
    content: '›';
    margin-right: 8px;
    color: #F48FB1;
}

.footer-links a:hover {
    color: #F48FB1;
    padding-left: 5px;
}

.newsletter-group {
    display: flex;
    gap: 8px;
}

.newsletter-group .form-control {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.newsletter-group .form-control::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.newsletter-group .form-control:focus {
    background: rgba(255, 255, 255, 0.12);
}

.newsletter-group .btn {
    padding: 12px 18px;
    border-radius: 14px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 60px;
    padding: 24px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
    font-size: 13.5px;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.72);
}

.footer-bottom a:hover {
    color: #F48FB1;
}

.footer-bottom p {
    margin: 0;
}

/* ============ WHATSAPP FLOAT ============ */
.whatsapp-float {
    position: fixed;
    bottom: 26px;
    left: 26px;
    z-index: 1040;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25D366;
    color: var(--white);
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
    animation: pulseWa 2.4s infinite;
}

.whatsapp-float:hover {
    color: var(--white);
    transform: scale(1.12);
}

@keyframes pulseWa {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    70% {
        box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ============ BACK TO TOP ============ */
.back-to-top {
    position: fixed;
    bottom: 26px;
    right: 26px;
    z-index: 1040;
    width: 50px;
    height: 50px;
    border-radius: 16px;
    border: none;
    background: var(--grad-primary);
    color: var(--white);
    font-size: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: var(--transition);
    box-shadow: 0 10px 24px rgba(194, 24, 91, 0.4);
}

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

.back-to-top:hover {
    transform: translateY(-5px);
}

/* ============ APPOINTMENT MODAL ============ */
.appointment-modal .modal-content {
    border: none;
    border-radius: var(--radius);
    overflow: hidden;
}

.appointment-modal .modal-header {
    background: var(--grad-primary);
    border: none;
    padding: 22px 28px;
}

.appointment-modal .modal-title {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 22px;
}

.appointment-modal .btn-close {
    filter: invert(1);
    opacity: 0.9;
}

.appointment-modal .modal-body {
    padding: 28px;
}

.modal-sub {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 22px;
}

/* ============ ACCESSIBILITY: FOCUS + REDUCED MOTION ============ */
a:focus-visible,
button:focus-visible {
    outline: 3px solid rgba(194, 24, 91, 0.5);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ============ SELECTION ============ */
::selection {
    background: var(--primary);
    color: var(--white);
}


/* Logo */

.logo-img {
    max-width: 100%;
    height: auto;
    max-height: 60px;
    /* Desktop */
    object-fit: contain;
    border-radius: 10px;
}

.details-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center 20%; /* ya top */
    border-radius: 25px;
    display: block;
}

.phone-icon{
    width:30px;
    height:30px;
    background:#fff;
    color:#b0188e;
    border-radius:50%;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    margin-right:6px;
    animation:ring 1.5s infinite;
    margin-top: 10px;
}

@keyframes ring{
    0%,100%{transform:rotate(0deg);}
    10%{transform:rotate(12deg);}
    20%{transform:rotate(-12deg);}
    30%{transform:rotate(12deg);}
    40%{transform:rotate(-12deg);}
    50%{transform:rotate(0);}
}


