/* =========================================
   ONE HEALTH MULTISPECIALITY CLINIC
   Global Stylesheet
   ========================================= */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Poppins:wght@400;500;600;700;800&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --primary: #1a6fc4;
  --primary-dark: #0f4d8f;
  --primary-light: #e8f1fb;
  --secondary: #00b4d8;
  --accent: #0ead69;
  --danger: #e53e3e;
  --white: #ffffff;
  --bg: #f7fafd;
  --text: #1a202c;
  --text-muted: #6b7280;
  --border: #e2e8f0;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 4px 16px rgba(26,111,196,.12);
  --shadow-lg: 0 12px 40px rgba(26,111,196,.18);
  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 24px;
  --transition: .3s cubic-bezier(.4,0,.2,1);
  --font-sans: 'Inter', system-ui, sans-serif;
  --font-heading: 'Poppins', system-ui, sans-serif;
  --header-h: 72px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }
ul { list-style: none; }
button { cursor: pointer; border: none; font-family: inherit; }

/* ---------- Typography ---------- */
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; color: var(--text); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p { color: var(--text-muted); }

/* ---------- Utility Classes ---------- */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-title { text-align: center; margin-bottom: 56px; }
.section-title h2 { margin-bottom: 12px; }
.section-title p { max-width: 600px; margin: 0 auto; font-size: 1.05rem; }
.section-label {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 12px;
}
.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.mt-4 { margin-top: 1rem; }
.mb-4 { margin-bottom: 1rem; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-2 { gap: .5rem; }
.gap-3 { gap: .75rem; }
.gap-4 { gap: 1rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: .95rem;
  font-weight: 600;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(26,111,196,.35);
}
.btn-primary:hover { background: var(--primary-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,111,196,.45); }
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover { background: var(--primary); color: var(--white); transform: translateY(-2px); }
.btn-white {
  background: var(--white);
  color: var(--primary);
  box-shadow: var(--shadow-md);
}
.btn-white:hover { background: var(--primary-light); color: var(--primary-dark); transform: translateY(-2px); }
.btn-success {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(37,211,102,.35);
}
.btn-success:hover { background: #1ebe5d; color: var(--white); transform: translateY(-2px); }
.btn-danger {
  background: var(--danger);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(229,62,62,.35);
}
.btn-danger:hover { background: #c53030; color: var(--white); transform: translateY(-2px); }
.btn-sm { padding: 10px 20px; font-size: .875rem; }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }

/* ---------- Card ---------- */
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: box-shadow var(--transition), transform var(--transition);
  overflow: hidden;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.card-body { padding: 28px; }

/* ---------- Badge ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: .78rem;
  font-weight: 600;
}
.badge-primary { background: var(--primary-light); color: var(--primary); }
.badge-success { background: #e6f9ef; color: var(--accent); }
.badge-warning { background: #fff8e6; color: #d69e2e; }

/* ======================================================
   HEADER / NAVBAR
   ====================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.08); }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-brand-icon {
  width: 42px;
  height: 42px;
  background: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}
.nav-brand-text span { display: block; }
.nav-brand-text .brand-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: .95rem;
  color: var(--primary);
  line-height: 1.1;
}
.nav-brand-text .brand-sub {
  font-size: .7rem;
  color: var(--text-muted);
  font-weight: 500;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: .9rem;
  color: var(--text);
  transition: all var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--primary); background: var(--primary-light); }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--text);
  font-size: .9rem;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 8px;
  border-radius: var(--radius-sm);
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}

/* Mobile Nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(0,0,0,.1);
  padding: 16px 0 24px;
  z-index: 999;
  transform: translateY(-10px);
  opacity: 0;
  transition: all var(--transition);
}
.nav-mobile.open { display: block; transform: translateY(0); opacity: 1; }
.nav-mobile a {
  display: block;
  padding: 12px 24px;
  font-weight: 500;
  color: var(--text);
  border-radius: 0;
  transition: all var(--transition);
}
.nav-mobile a:hover { color: var(--primary); background: var(--primary-light); padding-left: 32px; }
.nav-mobile .mobile-cta { padding: 16px 24px 0; display: flex; gap: 12px; }
.nav-mobile .mobile-cta .btn { flex: 1; justify-content: center; }

/* ======================================================
   HERO SECTION
   ====================================================== */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #e8f1fb 0%, #f0f8ff 40%, #e0f2fe 100%);
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(26,111,196,.08) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -150px; left: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,180,216,.07) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 80px 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 6px 16px 6px 8px;
  border-radius: 100px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
}
.hero-badge .dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.8); }
}
.hero-title { margin-bottom: 16px; }
.hero-title span { color: var(--primary); position: relative; }
.hero-title span::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 2px;
  opacity: .4;
}
.hero-subtitle { font-size: 1.1rem; margin-bottom: 28px; max-width: 480px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 36px; }
.hero-stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.hero-stat { text-align: left; }
.hero-stat-num {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.hero-stat-label { font-size: .78rem; color: var(--text-muted); margin-top: 2px; }
.hero-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-image-wrap img { width: 100%; object-fit: cover; aspect-ratio: 4/3; }
.hero-info-card {
  position: absolute;
  bottom: 20px; left: 20px;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-info-card .icon { font-size: 1.5rem; }
.hero-info-card strong { display: block; font-size: .9rem; color: var(--text); }
.hero-info-card span { font-size: .75rem; color: var(--text-muted); }

/* ======================================================
   TRUST BAND
   ====================================================== */
.trust-band { background: var(--primary); color: white; padding: 16px 0; }
.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .9rem;
  font-weight: 500;
  opacity: .95;
}
.trust-item i { font-size: 1rem; opacity: .8; }

/* ======================================================
   ABOUT SECTION
   ====================================================== */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.about-img img { width: 100%; object-fit: cover; aspect-ratio: 3/4; }
.about-badge-card {
  position: absolute;
  top: 24px; right: -20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  z-index: 2;
}
.about-badge-card .num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.about-badge-card .lbl { font-size: .72rem; color: var(--text-muted); max-width: 70px; }
.about-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 28px 0;
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.about-feature-icon {
  width: 42px; height: 42px;
  min-width: 42px;
  background: var(--primary-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1rem;
}
.about-feature h4 { font-size: .95rem; margin-bottom: 2px; }
.about-feature p { font-size: .85rem; }

/* ======================================================
   SERVICES SECTION
   ====================================================== */
.services-bg { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transition: transform var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
  background: var(--primary-light);
  color: var(--primary);
  transition: all var(--transition);
}
.service-card:hover .service-icon { background: var(--primary); color: white; transform: scale(1.1); }
.service-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.service-card p { font-size: .875rem; margin-bottom: 16px; }
.service-card a { font-size: .875rem; font-weight: 600; color: var(--primary); display: flex; align-items: center; gap: 4px; }
.service-card a:hover { gap: 8px; }

/* ======================================================
   WHY CHOOSE US
   ====================================================== */
.why-bg { background: linear-gradient(135deg, #1a6fc4 0%, #0f4d8f 100%); }
.why-bg .section-title h2 { color: white; }
.why-bg .section-title p { color: rgba(255,255,255,.75); }
.why-bg .section-label { background: rgba(255,255,255,.15); color: white; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}
.why-card {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: all var(--transition);
}
.why-card:hover { background: rgba(255,255,255,.18); transform: translateY(-4px); }
.why-icon {
  width: 60px; height: 60px;
  background: rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  margin: 0 auto 16px;
}
.why-card h3 { color: white; font-size: 1rem; margin-bottom: 8px; }
.why-card p { color: rgba(255,255,255,.75); font-size: .875rem; }

/* ======================================================
   TESTIMONIALS
   ====================================================== */
.testimonials-bg { background: var(--bg); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.testimonial-stars { color: #f6c90e; font-size: .95rem; margin-bottom: 12px; letter-spacing: 2px; }
.testimonial-text { font-size: .9rem; font-style: italic; margin-bottom: 20px; color: var(--text); }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--primary);
  font-weight: 700;
}
.testimonial-name { font-weight: 600; font-size: .9rem; }
.testimonial-city { font-size: .78rem; color: var(--text-muted); }

/* ======================================================
   GALLERY
   ====================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  background: var(--primary-light);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition); }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,111,196,.6), transparent);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .overlay { opacity: 1; }
.gallery-item .overlay span { color: white; font-weight: 600; font-size: .9rem; }

/* ======================================================
   FAQ
   ====================================================== */
.faq-bg { background: var(--white); }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.faq-item.open { border-color: var(--primary); box-shadow: var(--shadow-md); }
.faq-q {
  width: 100%;
  text-align: left;
  background: var(--white);
  padding: 20px 24px;
  font-size: .95rem;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  transition: background var(--transition);
}
.faq-q:hover { background: var(--bg); }
.faq-item.open .faq-q { color: var(--primary); background: var(--primary-light); }
.faq-chevron {
  width: 28px; height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  transition: all var(--transition);
}
.faq-item.open .faq-chevron { background: var(--primary); color: white; transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding var(--transition);
}
.faq-item.open .faq-a { max-height: 300px; }
.faq-a-inner { padding: 16px 24px 24px; font-size: .9rem; color: var(--text-muted); line-height: 1.7; }

/* ======================================================
   MAP & CONTACT
   ====================================================== */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.contact-info-icon {
  width: 44px; height: 44px;
  min-width: 44px;
  background: var(--primary-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
}
.contact-info-text h4 { font-size: .95rem; margin-bottom: 4px; }
.contact-info-text p, .contact-info-text a { font-size: .9rem; display: block; }
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.map-wrap iframe { display: block; width: 100%; height: 380px; border: none; }

/* ======================================================
   EMERGENCY BANNER
   ====================================================== */
.emergency-banner {
  background: linear-gradient(90deg, #e53e3e 0%, #c53030 100%);
  color: white;
  text-align: center;
  padding: 18px;
  font-weight: 600;
  font-size: .95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.emergency-banner a { color: white; font-weight: 800; text-decoration: underline; }
.emergency-banner i { font-size: 1.1rem; }

/* ======================================================
   NEWSLETTER
   ====================================================== */
.newsletter-bg { background: linear-gradient(135deg, #e8f1fb, #f0f8ff); }
.newsletter-inner {
  text-align: center;
  max-width: 580px;
  margin: 0 auto;
}
.newsletter-inner h2 { margin-bottom: 10px; }
.newsletter-inner p { margin-bottom: 28px; }
.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}
.newsletter-form input {
  flex: 1;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: .9rem;
  font-family: inherit;
  background: var(--white);
  outline: none;
  transition: border-color var(--transition);
}
.newsletter-form input:focus { border-color: var(--primary); }

/* ======================================================
   BLOG/TIPS SECTION
   ====================================================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all var(--transition);
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.blog-img {
  height: 180px;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.blog-body { padding: 20px; }
.blog-body .badge { margin-bottom: 10px; }
.blog-body h3 { font-size: 1rem; margin-bottom: 8px; }
.blog-body p { font-size: .875rem; margin-bottom: 14px; }
.blog-body a { font-size: .875rem; font-weight: 600; color: var(--primary); display: flex; align-items: center; gap: 4px; }

/* ======================================================
   FOOTER
   ====================================================== */
.footer {
  background: #0d2846;
  color: rgba(255,255,255,.75);
  padding: 64px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-brand .logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-brand .brand-icon {
  width: 40px; height: 40px;
  background: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
}
.footer-brand .brand-name { color: white; font-weight: 700; font-size: .95rem; font-family: var(--font-heading); }
.footer-brand p { font-size: .875rem; line-height: 1.65; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: .9rem;
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--primary); color: white; transform: translateY(-2px); }
.footer-col h4 { color: white; font-size: .9rem; margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: .875rem; color: rgba(255,255,255,.65); transition: color var(--transition); }
.footer-col ul li a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: .8rem; }
.footer-bottom a { color: var(--secondary); }

/* ======================================================
   FORM STYLES
   ====================================================== */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-weight: 600; font-size: .875rem; margin-bottom: 6px; color: var(--text); }
.form-control {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-family: inherit;
  background: var(--white);
  color: var(--text);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(26,111,196,.12); }
.form-control::placeholder { color: #a0aec0; }
select.form-control { cursor: pointer; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ======================================================
   FLOATING BUTTONS
   ====================================================== */
.float-btns {
  position: fixed;
  bottom: 24px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 900;
}
.float-btn {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: white;
  box-shadow: 0 4px 20px rgba(0,0,0,.25);
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  text-decoration: none;
}
.float-btn:hover { transform: scale(1.12); box-shadow: 0 6px 28px rgba(0,0,0,.35); color: white; }
.float-wa { background: #25D366; }
.float-call { background: var(--primary); }
.float-btn-label {
  position: absolute;
  right: 62px;
  white-space: nowrap;
  background: rgba(0,0,0,.75);
  color: white;
  font-size: .78rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}
.float-btn:hover .float-btn-label { opacity: 1; }

/* Sticky Mobile Call Bar */
.mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 901;
  background: var(--primary);
  color: white;
  text-align: center;
  padding: 12px;
  font-weight: 600;
  font-size: .95rem;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
}
.mobile-call-bar i { font-size: 1.1rem; }

/* ======================================================
   PAGE HERO (Inner pages)
   ====================================================== */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 80px 0;
  text-align: center;
  color: white;
}
.page-hero h1 { color: white; margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,.8); font-size: 1.05rem; max-width: 600px; margin: 0 auto 24px; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: .875rem;
  color: rgba(255,255,255,.7);
}
.breadcrumb a { color: white; font-weight: 500; }
.breadcrumb span { opacity: .5; }

/* ======================================================
   APPOINTMENT PAGE
   ====================================================== */
.appointment-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}
.appt-info-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.appt-info-header {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  padding: 28px;
  color: white;
}
.appt-info-header h3 { color: white; margin-bottom: 6px; font-size: 1.2rem; }
.appt-info-header p { color: rgba(255,255,255,.85); font-size: .875rem; }
.appt-info-body { padding: 24px; display: flex; flex-direction: column; gap: 16px; }
.appt-info-row { display: flex; align-items: center; gap: 14px; }
.appt-info-row .icon {
  width: 36px; height: 36px;
  background: var(--primary-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: .95rem;
}
.appt-info-row span { font-size: .875rem; }
.appt-info-row strong { display: block; font-size: .9rem; color: var(--text); margin-bottom: 1px; }
.appt-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  padding: 36px;
}
.appt-form-wrap h2 { margin-bottom: 8px; }
.appt-form-wrap > p { margin-bottom: 28px; }
.success-msg {
  display: none;
  background: #e6f9ef;
  border: 1px solid #c6f6d5;
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
}
.success-msg i { font-size: 3rem; color: var(--accent); margin-bottom: 12px; display: block; }
.success-msg h3 { color: var(--text); margin-bottom: 6px; }
.success-msg p { font-size: .9rem; }

/* ======================================================
   AI CHATBOT PLACEHOLDER
   ====================================================== */
.ai-section-bg { background: linear-gradient(135deg, #0d2846, #1a3a6b); }
.ai-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.ai-section-bg .section-label { background: rgba(255,255,255,.15); color: white; }
.ai-section-bg h2 { color: white; }
.ai-section-bg p { color: rgba(255,255,255,.75); }
.ai-feature-list { display: flex; flex-direction: column; gap: 14px; margin-top: 20px; }
.ai-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.9);
  font-size: .9rem;
}
.ai-feature i { color: var(--secondary); font-size: 1.1rem; }
.chatbot-mockup {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-lg);
  padding: 24px;
  backdrop-filter: blur(8px);
}
.chatbot-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.chatbot-avatar {
  width: 38px; height: 38px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: white;
}
.chatbot-header strong { color: white; display: block; font-size: .9rem; }
.chatbot-header span { color: var(--accent); font-size: .75rem; }
.chat-bubble {
  border-radius: 12px;
  padding: 12px 16px;
  font-size: .85rem;
  margin-bottom: 10px;
  max-width: 80%;
  line-height: 1.5;
}
.chat-bubble.bot { background: rgba(255,255,255,.12); color: rgba(255,255,255,.9); border-bottom-left-radius: 4px; }
.chat-bubble.user {
  background: var(--primary);
  color: white;
  border-bottom-right-radius: 4px;
  margin-left: auto;
}
.chat-input-wrap {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.chat-input {
  flex: 1;
  padding: 10px 14px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 100px;
  color: white;
  font-size: .85rem;
  outline: none;
  font-family: inherit;
}
.chat-input::placeholder { color: rgba(255,255,255,.4); }
.chat-send {
  width: 36px; height: 36px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  font-size: .9rem;
  transition: background var(--transition);
}
.chat-send:hover { background: var(--primary-dark); }

/* ======================================================
   ANIMATIONS
   ====================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-28px); transition: opacity .6s ease, transform .6s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(28px); transition: opacity .6s ease, transform .6s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }
.delay-5 { transition-delay: .5s; }

/* ======================================================
   RESPONSIVE
   ====================================================== */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .hero-inner { gap: 40px; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }
  .section { padding: 60px 0; }
  .section-title { margin-bottom: 36px; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; padding: 48px 0; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .about-inner { grid-template-columns: 1fr; }
  .about-img { max-height: 320px; }
  .about-img img { aspect-ratio: 16/9; }
  .about-badge-card { right: 20px; top: auto; bottom: -16px; }
  .contact-inner { grid-template-columns: 1fr; }
  .appointment-inner { grid-template-columns: 1fr; }
  .ai-inner { grid-template-columns: 1fr; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .mobile-call-bar { display: flex; }
  .float-btns { bottom: 72px; }
  .form-row { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .appt-form-wrap { padding: 24px; }
  .trust-items { gap: 16px; }
}

@media (max-width: 480px) {
  .hero-actions .btn { flex: 1 1 140px; justify-content: center; }
  .gallery-grid { grid-template-columns: 1fr; }
}

/* ======================================================
   ABOUT PAGE EXTRAS
   ====================================================== */
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 24px; }
.mv-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.mv-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: linear-gradient(180deg, var(--primary), var(--secondary));
  border-radius: 4px;
}
.mv-icon { font-size: 2rem; margin-bottom: 12px; }
.mv-card h3 { color: var(--primary); margin-bottom: 8px; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 24px; }
.team-card {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--primary);
  margin: 0 auto 16px;
  border: 3px solid var(--primary);
}
.team-card h3 { font-size: 1rem; margin-bottom: 4px; }
.team-card .specialty { font-size: .82rem; color: var(--primary); font-weight: 600; margin-bottom: 8px; }
.team-card p { font-size: .82rem; }

/* SERVICES PAGE */
.service-page-section { border-bottom: 1px solid var(--border); padding: 60px 0; }
.service-page-section:last-child { border-bottom: none; }
.service-details-inner { display: grid; grid-template-columns: 2fr 1fr; gap: 48px; align-items: start; }
.service-details-inner.reverse { direction: rtl; }
.service-details-inner.reverse > * { direction: ltr; }
.service-benefits { margin: 20px 0; }
.service-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: .9rem;
}
.service-benefits li:last-child { border-bottom: none; }
.service-benefits li i { color: var(--accent); }
.service-sidebar-card {
  background: var(--primary-light);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid rgba(26,111,196,.2);
}
.service-sidebar-card h4 { color: var(--primary); margin-bottom: 12px; }
.service-sidebar-card ul li { padding: 6px 0; font-size: .875rem; color: var(--text-muted); display: flex; gap: 8px; align-items: center; }
.service-sidebar-card ul li i { color: var(--danger); }
