:root {
    --primary: #0A6EBD;
    --primary-dark: #084f8a;
    --primary-light: #e8f4ff;
    --secondary: #00B4CC;
    --accent: #F5A623;
    --danger: #E53935;
    --success: #27AE60;
    --ngo: #6B48FF;
    --text: #1a2e44;
    --muted: #6b7c93;
    --border: #e5eaf2;
    --light: #f7f9fc;
    --white: #ffffff;
    --font-display: 'DM Serif Display', Georgia, serif;
    --font-body: 'DM Sans', system-ui, sans-serif;
}

* { box-sizing: border-box; }
body { font-family: var(--font-body); color: var(--text); font-size: 15px; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-body); }
em { font-family: var(--font-display); font-style: italic; color: var(--primary); }
img { max-width: 100%; }
.section-gap { padding: 80px 0; }
.bg-light-blue { background: var(--primary-light); }

/* ── Emergency Bar ──────────────────────────────────────────────────────── */
.emergency-bar { background: var(--primary-dark); color: rgba(255,255,255,0.85); padding: 8px 0; font-size: 13px; }
.emergency-tag { background: var(--danger); color: white; font-size: 11px; font-weight: 700; padding: 2px 10px; border-radius: 3px; letter-spacing: 1px; margin-right: 10px; }
.emergency-no { color: white; font-weight: 700; font-size: 16px; text-decoration: none; letter-spacing: 1px; }
.emergency-no:hover { color: var(--accent); }
.blink { animation: blink 1s infinite; }
@keyframes blink { 0%,100%{opacity:1}50%{opacity:0.3} }

/* ── Navbar ─────────────────────────────────────────────────────────────── */
.main-nav { box-shadow: 0 2px 16px rgba(10,110,189,0.1); padding: 8px 0; }
.brand-wrap { display: flex; align-items: center; gap: 12px; }

.brand-logo-icon { width: 52px; height: 52px; background: linear-gradient(135deg, var(--primary), var(--secondary)); color: white; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 24px; }
.brand-name { font-size: 19px; font-weight: 700; color: var(--primary); line-height: 1.1; }
.brand-tag { font-size: 11px; color: var(--muted); }
.nav-link { font-weight: 500; color: var(--text) !important; padding: 8px 14px !important; border-radius: 6px; transition: all 0.2s; font-size: 14px; }
.nav-link:hover { color: var(--primary) !important; background: var(--primary-light); }
.btn-book-appt { background: var(--primary); color: white !important; border-radius: 8px; padding: 10px 22px !important; font-weight: 600; font-size: 14px; transition: all 0.2s; }
.btn-book-appt:hover { background: var(--primary-dark); transform: translateY(-1px); }
.mega-dropdown { min-width: 220px; border-radius: 12px; box-shadow: 0 12px 40px rgba(0,0,0,0.12); border: none; padding: 10px; }
.dropdown-item { border-radius: 6px; font-size: 14px; padding: 8px 14px; }
.dropdown-item:hover { background: var(--primary-light); color: var(--primary); }

/* ── Hero ───────────────────────────────────────────────────────────────── */
.hero-section { position: relative; }
.heroSwiper { width: 100%; height: 620px; }
.hero-slide { background-size: cover; background-position: center; position: relative; }
.default-slide { background: linear-gradient(135deg, #0a3d62 0%, var(--primary) 50%, var(--secondary) 100%); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(5,20,50,0.88) 0%, rgba(5,20,50,0.5) 60%, transparent 100%); }
.hero-content { position: relative; z-index: 2; padding-top: 160px; max-width: 680px; }
.hero-badge { display: inline-flex; align-items: center; background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3); color: white; font-size: 12px; font-weight: 600; padding: 6px 16px; border-radius: 30px; letter-spacing: 1px; margin-bottom: 20px; }
.hero-h1 { font-size: clamp(30px, 5vw, 58px); font-weight: 800; color: white; line-height: 1.15; margin-bottom: 20px; }
.hero-sub { font-size: 18px; color: rgba(255,255,255,0.85); margin-bottom: 36px; line-height: 1.6; }
.btn-hero { background: var(--accent); color: white; border: none; border-radius: 10px; padding: 14px 32px; font-weight: 700; font-size: 16px; transition: all 0.3s; text-decoration: none; display: inline-block; }
.btn-hero:hover { background: #e09418; color: white; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(245,166,35,0.4); }
.btn-hero-ghost { background: transparent; color: white; border: 2px solid rgba(255,255,255,0.7); border-radius: 10px; padding: 12px 28px; font-weight: 600; font-size: 15px; transition: all 0.3s; text-decoration: none; display: inline-block; }
.btn-hero-ghost:hover { background: white; color: var(--primary); }
.swiper-button-next,.swiper-button-prev { color: white !important; }
.swiper-pagination-bullet-active { background: white !important; }

/* Quick Info Bar */
.quick-info-bar { position: relative; z-index: 10; margin-top: -1px; }
.quick-info-item { display: flex; align-items: center; gap: 14px; padding: 20px 24px; color: white; text-decoration: none; transition: opacity 0.2s; }
.quick-info-item:hover { opacity: 0.9; color: white; }
.quick-info-item i { font-size: 28px; }
.quick-info-item strong { display: block; font-size: 15px; font-weight: 700; }
.quick-info-item span { font-size: 13px; opacity: 0.85; }
.quick-info-item.primary { background: var(--primary); }
.quick-info-item.danger { background: var(--danger); }
.quick-info-item.success { background: var(--success); }
.quick-info-item.orange { background: var(--accent); }

/* ── Stats ──────────────────────────────────────────────────────────────── */
.stats-bar { background: white; padding: 50px 0; border-bottom: 1px solid var(--border); }
.stats-grid { border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }
.stat-item { text-align: center; padding: 30px 20px; border-right: 1px solid var(--border); }
.stat-item:last-child { border-right: none; }
.stat-icon { font-size: 32px; color: var(--primary); margin-bottom: 10px; }
.stat-num { font-size: 42px; font-weight: 800; color: var(--primary); line-height: 1; }
.stat-lbl { font-size: 14px; color: var(--muted); margin-top: 6px; }

/* ── Section Headings ───────────────────────────────────────────────────── */
.sec-head { text-align: center; }
.sec-head h2, h2 { font-size: clamp(26px, 4vw, 40px); font-weight: 700; color: var(--text); margin-bottom: 12px; }
.sec-head p { color: var(--muted); font-size: 16px; max-width: 600px; margin: 0 auto; }
.sec-tag { display: inline-block; background: var(--primary-light); color: var(--primary); font-size: 12px; font-weight: 700; padding: 5px 16px; border-radius: 20px; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 12px; }
.sec-tag.light { background: rgba(255,255,255,0.2); color: white; }

/* ── Departments ────────────────────────────────────────────────────────── */
.dept-card { display: block; background: white; border: 1px solid var(--border); border-radius: 16px; padding: 28px 24px; text-align: center; text-decoration: none; color: var(--text); transition: all 0.3s; height: 100%; }
.dept-card:hover { border-color: var(--primary); box-shadow: 0 8px 30px rgba(10,110,189,0.15); transform: translateY(-4px); color: var(--text); }
.dept-icon { width: 60px; height: 60px; background: var(--primary-light); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-size: 26px; color: var(--primary); transition: all 0.3s; }
.dept-card:hover .dept-icon { background: var(--primary); color: white; }
.dept-card h6 { font-weight: 700; margin-bottom: 8px; font-size: 15px; }
.dept-card p { font-size: 13px; color: var(--muted); line-height: 1.5; }
.dept-link { font-size: 13px; color: var(--primary); font-weight: 600; }

/* ── About Strip ────────────────────────────────────────────────────────── */
.about-strip { background: var(--light); padding: 80px 0; }
.about-img-block { position: relative; }
.about-exp-badge { position: absolute; bottom: -20px; right: -20px; background: var(--primary); color: white; border-radius: 14px; padding: 20px 24px; text-align: center; box-shadow: 0 8px 24px rgba(10,110,189,0.35); }
.exp-num { font-size: 40px; font-weight: 800; display: block; line-height: 1; }
.exp-txt { font-size: 12px; opacity: 0.85; }
.lead-p { font-size: 16px; color: var(--muted); line-height: 1.7; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.why-item { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 500; }

/* ── Services ───────────────────────────────────────────────────────────── */
.service-card { background: white; border-radius: 16px; padding: 32px; box-shadow: 0 2px 16px rgba(0,0,0,0.06); transition: all 0.3s; height: 100%; }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(10,110,189,0.15); }
.svc-icon { width: 56px; height: 56px; background: var(--primary-light); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 24px; color: var(--primary); margin-bottom: 18px; }
.service-card h5 { font-weight: 700; margin-bottom: 10px; }
.service-card p { color: var(--muted); font-size: 14px; margin: 0; }

/* ── Doctors ────────────────────────────────────────────────────────────── */
.doctor-card { background: white; border-radius: 16px; overflow: hidden; box-shadow: 0 2px 16px rgba(0,0,0,0.08); transition: all 0.3s; }
.doctor-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,0.12); }
.doc-photo { position: relative; overflow: hidden; }
.doc-photo img { width: 100%; height: 240px; object-fit: cover; transition: transform 0.4s; }
.doctor-card:hover .doc-photo img { transform: scale(1.04); }
.doc-dept-badge { position: absolute; top: 12px; left: 12px; background: var(--primary); color: white; font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 20px; }
.doc-socials { position: absolute; bottom: -50px; right: 0; left: 0; background: rgba(10,110,189,0.9); display: flex; justify-content: center; gap: 10px; padding: 12px; transition: bottom 0.3s; }
.doctor-card:hover .doc-socials { bottom: 0; }
.doc-socials a { width: 32px; height: 32px; background: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 13px; text-decoration: none; }
.doc-info { padding: 18px; }
.doc-info h6 { font-weight: 700; font-size: 15px; margin-bottom: 4px; }
.doc-spec { color: var(--primary); font-size: 13px; font-weight: 600; margin-bottom: 2px; }
.doc-qual { color: var(--muted); font-size: 12px; margin-bottom: 8px; }
.doc-opd { font-size: 12px; color: var(--muted); border-top: 1px solid var(--border); padding-top: 8px; margin-bottom: 12px; }
.btn-appt-sm { background: var(--primary); color: white; border: none; border-radius: 8px; padding: 8px 16px; font-size: 13px; font-weight: 600; width: 100%; transition: all 0.2s; display: block; text-align: center; text-decoration: none; }
.btn-appt-sm:hover { background: var(--primary-dark); color: white; }
.doc-next, .doc-prev { color: var(--primary) !important; }

/* ── Appointment CTA ────────────────────────────────────────────────────── */
.appt-cta { background: linear-gradient(135deg, #042b50 0%, var(--primary) 100%); color: white; padding: 80px 0; }
.appt-cta h2 { color: white; }
.appt-cta p { color: rgba(255,255,255,0.8); font-size: 16px; }
.cta-features { display: flex; gap: 24px; flex-wrap: wrap; }
.cta-features span { color: rgba(255,255,255,0.85); font-size: 14px; font-weight: 500; }
.cta-features i { color: var(--accent); margin-right: 6px; }
.btn-appt-large { background: var(--accent); color: white; border: none; border-radius: 12px; padding: 16px 36px; font-size: 17px; font-weight: 700; transition: all 0.3s; display: inline-block; text-decoration: none; }
.btn-appt-large:hover { background: #e09418; color: white; transform: translateY(-2px); }
.btn-emergency-large { background: transparent; color: white; border: 2px solid rgba(255,255,255,0.5); border-radius: 12px; padding: 12px 28px; font-size: 15px; font-weight: 600; transition: all 0.3s; text-decoration: none; text-align: center; }
.btn-emergency-large:hover { border-color: white; color: white; background: rgba(255,255,255,0.1); }

/* ── NGO Section ────────────────────────────────────────────────────────── */
.ngo-section { background: linear-gradient(135deg, #1a0533 0%, #2d1b5e 50%, var(--ngo) 100%); padding: 90px 0; color: white; }
.ngo-tag { display: inline-flex; align-items: center; background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3); color: rgba(255,255,255,0.9); font-size: 12px; font-weight: 600; padding: 6px 16px; border-radius: 30px; letter-spacing: 1px; margin-bottom: 20px; }
.ngo-section h2 { color: white; font-size: 38px; }
.ngo-section em { color: #c4a8ff; }
.ngo-section p { color: rgba(255,255,255,0.8); }
.ngo-stats { display: flex; gap: 32px; }
.ngo-stat { text-align: center; }
.ngo-stat-num { display: block; font-size: 36px; font-weight: 800; color: white; }
.ngo-stat-lbl { font-size: 13px; color: rgba(255,255,255,0.7); }
.btn-ngo-donate { background: white; color: var(--ngo); border: none; border-radius: 10px; padding: 13px 28px; font-weight: 700; font-size: 15px; transition: all 0.3s; text-decoration: none; display: inline-flex; align-items: center; }
.btn-ngo-donate:hover { background: rgba(255,255,255,0.9); color: var(--ngo); transform: translateY(-2px); }
.btn-ngo-outline { background: transparent; color: white; border: 2px solid rgba(255,255,255,0.5); border-radius: 10px; padding: 11px 28px; font-weight: 600; transition: all 0.3s; text-decoration: none; display: inline-flex; align-items: center; }
.btn-ngo-outline:hover { border-color: white; background: rgba(255,255,255,0.1); color: white; }
.ngo-programs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ngo-prog-card { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: 14px; padding: 24px; transition: all 0.3s; }
.ngo-prog-card:hover { background: rgba(255,255,255,0.18); transform: translateY(-3px); }
.ngo-prog-card i { font-size: 28px; color: #c4a8ff; margin-bottom: 12px; display: block; }
.ngo-prog-card h6 { color: white; font-weight: 700; margin-bottom: 6px; }
.ngo-prog-card p { color: rgba(255,255,255,0.7); font-size: 13px; margin: 0; }

/* ── Testimonials ───────────────────────────────────────────────────────── */
.testi-card { background: white; border-radius: 16px; padding: 28px; box-shadow: 0 4px 20px rgba(0,0,0,0.07); }
.testi-stars { color: var(--accent); font-size: 14px; margin-bottom: 14px; }
.testi-text { font-size: 15px; line-height: 1.7; color: var(--text); margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-photo { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.testi-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--primary-light); color: var(--primary); display: flex; align-items: center; justify-content: center; }
.testi-dots { margin-top: 24px; }
.swiper-pagination-bullet-active { background: var(--primary) !important; }

/* ── Blog ───────────────────────────────────────────────────────────────── */
.blog-card { background: white; border-radius: 16px; overflow: hidden; box-shadow: 0 2px 16px rgba(0,0,0,0.07); transition: all 0.3s; height: 100%; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,0.12); }
.blog-img { position: relative; overflow: hidden; }
.blog-img img { width: 100%; height: 200px; object-fit: cover; transition: transform 0.4s; }
.blog-card:hover .blog-img img { transform: scale(1.05); }
.blog-cat { position: absolute; top: 12px; left: 12px; background: var(--primary); color: white; font-size: 11px; font-weight: 700; padding: 3px 12px; border-radius: 20px; }
.blog-body { padding: 20px; }
.blog-date { font-size: 12px; color: var(--muted); margin-bottom: 10px; }
.blog-body h5 a { color: var(--text); text-decoration: none; font-weight: 700; font-size: 15px; line-height: 1.4; }
.blog-body h5 a:hover { color: var(--primary); }
.blog-body p { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 14px; }
.read-more { font-size: 13px; color: var(--primary); font-weight: 600; text-decoration: none; }
.read-more:hover { color: var(--primary-dark); }

/* ── Page Header ────────────────────────────────────────────────────────── */
.page-header { background: linear-gradient(135deg, #042b50, var(--primary)); color: white; padding: 60px 0; }
.page-header h1 { font-size: 40px; font-weight: 800; color: white; }
.breadcrumb-item a { color: rgba(255,255,255,0.7); }
.breadcrumb-item.active, .breadcrumb-item+.breadcrumb-item::before { color: white; }

/* ── Appointment Form ───────────────────────────────────────────────────── */
.appt-form-card { background: white; border-radius: 20px; padding: 40px; box-shadow: 0 8px 40px rgba(0,0,0,0.1); }
.appt-info-card { background: linear-gradient(135deg, var(--primary), var(--secondary)); color: white; border-radius: 20px; padding: 36px; height: 100%; }
.appt-info-card h4 { color: white; }
.appt-info-item { display: flex; gap: 14px; margin-bottom: 20px; align-items: flex-start; }
.appt-info-item i { font-size: 22px; margin-top: 3px; }
.appt-info-item p { margin: 0; opacity: 0.85; font-size: 14px; }

/* ── Doctor Detail ──────────────────────────────────────────────────────── */
.doctor-profile-card { background: white; border-radius: 20px; padding: 36px; box-shadow: 0 4px 24px rgba(0,0,0,0.08); }
.doctor-profile-photo img { width: 100%; border-radius: 16px; max-height: 400px; object-fit: cover; }

/* ── Department Detail ──────────────────────────────────────────────────── */
.dept-hero { background: linear-gradient(135deg, #042b50, var(--primary)); padding: 60px 0; }

/* ── NGO Page ───────────────────────────────────────────────────────────── */
.ngo-page-hero { background: linear-gradient(135deg, #1a0533, var(--ngo)); color: white; padding: 70px 0; }

/* ── Donation Form ──────────────────────────────────────────────────────── */
.donate-form-card { background: white; border-radius: 20px; padding: 40px; box-shadow: 0 8px 40px rgba(0,0,0,0.1); }
.btn-amount { border: 2px solid var(--primary); color: var(--primary); border-radius: 8px; padding: 8px 20px; font-weight: 600; transition: all 0.2s; }
.btn-amount.active, .btn-amount:hover { background: var(--primary); color: white; }
.payment-detail-box { background: var(--primary-light); border: 1px solid #b8d9f5; border-radius: 12px; padding: 18px; }
.btn-donate-main { background: linear-gradient(135deg, var(--ngo), #9b59b6); border: none; color: white; border-radius: 12px; padding: 14px 36px; font-size: 16px; font-weight: 700; width: 100%; transition: all 0.3s; }
.btn-donate-main:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(107,72,255,0.4); color: white; }

/* ── Gallery ────────────────────────────────────────────────────────────── */
.gal-filter { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 30px; }
.btn-gal-filter { border: 2px solid var(--primary); color: var(--primary); border-radius: 25px; padding: 6px 20px; font-size: 13px; font-weight: 600; transition: all 0.2s; text-decoration: none; }
.btn-gal-filter.active, .btn-gal-filter:hover { background: var(--primary); color: white; }
.gal-item { position: relative; border-radius: 10px; overflow: hidden; aspect-ratio: 1; cursor: pointer; }
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.gal-overlay { position: absolute; inset: 0; background: rgba(10,110,189,0.8); opacity: 0; transition: opacity 0.3s; display: flex; flex-direction: column; align-items: center; justify-content: center; color: white; padding: 16px; text-align: center; }
.gal-item:hover img { transform: scale(1.06); }
.gal-item:hover .gal-overlay { opacity: 1; }
.doc-card { background: white; border: 1px solid var(--border); border-radius: 14px; padding: 24px; text-align: center; transition: all 0.3s; }
.doc-card:hover { border-color: var(--primary); box-shadow: 0 8px 24px rgba(10,110,189,0.12); transform: translateY(-3px); }

/* ── Contact ────────────────────────────────────────────────────────────── */
.contact-form-card { background: white; border-radius: 20px; padding: 40px; box-shadow: 0 8px 40px rgba(0,0,0,0.08); }
.contact-info-card { background: linear-gradient(135deg, #042b50, var(--primary)); color: white; border-radius: 20px; padding: 36px; }
.contact-info-row { display: flex; gap: 16px; margin-bottom: 24px; }
.contact-info-row i { font-size: 22px; margin-top: 3px; }

/* ── Buttons ────────────────────────────────────────────────────────────── */
.btn-primary-custom { background: var(--primary); color: white; border: none; border-radius: 10px; padding: 12px 28px; font-weight: 600; transition: all 0.2s; text-decoration: none; display: inline-block; }
.btn-primary-custom:hover { background: var(--primary-dark); color: white; transform: translateY(-1px); }
.btn-primary-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); border-radius: 10px; padding: 10px 28px; font-weight: 600; transition: all 0.2s; text-decoration: none; display: inline-block; }
.btn-primary-outline:hover { background: var(--primary); color: white; }

/* ── Footer ─────────────────────────────────────────────────────────────── */
.site-footer { background: #0a1628; }
.footer-body { padding: 60px 0; color: rgba(255,255,255,0.75); }
.footer-brand { display: flex; align-items: center; color: white; font-size: 18px; }
.footer-head { color: white; font-weight: 700; font-size: 15px; margin-bottom: 18px; }
.footer-list { list-style: none; padding: 0; }
.footer-list li { margin-bottom: 10px; }
.footer-list a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-list a:hover { color: var(--accent); }
.footer-contact-list { list-style: none; padding: 0; }
.footer-contact-list li { display: flex; gap: 12px; margin-bottom: 14px; font-size: 13px; align-items: flex-start; }
.footer-contact-list i { margin-top: 3px; color: var(--accent); width: 16px; }
.footer-contact-list a { color: rgba(255,255,255,0.7); text-decoration: none; }
.footer-contact-list a:hover { color: white; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 36px; height: 36px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.8); text-decoration: none; transition: all 0.2s; font-size: 14px; }
.footer-social a:hover { background: var(--primary); color: white; }
.timing-box { background: rgba(255,255,255,0.06); border-radius: 12px; padding: 16px; }
.timing-row { display: flex; gap: 12px; margin-bottom: 14px; align-items: flex-start; }
.timing-row:last-child { margin-bottom: 0; }
.timing-row i { font-size: 18px; margin-top: 2px; }
.timing-row strong { display: block; color: white; font-size: 13px; }
.timing-row p { color: rgba(255,255,255,0.65); font-size: 12px; margin: 0; }
.footer-bottom { background: #060d1a; padding: 14px 0; color: rgba(255,255,255,0.4); font-size: 13px; }
.footer-bottom p { margin: 0; }
.footer-bottom a { color: rgba(255,255,255,0.5); text-decoration: none; }
.footer-bottom a:hover { color: white; }
.btn-book-appt-sm { background: var(--primary); color: white; border: none; border-radius: 8px; padding: 10px 16px; font-size: 13px; font-weight: 600; text-align: center; text-decoration: none; display: block; transition: all 0.2s; }
.btn-book-appt-sm:hover { background: var(--primary-dark); color: white; }
.btn-donate-sm { background: transparent; color: #c4a8ff; border: 1px solid #c4a8ff; border-radius: 8px; padding: 8px 16px; font-size: 13px; font-weight: 600; text-align: center; text-decoration: none; display: block; transition: all 0.2s; }
.btn-donate-sm:hover { background: rgba(196,168,255,0.15); color: #c4a8ff; }

/* Floating buttons */
#backToTop { position: fixed; bottom: 80px; right: 24px; width: 44px; height: 44px; background: var(--primary); color: white; border: none; border-radius: 50%; font-size: 16px; cursor: pointer; opacity: 0; transition: opacity 0.3s; z-index: 999; display: flex; align-items: center; justify-content: center; }
#backToTop.visible { opacity: 1; }
.whatsapp-float { position: fixed; bottom: 24px; right: 24px; width: 52px; height: 52px; background: #25d366; color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; text-decoration: none; z-index: 999; box-shadow: 0 4px 16px rgba(37,211,102,0.5); transition: all 0.3s; }
.whatsapp-float:hover { background: #1da851; color: white; transform: scale(1.1); }

/* ── ID Card ────────────────────────────────────────────────────────────── */
.ngo-id-card { width: 360px; background: white; border-radius: 14px; overflow: hidden; box-shadow: 0 10px 40px rgba(0,0,0,0.15); }
.ngo-id-header { background: linear-gradient(135deg, var(--ngo), #9b59b6); color: white; padding: 22px; text-align: center; }
.ngo-id-footer { background: linear-gradient(135deg, var(--ngo), #9b59b6); color: white; padding: 12px; text-align: center; font-size: 12px; }

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 991px) {
    .heroSwiper { height: 460px; }
    .hero-content { padding-top: 130px; }
    .quick-info-item { padding: 14px 16px; }
    .quick-info-item i { font-size: 22px; }
    .ngo-programs-grid { grid-template-columns: 1fr 1fr; }
    .stats-grid { border-radius: 0; }
    .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
    .stat-item:last-child { border-bottom: none; }
    .about-exp-badge { right: 0; bottom: 0; }
}
@media (max-width: 767px) {
    .heroSwiper { height: 380px; }
    .hero-content { padding-top: 100px; }
    .section-gap { padding: 50px 0; }
    .why-grid { grid-template-columns: 1fr; }
    .ngo-programs-grid { grid-template-columns: 1fr; }
    .ngo-stats { gap: 16px; }
    .cta-features { flex-direction: column; gap: 10px; }
    .appt-form-card, .donate-form-card, .contact-form-card { padding: 24px; }
}
