/* ============================================================
   CHERISH HOSPITAL & REHAB CENTER — STYLESHEET
   ============================================================ */

/* ===== CSS VARIABLES ===== */
:root {
    --primary: #1976D2;
    --primary-dark: #1565C0;
    --primary-light: #E3F2FD;
    --accent: #3DAA56;
    --dark: #0D1B2A;
    --text: #334155;
    --text-light: #64748B;
    --white: #FFFFFF;
    --border: #E2E8F0;
    --success: #3DAA56;
    --bg-light: #F8FAFC;
    --gradient: linear-gradient(135deg, #1976D2 0%, #3DAA56 100%);
    --gradient-dark: linear-gradient(135deg, #1565C0 0%, #2E7D32 100%);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.08), 0 2px 4px -1px rgba(0,0,0,0.05);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -2px rgba(0,0,0,0.04);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.08), 0 10px 10px -5px rgba(0,0,0,0.03);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
    font-size: 16px;
}
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
a {
    text-decoration: none;
    color: inherit;
}
ul {
    list-style: none;
}
button {
    font-family: inherit;
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== SECTION LAYOUT ===== */
section {
    padding: 96px 0;
}
.section-header {
    text-align: center;
    margin-bottom: 64px;
}
.section-tag {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 16px;
}
.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 16px;
}
.section-title.light { color: var(--white); }
.section-header p {
    color: var(--text-light);
    font-size: 17px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}
.section-header .light-p {
    color: rgba(255,255,255,0.75);
    font-size: 17px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(27, 79, 216, 0.35);
    white-space: nowrap;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(27, 79, 216, 0.5);
}
.btn-primary.full-width {
    width: 100%;
    justify-content: center;
    border-radius: 12px;
    padding: 16px;
    font-size: 16px;
}
.btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--white);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid rgba(255,255,255,0.55);
    cursor: pointer;
    transition: var(--transition);
}
.btn-outline-white:hover {
    background: rgba(255,255,255,0.12);
    border-color: var(--white);
}
.btn-nav {
    background: var(--gradient);
    color: var(--white);
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    white-space: nowrap;
    box-shadow: 0 2px 10px rgba(27, 79, 216, 0.3);
}
.btn-nav:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(27, 79, 216, 0.45);
}

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--dark);
    padding: 9px 0;
    position: relative;
    z-index: 1001;
}
.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-bar-left {
    display: flex;
    gap: 24px;
}
.top-bar-left a,
.top-bar-right span {
    color: rgba(255,255,255,0.72);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 7px;
    transition: var(--transition);
}
.top-bar-left a:hover { color: var(--white); }
.top-bar-left i, .top-bar-right i { color: var(--accent); font-size: 12px; }

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 37px;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.navbar.scrolled {
    top: 0;
}
.navbar.scrolled {
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 12px 0;
    box-shadow: 0 2px 24px rgba(0,0,0,0.08);
    top: 0;
}
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo img {
    height: 44px;
    width: auto;
    transition: var(--transition);
}
.navbar.scrolled .nav-logo img {
    height: 38px;
}

/* Sidebar-only elements — hidden on desktop */
.nav-menu-header,
.nav-menu-contacts {
    display: none;
}
.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav-links a {
    color: rgba(255,255,255,0.9);
    font-weight: 500;
    font-size: 14px;
    padding: 7px 11px;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
    white-space: nowrap;
}
.navbar.scrolled .nav-links a {
    color: var(--text);
}
.nav-links a:hover {
    background: rgba(255,255,255,0.12);
    color: var(--white);
}
.navbar.scrolled .nav-links a:hover {
    background: var(--primary-light);
    color: var(--primary);
}
.nav-links a.active {
    color: var(--white);
    background: rgba(255,255,255,0.15);
}
.navbar.scrolled .nav-links a.active {
    color: var(--primary);
    background: var(--primary-light);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 6px;
    z-index: 1001;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
    border-radius: 2px;
}
.navbar.scrolled .hamburger span {
    background: var(--dark);
}
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-8px);
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero > .container {
    width: 100%;
    display: flex;
    align-items: center;
}
.hero-bg {
    position: absolute;
    inset: 0;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform-origin: center;
    will-change: transform;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(13, 27, 42, 0.90) 0%,
        rgba(25, 118, 210, 0.65) 55%,
        rgba(61, 170, 86, 0.30) 100%
    );
}
.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 540px;
    color: var(--white);
    padding: 80px 0 40px;
    text-align: left;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(12px);
    color: rgba(255,255,255,0.92);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.25);
    margin-bottom: 18px;
}
.hero-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(30px, 3.8vw, 48px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.3px;
}
.text-accent {
    background: linear-gradient(135deg, #64B5F6, #3DAA56);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-subtitle {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255,255,255,0.82);
    margin-bottom: 28px;
    max-width: 560px;
}
.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}
.hero-tags span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
}
.hero-tags span i {
    color: #66BB6A;
    font-size: 13px;
}
.hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 36px;
    justify-content: flex-start;
}
.hero-stats {
    display: flex;
    align-items: center;
    gap: 0;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.18);
    flex-wrap: nowrap;
    gap: 0;
}
.hero-stat {
    display: flex;
    flex-direction: column;
    padding: 0 20px 0 0;
    flex: 1;
}
.hero-stat:first-child { padding-left: 0; }
.hero-stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.2);
    margin-right: 20px;
    flex-shrink: 0;
}
.stat-num {
    font-size: 26px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}
.stat-label {
    font-size: 11px;
    color: rgba(255,255,255,0.65);
    font-weight: 500;
    margin-top: 3px;
    letter-spacing: 0.3px;
}
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 15px;
    animation: bounceDown 2s ease-in-out infinite;
    transition: var(--transition);
}
.hero-scroll:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.6);
}
@keyframes bounceDown {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-8px); }
}

/* ===== MARKET STRIP ===== */
.market-strip {
    background: var(--gradient);
    padding: 44px 0;
}
.market-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    gap: 0;
}
.market-divider {
    display: none;
}
.market-item {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--white);
    padding: 0 24px;
    border-right: 1px solid rgba(255,255,255,0.2);
}
.market-item:last-child {
    border-right: none;
}
.market-item i {
    font-size: 30px;
    opacity: 0.85;
    flex-shrink: 0;
}
.market-item strong {
    display: block;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.2;
}
.market-item span {
    font-size: 13px;
    opacity: 0.78;
    margin-top: 2px;
    display: block;
}

/* ===== ABOUT ===== */
.about {
    background: var(--bg-light);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-image {
    position: relative;
}
.about-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    width: 100%;
    height: 500px;
    object-fit: cover;
}
.about-badge {
    position: absolute;
    bottom: -22px;
    right: -22px;
    background: var(--gradient);
    color: var(--white);
    padding: 18px 22px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: var(--shadow-xl);
}
.about-badge i {
    font-size: 28px;
}
.about-badge span {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.5;
}
.about-content .section-tag {
    display: block;
    width: fit-content;
    margin-bottom: 16px;
}
.about-text {
    color: var(--text);
    font-size: 16px;
    line-height: 1.85;
    margin-bottom: 20px;
}
.vm-cards {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 32px;
}
.vm-card {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    background: var(--white);
    padding: 22px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary);
    transition: var(--transition);
}
.vm-card:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-lg);
}
.vm-icon {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    background: var(--primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 18px;
    transition: var(--transition);
}
.vm-card:hover .vm-icon {
    background: var(--gradient);
    color: var(--white);
}
.vm-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}
.vm-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.65;
}

/* ===== SERVICES ===== */
.services {
    background: var(--white);
}
.tab-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    margin-bottom: 48px;
}
.tab-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 32px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid var(--border);
    background: var(--white);
    color: var(--text-light);
    transition: var(--transition);
}
.tab-btn.active,
.tab-btn:hover {
    background: var(--gradient);
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 4px 20px rgba(27,79,216,0.28);
}
.tab-content {
    display: none;
}
.tab-content.active {
    display: block;
    animation: fadeSlideUp 0.4s ease;
}
@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border);
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}
.service-img {
    height: 190px;
    overflow: hidden;
}
.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.service-card:hover .service-img img {
    transform: scale(1.08);
}
.service-body {
    padding: 24px;
}
.service-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    margin-bottom: 16px;
    box-shadow: 0 4px 14px rgba(27,79,216,0.3);
}
.service-body h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.3;
}
.service-body p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.65;
}

/* ===== SPECIALIZATIONS ===== */
.specializations {
    background: var(--bg-light);
}
.spec-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 0;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 1px solid var(--border);
}

/* Left tab list */
.spec-tabs-left {
    background: var(--bg-light);
    border-right: 1px solid var(--border);
    overflow-y: auto;
    max-height: 560px;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) transparent;
}
.spec-tabs-left::-webkit-scrollbar { width: 4px; }
.spec-tabs-left::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 2px; }

.spec-tab {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: none;
    border: none;
    border-left: 3px solid transparent;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
    color: var(--text-light);
}
.spec-tab:last-child { border-bottom: none; }
.spec-tab:hover {
    background: var(--primary-light);
    color: var(--primary);
    border-left-color: var(--primary);
}
.spec-tab.active {
    background: var(--white);
    color: var(--primary);
    border-left-color: var(--primary);
    font-weight: 600;
    box-shadow: 2px 0 8px rgba(27,79,216,0.08);
}
.spec-tab-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: var(--primary);
    flex-shrink: 0;
    transition: var(--transition);
}
.spec-tab.active .spec-tab-icon,
.spec-tab:hover .spec-tab-icon {
    background: var(--gradient);
    color: var(--white);
}
.spec-tab span {
    flex: 1;
    font-size: 13.5px;
    line-height: 1.3;
}
.spec-arrow {
    font-size: 11px;
    opacity: 0.4;
    transition: var(--transition);
}
.spec-tab.active .spec-arrow,
.spec-tab:hover .spec-arrow {
    opacity: 1;
    transform: translateX(2px);
}

/* Right panel */
.spec-panel-right {
    position: relative;
    overflow: hidden;
}
.spec-panel {
    display: none;
    animation: fadeSlideUp 0.3s ease;
}
.spec-panel.active {
    display: flex;
    flex-direction: column;
}

/* Panel image */
.spec-panel-img {
    height: 260px;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
}
.spec-panel-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
    display: block;
}
.spec-panel:hover .spec-panel-img img {
    transform: scale(1.04);
}

/* Gradient header bar */
.spec-panel-head {
    background: var(--gradient);
    padding: 18px 28px;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}
.spec-panel-head-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    flex-shrink: 0;
}
.spec-panel-head-text h3 {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 2px;
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
}
.spec-panel-head-text p {
    color: rgba(255,255,255,0.78);
    font-size: 12px;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.spec-panel-body {
    padding: 18px 28px 24px;
    overflow-y: auto;
    flex: 1;
    background: var(--bg-light);
}
.spec-panel-body ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}
.spec-panel-body ul li {
    font-size: 14px;
    color: var(--text);
    line-height: 1.6;
    padding-left: 18px;
    position: relative;
}
.spec-panel-body ul li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.3;
}
.spec-equipment {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: var(--primary-light);
    color: var(--primary);
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.5;
}
.spec-equipment i {
    flex-shrink: 0;
    margin-top: 1px;
}

/* ===== INTEGRATIVE THERAPIES ===== */
.integrative {
    background: var(--dark);
    position: relative;
    overflow: hidden;
}
.integrative::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(27,79,216,0.12) 0%, transparent 70%);
    pointer-events: none;
}
.integrative-tag {
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.8);
}
.integrative-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.integ-card {
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    transition: var(--transition);
}
.integ-card:hover {
    background: rgba(255,255,255,0.09);
    transform: translateY(-8px);
    border-color: rgba(255,255,255,0.18);
}
.integ-img {
    height: 200px;
    overflow: hidden;
}
.integ-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.85);
}
.integ-card:hover .integ-img img {
    transform: scale(1.08);
    filter: brightness(0.95);
}
.integ-body {
    padding: 26px;
}
.integ-icon {
    width: 46px;
    height: 46px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 19px;
    margin-bottom: 16px;
    box-shadow: 0 4px 14px rgba(27,79,216,0.4);
}
.integ-body h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    font-family: 'Playfair Display', serif;
}
.integ-body p {
    font-size: 13.5px;
    color: rgba(255,255,255,0.62);
    line-height: 1.72;
}

/* ===== WHY CHOOSE US ===== */
.whyus {
    background: var(--white);
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.why-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.why-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}
.why-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}
.why-card:hover::before {
    transform: scaleX(1);
}
.why-card-img {
    width: 100%;
    height: 180px;
    overflow: hidden;
}
.why-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.why-card:hover .why-card-img img {
    transform: scale(1.06);
}
.why-card-body {
    padding: 28px 24px;
    flex: 1;
}
.why-icon {
    width: 52px;
    height: 52px;
    background: var(--primary-light);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 22px;
    margin-bottom: 16px;
    transition: var(--transition);
}
.why-card:hover .why-icon {
    background: var(--gradient);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(27,79,216,0.35);
}
.why-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}
.why-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.72;
}

/* ===== STATS COUNTER ===== */
.stats-section {
    background: var(--gradient);
    padding: 72px 0;
    position: relative;
    overflow: hidden;
}
.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}
.stat-card {
    text-align: center;
    color: var(--white);
    padding: 20px;
}
.stat-icon {
    font-size: 38px;
    margin-bottom: 18px;
    opacity: 0.85;
}
.stat-number {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
}
.stat-count {
    font-size: 56px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -2px;
}
.stat-plus {
    font-size: 36px;
    font-weight: 800;
}
.stat-card p {
    font-size: 15px;
    opacity: 0.82;
    margin-top: 10px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* ===== TARGET PATIENTS ===== */
.patients {
    background: var(--bg-light);
}
.patients-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.patient-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 320px;
    cursor: pointer;
}
.patient-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}
.patient-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.patient-card:hover img {
    transform: scale(1.07);
}
.patient-content {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,20,50,0.92) 0%, rgba(10,20,50,0.25) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    color: var(--white);
}
.patient-content i {
    font-size: 28px;
    margin-bottom: 12px;
    color: #90CAF9;
}
.patient-content h3 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
}
.patient-content p {
    font-size: 13.5px;
    opacity: 0.82;
    line-height: 1.6;
}

/* ===== INFRASTRUCTURE ===== */
.infrastructure {
    background: var(--white);
}
.infra-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.infra-content .section-tag {
    display: block;
    width: fit-content;
    margin-bottom: 16px;
}
.infra-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 8px;
}
.infra-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}
.infra-item:last-child { border-bottom: none; }
.infra-item i {
    color: var(--success);
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}
.infra-item span {
    font-size: 15px;
    color: var(--text);
    line-height: 1.5;
}
.infra-img-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.infra-img-grid img {
    border-radius: var(--radius);
    height: 210px;
    object-fit: cover;
    width: 100%;
    transition: var(--transition);
    box-shadow: var(--shadow);
}
.infra-img-grid img:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
}

/* ===== PARTNERSHIPS ===== */
.partnerships {
    background: var(--bg-light);
}
.partner-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.partner-card {
    background: var(--white);
    padding: 36px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: var(--transition);
}
.partner-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}
.partner-icon {
    width: 68px;
    height: 68px;
    margin: 0 auto 22px;
    background: var(--primary-light);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 27px;
    transition: var(--transition);
}
.partner-card:hover .partner-icon {
    background: var(--gradient);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(27,79,216,0.35);
}
.partner-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}
.partner-card p {
    font-size: 13.5px;
    color: var(--text-light);
    line-height: 1.65;
}

/* ===== TEAM ===== */
.team {
    background: var(--white);
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}
.team-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border);
}
.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}
.team-img {
    height: 230px;
    overflow: hidden;
    position: relative;
}
.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.team-card:hover .team-img img {
    transform: scale(1.08);
}
.team-body {
    padding: 28px 24px 24px;
    background: var(--white);
    text-align: center;
    position: relative;
}
.team-icon {
    width: 52px;
    height: 52px;
    margin: -38px auto 14px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 16px rgba(27,79,216,0.42);
    border: 3px solid var(--white);
}
.team-body h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}
.team-body p {
    font-size: 13.5px;
    color: var(--text-light);
    line-height: 1.62;
}

/* ===== SOCIAL IMPACT ===== */
.impact {
    background: var(--dark);
    position: relative;
    overflow: hidden;
}
.impact::before {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(6,182,212,0.1) 0%, transparent 70%);
    pointer-events: none;
}
.impact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.impact-text {
    color: rgba(255,255,255,0.75);
    font-size: 17px;
    line-height: 1.82;
    margin-bottom: 36px;
}
.impact-items {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.impact-item {
    display: flex;
    align-items: center;
    gap: 18px;
    color: rgba(255,255,255,0.85);
    font-size: 15px;
    line-height: 1.5;
}
.impact-item i {
    width: 40px;
    height: 40px;
    background: rgba(27,79,216,0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #90CAF9;
    font-size: 16px;
    flex-shrink: 0;
}
.impact-img img {
    border-radius: var(--radius-lg);
    box-shadow: 0 24px 60px rgba(0,0,0,0.5);
    width: 100%;
    height: 480px;
    object-fit: cover;
}

/* ===== CONTACT ===== */
.contact {
    background: var(--bg-light);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
}
.contact-info h3,
.contact-form h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 30px;
    font-family: 'Playfair Display', serif;
}
.contact-items {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-bottom: 28px;
}
.contact-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}
.contact-icon {
    width: 46px;
    height: 46px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
}
.contact-item strong {
    display: block;
    font-weight: 700;
    color: var(--dark);
    font-size: 14px;
    margin-bottom: 4px;
}
.contact-item p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.65;
}
.map-placeholder {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* Form Styles */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    border: 2px solid var(--border);
    border-radius: 10px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--white);
    transition: var(--transition);
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(27,79,216,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #CBD5E1;
}
.form-group textarea {
    resize: vertical;
    min-height: 110px;
}
.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2364748B'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 18px;
    padding-right: 44px;
}

/* ===== FOOTER ===== */
.footer {
    background: #060D1F;
    color: rgba(255,255,255,0.6);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr 1.5fr;
    gap: 60px;
    padding: 72px 0 52px;
}
.footer-logo {
    height: 48px;
    width: auto;
    margin-bottom: 18px;
    opacity: 1;
}
.footer-brand p {
    font-size: 14px;
    line-height: 1.75;
    margin-bottom: 26px;
    color: rgba(255,255,255,0.55);
}
.footer-socials {
    display: flex;
    gap: 10px;
}
.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255,255,255,0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 15px;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.08);
}
.footer-socials a:hover {
    background: var(--gradient);
    color: var(--white);
    border-color: transparent;
    transform: translateY(-2px);
}
.footer-links h4,
.footer-services h4,
.footer-contact h4 {
    color: var(--white);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 22px;
    letter-spacing: 0.3px;
}
.footer-links ul,
.footer-services ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-links a,
.footer-services a {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.footer-links a:hover,
.footer-services a:hover {
    color: var(--white);
    padding-left: 6px;
}
.footer-contact p {
    font-size: 13.5px;
    color: rgba(255,255,255,0.55);
    margin-bottom: 14px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    line-height: 1.6;
}
.footer-contact i {
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
    font-size: 14px;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(255,255,255,0.35);
    flex-wrap: wrap;
    gap: 8px;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient);
    color: var(--white);
    border: none;
    cursor: pointer;
    font-size: 18px;
    box-shadow: 0 4px 20px rgba(27,79,216,0.45);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
}
.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}
.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(27,79,216,0.55);
}

/* ===== MOBILE CONTACT BAR ===== */
.mobile-contact-bar {
    display: none;
}

/* ===== SCROLL REVEAL ANIMATION ===== */
.reveal {}

/* Hero animations */
.animate-fade-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.55s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.animate-fade-up:nth-child(1) { animation-delay: 0.05s; }
.animate-fade-up:nth-child(2) { animation-delay: 0.15s; }
.animate-fade-up:nth-child(3) { animation-delay: 0.25s; }
.animate-fade-up:nth-child(4) { animation-delay: 0.35s; }
.animate-fade-up:nth-child(5) { animation-delay: 0.45s; }

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== RESPONSIVE — TABLET ===== */
@media (max-width: 1024px) {
    .about-grid,
    .infra-grid,
    .impact-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-badge { bottom: 12px; right: 12px; }
    .integrative-grid { grid-template-columns: repeat(2, 1fr); }
    .market-items { grid-template-columns: repeat(2, 1fr); gap: 0; }
    .market-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); padding: 20px 24px; }
    .market-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.2); }
    .market-item:last-child, .market-item:nth-last-child(2) { border-bottom: none; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .partner-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .about-image img { height: 400px; }
    .impact-img img { height: 380px; }
}

/* ===== RESPONSIVE — MOBILE ===== */
@media (max-width: 768px) {
    section { padding: 64px 0; }
    .section-header { margin-bottom: 44px; }

    /* Top bar */
    .top-bar { display: none; }
    .navbar { top: 0; }

    /* Nav mobile */
    .hamburger { display: flex; }
    .nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.55);
        z-index: 999;
        backdrop-filter: blur(2px);
    }
    .nav-overlay.active { display: block; }
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 82%;
        max-width: 300px;
        height: 100vh;
        z-index: 1000;
        background: linear-gradient(160deg, #0D1B2A 0%, #1565C0 60%, #1B8A3A 100%);
        flex-direction: column;
        justify-content: flex-start;
        padding: 0 0 40px;
        gap: 0;
        box-shadow: -4px 0 40px rgba(0,0,0,0.4);
        transition: right 0.38s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
    }
    .nav-menu.open { right: 0; }
    .nav-menu-header,
    .nav-menu-contacts { display: flex; }
    .nav-menu-header {
        align-items: center;
        gap: 12px;
        padding: 28px 24px 24px;
        border-bottom: 1px solid rgba(255,255,255,0.12);
        margin-bottom: 12px;
    }
    .nav-menu-header img {
        height: 48px;
        width: auto;
    }
    .nav-menu-header-text {
        display: flex;
        flex-direction: column;
    }
    .nav-menu-header-text strong {
        color: var(--white);
        font-size: 14px;
        font-weight: 700;
        line-height: 1.2;
        font-family: 'Playfair Display', serif;
    }
    .nav-menu-header-text span {
        color: rgba(255,255,255,0.6);
        font-size: 11px;
        margin-top: 2px;
    }
    .nav-links {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 2px;
        padding: 0 16px;
    }
    .nav-links li { width: 100%; }
    .nav-links a {
        color: rgba(255,255,255,0.85) !important;
        width: 100%;
        padding: 13px 16px;
        border-radius: 10px;
        font-size: 15px;
        font-weight: 500;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .nav-links a:hover {
        background: rgba(255,255,255,0.12) !important;
        color: var(--white) !important;
    }
    .nav-links a.active {
        background: rgba(255,255,255,0.18) !important;
        color: var(--white) !important;
        font-weight: 600;
    }
    .btn-nav {
        width: calc(100% - 32px);
        margin: 24px 16px 0;
        text-align: center;
        border-radius: 12px;
        padding: 14px;
        background: linear-gradient(135deg, #3DAA56, #2E7D32) !important;
        border: none !important;
        font-size: 15px;
        font-weight: 600;
        box-shadow: 0 4px 16px rgba(61,170,86,0.35);
    }
    .nav-menu-contacts {
        display: flex;
        flex-direction: column;
        gap: 8px;
        padding: 16px 16px 0;
        border-top: 1px solid rgba(255,255,255,0.12);
        margin-top: 16px;
    }
    .nav-contact-link {
        display: flex;
        align-items: center;
        gap: 10px;
        color: rgba(255,255,255,0.75) !important;
        font-size: 13px;
        padding: 10px 12px;
        border-radius: 8px;
        background: rgba(255,255,255,0.07);
        transition: var(--transition);
    }
    .nav-contact-link:hover { background: rgba(255,255,255,0.14) !important; color: var(--white) !important; }
    .nav-contact-link i { font-size: 14px; }
    .nav-contact-wa i { color: #4ADE80; }

    /* Hero */
    .hero-title { font-size: clamp(38px, 10vw, 60px); }
    .hero-stats { gap: 20px; }
    .hero-stat-divider { display: none; }
    .hero-stat { padding: 0 16px 0 0; }
    .hero-content { padding: 90px 0 40px; }

    /* Market */
    .market-items { grid-template-columns: 1fr; }
    .market-item { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.15) !important; }
    .market-item:last-child { border-bottom: none !important; }

    /* Services */
    .services-grid { grid-template-columns: 1fr; }
    .tab-buttons { flex-direction: column; }
    .tab-btn { justify-content: center; }

    /* Spec */
    .spec-layout { grid-template-columns: 1fr; }
    .spec-tabs-left { display: flex; flex-wrap: wrap; max-height: none; border-right: none; border-bottom: 1px solid var(--border); }
    .spec-tab { width: auto; flex: 1 1 45%; border-bottom: 1px solid var(--border); border-left: none; border-bottom: 3px solid transparent; }
    .spec-tab.active { border-bottom-color: var(--primary); border-left-color: transparent; }
    .spec-tab:hover { border-bottom-color: var(--primary); border-left-color: transparent; }
    .spec-panel-head { padding: 20px 20px; }
    .spec-panel-body { padding: 20px; }

    /* Integrative */
    .integrative-grid { grid-template-columns: 1fr; }

    /* Why */
    .why-grid { grid-template-columns: 1fr; }

    /* Stats */
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .stat-count { font-size: 44px; }

    /* Patients */
    .patients-grid { grid-template-columns: 1fr; }
    .patient-card { height: 280px; }

    /* Partner */
    .partner-grid { grid-template-columns: 1fr 1fr; }

    /* Team */
    .team-grid { grid-template-columns: 1fr 1fr; }

    /* Impact */
    .impact-img { display: none; }

    /* Contact */
    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr; gap: 36px; padding: 52px 0 40px; }
    .footer-bottom { flex-direction: column; text-align: center; }

    .hero-ctas { flex-direction: column; }
    .hero-ctas a { justify-content: center; }
}

@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .partner-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .infra-img-grid { grid-template-columns: 1fr; }
    .hero-title { font-size: 38px; }
    .back-to-top { bottom: 80px; right: 16px; width: 44px; height: 44px; }
}

@media (max-width: 768px) {
    .mobile-contact-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 998;
        box-shadow: 0 -2px 20px rgba(0,0,0,0.15);
    }
    .mob-contact-btn {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 14px 10px;
        font-size: 14px;
        font-weight: 600;
        color: var(--white);
        text-decoration: none;
        transition: filter 0.2s;
    }
    .mob-contact-btn:hover { filter: brightness(1.1); }
    .mob-contact-btn i { font-size: 16px; }
    .mob-phone {
        background: var(--primary);
        border-right: 1px solid rgba(255,255,255,0.2);
    }
    .mob-whatsapp {
        background: #25A244;
    }

    /* push page content up so bar doesn't cover it */
    body { padding-bottom: 56px; }
    .back-to-top { bottom: 72px; }
}

/* ===== FADE-UP ANIMATION ===== */
@keyframes fadeUpIn {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
.fade-up.visible {
    animation: fadeUpIn 0.5s ease forwards;
}
