/* =============================================================
   ACTYMED HEALTHCARE — Main Stylesheet
   All brand values driven by CSS custom properties (Customizer)
   ============================================================= */

/* ── Design Tokens ───────────────────────────────────────────── */
:root {
    --act-primary:          #E8186D;
    --act-primary-dark:     #c0145a;
    --act-primary-rgb:      232,24,109;
    --act-purple:           #8B1FBF;
    --act-purple-rgb:       139,31,191;
    --act-text:             #1a1a2e;
    --act-muted:            #6b7280;
    --act-white:            #ffffff;
    --act-pink-light:       #fce4ec;
    --act-pink-pale:        #fdf0f5;
    --act-pink-border:      #f48fb1;

    /* Gradient palette */
    --act-bg-gradient:      linear-gradient(135deg, #fff0f7 0%, #f3e8ff 40%, #fce4f5 75%, #fff5f8 100%);
    --act-gradient-light:   linear-gradient(160deg, #fff0f7 0%, #f3e8ff 60%, #fff5fb 100%);
    --act-gradient-brand:   linear-gradient(135deg, #E8186D 0%, #c0145a 40%, #8B1FBF 100%);
    --act-gradient-dark:    linear-gradient(135deg, #1a1a2e 0%, #2d1b4e 55%, #1a1a2e 100%);

    --act-heading-font:     'Inter', -apple-system, sans-serif;
    --act-body-font:        'Inter', -apple-system, sans-serif;
    --act-header-bg:        #ffffff;
    --act-footer-bg:        #1a1a2e;
    --act-footer-text:      #ffffff;
    --act-radius-sm:        8px;
    --act-radius-md:        14px;
    --act-radius-lg:        20px;
    --act-shadow-sm:        0 2px 8px rgba(var(--act-primary-rgb),.08);
    --act-shadow-md:        0 6px 28px rgba(var(--act-primary-rgb),.14);
    --act-shadow-lg:        0 12px 48px rgba(var(--act-primary-rgb),.2);
    --act-transition:       all .22s ease;
    --act-container:        1200px;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--act-body-font); color: var(--act-text); background: var(--act-white); font-size: 16px; line-height: 1.6; }
img  { max-width: 100%; height: auto; display: block; }
a    { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { font-family: var(--act-body-font); cursor: pointer; border: none; background: none; }
h1,h2,h3,h4,h5,h6 { font-family: var(--act-heading-font); line-height: 1.2; }

/* ── Utilities ──────────────────────────────────────────────── */
.act-container   { max-width: var(--act-container); margin: 0 auto; padding: 0 24px; }
.act-highlight   { color: var(--act-primary); }
.act-eyebrow     { display: inline-block; font-size: .8rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--act-primary); margin-bottom: 8px; }
.act-eyebrow--light { color: rgba(232,24,109,.95); }
.act-section-header { text-align: center; margin-bottom: 48px; }
.act-section-header--light .act-section-title { color: var(--act-white); }
.act-section-title  { font-size: clamp(1.6rem,3vw,2.4rem); font-weight: 800; margin-bottom: 12px; }
.act-section-sub    { color: var(--act-muted); font-size: 1.05rem; max-width: 540px; margin: 0 auto; }
.act-section-sub--light { color: rgba(255,255,255,.65); }
.act-tag         { display: inline-block; background: var(--act-pink-light); color: var(--act-primary); font-size: .75rem; font-weight: 700; padding: 3px 10px; border-radius: 50px; }
.act-tag--dark   { background: rgba(232,24,109,.2); color: rgba(232,24,109,.95); }
.act-link-arrow  { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; color: var(--act-primary); font-size: .95rem; transition: var(--act-transition); }
.act-link-arrow:hover { gap: 10px; }

/* ── Buttons ────────────────────────────────────────────────── */
.act-btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px; border-radius: 50px; font-family: var(--act-body-font); font-size: .95rem; font-weight: 600; cursor: pointer; border: 2px solid transparent; transition: var(--act-transition); text-decoration: none; }
.act-btn--primary  { background: var(--act-primary); color: var(--act-white); border-color: var(--act-primary); }
.act-btn--primary:hover { background: var(--act-primary-dark); border-color: var(--act-primary-dark); transform: translateY(-1px); box-shadow: var(--act-shadow-md); }
.act-btn--outline  { background: transparent; color: var(--act-primary); border-color: var(--act-primary); }
.act-btn--outline:hover { background: var(--act-pink-light); }
.act-btn--white    { background: var(--act-white); color: var(--act-primary); border-color: var(--act-white); }
.act-btn--white:hover { background: var(--act-pink-light); border-color: var(--act-pink-light); }
.act-btn--light    { background: transparent; color: var(--act-white); border-color: rgba(255,255,255,.4); }
.act-btn--light:hover { background: rgba(255,255,255,.1); border-color: var(--act-white); }
.act-btn--ghost    { background: transparent; color: var(--act-muted); border-color: transparent; padding-left: 0; }
.act-btn--ghost:hover { color: var(--act-primary); }
.act-btn--lg { padding: 14px 36px; font-size: 1rem; }
.act-btn--sm { padding: 9px 20px; font-size: .875rem; }

/* ── Preloader ──────────────────────────────────────────────── */
.act-preloader { position: fixed; inset: 0; background: var(--act-white); z-index: 9999; display: flex; align-items: center; justify-content: center; transition: opacity .4s ease; }
.act-preloader.is-hidden { opacity: 0; pointer-events: none; }
.act-preloader__inner { width: 40px; height: 40px; border: 3px solid var(--act-pink-light); border-top-color: var(--act-primary); border-radius: 50%; animation: actSpin .7s linear infinite; }
@keyframes actSpin { to { transform: rotate(360deg); } }

/* =============================================================
   HEADER
   ============================================================= */
.site-header { background: var(--act-header-bg); border-bottom: 1px solid rgba(var(--act-primary-rgb),.1); position: relative; z-index: 100; transition: var(--act-transition); }
.site-header.is-sticky { position: sticky; top: 0; box-shadow: var(--act-shadow-sm); }
.site-header.is-transparent { background: transparent; border-color: transparent; position: absolute; width: 100%; }
.site-header.is-transparent.scrolled { background: var(--act-header-bg); box-shadow: var(--act-shadow-sm); position: fixed; border-color: rgba(var(--act-primary-rgb),.1); }

/* Top bar */
.act-topbar { background: var(--act-pink-pale); padding: 6px 0; font-size: .8rem; border-bottom: 1px solid var(--act-pink-light); }
.act-topbar .act-container { display: flex; justify-content: space-between; align-items: center; }
.act-topbar__phone a { color: var(--act-text); font-weight: 600; }
.act-topbar__phone a:hover { color: var(--act-primary); }

/* Header main */
.act-header-main { padding: 14px 0; }
.act-header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.act-header-inner.layout-centered { flex-direction: column; text-align: center; padding: 16px 0 8px; }
.act-header-inner.layout-centered .act-nav { width: 100%; }
.act-header-inner.layout-centered .act-nav__menu { justify-content: center; }

/* Logo */
.act-logo a img, .act-logo .custom-logo { max-height: 60px; width: auto; }
.act-logo__text { font-family: var(--act-heading-font); font-size: 1.5rem; font-weight: 800; color: var(--act-primary); }

/* Primary nav */
.act-nav__menu { display: flex; align-items: center; gap: 4px; }
.act-nav__menu li { position: relative; }
.act-nav__menu > li > a { display: block; padding: 8px 14px; font-size: .9rem; font-weight: 600; color: var(--act-text); border-radius: var(--act-radius-sm); transition: var(--act-transition); }
.act-nav__menu > li > a:hover,
.act-nav__menu > li.current-menu-item > a,
.act-nav__menu > li.current-menu-ancestor > a { color: var(--act-primary); background: var(--act-pink-pale); }

/* Dropdown */
.act-dropdown { position: absolute; top: 100%; left: 0; background: var(--act-white); border: 1px solid var(--act-pink-light); border-radius: var(--act-radius-md); min-width: 200px; box-shadow: var(--act-shadow-md); opacity: 0; visibility: hidden; transform: translateY(6px); transition: var(--act-transition); z-index: 200; padding: 8px 0; }
.act-nav__menu li:hover > .act-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.act-dropdown li a { display: block; padding: 9px 18px; font-size: .875rem; color: var(--act-text); transition: var(--act-transition); }
.act-dropdown li a:hover { color: var(--act-primary); background: var(--act-pink-pale); }

/* Header CTA + hamburger */
.act-header-cta { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.act-hamburger { display: none; flex-direction: column; gap: 5px; width: 30px; padding: 4px; }
.act-hamburger span { display: block; height: 2px; background: var(--act-text); border-radius: 2px; transition: var(--act-transition); }
.act-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.act-hamburger.is-open span:nth-child(2) { opacity: 0; }
.act-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.act-mobile-menu { position: fixed; top: 0; right: -100%; width: min(320px, 80vw); height: 100vh; background: var(--act-white); z-index: 500; box-shadow: var(--act-shadow-md); padding: 80px 24px 32px; transition: right .3s ease; overflow-y: auto; }
.act-mobile-menu.is-open { right: 0; }
.act-mobile-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.4); z-index: 499; opacity: 0; visibility: hidden; transition: var(--act-transition); }
.act-mobile-overlay.is-visible { opacity: 1; visibility: visible; }
.act-mobile-menu__list li a { display: block; padding: 12px 0; font-size: 1.05rem; font-weight: 600; border-bottom: 1px solid var(--act-pink-light); color: var(--act-text); }
.act-mobile-menu__list li a:hover { color: var(--act-primary); }
.act-mobile-menu__cta { margin-top: 24px; }
.act-mobile-menu__cta .act-btn { width: 100%; justify-content: center; }

/* Social icons */
.actymed-social { display: flex; gap: 8px; }
.actymed-social li a { display: flex; align-items: center; justify-content: center; width: 30px; height: 30px; border-radius: 50%; background: var(--act-pink-pale); color: var(--act-primary); font-size: .9rem; transition: var(--act-transition); }
.actymed-social li a:hover { background: var(--act-primary); color: var(--act-white); }

/* =============================================================
   BREADCRUMBS
   ============================================================= */
.actymed-breadcrumb { font-size: .85rem; color: var(--act-muted); margin-bottom: 24px; }
.actymed-breadcrumb a { color: var(--act-primary); }
.actymed-breadcrumb span { margin: 0 6px; }

/* =============================================================
   HERO
   ============================================================= */
.act-hero { background: var(--act-bg-gradient); padding: 90px 0 70px; overflow: hidden; position: relative; }
.act-hero::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139,31,191,.07) 0%, transparent 65%);
    top: -200px; right: -100px;
    pointer-events: none;
}
.act-hero__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; }
.act-hero__badge { display: inline-block; background: var(--act-white); color: var(--act-primary); border: 1px solid var(--act-pink-border); border-radius: 50px; padding: 6px 18px; font-size: .8rem; font-weight: 600; margin-bottom: 20px; box-shadow: var(--act-shadow-sm); }
.act-hero__title { font-size: clamp(2.2rem,4.5vw,3.6rem); font-weight: 800; line-height: 1.15; margin-bottom: 20px; }
.act-hero__desc { font-size: 1.1rem; color: var(--act-muted); line-height: 1.7; margin-bottom: 32px; max-width: 480px; }
.act-hero__actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }

/* Hero stats — 4 items with dividers */
.act-hero__stats { display: flex; align-items: center; gap: 0; flex-wrap: wrap; }
.act-stat { display: flex; flex-direction: column; padding: 0 20px; }
.act-stat:first-child { padding-left: 0; }
.act-stat strong { font-size: 1.75rem; font-weight: 800; color: var(--act-primary); line-height: 1; background: var(--act-gradient-brand); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.act-stat span { font-size: .78rem; color: var(--act-muted); margin-top: 4px; white-space: nowrap; }
.act-stat-divider { width: 1px; height: 36px; background: rgba(var(--act-primary-rgb),.2); flex-shrink: 0; }

/* Hero image */
.act-hero__image { display: flex; justify-content: center; align-items: center; }
.act-hero__image img { max-height: 480px; object-fit: contain; filter: drop-shadow(0 20px 40px rgba(var(--act-primary-rgb),.2)); }
.act-hero__image-placeholder {
    width: 100%;
    height: 420px;
    background: linear-gradient(135deg, #fce4ec 0%, #f3e8ff 60%, #fce4f5 100%);
    border-radius: var(--act-radius-lg);
    position: relative;
    overflow: hidden;
}
.act-hero__image-placeholder::before {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 220px; height: 300px;
    background: linear-gradient(to top, rgba(232,24,109,.22), rgba(139,31,191,.1) 70%, transparent);
    border-radius: 110px 110px 0 0;
}
.act-hero__image-placeholder::after {
    content: '';
    position: absolute;
    bottom: 246px; left: 50%;
    transform: translateX(-50%);
    width: 80px; height: 80px;
    background: rgba(232,24,109,.18);
    border-radius: 50%;
}

/* =============================================================
   BOOKING
   ============================================================= */
.act-booking { padding: 80px 0; background: var(--act-bg-gradient); }
.act-booking-cta { background: var(--act-white); border-radius: var(--act-radius-lg); box-shadow: var(--act-shadow-md); border: 1px solid var(--act-pink-light); padding: 56px 60px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.act-booking-cta__title { font-size: clamp(1.6rem,2.5vw,2.2rem); font-weight: 800; margin-bottom: 14px; }
.act-booking-cta__sub { color: var(--act-muted); font-size: 1rem; line-height: 1.7; margin-bottom: 32px; }
.act-booking-steps-visual { display: flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap; }
.act-bstep { display: flex; flex-direction: column; align-items: center; gap: 10px; min-width: 80px; }
.act-bstep__num { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1rem; background: var(--act-gradient-brand); color: var(--act-white); box-shadow: 0 4px 12px rgba(var(--act-primary-rgb),.3); }
.act-bstep__label { font-size: .78rem; font-weight: 600; color: var(--act-muted); text-align: center; line-height: 1.4; }
.act-bstep__arrow { font-size: 1.8rem; color: var(--act-pink-border); line-height: 1; margin-bottom: 20px; }

/* =============================================================
   SERVICES
   ============================================================= */
.act-services { padding: 90px 0; background: var(--act-white); }

/* Department filter tabs */
.act-dept-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 36px; justify-content: center; }
.act-dept-tab { padding: 9px 22px; border-radius: 50px; border: 2px solid var(--act-pink-border); font-weight: 600; font-size: .875rem; color: var(--act-muted); background: var(--act-white); cursor: pointer; transition: var(--act-transition); }
.act-dept-tab.is-active, .act-dept-tab:hover { background: var(--act-primary); border-color: var(--act-primary); color: var(--act-white); }

/* Services grid */
.act-services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }

/* Service card */
.act-service-card { border-radius: var(--act-radius-lg); overflow: hidden; background: var(--act-white); box-shadow: var(--act-shadow-sm); border: 1px solid #f3e0e8; transition: var(--act-transition); }
.act-service-card:hover { transform: translateY(-5px); box-shadow: var(--act-shadow-lg); border-color: rgba(var(--act-primary-rgb),.2); }
.act-service-card__image { height: 200px; overflow: hidden; position: relative; background: var(--act-pink-light); }
.act-service-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.act-service-card:hover .act-service-card__image img { transform: scale(1.05); }

/* Gradient placeholders — each card gets a slightly different hue */
.act-service-card__image--placeholder { background: linear-gradient(135deg, #fff0f7 0%, #f3e8ff 100%); }
.act-service-card:nth-child(2) .act-service-card__image--placeholder { background: linear-gradient(135deg, #fce4ec 0%, #fce4f5 100%); }
.act-service-card:nth-child(3) .act-service-card__image--placeholder { background: linear-gradient(135deg, #f3e8ff 0%, #fce4ec 100%); }
.act-service-card:nth-child(4) .act-service-card__image--placeholder { background: linear-gradient(135deg, #ffeeff 0%, #fce4ec 100%); }
.act-service-card:nth-child(5) .act-service-card__image--placeholder { background: linear-gradient(135deg, #fff0f7 0%, #e8d0ff 100%); }
.act-service-card:nth-child(6) .act-service-card__image--placeholder { background: linear-gradient(135deg, #fce4ec 0%, #f3e8ff 100%); }

/* Icon wrap inside placeholder */
.act-service-card__icon-wrap { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; }
.act-service-card__icon-wrap svg { width: 72px; height: 72px; }

.act-service-card__tag { position: absolute; bottom: 14px; left: 14px; background: rgba(255,255,255,.92); color: var(--act-primary); font-size: .72rem; font-weight: 700; padding: 4px 12px; border-radius: 50px; letter-spacing: .06em; text-transform: uppercase; backdrop-filter: blur(4px); }
.act-service-card__body { padding: 22px 24px; }
.act-service-card__body h3 { font-size: 1.1rem; font-weight: 700; line-height: 1.3; margin-bottom: 10px; }
.act-service-card__body p { font-size: .875rem; color: var(--act-muted); line-height: 1.65; margin-bottom: 14px; }

/* Services view-all */
.act-services-footer { text-align: center; margin-top: 44px; }

/* =============================================================
   DOCTORS SLIDER
   ============================================================= */
.act-doctors {
    padding: 90px 0;
    background: var(--act-gradient-dark);
    position: relative;
    overflow: hidden;
}
.act-doctors::before {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232,24,109,.12) 0%, transparent 65%);
    top: -150px; right: -100px;
    pointer-events: none;
}
.act-doctors::after {
    content: '';
    position: absolute;
    width: 360px; height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139,31,191,.1) 0%, transparent 65%);
    bottom: -80px; left: 8%;
    pointer-events: none;
}

/* Slider wrapper + controls */
.act-doctors-slider-wrap { position: relative; padding: 0 56px; }
.act-doctors-slider {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
}
.act-doctors-slider::-webkit-scrollbar { display: none; }

/* Doctor card (slide) */
.act-doctor-slide {
    flex: 0 0 calc(33.333% - 16px);
    scroll-snap-align: start;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--act-radius-lg);
    overflow: hidden;
    transition: var(--act-transition);
    backdrop-filter: blur(8px);
}
.act-doctor-slide:hover { background: rgba(255,255,255,.1); border-color: rgba(232,24,109,.45); transform: translateY(-5px); }

/* Doctor photo */
.act-doctor-slide__photo {
    height: 280px;
    position: relative;
    overflow: hidden;
    background: var(--act-gradient-brand);
}
.act-doctor-slide__photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform .4s ease; }
.act-doctor-slide:hover .act-doctor-slide__photo img { transform: scale(1.04); }

.act-doctor-slide__photo-placeholder {
    width: 100%; height: 100%;
    background: var(--act-gradient-brand);
    position: relative; overflow: hidden;
}
.act-doctor-slide__photo-placeholder::before {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 150px; height: 190px;
    background: rgba(255,255,255,.16);
    border-radius: 75px 75px 0 0;
}
.act-doctor-slide__photo-placeholder::after {
    content: '';
    position: absolute;
    bottom: 140px; left: 50%;
    transform: translateX(-50%);
    width: 64px; height: 64px;
    background: rgba(255,255,255,.22);
    border-radius: 50%;
}

.act-doctor-slide__exp-badge {
    position: absolute; top: 14px; right: 14px;
    background: rgba(232,24,109,.92);
    color: #fff; font-size: .72rem; font-weight: 700;
    padding: 4px 10px; border-radius: 50px; letter-spacing: .04em;
    backdrop-filter: blur(4px);
}

.act-doctor-slide__info { padding: 20px 22px 24px; }
.act-doctor-slide__info h3 { color: var(--act-white); font-size: 1.15rem; font-weight: 700; margin: 8px 0 6px; }
.act-doctor-slide__qual { color: rgba(255,255,255,.6); font-size: .85rem; margin-bottom: 16px; line-height: 1.5; }

/* Slider navigation buttons */
.act-slider-btn {
    position: absolute; top: 50%; transform: translateY(-60%);
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(232,24,109,.85); color: #fff;
    font-size: 1.6rem; line-height: 1;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; border: none; z-index: 10;
    transition: var(--act-transition);
    box-shadow: 0 4px 16px rgba(232,24,109,.35);
}
.act-slider-btn:hover { background: var(--act-primary); transform: translateY(-60%) scale(1.08); }
.act-slider-btn:disabled { opacity: .3; cursor: default; }
.act-slider-btn--prev { left: 0; }
.act-slider-btn--next { right: 0; }

/* Slider dots */
.act-slider-dots { display: flex; justify-content: center; gap: 8px; margin-top: 24px; }
.act-slider-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(255,255,255,.25); border: none;
    cursor: pointer; transition: var(--act-transition); padding: 0;
}
.act-slider-dot.is-active { background: var(--act-primary); width: 24px; border-radius: 4px; }

.act-doctors-footer { text-align: center; margin-top: 36px; }

/* =============================================================
   ABOUT
   ============================================================= */
.act-about { padding: 90px 0; background: var(--act-bg-gradient); }
.act-about__inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 70px; align-items: center; }
.act-about__image { position: relative; }
.act-about__image img { border-radius: var(--act-radius-lg); width: 100%; object-fit: cover; max-height: 500px; box-shadow: var(--act-shadow-md); }
.act-about__image-placeholder { width: 100%; height: 460px; background: linear-gradient(135deg,#fce4ec 0%,#f3e8ff 100%); border-radius: var(--act-radius-lg); }
.act-about__badge { position: absolute; bottom: -16px; right: -16px; background: var(--act-gradient-brand); color: var(--act-white); padding: 16px 20px; border-radius: var(--act-radius-md); text-align: center; box-shadow: var(--act-shadow-md); }
.act-about__badge strong { display: block; font-weight: 700; font-size: .95rem; }
.act-about__badge span { font-size: .78rem; opacity: .88; }
.act-about__content h2 { font-size: clamp(1.8rem,3vw,2.8rem); font-weight: 800; margin-bottom: 16px; }
.act-about__lead { font-size: 1.1rem; color: var(--act-muted); line-height: 1.7; margin-bottom: 24px; }
.act-about__bio { margin-bottom: 24px; color: var(--act-muted); line-height: 1.7; }

/* =============================================================
   TESTIMONIALS
   ============================================================= */
.act-testimonials { padding: 90px 0; background: var(--act-white); }
.act-testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.act-testimonial-card { background: var(--act-white); padding: 28px; border-radius: var(--act-radius-md); box-shadow: var(--act-shadow-sm); border: 1px solid var(--act-pink-light); display: flex; flex-direction: column; gap: 14px; transition: var(--act-transition); }
.act-testimonial-card:hover { box-shadow: var(--act-shadow-md); transform: translateY(-3px); }
.act-testimonial-stars { color: var(--act-primary); font-size: 1rem; letter-spacing: 2px; }
.act-testimonial-card > p { font-size: .9rem; color: var(--act-muted); line-height: 1.7; font-style: italic; flex: 1; }
.act-testimonial-author { display: flex; align-items: center; gap: 12px; }
.act-testimonial-author img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.act-testimonial-author strong { display: block; font-size: .9rem; font-weight: 700; }
.act-testimonial-author span { font-size: .78rem; color: var(--act-muted); }

/* =============================================================
   LOCATIONS
   ============================================================= */
.act-locations { padding: 90px 0; background: var(--act-bg-gradient); }
.act-locations-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }

.act-location-card { border-radius: var(--act-radius-lg); overflow: hidden; background: var(--act-white); box-shadow: var(--act-shadow-md); transition: var(--act-transition); }
.act-location-card:hover { transform: translateY(-5px); box-shadow: var(--act-shadow-lg); }

/* Accent bar — 3 distinct gradients */
.act-location-card__accent { padding: 22px 28px 18px; display: flex; align-items: center; justify-content: space-between; color: #fff; }
.act-location-card--1 .act-location-card__accent { background: linear-gradient(135deg, #E8186D 0%, #d01460 100%); }
.act-location-card--2 .act-location-card__accent { background: linear-gradient(135deg, #c0145a 0%, #8B1FBF 100%); }
.act-location-card--3 .act-location-card__accent { background: linear-gradient(135deg, #7B1FA2 0%, #4a1580 100%); }

.act-location-card__num { font-size: 3.2rem; font-weight: 900; line-height: 1; opacity: .22; font-variant-numeric: tabular-nums; }
.act-location-card__pin { opacity: .85; flex-shrink: 0; }

.act-location-card__body { padding: 24px 28px 28px; }
.act-location-card__title { font-size: 1.18rem; font-weight: 700; color: var(--act-text); margin-bottom: 16px; }

.act-location-card__detail { display: flex; align-items: flex-start; gap: 10px; font-size: .875rem; color: var(--act-muted); margin-bottom: 10px; line-height: 1.5; }
.act-location-card__detail svg { flex-shrink: 0; margin-top: 2px; color: var(--act-primary); }
.act-location-card__detail a { color: var(--act-muted); transition: var(--act-transition); }
.act-location-card__detail a:hover { color: var(--act-primary); }
.act-location-card__body .act-btn { margin-top: 18px; }

/* =============================================================
   BLOG
   ============================================================= */
.act-blog { padding: 90px 0; background: var(--act-white); }
.act-blog__header { display: flex; justify-content: space-between; align-items: center; text-align: left; margin-bottom: 48px; }
.act-blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.act-blog-card { border-radius: var(--act-radius-md); overflow: hidden; border: 1px solid #f0e0e8; background: var(--act-white); transition: var(--act-transition); }
.act-blog-card:hover { box-shadow: var(--act-shadow-md); transform: translateY(-3px); }
.act-blog-card__image { display: block; height: 200px; overflow: hidden; background: var(--act-pink-light); }
.act-blog-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.act-blog-card:hover .act-blog-card__image img { transform: scale(1.04); }
.act-blog-card__body { padding: 20px 22px; }
.act-blog-card__date { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--act-primary); display: block; margin-bottom: 8px; }
.act-blog-card__body h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; line-height: 1.4; }
.act-blog-card__body h3 a, .act-blog-card__body h2 a { color: var(--act-text); }
.act-blog-card__body h3 a:hover, .act-blog-card__body h2 a:hover { color: var(--act-primary); }
.act-blog-card__body p { font-size: .85rem; color: var(--act-muted); margin-bottom: 14px; line-height: 1.6; }

/* =============================================================
   CTA BANNER
   ============================================================= */
.act-cta-banner { padding: 80px 0; background: var(--act-gradient-brand); position: relative; overflow: hidden; }
.act-cta-banner::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(255,255,255,.1) 0%, transparent 60%);
    pointer-events: none;
}
.act-cta-banner__inner { text-align: center; color: var(--act-white); position: relative; }
.act-cta-banner__inner h2 { font-size: clamp(1.6rem,3vw,2.4rem); font-weight: 800; margin-bottom: 12px; }
.act-cta-banner__inner p { font-size: 1.05rem; opacity: .9; margin-bottom: 32px; }

/* =============================================================
   FOOTER
   ============================================================= */
.act-footer-widgets { background: var(--act-footer-bg); color: var(--act-footer-text); padding: 64px 0 40px; }
.act-footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 40px; }
.cols-2 .act-footer-grid { grid-template-columns: 1fr 1fr; }
.cols-3 .act-footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
.act-footer-brand__name { font-size: 1.4rem; font-weight: 800; color: var(--act-white); display: block; margin-bottom: 12px; }
.act-footer-brand .custom-logo { max-height: 50px; filter: brightness(0) invert(1); margin-bottom: 12px; }
.act-footer-brand__desc { font-size: .875rem; opacity: .75; line-height: 1.65; margin-bottom: 20px; }
.act-footer-social.act-footer-social { gap: 10px; margin-top: 4px; }
.act-footer-social li a { background: rgba(255,255,255,.12); color: var(--act-white); }
.act-footer-social li a:hover { background: var(--act-primary); }
.site-footer .widget-title { font-size: 1rem; font-weight: 700; color: var(--act-white); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--act-primary); display: inline-block; }
.site-footer .widget { color: rgba(255,255,255,.75); font-size: .875rem; line-height: 1.7; }
.site-footer .widget a { color: rgba(255,255,255,.75); transition: var(--act-transition); }
.site-footer .widget a:hover { color: var(--act-primary); }

/* Opening hours */
.actymed-hours-list { display: flex; flex-direction: column; gap: 6px; }
.actymed-hours-row { display: flex; justify-content: space-between; font-size: .85rem; }
.actymed-hours-row.is-closed .hours { color: #ef4444; }

/* Contact list */
.actymed-contact-list { display: flex; flex-direction: column; gap: 10px; }
.actymed-contact-list li { display: flex; align-items: flex-start; gap: 10px; font-size: .875rem; }
.contact-icon { flex-shrink: 0; }

/* Recent posts widget */
.actymed-recent-posts { display: flex; flex-direction: column; gap: 12px; }
.actymed-recent-posts li a { display: flex; align-items: flex-start; gap: 10px; font-size: .85rem; }
.actymed-recent-posts li a img { width: 56px; height: 56px; object-fit: cover; border-radius: var(--act-radius-sm); flex-shrink: 0; }

/* Footer bottom bar */
.act-footer-bottom { background: rgba(0,0,0,.2); padding: 14px 0; }
.act-footer-bottom__inner { display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.act-footer-copyright { font-size: .8rem; color: rgba(255,255,255,.6); }
.act-footer-nav__list { display: flex; gap: 20px; }
.act-footer-nav__list a { font-size: .8rem; color: rgba(255,255,255,.6); transition: var(--act-transition); }
.act-footer-nav__list a:hover { color: var(--act-white); }

/* =============================================================
   BACK TO TOP + WHATSAPP FLOAT
   ============================================================= */
.act-back-top { position: fixed; bottom: 24px; right: 24px; width: 44px; height: 44px; background: var(--act-primary); color: var(--act-white); border-radius: 50%; font-size: 1.1rem; display: flex; align-items: center; justify-content: center; box-shadow: var(--act-shadow-md); opacity: 0; visibility: hidden; transform: translateY(10px); transition: var(--act-transition); z-index: 300; }
.act-back-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.act-back-top:hover { background: var(--act-primary-dark); }
.act-whatsapp-float { position: fixed; bottom: 76px; right: 24px; width: 52px; height: 52px; background: #25D366; color: var(--act-white); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(37,211,102,.4); z-index: 300; transition: var(--act-transition); }
.act-whatsapp-float:hover { transform: scale(1.08); }
.act-whatsapp-float svg { width: 28px; height: 28px; }

/* =============================================================
   PAGE TEMPLATES
   ============================================================= */
.act-blog-archive { padding: 60px 0; }
.act-archive-header { text-align: center; margin-bottom: 40px; }
.act-pagination { margin-top: 48px; }
.act-pagination .page-numbers { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.act-pagination .page-numbers li a,
.act-pagination .page-numbers li span { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; border: 2px solid var(--act-pink-border); color: var(--act-text); font-weight: 600; transition: var(--act-transition); }
.act-pagination .page-numbers li .current,
.act-pagination .page-numbers li a:hover { background: var(--act-primary); border-color: var(--act-primary); color: var(--act-white); }

/* Single post */
.act-single-layout { display: grid; grid-template-columns: 1fr 300px; gap: 48px; padding: 60px 24px; }
.act-single-header { margin-bottom: 32px; }
.act-single-meta { display: flex; gap: 16px; font-size: .85rem; color: var(--act-muted); margin-bottom: 12px; }
.act-single-title { font-size: clamp(1.8rem,3vw,2.8rem); font-weight: 800; margin-bottom: 24px; }
.act-single-thumb { border-radius: var(--act-radius-lg); overflow: hidden; margin-bottom: 32px; }
.act-single-thumb img { width: 100%; }
.act-single-body { line-height: 1.8; color: var(--act-text); }
.act-single-body p { margin-bottom: 20px; }
.act-single-body h2, .act-single-body h3 { font-weight: 700; margin: 28px 0 14px; }
.act-single-footer { margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--act-pink-light); }
.act-tags { margin-bottom: 24px; }
.act-post-nav { display: flex; justify-content: space-between; gap: 16px; }
.act-post-nav a { color: var(--act-primary); font-weight: 600; }
.act-single-sidebar .widget { margin-bottom: 32px; padding: 20px; border: 1px solid var(--act-pink-light); border-radius: var(--act-radius-md); }
.act-single-sidebar .widget-title { font-size: 1rem; font-weight: 700; color: var(--act-text); margin-bottom: 14px; padding-bottom: 8px; border-bottom: 2px solid var(--act-primary); display: inline-block; }

/* Default page */
.act-page-content { padding: 60px 0; }
.act-page-header { margin-bottom: 32px; }
.act-page-title { font-size: clamp(1.8rem,3vw,2.8rem); font-weight: 800; }
.act-page-body { line-height: 1.8; }
.act-page-body p { margin-bottom: 18px; }
.act-page-body h2, .act-page-body h3 { font-weight: 700; margin: 24px 0 12px; }

/* Doctors page */
.act-doctors-page { padding: 60px 0; }
.act-filter-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 36px; }
.act-filter-tab { padding: 8px 18px; border-radius: 50px; border: 2px solid var(--act-pink-border); font-weight: 600; font-size: .875rem; color: var(--act-muted); transition: var(--act-transition); }
.act-filter-tab.is-active, .act-filter-tab:hover { background: var(--act-primary); border-color: var(--act-primary); color: var(--act-white); }
.act-doctors-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.act-doctor-profile-card { border: 1px solid var(--act-pink-light); border-radius: var(--act-radius-lg); overflow: hidden; transition: var(--act-transition); background: var(--act-white); }
.act-doctor-profile-card:hover { box-shadow: var(--act-shadow-md); transform: translateY(-3px); }
.act-doctor-profile-card__photo { height: 260px; overflow: hidden; background: var(--act-pink-light); }
.act-doctor-profile-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.act-doctor-profile-card__photo-placeholder { width: 100%; height: 100%; background: var(--act-bg-gradient); }
.act-doctor-profile-card__info { padding: 20px; }
.act-doctor-profile-card__info h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.act-doctor-spec, .act-doctor-exp { font-size: .85rem; color: var(--act-muted); margin: 4px 0; }
.act-doctor-profile-card__info .act-btn { margin-top: 14px; }

/* Contact page */
.act-contact-page { padding: 60px 0; }
.act-contact-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: start; margin-bottom: 48px; }
.act-contact-info h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 20px; }
.act-contact-info h4 { font-size: 1rem; font-weight: 700; margin: 24px 0 12px; }
.act-contact-booking { margin-top: 24px; }
.act-form-row { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.act-form-row label { font-size: .85rem; font-weight: 600; }
.act-form-row input,
.act-form-row textarea,
.act-form-row select { padding: 11px 16px; border: 1.5px solid #e5e7eb; border-radius: var(--act-radius-sm); font-family: var(--act-body-font); font-size: .95rem; color: var(--act-text); outline: none; transition: var(--act-transition); background: var(--act-white); resize: vertical; }
.act-form-row input:focus,
.act-form-row textarea:focus,
.act-form-row select:focus { border-color: var(--act-primary); box-shadow: 0 0 0 3px rgba(var(--act-primary-rgb),.1); }
.act-form-msg { margin-top: 12px; font-size: .9rem; font-weight: 600; }
.act-form-msg.success { color: #16a34a; }
.act-form-msg.error { color: #dc2626; }
.act-map-wrap { border-radius: var(--act-radius-lg); overflow: hidden; }

/* 404 */
.act-404 { text-align: center; padding: 100px 24px; }
.act-404__num { font-size: 8rem; font-weight: 900; color: var(--act-pink-light); line-height: 1; margin-bottom: 16px; }
.act-404 h1 { font-size: 2rem; margin-bottom: 12px; }
.act-404 p { color: var(--act-muted); margin-bottom: 28px; }

/* Gutenberg */
.entry-content img { border-radius: var(--act-radius-sm); }
.entry-content .wp-block-quote { border-left: 4px solid var(--act-primary); padding-left: 20px; color: var(--act-muted); font-style: italic; margin: 24px 0; }

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 1024px) {
    .act-services-grid { grid-template-columns: repeat(2,1fr); }
    .act-doctors-grid  { grid-template-columns: repeat(2,1fr); }
    .act-booking-cta   { gap: 40px; padding: 40px; }
    .act-footer-grid   { grid-template-columns: 1fr 1fr; }
    .act-single-layout { grid-template-columns: 1fr; }
    .act-single-sidebar { display: none; }
    .act-locations-grid { grid-template-columns: repeat(2,1fr); gap: 20px; }
    .act-doctors-slider-wrap { padding: 0 48px; }
    .act-doctor-slide  { flex: 0 0 calc(50% - 12px); }
}

@media (max-width: 768px) {
    .act-hamburger { display: flex; }
    .act-nav { display: none; }
    .act-header-inner.layout-centered { flex-direction: row; }

    .act-hero__inner  { grid-template-columns: 1fr; }
    .act-hero__image  { display: none; }
    .act-hero__stats  { gap: 0; row-gap: 12px; flex-wrap: wrap; }
    .act-stat-divider { display: none; }
    .act-stat { padding: 0 12px; flex: 1; min-width: 90px; }
    .act-stat:first-child { padding-left: 0; }

    .act-booking-cta { grid-template-columns: 1fr; padding: 32px 24px; gap: 32px; text-align: center; }

    .act-about__inner { grid-template-columns: 1fr; }
    .act-about__badge { position: relative; bottom: auto; right: auto; margin-top: 16px; }

    .act-services-grid,
    .act-testimonials-grid,
    .act-blog-grid { grid-template-columns: 1fr; }

    .act-locations-grid { grid-template-columns: 1fr; }

    .act-doctors-slider-wrap { padding: 0 40px; }
    .act-doctor-slide { flex: 0 0 calc(100% - 0px); }

    .act-footer-grid { grid-template-columns: 1fr; }
    .act-footer-bottom__inner { flex-direction: column; text-align: center; }

    .act-blog__header { flex-direction: column; gap: 12px; text-align: center; }
    .act-contact-layout { grid-template-columns: 1fr; }
    .act-doctors-grid { grid-template-columns: 1fr; }
    .act-dept-tabs { justify-content: flex-start; }
}

@media (max-width: 480px) {
    .act-hero__actions { flex-direction: column; }
    .act-bstep { min-width: 60px; }
    .act-bstep__num { width: 36px; height: 36px; font-size: .85rem; }
    .act-404__num { font-size: 5rem; }
    .act-doctors-slider-wrap { padding: 0 32px; }
    .act-slider-btn { width: 36px; height: 36px; font-size: 1.3rem; }
}
