/* =====================================================
   APOLLO CLINIC GARIA — Sanorra Theme Replica
   Primary: #137B9A | Accent: #F37121
   ===================================================== */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #137B9A;
    --primary-dark: #0e5f77;
    --primary-light: #1a9bc0;
    --primary-bg: #005f73;
    --primary-pale: #f0f3f5;
    --accent: #F37121;
    --accent-dark: #d45e0e;
    --text-dark: #22374f;
    --text-mid: rgba(20,44,92,0.7);
    --text-light: rgba(255,255,255,0.75);
    --white: #ffffff;
    --border: rgba(34,55,79,0.13);
    --border-w: rgba(255,255,255,0.3);
    --bg-light: #f0f3f5;
    --bg-dark: #22374f;
    --radius: 8px;
    --radius-lg: 16px;
    --shadow: 0 4px 24px rgba(19,123,154,0.10);
    --shadow-lg: 0 8px 40px rgba(19,123,154,0.16);
    --transition: all 0.3s ease;
    --container: 1200px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Plus Jakarta Sans', sans-serif; color: var(--text-mid); line-height: 1.7; overflow-x: hidden; background: #fff; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── CONTAINER ── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 30px; }
.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }

/* ── PILL LABEL ── */
.pill {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--primary); font-size: 13px; font-weight: 700;
    letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 10px;
}
.pill span { display: inline-block; width: 28px; height: 2px; background: var(--accent); border-radius: 2px; }

/* ── HEADINGS ── */
.section-title { font-size: clamp(28px,3.5vw,42px); font-weight: 800; color: var(--text-dark); line-height: 1.2; margin-bottom: 16px; }
.section-title span { color: var(--primary); }
.section-desc { font-size: 15px; color: var(--text-mid); max-width: 560px; line-height: 1.8; }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 28px; border-radius: 50px; font-size: 14px; font-weight: 700; transition: var(--transition); border: 2px solid transparent; cursor: pointer; }
.btn-primary { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(19,123,154,.3); }
.btn-accent { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-accent:hover { background: var(--accent-dark); border-color: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(243,113,33,.3); }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-ghost-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn-ghost-white:hover { background: rgba(255,255,255,.12); }
.btn svg, .btn-icon svg { width: 18px; height: 18px; fill: currentColor; }

/* ── TOPBAR ── */
.topbar { background: var(--primary); padding: 10px 0; font-size: 13px; color: rgba(255,255,255,.85); }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.topbar-left { display: flex; gap: 24px; flex-wrap: wrap; }
.topbar-item { display: flex; align-items: center; gap: 7px; }
.topbar-item svg { width: 14px; height: 14px; fill: var(--accent); flex-shrink: 0; }
.topbar-social { display: flex; gap: 8px; }
.topbar-social a { width: 26px; height: 26px; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; color: rgba(255,255,255,.8); transition: var(--transition); }
.topbar-social a:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

/* ── NAVBAR ── */
.navbar { background: #fff; box-shadow: 0 2px 20px rgba(0,0,0,.07); position: sticky; top: 0; z-index: 1000; transition: var(--transition); }
.navbar-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; gap: 20px; }
.navbar-logo img { height: 62px; width: auto; object-fit: contain; }
.navbar-nav { display: flex; align-items: center; gap: 4px; }
.navbar-nav a { padding: 8px 14px; font-size: 14px; font-weight: 600; color: var(--text-dark); border-radius: 6px; transition: var(--transition); position: relative; }
.navbar-nav a.active, .navbar-nav a:hover { color: var(--primary); }
.navbar-actions { display: flex; gap: 12px; align-items: center; }
.navbar-actions .btn { padding: 10px 22px; font-size: 13px; }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.hamburger span { width: 24px; height: 2px; background: var(--text-dark); border-radius: 2px; transition: var(--transition); display: block; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE MENU ── */
.mobile-menu { display: none; position: fixed; inset: 0; z-index: 2000; }
.mobile-menu.show { display: flex; }
.mobile-menu-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.5); }
.mobile-menu-panel { position: relative; background: #fff; width: 290px; height: 100%; padding: 80px 28px 30px; overflow-y: auto; display: flex; flex-direction: column; gap: 0; animation: slideInLeft .3s ease; }
@keyframes slideInLeft { from { transform: translateX(-100%); } to { transform: translateX(0); } }
.mobile-close { position: absolute; top: 18px; right: 18px; width: 36px; height: 36px; background: var(--bg-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--text-dark); }
.mobile-menu-panel a { display: block; padding: 13px 0; font-size: 15px; font-weight: 600; color: var(--text-dark); border-bottom: 1px solid var(--border); }
.mobile-menu-panel a:hover { color: var(--primary); }
.mobile-menu-cta { margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }
.mobile-menu-cta .btn { justify-content: center; }

/* ══════════════════════════════════════════════
   1. HERO SECTION
══════════════════════════════════════════════ */
.hero { background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%); position: relative; overflow: hidden; min-height: 580px; display: flex; align-items: stretch; }
.hero-bg-img { position: absolute; inset: 0; background-image: url('../images/hero_banner.png'); background-size: cover; background-position: center right; opacity: 0.18; }
.hero-container { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; min-height: 580px; }
.hero-left { padding: 90px 50px 90px 0; display: flex; flex-direction: column; justify-content: center; }
.hero-label { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.12); backdrop-filter: blur(8px); color: #fff; font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 7px 16px; border-radius: 50px; border: 1px solid rgba(255,255,255,.2); margin-bottom: 20px; width: fit-content; }
.hero-label-dot { width: 7px; height: 7px; background: var(--accent); border-radius: 50%; animation: pulse 1.5s infinite; }
@keyframes pulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.4); opacity: .6; } }
.hero-title { font-size: clamp(34px,4.5vw,58px); font-weight: 800; color: #fff; line-height: 1.1; margin-bottom: 20px; }
.hero-desc { font-size: 15px; color: rgba(255,255,255,.82); line-height: 1.8; max-width: 480px; margin-bottom: 36px; }
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 50px; }
.hero-info-boxes { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.hero-info-box { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius); padding: 16px 18px; display: flex; align-items: center; gap: 14px; transition: var(--transition); }
.hero-info-box:hover { background: rgba(255,255,255,.18); }
.hero-info-icon { width: 44px; height: 44px; flex-shrink: 0; }
.hero-info-icon img { width: 100%; height: 100%; object-fit: contain; filter: brightness(0) invert(1); }
.hero-info-box h4 { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 3px; }
.hero-info-box p { font-size: 12px; color: rgba(255,255,255,.75); line-height: 1.5; }
.hero-right { position: relative; overflow: hidden; }
.hero-right img { width: 100%; height: 100%; object-fit: cover; }
.hero-right::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 100px; background: linear-gradient(to right, var(--primary), transparent); z-index: 1; }

/* ══════════════════════════════════════════════
   2. STATS NUMBERS SECTION
══════════════════════════════════════════════ */
.stats-section { background: #fff; padding: 60px 0; border-bottom: 1px solid var(--border); }
.stats-grid { display: grid; grid-template-columns: auto 1fr repeat(4,1fr); gap: 0; align-items: center; }
.stats-title-col { padding-right: 50px; border-right: 1px solid var(--border); max-width: 260px; }
.stats-title-col h2 { font-size: 22px; font-weight: 800; color: var(--text-dark); line-height: 1.3; }
.stat-item { padding: 24px 32px; text-align: center; border-right: 1px solid var(--border); }
.stat-item:last-child { border-right: none; }
.stat-number { font-size: 42px; font-weight: 800; color: var(--primary); line-height: 1; display: flex; align-items: baseline; justify-content: center; gap: 2px; }
.stat-number sup { font-size: 22px; color: var(--accent); }
.stat-label { font-size: 13px; color: var(--text-mid); margin-top: 6px; font-weight: 500; }

/* ══════════════════════════════════════════════
   3. DEPARTMENTS / YOUR RELIABLE PARTNER
══════════════════════════════════════════════ */
.departments-section { background: var(--bg-light); padding: 90px 0; }
.departments-grid { display: grid; grid-template-columns: 350px 1fr; gap: 60px; align-items: start; }
.departments-left .section-desc { margin-bottom: 20px; }
.dept-view-all { display: flex; align-items: center; gap: 6px; color: var(--primary); font-size: 13px; font-weight: 700; margin-top: 24px; transition: var(--transition); }
.dept-view-all:hover { color: var(--accent); gap: 10px; }
.dept-view-all svg { width: 16px; height: 16px; fill: currentColor; }

.departments-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.dept-card { background: #fff; border-radius: var(--radius-lg); padding: 28px; border: 1px solid var(--border); transition: var(--transition); position: relative; overflow: hidden; }
.dept-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(to right, var(--primary), var(--accent)); transform: scaleX(0); transition: var(--transition); transform-origin: left; }
.dept-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.dept-card:hover::before { transform: scaleX(1); }
.dept-icon { width: 64px; height: 64px; margin-bottom: 16px; }
.dept-icon img { width: 100%; height: 100%; object-fit: contain; }
.dept-card h3 { font-size: 16px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.dept-card p { font-size: 13px; color: var(--text-mid); line-height: 1.7; margin-bottom: 16px; }
.dept-readmore { display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; color: var(--primary); transition: var(--transition); }
.dept-readmore:hover { color: var(--accent); gap: 10px; }
.dept-readmore svg { width: 16px; height: 16px; fill: currentColor; }

/* Center logo card */
.dept-card.logo-card { background: var(--primary); display: flex; align-items: center; justify-content: center; min-height: 200px; }
.dept-card.logo-card img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); opacity: .7; }

/* ══════════════════════════════════════════════
   4. COMMITTED EXCELLENCE CARE (SERVICES + ACCORDION)
══════════════════════════════════════════════ */
.services-section { background: #fff; padding: 90px 0; }
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: start; margin-top: 50px; }
.services-left { position: relative; }
.services-img-main { width: 100%; height: 500px; object-fit: cover; border-radius: var(--radius-lg); }
.services-overlay-card { position: absolute; bottom: -20px; left: -20px; background: #fff; border-radius: var(--radius); padding: 20px 24px; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 14px; max-width: 260px; border-left: 4px solid var(--accent); }
.services-overlay-icon { width: 42px; height: 42px; flex-shrink: 0; }
.services-overlay-icon img { width: 100%; height: 100%; object-fit: contain; }
.services-overlay-card h5 { font-size: 14px; font-weight: 700; color: var(--text-dark); }
.services-overlay-card p { font-size: 12px; color: var(--text-mid); margin-top: 2px; }

/* Accordion */
.accordion { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }
.accordion-item { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: var(--transition); }
.accordion-item.active { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(19,123,154,.08); }
.accordion-header { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; cursor: pointer; font-size: 15px; font-weight: 700; color: var(--text-dark); gap: 12px; }
.accordion-item.active .accordion-header { color: var(--primary); }
.accordion-icon { width: 20px; height: 20px; flex-shrink: 0; transition: var(--transition); }
.accordion-icon svg { width: 100%; height: 100%; fill: var(--primary); }
.accordion-item.active .accordion-icon { transform: rotate(180deg); }
.accordion-body { display: none; padding: 0 20px 16px; font-size: 14px; color: var(--text-mid); line-height: 1.75; }
.accordion-item.active .accordion-body { display: block; }
.view-all-link { display: inline-flex; align-items: center; gap: 6px; color: var(--primary); font-size: 13px; font-weight: 700; margin-top: 24px; transition: var(--transition); }
.view-all-link:hover { color: var(--accent); gap: 10px; }
.view-all-link svg { width: 16px; height: 16px; fill: currentColor; }

/* ══════════════════════════════════════════════
   5. DEDICATED TO HEALING (FULL-WIDTH BG CARDS)
══════════════════════════════════════════════ */
.dedicated-section { background: var(--bg-dark); padding: 0; overflow: hidden; }
.dedicated-inner { display: grid; grid-template-columns: 1fr 1fr; min-height: 520px; }
.dedicated-left { position: relative; overflow: hidden; }
.dedicated-left img { width: 100%; height: 100%; object-fit: cover; }
.dedicated-content { padding: 70px 60px; display: flex; flex-direction: column; justify-content: center; background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-bg) 100%); }
.dedicated-content .pill { color: rgba(255,255,255,.7); }
.dedicated-content .pill span { background: var(--accent); }
.dedicated-content .section-title { color: #fff; }
.dedicated-content p { color: rgba(255,255,255,.78); font-size: 15px; line-height: 1.8; margin-bottom: 30px; }
.dedicated-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 30px; }
.dedicated-mini-card { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius); padding: 16px; transition: var(--transition); }
.dedicated-mini-card:hover { background: rgba(255,255,255,.15); }
.dedicated-mini-card h5 { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.dedicated-mini-card p { font-size: 12px; color: rgba(255,255,255,.65); line-height: 1.5; }

/* ══════════════════════════════════════════════
   6. ADVANCED TECHNOLOGY (FEATURE ICONS ROW)
══════════════════════════════════════════════ */
.technology-section { background: #fff; padding: 80px 0; }
.technology-header { text-align: center; margin-bottom: 56px; }
.technology-header .section-desc { margin: 0 auto; text-align: center; }
.tech-features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.tech-card { padding: 30px 20px; border: 1px solid var(--border); border-radius: var(--radius-lg); transition: var(--transition); text-align: left; }
.tech-card:hover { border-color: var(--primary); box-shadow: var(--shadow); transform: translateY(-5px); }
.tech-card-icon { width: 56px; height: 56px; margin-bottom: 18px; }
.tech-card-icon img { width: 100%; height: 100%; object-fit: contain; }
.tech-card h4 { font-size: 15px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.tech-card p { font-size: 13px; color: var(--text-mid); line-height: 1.7; }

/* ══════════════════════════════════════════════
   7. TESTIMONIAL SECTION
══════════════════════════════════════════════ */
.testimonial-section { background: var(--bg-light); padding: 90px 0; }
.testimonial-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.testimonial-left { position: relative; }
.quote-icon { width: 80px; margin-bottom: 30px; opacity: .3; }
.testimonial-slider { position: relative; overflow: hidden; }
.testimonial-slide { display: none; }
.testimonial-slide.active { display: block; }
.testimonial-card { background: #fff; border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow); }
.testimonial-text { font-size: 16px; color: var(--text-dark); line-height: 1.8; font-style: italic; margin-bottom: 26px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; border: 2px solid var(--primary); }
.testimonial-author h5 { font-size: 14px; font-weight: 700; color: var(--text-dark); }
.testimonial-author span { font-size: 12px; color: var(--text-mid); }
.testimonial-dots { display: flex; gap: 8px; margin-top: 24px; }
.testimonial-dot { width: 8px; height: 8px; background: var(--border); border-radius: 50%; cursor: pointer; transition: var(--transition); }
.testimonial-dot.active { background: var(--primary); width: 24px; border-radius: 4px; }
.testimonial-right { position: relative; border-radius: var(--radius-lg); overflow: hidden; background: var(--primary); }
.testimonial-right img { width: 100%; height: 480px; object-fit: cover; mix-blend-mode: luminosity; opacity: .8; }

/* ══════════════════════════════════════════════
   8. LOCATE CENTERS SECTION
══════════════════════════════════════════════ */
.locate-section { background: #fff; padding: 90px 0; }
.locate-header { margin-bottom: 50px; }
.locate-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.locate-card { border-radius: var(--radius-lg); overflow: hidden; position: relative; height: 300px; cursor: pointer; }
.locate-card img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.locate-card:hover img { transform: scale(1.06); }
.locate-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(14,95,119,.9) 0%, rgba(19,123,154,.3) 60%, transparent 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 28px; transition: var(--transition); }
.locate-card:hover .locate-overlay { background: linear-gradient(to top, rgba(14,95,119,.95) 0%, rgba(19,123,154,.5) 100%); }
.locate-city { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-bottom: 6px; }
.locate-name { font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 8px; }
.locate-desc { font-size: 13px; color: rgba(255,255,255,.8); line-height: 1.6; }

/* ══════════════════════════════════════════════
   9. STORIES OF CARE (BLOG) + STICKY SIDEBAR
══════════════════════════════════════════════ */
.blog-section { background: var(--bg-light); padding: 90px 0; }
.blog-layout { display: grid; grid-template-columns: 340px 1fr; gap: 50px; align-items: start; }
.blog-sidebar { position: sticky; top: 100px; }
.blog-sidebar .section-desc { margin-bottom: 28px; }
.blog-sidebar .btn { margin-top: 20px; }
.blog-posts-main { display: grid; gap: 0; }
.blog-post-large { background: #fff; border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 20px; box-shadow: var(--shadow); transition: var(--transition); }
.blog-post-large:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.blog-post-large img { width: 100%; height: 260px; object-fit: cover; transition: var(--transition); }
.blog-post-large:hover img { transform: scale(1.04); }
.blog-img-wrap { overflow: hidden; }
.blog-post-body { padding: 24px; }
.blog-cat { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; display: inline-block; }
.blog-post-body h3 a { font-size: 17px; font-weight: 700; color: var(--text-dark); transition: var(--transition); }
.blog-post-body h3 a:hover { color: var(--primary); }
.blog-readmore { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; color: var(--primary); margin-top: 14px; transition: var(--transition); }
.blog-readmore:hover { color: var(--accent); gap: 10px; }
.blog-readmore svg { width: 16px; height: 16px; fill: currentColor; }
.blog-posts-small { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.blog-post-small { background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); }
.blog-post-small:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.blog-post-small img { width: 100%; height: 160px; object-fit: cover; transition: var(--transition); }
.blog-post-small:hover img { transform: scale(1.05); }
.blog-post-small .blog-post-body { padding: 16px; }
.blog-post-small h3 a { font-size: 14px; font-weight: 700; color: var(--text-dark); }

/* ══════════════════════════════════════════════
   10. FOOTER CTA BAR
══════════════════════════════════════════════ */
.footer-cta { background: var(--primary); padding: 30px 0; }
.footer-cta-inner { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.footer-cta-item { display: flex; align-items: center; gap: 16px; padding: 14px 30px; border-right: 1px solid rgba(255,255,255,.18); cursor: pointer; transition: var(--transition); }
.footer-cta-item:last-child { border-right: none; }
.footer-cta-item:hover { background: rgba(255,255,255,.08); }
.footer-cta-icon { width: 48px; height: 48px; flex-shrink: 0; }
.footer-cta-icon img { width: 100%; height: 100%; object-fit: contain; filter: brightness(0) invert(1); }
.footer-cta-item h4 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 2px; }
.footer-cta-arrow { margin-left: auto; width: 32px; height: 32px; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.footer-cta-arrow svg { width: 16px; height: 16px; fill: #fff; }

/* ══════════════════════════════════════════════
   11. MAIN FOOTER
══════════════════════════════════════════════ */
.footer { background: var(--bg-dark); padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.6fr; gap: 50px; padding-bottom: 50px; }
.footer-logo { height: 55px; width: auto; object-fit: contain; margin-bottom: 18px; filter: brightness(0) invert(1); opacity: .9; }
.footer-about p { font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.8; margin-bottom: 22px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 34px; height: 34px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.7); font-size: 13px; transition: var(--transition); }
.footer-social a:hover { background: var(--primary); border-color: var(--primary); color: #fff; }
.footer-col h5 { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid var(--accent); display: inline-block; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,.6); display: flex; align-items: center; gap: 8px; transition: var(--transition); }
.footer-links a::before { content: '›'; color: var(--accent); font-size: 18px; line-height: 1; }
.footer-links a:hover { color: #fff; transform: translateX(4px); }
.footer-contact-list { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-item { display: flex; gap: 12px; align-items: flex-start; font-size: 13px; color: rgba(255,255,255,.6); }
.footer-contact-item svg { width: 16px; height: 16px; fill: var(--accent); flex-shrink: 0; margin-top: 2px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,.45); }
.footer-bottom span { color: var(--accent); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 13px; color: rgba(255,255,255,.45); transition: var(--transition); }
.footer-bottom-links a:hover { color: #fff; }

/* ══════════════════════════════════════════════
   SCROLL TOP & MISC
══════════════════════════════════════════════ */
.scroll-top { position: fixed; bottom: 30px; right: 30px; width: 44px; height: 44px; background: var(--primary); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(19,123,154,.4); cursor: pointer; transition: var(--transition); opacity: 0; transform: translateY(20px); z-index: 999; border: none; }
.scroll-top.show { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--accent); }
.scroll-top svg { width: 18px; height: 18px; fill: #fff; }

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media(max-width:1100px){
    .hero-container,.departments-grid,.services-grid,.dedicated-inner,.technology-section,.testimonial-grid,.blog-layout,.footer-grid { grid-template-columns: 1fr; }
    .hero-right { height: 320px; }
    .hero-right::before { display: none; }
    .hero-left { padding: 60px 0; }
    .tech-features { grid-template-columns: repeat(2,1fr); }
    .departments-cards { grid-template-columns: repeat(2,1fr); }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 0; }
    .stats-title-col { grid-column: 1/-1; border-right: none; border-bottom: 1px solid var(--border); padding-right: 0; padding-bottom: 24px; max-width: 100%; }
    .testimonial-right { height: 300px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .footer-cta-inner { grid-template-columns: 1fr; }
    .footer-cta-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.18); }
    .footer-cta-item:last-child { border-bottom: none; }
    .dedicated-content { padding: 50px 40px; }
    .locate-cards { grid-template-columns: 1fr 1fr; }
    .blog-posts-small { grid-template-columns: 1fr; }
    .navbar-nav,.navbar-actions .btn:not(:last-child) { display: none; }
    .hamburger { display: flex; }
    .topbar { display: none; }
}

@media(max-width:768px){
    .hero-info-boxes { grid-template-columns: 1fr; }
    .departments-cards { grid-template-columns: 1fr; }
    .tech-features { grid-template-columns: 1fr; }
    .locate-cards { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .services-grid { gap: 40px; }
    .services-overlay-card { left: 0; bottom: 0; }
    .dedicated-cards { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
    .testimonial-grid { gap: 40px; }
    .blog-posts-small { grid-template-columns: 1fr; }
}

@media(max-width:480px){
    .container { padding: 0 18px; }
    .hero-title { font-size: 30px; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { justify-content: center; }
    .departments-cards { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr; }
    .stat-item { border-right: none; }
    .dedicated-content { padding: 40px 24px; }
    .dedicated-cards { grid-template-columns: 1fr; }
}
