/* ═══════════════════════════════════════════════════════════════
   Care to Cure — Frontend Styles
   ═══════════════════════════════════════════════════════════════ */

:root {
    --blue:      #0056b3;
    --blue-dark: #004494;
    --pink:      #ff6b9d;
    --pink-dark: #ff4785;
    --bg:        #eef2f6;
    --white:     #ffffff;
    --text:      #1f2937;
    --text-mid:  #4b5563;
    --text-light:#6b7280;
    --radius-xl: 28px;
    --radius-lg: 20px;
    --radius-md: 14px;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
    --shadow:    0 6px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
    --mob-footer-h: 64px;
    --transition: 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--bg);
    color: var(--text);
    padding: 20px;
    padding-bottom: 20px; /* desktop — no sticky footer space needed */
}

/* ── FLOATING BUTTONS (desktop only) ────────────────────────── */
.float-btn {
    position: fixed;
    bottom: 30px;
    width: 56px; height: 56px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 22px;
    z-index: 900;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
    text-decoration: none;
}
.float-btn:hover { transform: scale(1.12) rotate(-8deg); box-shadow: var(--shadow-lg); }
.float-call { left: 28px;  background: #1d4ed8; }
.float-wa   { right: 28px; background: #16a34a; }

/* ── POPOUT DOCTOR IMAGE ─────────────────────────────────────── */
.popout-container {
    position: relative;
    width: 100%;
    height: 340px;
    overflow: visible;
}
.popout-frame {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 75%;
    background: var(--white);
    border-radius: 36px;
    box-shadow: var(--shadow-sm);
    z-index: 1;
}
.profile-img {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%; height: 100%;
    z-index: 2;
    border-bottom: 5px solid white;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.1));
    transition: all 0.4s ease;
    object-fit: contain;
}
.popout-container:hover .profile-img {
    transform: translateX(-50%) scale(1.05);
    border-bottom: 0;
    filter: drop-shadow(0 15px 25px rgba(255,107,157,0.4));
}

/* ── INFO PILLS (qualifications) ─────────────────────────────── */
.info-pill {
    background: var(--white);
    color: var(--text-mid);
    border-radius: 18px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid #e5e7eb;
    transition: all var(--transition);
    width: 100%;
}
.info-pill i {
    color: var(--pink);
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: color var(--transition);
}
.info-pill:hover {
    transform: translateX(8px);
    background: var(--blue);
    color: white;
    border-color: var(--blue);
}
.info-pill:hover i { color: white; }

/* ── SERVICE CARDS ───────────────────────────────────────────── */
.work-card {
    background: var(--white);
    border-radius: 22px;
    box-shadow: var(--shadow-sm);
    border-left: 5px solid var(--pink);
    transition: all var(--transition);
}
.work-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-left-color: var(--blue);
}
.action-btn {
    display: inline-block;
    background: var(--blue);
    color: white;
    border-radius: 10px;
    padding: 6px 16px;
    font-size: 0.75rem;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
}
.action-btn:hover         { background: var(--blue-dark); transform: scale(1.05); color: white; }
.action-btn.pink          { background: var(--pink); }
.action-btn.pink:hover    { background: var(--pink-dark); }

/* ── SECTION CARDS ───────────────────────────────────────────── */
.section-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid #f3f4f6;
}

/* ── AWARDS SLIDER ───────────────────────────────────────────── */
.slider-container {
    overflow: hidden;
    width: 100%;
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
}
.slider-track {
    display: flex;
    gap: 14px;
    animation: autoScroll 22s linear infinite;
}
.slider-track:hover { animation-play-state: paused; }
.slide {
    width: 150px; height: 100px;
    border-radius: 14px;
    object-fit: cover;
    background: #e2e8f0;
    flex-shrink: 0;
}
@keyframes autoScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ── VIDEO CARD ──────────────────────────────────────────────── */
.video-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid #f3f4f6;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.video-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: #1a1f2e;
    cursor: pointer;
    overflow: hidden;
}
.video-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.video-thumb:hover img { transform: scale(1.04); }
.video-play-btn {
    position: absolute;
    inset: 0;
    display: flex; align-items: center; justify-content: center;
    background: rgba(0,0,0,0.3);
    transition: background var(--transition);
}
.video-thumb:hover .video-play-btn { background: rgba(0,0,0,0.5); }
.video-play-btn span {
    width: 52px; height: 52px;
    background: rgba(255,255,255,0.95);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    color: var(--blue);
    padding-left: 4px;
    box-shadow: var(--shadow);
    transition: transform var(--transition);
}
.video-thumb:hover .video-play-btn span { transform: scale(1.12); }

/* ── BLOG CARD ───────────────────────────────────────────────── */
.blog-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid #f3f4f6;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all var(--transition);
    text-decoration: none;
    color: inherit;
    height: 100%;
}
.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.blog-thumb {
    width: 100%; height: 180px;
    object-fit: cover;
    background: linear-gradient(135deg, #e8effc, #fdf0f3);
    display: flex; align-items: center; justify-content: center;
    font-size: 40px;
    flex-shrink: 0;
}
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; }
.blog-body { padding: 18px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.blog-service {
    font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.06em;
    color: var(--pink);
}
.blog-title {
    font-size: 15px; font-weight: 700;
    color: var(--text);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog-excerpt {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}
.blog-footer {
    display: flex; align-items: center; justify-content: space-between;
    margin-top: auto; padding-top: 12px;
    border-top: 1px solid #f3f4f6;
    font-size: 12px; color: var(--text-light);
}
.blog-read-more {
    font-size: 12px; font-weight: 700;
    color: var(--blue);
    text-decoration: none;
}
.blog-read-more:hover { color: var(--blue-dark); }

/* ── SECTION TITLE ───────────────────────────────────────────── */
.section-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 4px;
}
.section-title span { color: var(--pink); }
.section-sub {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 18px;
}

/* ── APPOINTMENT FORM ────────────────────────────────────────── */
.appt-input {
    width: 100%;
    padding: 14px 16px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    font-size: 14px;
    font-family: inherit;
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition);
}
.appt-input:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(0,86,179,0.1);
}
.appt-btn {
    width: 100%;
    padding: 14px;
    background: var(--blue);
    color: white;
    border: none;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: all var(--transition);
}
.appt-btn:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: var(--shadow); }

/* ── SITE FOOTER ─────────────────────────────────────────────── */
.site-footer {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 20px;
    text-align: center;
    color: var(--text-light);
    font-size: 13px;
    box-shadow: var(--shadow-sm);
    border: 1px solid #f3f4f6;
    margin-top: 8px;
}

/* ── MOBILE STICKY FOOTER BAR ────────────────────────────────── */
.mobile-footer-bar {
    display: none; /* hidden on desktop */
}

/* ── NOTCH SVG ────────────────────────────────────────────────── */
.mob-footer-notch {
    position: absolute;
    top: 0; left: 0; right: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
}
/* The notch path fill is blue — set via JS dynamically */
.mob-footer-notch path {
    transition: fill 0.35s ease;
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */

/* Tablet */
@media (max-width: 1024px) {
    body { padding: 14px; }
}

/* Mobile */
@media (max-width: 767px) {
    body {
        padding: 10px;
        padding-bottom: calc(var(--mob-footer-h) + 24px);
    }

    /* Hide desktop floating buttons on mobile */
    .float-btn { display: none; }

    /* Popout image smaller on mobile */
    .popout-container { height: 260px; }

    /* Info pills: no slide animation on touch */
    .info-pill:hover { transform: none; }

    /* ── MOBILE STICKY FOOTER BAR ── */
    .mobile-footer-bar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: fixed;
        bottom: 0; left: 0; right: 0;
        height: var(--mob-footer-h);
        background: transparent;
        z-index: 950;
        padding: 0 28px 0 28px;
        padding-bottom: 0;
    }

    /* Center logo wrap */
    .mob-footer-logo-wrap {
        position: relative;
        display: flex;
        align-items: flex-end;
        justify-content: center;
        flex: 0 0 100px;
        height: 100%;
        z-index: 2;
    }

    /* Logo circle */
    /* Flip card container */
    .mob-footer-flip {
        position: relative;
        width: 84px; height: 84px;
        margin-bottom: 2px;
        cursor: pointer;
        transform-style: preserve-3d;
        transition: transform 0.22s cubic-bezier(0.4,0,0.2,1);
        border-radius: 50%;
        box-shadow: 0 -4px 18px rgba(0,0,0,0.18);
        border: 3px solid rgba(255,255,255,0.25);
    }

    /* Each face */
    .mob-flip-face {
        position: absolute;
        inset: 0;
        border-radius: 50%;
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        background: white;
    }

    /* Back face starts rotated 180deg */
    .mob-flip-back {
        transform: rotateY(180deg);
    }

    /* When .mob-flipped added — show back face */
    .mob-flipped .mob-flip-front {
        transform: rotateY(180deg);
    }
    .mob-flipped .mob-flip-back {
        transform: rotateY(0deg);
    }

    /* Old .mob-footer-logo not used anymore but keep for safety */
    .mob-footer-logo { display: none; }

    /* Action buttons — white glow by default */
    .mob-footer-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 48px; height: 48px;
        border-radius: 50%;
        text-decoration: none;
        color: white;
        font-size: 19px;
        z-index: 2;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        box-shadow: 0 0 14px rgba(255,255,255,0.5), 0 4px 12px rgba(0,0,0,0.15);
        flex-shrink: 0;
    }
    .mob-footer-btn:active  { transform: scale(0.92); }
    .mob-footer-btn:hover   {
        transform: scale(1.12) translateY(-3px);
        box-shadow: 0 0 26px rgba(255,255,255,0.9), 0 6px 16px rgba(0,0,0,0.22);
    }
    .mob-footer-call         { background: #1d4ed8; }
    .mob-footer-call:hover   { background: #1e40af; }
    .mob-footer-wa           { background: #16a34a; }
    .mob-footer-wa:hover     { background: #15803d; }

    /* Video + Blog 2-col → single col on small mobile */
    .videos-blogs-grid { grid-template-columns: 1fr !important; }

    /* Blog cards in grid */
    .blog-thumb { height: 150px; }
}

@media (max-width: 400px) {
    .popout-container { height: 220px; }
    .mobile-footer-bar { padding: 0 16px; }
}

/* Video modal */
.video-modal-overlay {
    display: none;
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.85);
    z-index: 9999;
    align-items: center; justify-content: center;
}
.video-modal-overlay.open { display: flex; }
.video-modal-inner {
    position: relative;
    width: 90vw; max-width: 800px;
    aspect-ratio: 16/9;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0,0,0,0.5);
}
.video-modal-inner iframe {
    width: 100%; height: 100%;
    border: none;
}
.video-modal-close {
    position: absolute;
    top: -40px; right: 0;
    background: transparent;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
}

/* ── AWARD ITEMS (awards page) ───────────────────────────────── */
.award-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
    border: 1px solid #f3f4f6;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    cursor: default;
}
.award-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.award-img-wrap {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background: linear-gradient(135deg, #e8effc, #fdf0f3);
    display: flex; align-items: center; justify-content: center;
}
.award-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.award-item:hover .award-img-wrap img { transform: scale(1.06); }
.award-placeholder { font-size: 36px; }
.award-info  { padding: 10px 12px; }
.award-title { font-size: 12px; font-weight: 700; color: var(--text); line-height: 1.3; }
.award-year  { font-size: 11px; color: var(--blue); font-weight: 600; margin-top: 3px; }
.award-org   { font-size: 11px; color: var(--text-light); margin-top: 2px;
               white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.topbar-icon-active span { color: white; }

/* ── PAGE ICON BUTTONS (videos/blogs/awards links in topbar) ─── */

/* Mobile icon strip cards — original small size, untouched */
.page-icon-btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    width: 62px; height: 62px;
    border-radius: 16px;
    text-decoration: none;
    color: var(--text-mid);
    background: var(--bg);
    border: 1px solid #e5e7eb;
    font-size: 22px;
    transition: all 0.22s ease;
    flex-shrink: 0;
}
.page-icon-btn span {
    font-size: 9px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.05em;
    color: var(--text-light);
    line-height: 1;
}
.page-icon-btn:hover {
    background: var(--blue);
    color: white;
    border-color: var(--blue);
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0,86,179,0.22);
}
.page-icon-btn:hover span { color: white; }

/* Small variant — icon strip between image and info card */
.page-icon-sm {
    width: 48px; height: 48px;
    border-radius: 12px;
    font-size: 20px;
    gap: 0;
    flex: 1;
    max-width: 80px;
}

/* ── SERVICE FILTER CHIPS ────────────────────────────────────── */
.filter-chip {
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 12px; font-weight: 600;
    border: 1px solid #e5e7eb;
    background: white;
    color: var(--text-mid);
    cursor: pointer;
    transition: all 0.18s ease;
    white-space: nowrap;
    font-family: inherit;
}
.filter-chip:hover   { background: #eff6ff; color: var(--blue); border-color: #bfdbfe; }
.active-chip         { background: var(--blue); color: white; border-color: var(--blue); }
.active-chip:hover   { background: var(--blue-dark); }

/* Active state for page icon buttons */
.page-icon-active {
    background: var(--blue) !important;
    color: white !important;
    border-color: var(--blue) !important;
}
.page-icon-active span { color: white !important; }

/* ── BLOG LIST ITEM (blogs listing page) ─────────────────────── */
.blog-list-item {
    display: flex;
    gap: 16px;
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 1px solid #f3f4f6;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all var(--transition);
    align-items: flex-start;
}
.blog-list-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: #e0e7ff;
}
.blog-list-item img {
    width: 130px; min-height: 110px;
    object-fit: cover;
    flex-shrink: 0;
    border-radius: var(--radius-xl) 0 0 var(--radius-xl);
}
.blog-list-thumb-placeholder {
    width: 130px; min-height: 110px;
    display: flex; align-items: center; justify-content: center;
    font-size: 36px;
    background: linear-gradient(135deg, #e8effc, #fdf0f3);
    flex-shrink: 0;
    border-radius: var(--radius-xl) 0 0 var(--radius-xl);
}
.blog-list-body {
    padding: 16px 16px 16px 0;
    flex: 1; min-width: 0;
    display: flex; flex-direction: column; gap: 6px;
}
.blog-list-title {
    font-size: 15px; font-weight: 700;
    color: var(--text); line-height: 1.4;
}
.blog-list-meta {
    display: flex; align-items: center; gap: 10px;
    margin-top: auto; font-size: 12px; color: var(--text-light);
}
.blog-list-lang {
    padding: 2px 8px; border-radius: 100px;
    background: #e8effc; color: var(--blue);
    font-size: 10px; font-weight: 700;
}

@media(max-width:767px){
    .blog-list-item img,
    .blog-list-thumb-placeholder { width: 90px; min-height: 90px; }
    .blog-list-title { font-size: 13px; }
    .blog-list-body  { padding: 12px 12px 12px 0; }
}


@media (max-width: 767px) {
    .mob-sticky-icons {
        display: flex;
        position: sticky;
        top: 0;
        z-index: 100;
        background: white;
        border-radius: var(--radius-lg) !important;
        box-shadow: 0 4px 16px rgba(0,0,0,0.1) !important;
    }
    /* When it becomes stuck, add stronger shadow */
    .mob-sticky-icons.stuck {
        border-radius: 0 0 var(--radius-lg) var(--radius-lg) !important;
        box-shadow: 0 6px 20px rgba(0,0,0,0.15) !important;
    }
}

/* ── MOBILE ICON CARDS ───────────────────────────────────────── */
@keyframes iconShake {
    0%,100% { transform: rotate(0deg); }
    25%      { transform: rotate(-12deg) scale(1.15); }
    50%      { transform: rotate(10deg) scale(1.15); }
    75%      { transform: rotate(-6deg) scale(1.08); }
}

/* desktop: hide the entire icon strip */
@media (min-width: 768px) {
    #mob-icon-strip { display: none; }
}

.mob-icon-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex: 1;
    padding: 10px 6px;
    background: white;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    text-decoration: none;
    color: var(--text-light);
    font-size: 22px;
    transition: box-shadow 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.mob-icon-card span {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-light);
}
.mob-icon-card:hover {
    border-color: var(--pink);
    box-shadow: 0 4px 14px rgba(255,107,157,0.2);
    color: var(--pink);
    animation: iconShake 0.45s ease forwards;
}
.mob-icon-card:hover span { color: var(--pink); }

/* Active page */
.mob-icon-active {
    border-color: var(--pink) !important;
    color: var(--pink) !important;
    background: #fff0f5 !important;
}
.mob-icon-active span { color: var(--pink) !important; }

/* Stuck state — blue bar, icons keep their card shape */
.mob-strip-stuck {
    position: fixed !important;
    top: -10px !important;
    left: 0 !important;
    right: 0 !important;
    width: 100vw !important;
    margin: 0 !important;
    z-index: 500;
    background: linear-gradient(135deg, #0056b3, #1a3f7a) !important;
    box-shadow: 0 4px 20px rgba(0,86,179,0.4) !important;
    padding: 10px 16px !important;
    border-radius: 0 !important;
    border: none !important;
    gap: 10px !important;
}
.mob-strip-stuck .mob-icon-card {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.8);
}
.mob-strip-stuck .mob-icon-card span { color: rgba(255,255,255,0.7); }
.mob-strip-stuck .mob-icon-card:hover,
.mob-strip-stuck .mob-icon-active {
    background: rgba(255,107,157,0.25) !important;
    border-color: var(--pink) !important;
    color: white !important;
}
.mob-strip-stuck .mob-icon-card:hover span,
.mob-strip-stuck .mob-icon-active span { color: white !important; }

/* ── TOPBAR LOGO CARD (desktop) ─────────────────────────────── */
.topbar-logo-card {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px; height: 80px;
    background: white;
    border-radius: 20px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    text-decoration: none;
    flex-shrink: 0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.topbar-logo-card:hover {
    transform: scale(1.07);
    box-shadow: 0 4px 16px rgba(0,86,179,0.18);
    border-color: #bfdbfe;
}

/* ── DESKTOP TOPBAR ICON CARDS ──────────────────────────────── */
.topbar-icon-btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 80px; height: 80px;
    border-radius: 20px;
    text-decoration: none;
    color: var(--text-mid);
    background: white;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    font-size: 26px;
    transition: all 0.22s ease;
    flex-shrink: 0;
}
.topbar-icon-btn span {
    font-size: 9px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.05em;
    color: var(--text-light);
    line-height: 1;
}
.topbar-icon-btn:hover {
    background: var(--blue);
    color: white;
    border-color: var(--blue);
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0,86,179,0.22);
}
.topbar-icon-btn:hover span { color: white; }
.topbar-icon-active {
    background: var(--blue) !important;
    color: white !important;
    border-color: var(--blue) !important;
}
.topbar-icon-active span { color: white !important; }

/* ── FOOTER SIDE BUTTONS (Home + Services) ───────────────────── */
@media (max-width: 767px) {
    .mob-footer-side-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px; height: 36px;
        border-radius: 50%;
        text-decoration: none;
        color: rgba(255,255,255,0.85);
        font-size: 17px;
        z-index: 2;
        flex-shrink: 0;
        transition: color 0.2s ease, transform 0.2s ease;
    }
    .mob-footer-side-btn:active { color: var(--pink); transform: scale(1.2); }
}

/* ── SERVICE PILLS ───────────────────────────────────────────── */
.service-pill {
    padding: 10px 8px;
    border-radius: 14px;
    font-size: 12px; font-weight: 600;
    border: 1.5px solid #e5e7eb;
    background: white;
    color: var(--text-mid);
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
    width: 100%;
    text-align: center;
    line-height: 1.3;
}
.service-pill:hover    { border-color: var(--pink); color: var(--pink); background: #fff0f5; }
.service-pill-active   { background: var(--blue); color: white; border-color: var(--blue); }
.service-pill-active:hover { background: var(--blue-dark); border-color: var(--blue-dark); color: white; }

/* ── KEYWORD TAGS ────────────────────────────────────────────── */
.keyword-tag {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 100px;
    background: #eff6ff;
    color: var(--blue);
    font-size: 12px; font-weight: 600;
    border: 1px solid #bfdbfe;
}

/* ── BLOG CONTENT TYPOGRAPHY ─────────────────────────────────── */
.blog-content h2 { font-size:1.15rem; font-weight:800; color:#1f2937; margin:20px 0 8px; }
.blog-content h3 { font-size:1rem;    font-weight:700; color:#1f2937; margin:16px 0 6px; }
.blog-content p  { margin-bottom:12px; }
.blog-content ul, .blog-content ol { padding-left:20px; margin-bottom:12px; }
.blog-content li { margin-bottom:4px; }
.blog-content strong { color:#1f2937; }
