/* ===========================
   MAHI Clinical Laboratory
   style.css — Luxury Medical Theme
   =========================== */

/* ---- CSS VARIABLES ---- */
:root {
  --navy: #0a1628;
  --navy-mid: #122040;
  --gold: #c9a84c;
  --gold-light: #e2c97e;
  --gold-pale: #f5edd8;
  --cream: #faf7f2;
  --white: #ffffff;
  --text: #1a2332;
  --text-light: #5a6a7a;
  --border: rgba(201,168,76,0.2);
  --shadow: 0 20px 60px rgba(10,22,40,0.12);
  --shadow-gold: 0 8px 30px rgba(201,168,76,0.25);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; width: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- TYPOGRAPHY ---- */
.section-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}
.section-label.light { color: var(--gold-light); }
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 1.5rem;
}
.section-title em { color: var(--gold); font-style: italic; }
.section-title.light { color: var(--white); }

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-gold);
  white-space: nowrap;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(201,168,76,0.4); }
.btn-primary.whatsapp-btn { background: linear-gradient(135deg, #25D366, #128C7E); color: white; box-shadow: 0 8px 30px rgba(37,211,102,0.3); }
.btn-primary.whatsapp-btn:hover { box-shadow: 0 12px 40px rgba(37,211,102,0.45); }
.btn-primary.full-w { width: 100%; justify-content: center; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--white);
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: white; }
.btn-ghost.dark { color: var(--navy); border-color: var(--navy); }
.btn-ghost.dark:hover { background: var(--navy); color: white; }

/* ---- FLOATING ACTION BUTTONS ---- */
.float-actions {
  position: fixed;
  right: 1.5rem;
  bottom: 2rem;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.fab-btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: white;
  box-shadow: 0 6px 25px rgba(0,0,0,0.25);
  transition: var(--transition);
  white-space: nowrap;
}
.fab-btn i { font-size: 1.2rem; }
.fab-btn span { overflow: hidden; max-width: 0; opacity: 0; transition: max-width 0.3s ease, opacity 0.3s ease; }
.fab-btn:hover span { max-width: 200px; opacity: 1; }
.fab-btn:hover { transform: translateX(-4px); }
.fab-btn.whatsapp { background: linear-gradient(135deg, #25D366, #128C7E); }
.fab-btn.call { background: linear-gradient(135deg, var(--gold), #b8882a); color: var(--navy); }

/* ---- NAVBAR ---- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 1.5rem 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(10,22,40,0.97);
  padding: 1rem 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
  backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.logo { display: flex; align-items: center; gap: 0.85rem; }
.logo-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
  font-size: 1.2rem;
}
.logo-icon.sm { width: 36px; height: 36px; font-size: 1rem; border-radius: 8px; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-main { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 600; color: white; letter-spacing: 0.05em; }
.logo-sub { font-family: 'Jost', sans-serif; font-size: 0.65rem; font-weight: 400; color: var(--gold-light); letter-spacing: 0.15em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { font-family: 'Jost', sans-serif; font-size: 0.9rem; font-weight: 500; color: rgba(255,255,255,0.8); letter-spacing: 0.05em; transition: color 0.2s; position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1.5px; background: var(--gold); transition: width 0.3s; }
.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: 1rem; }
.nav-call-btn {
  display: flex; align-items: center; gap: 0.5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  padding: 0.55rem 1.2rem;
  border-radius: 50px;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-call-btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-gold); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 5px; }
.hamburger span { display: block; width: 24px; height: 2px; background: white; border-radius: 2px; transition: var(--transition); }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.05); animation: heroZoom 12s ease infinite alternate; }
@keyframes heroZoom { from { transform: scale(1.05); } to { transform: scale(1.12); } }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.9) 0%, rgba(10,22,40,0.65) 60%, rgba(10,22,40,0.4) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 8rem 2rem 4rem;
  max-width: 700px;
  margin-left: 10%;
}
.hero-tagline {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  animation: fadeUp 0.8s ease both;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  color: white;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s 0.2s ease both;
}
.hero-title em { color: var(--gold-light); font-style: italic; font-weight: 400; }
.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  max-width: 520px;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.8s 0.35s ease both;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3.5rem; animation: fadeUp 0.8s 0.5s ease both; }
.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  animation: fadeUp 0.8s 0.65s ease both;
}
.stat { display: flex; flex-direction: column; }
.stat-num { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 600; color: var(--gold-light); line-height: 1; }
.stat-lbl { font-size: 0.75rem; font-weight: 400; color: rgba(255,255,255,0.6); letter-spacing: 0.05em; }
.stat-div { width: 1px; height: 40px; background: rgba(255,255,255,0.2); }
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }
@keyframes fadeUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }

/* ---- SECTION CONTAINER ---- */
.section-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.section-container.col { grid-template-columns: 1fr; text-align: center; }

/* ---- ABOUT ---- */
.about { background: var(--white); }
.about-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.about-img-wrap.visible { opacity: 1; transform: translateX(0); }
.about-img-wrap img { height: 540px; object-fit: cover; border-radius: var(--radius); }
.about-badge {
  position: absolute;
  bottom: 2rem; right: -1.5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  font-family: 'Jost', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-gold);
}
.about-content {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s 0.2s ease, transform 0.7s 0.2s ease;
}
.about-content.visible { opacity: 1; transform: translateX(0); }
.about-text { color: var(--text-light); margin-bottom: 1rem; font-size: 1rem; }
.about-text strong { color: var(--navy); font-weight: 600; }
.about-credentials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
}
.cred {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--cream);
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 0.9rem;
  border: 1px solid var(--border);
}
.cred i { color: var(--gold); font-size: 1rem; }

/* ---- SERVICES ---- */
.services {
  background: var(--navy);
  padding: 5rem 0;
}
.services-header {
  text-align: center;
  padding: 0 2rem 2.5rem;
}
.services-sub { color: rgba(255,255,255,0.6); max-width: 560px; margin: 0 auto; font-size: 0.95rem; }

/* Search */
.search-wrap {
  max-width: 520px;
  margin: 0 auto 2rem;
  padding: 0 2rem;
  position: relative;
}
.search-wrap i { position: absolute; left: 3rem; top: 50%; transform: translateY(-50%); color: var(--text-light); font-size: 0.9rem; }
.search-wrap input {
  width: 100%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: white;
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  padding: 0.85rem 1.5rem 0.85rem 3rem;
  border-radius: 50px;
  outline: none;
  transition: var(--transition);
}
.search-wrap input::placeholder { color: rgba(255,255,255,0.4); }
.search-wrap input:focus { border-color: var(--gold); background: rgba(201,168,76,0.08); }

/* Filters */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  padding: 0 2rem 2.5rem;
}
.filter-btn {
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.65);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  border-color: transparent;
  font-weight: 600;
}

/* Grid */
.services-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

/* Card */
.service-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(20px);
  animation: cardIn 0.5s ease forwards;
}
@keyframes cardIn { to { opacity:1; transform:translateY(0); } }
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,168,76,0.4);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3), 0 0 0 1px rgba(201,168,76,0.15);
  background: rgba(255,255,255,0.08);
}
.card-img-wrap { position: relative; height: 180px; overflow: hidden; }
.card-img-wrap img { height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-card:hover .card-img-wrap img { transform: scale(1.06); }
.card-cat {
  position: absolute; top: 1rem; right: 1rem;
  background: rgba(10,22,40,0.8);
  color: var(--gold-light);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  backdrop-filter: blur(8px);
}
.card-body { padding: 1.5rem; }
.card-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, rgba(201,168,76,0.2), rgba(201,168,76,0.08));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 0.85rem;
  border: 1px solid rgba(201,168,76,0.2);
}
.card-body h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 600; color: white; margin-bottom: 0.5rem; line-height: 1.3; }
.card-body p { font-size: 0.83rem; color: rgba(255,255,255,0.55); line-height: 1.6; margin-bottom: 1.25rem; }
.card-footer { display: flex; align-items: center; justify-content: space-between; }
.price-tag { display: flex; align-items: baseline; gap: 2px; }
.rupee { font-size: 1rem; color: var(--gold); font-weight: 600; }
.amount { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 600; color: var(--gold-light); line-height: 1; }
.book-btn {
  display: flex; align-items: center; gap: 0.4rem;
  background: #25D366;
  color: white;
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  transition: var(--transition);
}
.book-btn:hover { background: #128C7E; transform: scale(1.04); }
.no-results { grid-column: 1/-1; text-align: center; color: rgba(255,255,255,0.5); padding: 4rem 2rem; }
.no-results i { font-size: 2.5rem; margin-bottom: 1rem; color: var(--gold); display: block; }
.no-results a { color: #25D366; font-weight: 600; }

.more-services {
  text-align: center;
  padding: 3rem 2rem 0;
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
}
.more-services i { color: var(--gold); margin-right: 0.4rem; }
.more-services p { margin-bottom: 1.5rem; }

/* ---- WHY US ---- */
.why-us { position: relative; padding: 6rem 0; overflow: hidden; }
.why-bg { position: absolute; inset: 0; }
.why-bg img { height: 100%; object-fit: cover; }
.why-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(10,22,40,0.95), rgba(10,22,40,0.85)); }
.why-content { position: relative; z-index: 2; max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.why-content .section-title { text-align: center; margin-bottom: 3rem; }
.why-content .section-label { display: block; text-align: center; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius);
  padding: 2rem;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(20px);
}
.why-card.visible { opacity: 1; transform: translateY(0); }
.why-card:hover { background: rgba(201,168,76,0.08); border-color: rgba(201,168,76,0.4); transform: translateY(-4px); }
.why-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
}
.why-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 600; color: white; margin-bottom: 0.6rem; }
.why-card p { color: rgba(255,255,255,0.6); font-size: 0.9rem; }

/* ---- TESTIMONIALS ---- */
.testimonials { background: var(--cream); padding: 5rem 0; }
.testimonials .section-title { margin-bottom: 3rem; }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 0.5rem; }
.testi-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(201,168,76,0.1);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(20px);
}
.testi-card.visible { opacity: 1; transform: translateY(0); }
.testi-card.featured { border-color: var(--gold); box-shadow: 0 20px 60px rgba(201,168,76,0.15); }
.testi-card:hover { transform: translateY(-4px); }
.stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 1rem; display: flex; gap: 2px; justify-content: center; }
.testi-card p { color: var(--text-light); font-size: 0.95rem; line-height: 1.7; margin-bottom: 1.5rem; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 0.85rem; }
.testi-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.testi-author strong { display: block; font-size: 0.9rem; color: var(--navy); }
.testi-author span { font-size: 0.78rem; color: var(--text-light); }

/* ---- CONTACT ---- */
.contact { background: var(--white); }
.contact-info {
  opacity: 0;
  transform: translateX(-25px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.contact-info.visible { opacity: 1; transform: translateX(0); }
.contact-info > p { color: var(--text-light); margin-bottom: 2rem; }
.contact-details { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-icon {
  width: 44px; height: 44px;
  background: var(--gold-pale);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-item strong { display: block; font-size: 0.95rem; color: var(--navy); font-weight: 600; }
.contact-item span { font-size: 0.85rem; color: var(--text-light); }
.contact-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.contact-card {
  background: var(--navy);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateX(25px);
  transition: opacity 0.7s 0.2s ease, transform 0.7s 0.2s ease;
}
.contact-card.visible { opacity: 1; transform: translateX(0); }
.contact-card-header {
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.contact-card-header i { color: var(--gold); font-size: 1.2rem; }
.contact-card-header h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 600; color: white; }
.contact-img { height: 200px; object-fit: cover; }
.contact-card-body { padding: 1.25rem 1.5rem; }
.contact-card-body p { display: flex; align-items: center; gap: 0.65rem; font-size: 0.9rem; color: rgba(255,255,255,0.7); padding: 0.4rem 0; }
.contact-card-body i { color: var(--gold); font-size: 0.9rem; }
.contact-card .btn-primary { margin: 1.5rem; width: calc(100% - 3rem); }

/* ---- FOOTER ---- */
.footer {
  background: var(--navy);
  border-top: 1px solid rgba(201,168,76,0.15);
  padding: 3rem 2rem;
}
.footer-inner { max-width: 1280px; margin: 0 auto; text-align: center; }
.footer .logo { justify-content: center; margin-bottom: 0.75rem; }
.footer-tagline { font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-style: italic; color: var(--gold-light); margin: 0.5rem 0 1.5rem; }
.footer-links { display: flex; justify-content: center; gap: 2rem; margin-bottom: 1.25rem; }
.footer-links a { font-size: 0.85rem; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-links a:hover { color: var(--gold-light); }
.footer-social { display: flex; justify-content: center; gap: 1rem; margin-bottom: 1.5rem; }
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.3); line-height: 1.6; }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .section-container { grid-template-columns: 1fr; gap: 3rem; padding: 4rem 1.5rem; }
  .about-img-wrap img { height: 360px; }
  .about-badge { right: 0; }
  .hero-content { margin-left: 5%; padding: 7rem 1.5rem 3rem; }
}

@media (max-width: 768px) {
  .nav-links { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--navy); flex-direction: column; justify-content: center; align-items: center; gap: 2.5rem; z-index: 800; }
  .nav-links a { font-size: 1.5rem; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; z-index: 910; }
  .nav-call-btn span { display: none; }
  .nav-call-btn { padding: 0.55rem 0.85rem; }
  .hero-title { font-size: 2.5rem; }
  .hero-stats { flex-wrap: wrap; gap: 1rem; }
  .stat-div { display: none; }
  .about-credentials { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .fab-btn span { display: none; }
  .fab-btn { padding: 0.85rem; border-radius: 50%; width: 52px; height: 52px; justify-content: center; }
}

@media (max-width: 540px) {
  .services-grid { grid-template-columns: 1fr; }
  .contact-btns { flex-direction: column; }
  .hero-btns { flex-direction: column; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
}
