/* ========================================
   PREMIER CLINIC — DESIGN SYSTEM (2026)
   Dark premium medical website
   ======================================== */

/* ---------- CSS Variables ---------- */
:root {
    /* Background tones */
    --bg-primary: #06070a;
    --bg-secondary: #0c0e14;
    --bg-card: rgba(15, 18, 30, .65);
    --bg-card-hover: rgba(20, 24, 42, .8);
    --bg-glass: rgba(255, 255, 255, .04);
    --bg-glass-hover: rgba(255, 255, 255, .07);

    /* Text */
    --text-primary: #f0f2f5;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;

    /* Accent palette */
    --accent-indigo: #818cf8;
    --accent-violet: #a78bfa;
    --accent-cyan: #22d3ee;
    --accent-emerald: #34d399;
    --accent-rose: #fb7185;
    --accent-amber: #fbbf24;

    /* Gradient */
    --grad-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 40%, #06b6d4 100%);
    --grad-glow: linear-gradient(135deg, rgba(99, 102, 241, .5), rgba(6, 182, 212, .5));
    --grad-card-border: linear-gradient(135deg, rgba(99, 102, 241, .3), rgba(6, 182, 212, .15), rgba(99, 102, 241, .05));

    /* Borders / Misc */
    --border-subtle: rgba(255, 255, 255, .06);
    --border-accent: rgba(99, 102, 241, .3);
    --radius-sm: .5rem;
    --radius-md: .875rem;
    --radius-lg: 1.25rem;
    --radius-xl: 1.75rem;
    --radius-full: 100px;
    --shadow-glow: 0 0 40px rgba(99, 102, 241, .15);
    --shadow-card: 0 4px 30px rgba(0, 0, 0, .25);
    --transition: .35s cubic-bezier(.4, 0, .2, 1);
    --transition-fast: .2s ease;

    /* Spacing */
    --section-py: 7rem;
    --container-max: 1240px;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 5rem;
    -webkit-font-smoothing: antialiased
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast)
}

ul {
    list-style: none
}

img {
    max-width: 100%;
    display: block
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font: inherit;
    color: inherit
}

/* ---------- Container ---------- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem
}

/* ---------- Cursor Glow (desktop) ---------- */
.cursor-glow {
    position: fixed;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(99, 102, 241, .08) 0%, transparent 70%);
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 0;
    transition: transform .05s linear;
    display: none;
}

@media(hover:hover) {
    .cursor-glow {
        display: block
    }
}

/* ========================================
   NAVBAR
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    background: transparent;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(6, 7, 10, .85);
    backdrop-filter: blur(20px) saturate(1.6);
    -webkit-backdrop-filter: blur(20px) saturate(1.6);
    border-bottom: 1px solid var(--border-subtle);
    padding: .6rem 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 1001;
    transition: var(--transition-fast);
}

.logo:hover {
    transform: scale(1.02);
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    padding: 10px;
    transition: var(--transition-fast);
}

.logo:hover .logo-icon {
    background: #f8fafc;
    border-color: rgba(99, 102, 241, 0.35);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.logo-icon svg,
.logo-img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    filter: drop-shadow(0 0 4px rgba(99, 102, 241, 0.3));
    transition: var(--transition-fast);
}

.logo:hover .logo-icon svg,
.logo:hover .logo-img {
    filter: drop-shadow(0 0 8px rgba(99, 102, 241, 0.5));
    transform: scale(1.08);
}

.logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -.02em;
    color: var(--text-primary)
}

.logo-accent {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

/* Nav Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: .25rem
}

.nav-link {
    padding: .55rem 1rem;
    border-radius: var(--radius-full);
    font-size: .9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition-fast);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
    background: var(--bg-glass-hover)
}

/* Nav CTA */
.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .55rem 1.25rem;
    border-radius: var(--radius-full);
    font-size: .9rem;
    font-weight: 600;
    background: var(--grad-primary);
    color: #fff;
    box-shadow: 0 0 20px rgba(99, 102, 241, .3);
    transition: var(--transition);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 28px rgba(99, 102, 241, .45)
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    z-index: 1001;
    padding: 4px 0
}

.hamburger span {
    display: block;
    height: 2.5px;
    border-radius: 2px;
    background: var(--text-primary);
    transition: var(--transition)
}

.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px)
}

.hamburger.open span:nth-child(2) {
    opacity: 0
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px)
}

/* Mobile Overlay */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .6);
    backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.mobile-overlay.active {
    opacity: 1;
    pointer-events: all
}

@media(max-width:900px) {
    .hamburger {
        display: flex
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -320px;
        width: 300px;
        height: 100vh;
        flex-direction: column;
        align-items: flex-start;
        gap: .4rem;
        background: var(--bg-secondary);
        border-left: 1px solid var(--border-subtle);
        padding: 5rem 1.5rem 2rem;
        z-index: 999;
        transition: var(--transition);
    }

    .nav-links.open {
        right: 0
    }

    .nav-link {
        width: 100%;
        padding: .8rem 1rem
    }

    .nav-cta {
        width: 100%;
        justify-content: center;
        margin-top: .5rem
    }
}

/* ========================================
   HERO
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
    overflow: hidden;
}

.hero-canvas {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none
}

.hero-gradient-orbs {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: .35
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: #6366f1;
    top: -15%;
    left: -10%;
    animation: orbFloat 18s ease-in-out infinite
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: #06b6d4;
    bottom: -10%;
    right: -8%;
    animation: orbFloat 22s ease-in-out infinite reverse
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: #8b5cf6;
    top: 40%;
    left: 50%;
    animation: orbFloat 15s ease-in-out infinite 3s
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1)
    }

    33% {
        transform: translate(40px, -30px) scale(1.05)
    }

    66% {
        transform: translate(-20px, 25px) scale(.95)
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Hero Left */
.hero-left {
    max-width: 600px
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    padding: .45rem 1.1rem;
    border-radius: var(--radius-full);
    background: var(--bg-glass);
    border: 1px solid var(--border-accent);
    font-size: .82rem;
    font-weight: 500;
    color: var(--accent-indigo);
    margin-bottom: 1.5rem;
}

.badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent-emerald);
    box-shadow: 0 0 8px var(--accent-emerald);
    animation: pulse 2s ease-in-out infinite
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: .5;
        transform: scale(1.4)
    }
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -.03em;
    margin-bottom: 1.25rem;
}

.gradient-text {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 520px
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-weight: 600;
    font-size: .95rem;
    border-radius: var(--radius-full);
    transition: var(--transition);
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.btn-primary {
    padding: .85rem 2rem;
    background: var(--grad-primary);
    color: #fff;
    box-shadow: 0 4px 24px rgba(99, 102, 241, .3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 36px rgba(99, 102, 241, .45)
}

.btn-glow {
    position: relative;
    overflow: hidden
}

.btn-glow::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .15), transparent);
    transform: translateX(-100%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%)
    }

    50%,
    100% {
        transform: translateX(100%)
    }
}

.btn-glass {
    padding: .85rem 2rem;
    background: var(--bg-glass);
    color: var(--text-primary);
    border: 1px solid var(--border-subtle);
    backdrop-filter: blur(8px);
}

.btn-glass:hover {
    background: var(--bg-glass-hover);
    border-color: var(--border-accent)
}

.btn-lg {
    padding: 1rem 2.4rem;
    font-size: 1.05rem
}

.btn-white {
    padding: .85rem 2rem;
    background: #fff;
    color: var(--bg-primary);
    font-weight: 700;
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, .2)
}

.btn-glass-cta {
    padding: .85rem 2rem;
    background: rgba(255, 255, 255, .1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .2);
    backdrop-filter: blur(8px);
}

.btn-glass-cta:hover {
    background: rgba(255, 255, 255, .18)
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem
}

/* Hero Metrics */
.hero-metrics {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap
}

.metric {
    text-align: center
}

.metric-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.metric-suffix {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent-cyan)
}

.metric-label {
    display: block;
    font-size: .8rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: .1rem
}

.metric-divider {
    width: 1px;
    height: 36px;
    background: var(--border-subtle)
}

/* Hero Right – Visual */
.hero-right {
    display: flex;
    justify-content: center;
    align-items: center
}

.hero-visual-container {
    position: relative;
    width: 380px;
    height: 380px;
}

.hero-ring {
    position: absolute;
    border-radius: 50%;
    border: 1.5px solid;
    animation: spinSlow 30s linear infinite;
}

.ring-outer {
    inset: -10px;
    border-color: rgba(99, 102, 241, .2);
    border-right-color: var(--accent-indigo);
}

.ring-inner {
    inset: 30px;
    border-color: rgba(6, 182, 212, .15);
    border-top-color: var(--accent-cyan);
    animation-direction: reverse;
    animation-duration: 22s;
}

@keyframes spinSlow {
    to {
        transform: rotate(360deg)
    }
}

.hero-center-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--bg-card);
    border: 1px solid var(--border-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 60px rgba(99, 102, 241, .2);
}

.hero-center-icon svg {
    width: 48px;
    height: 48px
}

/* Floating Cards */
.float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .65rem 1rem;
    border-radius: var(--radius-md);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-card);
    white-space: nowrap;
    z-index: 3;
}

.float-card .fc-icon {
    font-size: 1.4rem
}

.float-card .fc-info {
    display: flex;
    flex-direction: column;
    line-height: 1.2
}

.float-card .fc-info strong {
    font-size: .8rem;
    font-weight: 600
}

.float-card .fc-info small {
    font-size: .68rem;
    color: var(--text-muted)
}

.fc-1 {
    top: 8%;
    left: -5%;
    animation: floatCard 6s ease-in-out infinite
}

.fc-2 {
    top: 12%;
    right: -8%;
    animation: floatCard 7s ease-in-out infinite .5s
}

.fc-3 {
    bottom: 12%;
    left: -8%;
    animation: floatCard 5.5s ease-in-out infinite 1s
}

.fc-4 {
    bottom: 6%;
    right: -3%;
    animation: floatCard 6.5s ease-in-out infinite 1.5s
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-12px)
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    z-index: 2;
}

.scroll-mouse {
    width: 24px;
    height: 38px;
    border-radius: 12px;
    border: 2px solid var(--border-accent);
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.scroll-wheel {
    width: 3px;
    height: 8px;
    border-radius: 2px;
    background: var(--accent-indigo);
    animation: scrollAnim 2s ease-in-out infinite
}

@keyframes scrollAnim {
    0% {
        opacity: 1;
        transform: translateY(0)
    }

    100% {
        opacity: 0;
        transform: translateY(14px)
    }
}

.scroll-indicator span {
    font-size: .7rem;
    color: var(--text-muted);
    letter-spacing: .08em;
    text-transform: uppercase
}

@media(max-width:900px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem
    }

    .hero-left {
        max-width: none;
        display: flex;
        flex-direction: column;
        align-items: center
    }

    .hero-desc {
        max-width: none
    }

    .hero-actions {
        justify-content: center
    }

    .hero-metrics {
        justify-content: center
    }

    .hero-right {
        order: -1
    }

    .hero-visual-container {
        width: 280px;
        height: 280px
    }

    .float-card {
        display: none
    }

    .scroll-indicator {
        display: none
    }
}

@media(max-width:480px) {
    .hero {
        padding: 7rem 0 3rem;
        min-height: auto
    }

    .hero-title {
        font-size: 2rem
    }

    .hero-visual-container {
        width: 200px;
        height: 200px
    }
}

/* ========================================
   SECTION COMMONS
   ======================================== */
.section {
    padding: var(--section-py) 0;
    position: relative
}

.section-alt {
    background: var(--bg-secondary)
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 3.5rem
}

.section-tag {
    display: inline-block;
    padding: .35rem 1rem;
    border-radius: var(--radius-full);
    background: var(--bg-glass);
    border: 1px solid var(--border-accent);
    font-size: .78rem;
    font-weight: 600;
    color: var(--accent-indigo);
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -.02em;
    margin-bottom: .85rem;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto
}

/* ========================================
   SERVICES GRID
   ======================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    position: relative;
    padding: 2rem;
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    transition: var(--transition);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    color: var(--text-primary);
}

.service-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-6px);
    box-shadow: var(--shadow-glow);
}

.sc-glow {
    position: absolute;
    top: -60%;
    right: -30%;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.service-card:hover .sc-glow {
    opacity: 1
}

.service-card[data-color="indigo"] .sc-glow {
    background: radial-gradient(circle, rgba(99, 102, 241, .12), transparent 70%)
}

.service-card[data-color="emerald"] .sc-glow {
    background: radial-gradient(circle, rgba(52, 211, 153, .12), transparent 70%)
}

.service-card[data-color="violet"] .sc-glow {
    background: radial-gradient(circle, rgba(167, 139, 250, .12), transparent 70%)
}

.service-card[data-color="cyan"] .sc-glow {
    background: radial-gradient(circle, rgba(34, 211, 238, .12), transparent 70%)
}

.service-card[data-color="rose"] .sc-glow {
    background: radial-gradient(circle, rgba(251, 113, 133, .12), transparent 70%)
}

.service-card[data-color="amber"] .sc-glow {
    background: radial-gradient(circle, rgba(251, 191, 36, .12), transparent 70%)
}

.sc-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    border: 1px solid var(--border-subtle);
    background: var(--bg-glass);
}

.sc-icon svg {
    width: 28px;
    height: 28px
}

.service-card[data-color="indigo"] .sc-icon {
    color: var(--accent-indigo)
}

.service-card[data-color="emerald"] .sc-icon {
    color: var(--accent-emerald)
}

.service-card[data-color="violet"] .sc-icon {
    color: var(--accent-violet)
}

.service-card[data-color="cyan"] .sc-icon {
    color: var(--accent-cyan)
}

.service-card[data-color="rose"] .sc-icon {
    color: var(--accent-rose)
}

.service-card[data-color="amber"] .sc-icon {
    color: var(--accent-amber)
}

.service-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: .6rem
}

.service-card p {
    color: var(--text-secondary);
    font-size: .92rem;
    flex: 1;
    margin-bottom: 1rem
}

.sc-link {
    font-size: .88rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: .3rem;
    transition: var(--transition-fast);
}

.service-card[data-color="indigo"] .sc-link {
    color: var(--accent-indigo)
}

.service-card[data-color="emerald"] .sc-link {
    color: var(--accent-emerald)
}

.service-card[data-color="violet"] .sc-link {
    color: var(--accent-violet)
}

.service-card[data-color="cyan"] .sc-link {
    color: var(--accent-cyan)
}

.service-card[data-color="rose"] .sc-link {
    color: var(--accent-rose)
}

.service-card[data-color="amber"] .sc-link {
    color: var(--accent-amber)
}

.sc-link span {
    transition: var(--transition-fast);
    display: inline-block
}

.service-card:hover .sc-link span {
    transform: translateX(4px)
}

@media(max-width:900px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:600px) {
    .services-grid {
        grid-template-columns: 1fr
    }
}

/* ========================================
   DIAGNOSTICS — TEST CHIPS
   ======================================== */
.filter-bar {
    display: flex;
    gap: .5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.filter-btn {
    padding: .5rem 1.15rem;
    border-radius: var(--radius-full);
    font-size: .82rem;
    font-weight: 600;
    color: var(--text-secondary);
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    transition: var(--transition);
}

.filter-btn:hover {
    color: var(--text-primary);
    border-color: var(--border-accent)
}

.filter-btn.active {
    background: var(--grad-primary);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 0 18px rgba(99, 102, 241, .3);
}

.tests-grid {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
    justify-content: center;
}

.test-chip {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    padding: .6rem 1.15rem;
    border-radius: var(--radius-full);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    font-size: .88rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
    cursor: default;
}

.test-chip:hover {
    border-color: var(--border-accent);
    color: var(--text-primary);
    transform: translateY(-2px)
}

.test-chip.hidden {
    display: none
}

.chip-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0
}

.chip-dot.blood {
    background: var(--accent-rose)
}

.chip-dot.metabolic {
    background: var(--accent-emerald)
}

.chip-dot.vitamin {
    background: var(--accent-amber)
}

.chip-dot.imaging {
    background: var(--accent-cyan)
}

.chip-dot.infection {
    background: var(--accent-violet)
}

/* ========================================
   PHARMACY
   ======================================== */
.pharmacy-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.pharmacy-desc {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 2rem
}

.pharma-features {
    display: flex;
    flex-direction: column;
    gap: 1.1rem
}

.pharma-features li {
    display: flex;
    align-items: flex-start;
    gap: .85rem
}

.pf-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 2px;
    background: linear-gradient(135deg, rgba(52, 211, 153, .15), rgba(6, 182, 212, .15));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-emerald);
}

.pf-icon svg {
    width: 14px;
    height: 14px
}

.pharma-features li div:last-child {
    display: flex;
    flex-direction: column
}

.pharma-features li strong {
    font-size: .95rem;
    font-weight: 600;
    margin-bottom: .1rem
}

.pharma-features li span {
    font-size: .82rem;
    color: var(--text-muted)
}

/* Pharmacy Visual */
.pharmacy-visual {
    display: flex;
    justify-content: center;
    align-items: center
}

.pharma-showcase {
    position: relative;
    width: 340px;
    height: 340px;
}

.pharma-bg-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1.5px dashed rgba(99, 102, 241, .2);
    animation: spinSlow 40s linear infinite;
}

.pharma-center-pill {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border-accent);
    box-shadow: 0 0 60px rgba(99, 102, 241, .15);
}

.pharma-orbit-item {
    position: absolute;
    font-size: 1.8rem;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-card);
    animation: floatCard 5s ease-in-out infinite;
}

.orbit-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s
}

.orbit-2 {
    top: 18%;
    right: 2%;
    animation-delay: .4s
}

.orbit-3 {
    bottom: 18%;
    right: 2%;
    animation-delay: .8s
}

.orbit-4 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 1.2s
}

.orbit-5 {
    bottom: 18%;
    left: 2%;
    animation-delay: 1.6s
}

.orbit-6 {
    top: 18%;
    left: 2%;
    animation-delay: 2s
}

@media(max-width:900px) {
    .pharmacy-layout {
        grid-template-columns: 1fr;
        text-align: center
    }

    .section-title[style] {
        text-align: center !important
    }

    .pharmacy-desc,
    .section-desc[style] {
        text-align: center !important
    }

    .pharma-features {
        align-items: center
    }

    .pharma-features li {
        text-align: left;
        max-width: 340px
    }

    .pharmacy-visual {
        margin-top: 2rem
    }

    .pharma-showcase {
        width: 260px;
        height: 260px
    }
}

/* ========================================
   DOCTORS
   ======================================== */
.doctors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1280px;
    margin: 0 auto;
}

@media(max-width: 1024px) {
    .doctors-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 820px
    }
}

.doctor-card {
    padding: 2rem;
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    transition: var(--transition);
}

.doctor-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow)
}

.dc-top {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem
}

.dc-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-indigo), var(--accent-cyan));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
    position: relative;
    flex-shrink: 0;
}

.dc-avatar.emerald {
    background: linear-gradient(135deg, var(--accent-emerald), var(--accent-cyan))
}

.dc-status {
    position: absolute;
    bottom: 1px;
    right: 1px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent-emerald);
    border: 2.5px solid var(--bg-card);
}

.dc-info h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: .15rem
}

.dc-specialty {
    font-size: .82rem;
    color: var(--accent-indigo);
    font-weight: 600
}

.dc-bio {
    font-size: .9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem
}

.dc-tags {
    display: flex;
    gap: .4rem;
    flex-wrap: wrap;
    margin-bottom: 1.25rem
}

.dc-tags span {
    padding: .25rem .7rem;
    border-radius: var(--radius-full);
    font-size: .72rem;
    font-weight: 500;
    color: var(--text-muted);
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
}

.btn-outline-card {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .6rem 1.3rem;
    border-radius: var(--radius-full);
    font-size: .85rem;
    font-weight: 600;
    border: 1px solid var(--border-accent);
    color: var(--accent-indigo);
    background: transparent;
    transition: var(--transition);
}

.btn-outline-card:hover {
    background: var(--grad-primary);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 0 20px rgba(99, 102, 241, .3);
}

@media(max-width:600px) {
    .doctors-grid {
        grid-template-columns: 1fr
    }
}

/* ========================================
   BLOG SECTION
   ======================================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.blog-card {
    display: flex;
    flex-direction: column;
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
}

.blog-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
}

.blog-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, var(--accent-indigo), var(--accent-cyan));
}

.blog-image svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-category {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    color: var(--accent-indigo);
    margin-bottom: 0.75rem;
    width: fit-content;
}

.blog-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    line-height: 1.4;
}

.blog-date {
    font-size: 0.8rem;
    color: var(--accent-indigo);
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.blog-excerpt {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
    flex: 1;
}

.blog-read-more {
    display: inline-block;
    color: var(--accent-indigo);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    text-decoration: none;
}

.blog-read-more:hover {
    color: var(--accent-cyan);
    transform: translateX(4px);
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
    background: var(--grad-primary);
}

.cta-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridShift 20s linear infinite;
}

@keyframes gridShift {
    to {
        background-position: 60px 60px
    }
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1
}

.cta-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: #fff;
}

.cta-content h2 .gradient-text {
    background: linear-gradient(135deg, #fbbf24, #fb7185);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, .8);
    max-width: 520px;
    margin: 0 auto 2rem
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap
}

/* ========================================
   CONTACT
   ======================================== */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-card {
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    transition: var(--transition);
}

.contact-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-4px)
}

.cc-icon {
    font-size: 2.2rem;
    margin-bottom: .85rem
}

.contact-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: .5rem
}

.contact-card p {
    font-size: .9rem;
    color: var(--text-secondary);
    line-height: 1.6
}

.map-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-subtle)
}

.map-wrap iframe {
    display: block;
    width: 100%;
    height: 380px
}

@media(max-width:700px) {
    .contact-grid {
        grid-template-columns: 1fr
    }
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    padding: 4rem 0 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 2.5rem;
    padding-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1rem;
}

.footer-logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    padding: 8px;
    flex-shrink: 0;
    transition: var(--transition-fast);
}

.footer-logo:hover .footer-logo-icon {
    background: #f8fafc;
    border-color: rgba(99, 102, 241, 0.35);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.footer-logo-icon svg,
.footer-logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: drop-shadow(0 0 3px rgba(99, 102, 241, 0.3));
    transition: var(--transition-fast);
}

.footer-logo:hover .footer-logo-icon svg,
.footer-logo:hover .footer-logo-img {
    filter: drop-shadow(0 0 6px rgba(99, 102, 241, 0.5));
    transform: scale(1.08);
}

.footer-logo-image {
    width: 28px;
    height: 28px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

.footer-logo span {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 700
}

.footer-logo span {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 700
}

.footer-brand p {
    font-size: .88rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 280px
}

.footer-col h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: .95rem;
    font-weight: 700;
    margin-bottom: 1rem
}

.footer-col a {
    display: block;
    font-size: .88rem;
    color: var(--text-muted);
    margin-bottom: .55rem;
    transition: var(--transition-fast)
}

.footer-col a:hover {
    color: var(--accent-indigo);
    transform: translateX(3px)
}

.footer-col p {
    font-size: .88rem;
    color: var(--text-muted);
    line-height: 1.6
}

.footer-bottom {
    padding: 1.25rem 0;
    text-align: center;
    border-top: 1px solid var(--border-subtle);
}

.footer-bottom p {
    font-size: .82rem;
    color: var(--text-muted)
}

@media(max-width:800px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 2rem
    }
}

@media(max-width:500px) {
    .footer-top {
        grid-template-columns: 1fr
    }
}

/* ========================================
   BACK TO TOP
   ======================================== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-indigo);
    box-shadow: var(--shadow-card);
    z-index: 900;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: var(--transition);
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0)
}

.back-to-top:hover {
    background: var(--grad-primary);
    color: #fff;
    transform: translateY(-3px)
}

/* ========================================
   WHATSAPP FLOAT BUTTON
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 5rem;
    right: 2rem;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    z-index: 899;
    text-decoration: none;
    transition: var(--transition);
}

.whatsapp-float:hover {
    background: #1da851;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
}

/* ========================================
   REVEAL ANIMATIONS
   ======================================== */
.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s cubic-bezier(.4, 0, .2, 1), transform .7s cubic-bezier(.4, 0, .2, 1);
}

.reveal-up.revealed {
    opacity: 1;
    transform: translateY(0)
}

/* ========================================
   SELECTION
   ======================================== */
::selection {
    background: rgba(99, 102, 241, .3);
    color: #fff
}

/* ========================================
   SCROLLBAR
   ======================================== */
::-webkit-scrollbar {
    width: 8px;
    background: var(--bg-primary)
}

::-webkit-scrollbar-thumb {
    background: rgba(99, 102, 241, .3);
    border-radius: 4px
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(99, 102, 241, .5)
}

/* ========================================
   CONTACT LINKS
   ======================================== */
.contact-link {
    color: var(--accent-indigo);
    font-weight: 600;
    transition: var(--transition-fast);
    display: inline-block;
}

.contact-link:hover {
    color: var(--accent-cyan);
    transform: translateX(2px)
}

/* ========================================
   ENHANCED RESPONSIVE DESIGN
   ======================================== */

/* Tablets & Medium Screens (768px - 900px) */
@media(max-width: 768px) {
    :root {
        --section-py: 5rem
    }

    .container {
        padding: 0 1.25rem
    }

    .hero-title {
        font-size: clamp(1.8rem, 5vw, 2.8rem)
    }

    .section-title {
        font-size: clamp(1.6rem, 4vw, 2.4rem)
    }

    .btn-lg {
        padding: 0.9rem 2rem;
        font-size: 0.95rem
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem
    }

    .blog-image {
        height: 180px
    }

    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem
    }

    .map-wrap iframe {
        height: 300px
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem
    }
}

/* Small Mobile Screens (480px - 630px) */
@media(max-width: 630px) {
    :root {
        --section-py: 4rem
    }

    .container {
        padding: 0 1rem
    }

    .nav-link {
        padding: 0.6rem 0.8rem;
        font-size: 0.85rem
    }

    .nav-cta {
        padding: 0.5rem 1rem;
        font-size: 0.85rem
    }

    .hero {
        padding: 6rem 0 2rem
    }

    .hero-title {
        font-size: 1.6rem
    }

    .hero-metrics {
        flex-direction: column;
        gap: 1rem
    }

    .metric-divider {
        display: none
    }

    .hero-desc {
        font-size: 1rem
    }

    .hero-actions {
        flex-direction: column;
        gap: 0.8rem
    }

    .btn,
    .btn-primary,
    .btn-glass,
    .btn-white,
    .btn-glass-cta,
    .btn-lg {
        width: 100%;
        padding: 0.75rem 1.25rem !important;
        font-size: 0.9rem !important;
        justify-content: center
    }

    .section-header {
        margin-bottom: 2.5rem
    }

    .section-tag {
        font-size: 0.72rem;
        padding: 0.3rem 0.8rem
    }

    .section-subtitle {
        font-size: 0.95rem
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem
    }

    .service-card {
        padding: 1.5rem
    }

    .filter-bar {
        gap: 0.4rem;
        margin-bottom: 2rem
    }

    .filter-btn {
        padding: 0.4rem 0.9rem;
        font-size: 0.75rem
    }

    .tests-grid {
        gap: 0.5rem
    }

    .test-chip {
        padding: 0.5rem 0.9rem;
        font-size: 0.8rem
    }

    .pharmacy-layout {
        gap: 2rem
    }

    .pharma-features {
        gap: 0.9rem
    }

    .pharma-features li {
        max-width: 100%
    }

    .pharma-showcase {
        width: 220px;
        height: 220px
    }

    .doctors-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem
    }

    .doctor-card {
        padding: 1.5rem
    }

    .dc-avatar {
        width: 48px;
        height: 48px;
        font-size: 0.9rem
    }

    .dc-info h3 {
        font-size: 1rem
    }

    .dc-specialty {
        font-size: 0.75rem
    }

    .dc-bio {
        font-size: 0.85rem
    }

    .dc-tags {
        gap: 0.3rem
    }

    .dc-tags span {
        font-size: 0.65rem;
        padding: 0.2rem 0.6rem
    }

    .btn-outline-card {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        width: 100%
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem
    }

    .blog-card {
        padding: 0
    }

    .blog-image {
        height: 160px
    }

    .blog-content {
        padding: 1.25rem
    }

    .blog-card h3 {
        font-size: 1rem
    }

    .blog-excerpt {
        font-size: 0.85rem
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1rem
    }

    .contact-card {
        padding: 1.5rem
    }

    .contact-card h3 {
        font-size: 1rem
    }

    .contact-card p {
        font-size: 0.85rem
    }

    .cc-icon {
        font-size: 1.8rem
    }

    .map-wrap iframe {
        height: 250px
    }

    .cta-content h2 {
        font-size: clamp(1.4rem, 4vw, 1.8rem)
    }

    .cta-content p {
        font-size: 0.95rem
    }

    .cta-actions {
        gap: 0.8rem
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 1.5rem
    }

    .footer-logo span {
        font-size: 1rem
    }

    .footer-col h4 {
        font-size: 0.9rem
    }

    .footer-col a,
    .footer-col p {
        font-size: 0.8rem
    }

    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 1.5rem;
        right: 1.5rem
    }

    .back-to-top svg {
        width: 18px;
        height: 18px
    }
}

/* Extra Small Screens (max 480px) */
@media(max-width: 480px) {
    :root {
        --section-py: 3rem
    }

    .container {
        padding: 0 0.875rem
    }

    .navbar {
        padding: 0.8rem 0
    }

    .navbar.scrolled {
        padding: 0.5rem 0
    }

    .nav-container {
        padding: 0 0.875rem
    }

    .logo-text {
        font-size: 1.1rem
    }

    .logo-icon svg {
        width: 32px;
        height: 32px
    }

    .hero {
        padding: 5rem 0 2rem;
        min-height: auto
    }

    .hero-badge {
        margin-bottom: 1rem;
        font-size: 0.75rem
    }

    .hero-title {
        font-size: 1.4rem;
        margin-bottom: 1rem
    }

    .hero-content {
        gap: 2rem
    }

    .hero-visual-container {
        width: 150px;
        height: 150px
    }

    .hero-right {
        order: -1
    }

    .scroll-indicator {
        display: none
    }

    .section {
        padding: 3rem 0
    }

    .section-header {
        margin-bottom: 2rem
    }

    .service-card {
        padding: 1.25rem
    }

    .service-card h3 {
        font-size: 1rem
    }

    .service-card p {
        font-size: 0.8rem
    }

    .sc-icon {
        width: 44px;
        height: 44px
    }

    .sc-icon svg {
        width: 24px;
        height: 24px
    }

    .sc-link {
        font-size: 0.8rem
    }

    .filter-btn {
        padding: 0.35rem 0.75rem;
        font-size: 0.7rem
    }

    .test-chip {
        padding: 0.45rem 0.8rem;
        font-size: 0.75rem
    }

    .chip-dot {
        width: 6px;
        height: 6px
    }

    .pharmacy-desc {
        font-size: 0.95rem;
        margin-bottom: 1.5rem
    }

    .pf-icon {
        width: 24px;
        height: 24px
    }

    .pharma-features li strong {
        font-size: 0.9rem
    }

    .pharma-features li span {
        font-size: 0.75rem
    }

    .pharma-showcase {
        width: 180px;
        height: 180px
    }

    .pharma-orbit-item {
        width: 44px;
        height: 44px;
        font-size: 1.4rem
    }

    .pharma-center-pill {
        width: 80px;
        height: 80px;
        font-size: 3rem
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1rem
    }

    .blog-image {
        height: 140px
    }

    .blog-content {
        padding: 1rem
    }

    .blog-card h3 {
        font-size: 0.95rem;
        margin-bottom: 0.35rem
    }

    .blog-date {
        font-size: 0.7rem;
        margin-bottom: 0.5rem
    }

    .blog-excerpt {
        font-size: 0.8rem;
        margin-bottom: 0.75rem
    }

    .blog-read-more {
        font-size: 0.8rem
    }

    .cta-section {
        padding: 3rem 0
    }

    .cta-content h2 {
        font-size: 1.3rem;
        margin-bottom: 0.75rem
    }

    .cta-content p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem
    }

    .footer {
        padding: 2.5rem 0 0
    }

    .footer-bottom {
        padding: 1rem 0
    }

    .footer-bottom p {
        font-size: 0.75rem
    }
}