/* =============================================
   GCM Life Care Hospital — style.css
   ============================================= */

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:       #b01a1a;
  --red-dark:  #8b0f0f;
  --red-light: #f5e6e6;
  --dark:      #1a1a2e;
  --dark-2:    #2d2d44;
  --grey:      #6b7280;
  --light:     #f8f9fb;
  --white:     #ffffff;
  --border:    #e5e7eb;
  --shadow:    0 4px 24px rgba(0,0,0,.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.14);
  --radius:    14px;
  --transition: .35s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- UTILITIES --- */
.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.section    { padding: 100px 0; }
.bg-light   { background: var(--light); }
.accent     { color: var(--red); }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  background: var(--red-light);
  padding: .35rem .9rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1rem;
  color: var(--grey);
  max-width: 560px;
  margin: 0 auto;
}

.section-header { text-align: center; margin-bottom: 4rem; }

/* --- BUTTONS --- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--red);
  color: var(--white);
  padding: .85rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  border: 2px solid var(--red);
  cursor: pointer;
  transition: var(--transition);
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(176,26,26,.35);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: transparent;
  color: var(--white);
  padding: .85rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  border: 2px solid rgba(255,255,255,.6);
  transition: var(--transition);
}
.btn-outline:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
}

.btn-full { width: 100%; justify-content: center; border-radius: var(--radius); }

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
  padding: .75rem 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-logo {
  background: #ffffff;
  border-radius: 14px;
  padding: 8px 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
}
.nav-logo img {
  height: 96px;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
  display: block;
}
.navbar.scrolled .nav-logo { box-shadow: none; padding: 6px 12px; }
.navbar.scrolled .nav-logo img { height: 76px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
  margin-left: auto;
}

.nav-links a {
  font-size: .9rem;
  font-weight: 500;
  padding: .4rem .85rem;
  border-radius: 50px;
  color: var(--white);
  transition: var(--transition);
}
.navbar.scrolled .nav-links a { color: var(--dark); }
.nav-links a:hover { background: rgba(255,255,255,.15); }
.navbar.scrolled .nav-links a:hover { background: var(--red-light); color: var(--red); }

.nav-cta {
  margin-left: .5rem;
  font-size: .88rem;
  padding: .65rem 1.5rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .25rem;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.navbar.scrolled .hamburger span { background: var(--dark); }
.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 {
  min-height: 100vh;
  position: relative;
  background:
    linear-gradient(135deg, rgba(26,26,46,.92) 0%, rgba(139,15,15,.8) 60%, rgba(26,26,46,.92) 100%),
    url('https://images.unsplash.com/photo-1538108149393-fbbd81895907?w=1800&q=85') center/cover no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(176,26,26,.25) 0%, transparent 65%);
  pointer-events: none;
}

.hero-particles {
  position: absolute; inset: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  animation: float-particle linear infinite;
}

@keyframes float-particle {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: .4; }
  100% { transform: translateY(-10vh) scale(1.5); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 10rem 0 6rem;
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.9);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .45rem 1.1rem;
  border-radius: 50px;
  backdrop-filter: blur(8px);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero-title .accent { color: #ff6b6b; }

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.8);
  max-width: 560px;
  margin-bottom: 2.5rem;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3.5rem; }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.stat { text-align: center; display: flex; flex-direction: column; align-items: center; gap: .4rem; }
.stat i { font-size: 1.6rem; color: #ff6b6b; }
.stat p { font-size: .82rem; color: rgba(255,255,255,.9); text-transform: uppercase; letter-spacing: .08em; margin: 0; font-weight: 600; }

.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,.2); }

.hero-scroll-cue {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  animation: bounce 1.8s infinite;
}
@keyframes bounce {
  0%,100% { transform: translateY(0); opacity: .5; }
  50%      { transform: translateY(-12px); opacity: 1; }
}

/* --- Hero animations --- */
.animate-in { opacity: 0; transform: translateY(30px); animation: fadeUp .7s forwards; }
.delay-1 { animation-delay: .2s; }
.delay-2 { animation-delay: .4s; }
.delay-3 { animation-delay: .6s; }
.delay-4 { animation-delay: .85s; }

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

/* =============================================
   TICKER
   ============================================= */
.ticker-wrap {
  background: var(--red);
  overflow: hidden;
  padding: .8rem 0;
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 30s linear infinite;
  gap: 2.5rem;
}
.ticker-track span {
  white-space: nowrap;
  color: rgba(255,255,255,.9);
  font-size: .85rem;
  font-weight: 500;
}
.ticker-track .dot { color: rgba(255,255,255,.4); }

@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =============================================
   ABOUT
   ============================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-visual { position: relative; }

.about-img-wrap {
  position: relative;
  width: 420px;
  height: 420px;
  margin: 0 auto;
}

.about-img-ring {
  position: absolute;
  inset: -16px;
  border-radius: 50%;
  border: 3px dashed var(--red);
  animation: spin 20s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.about-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 6px solid var(--white);
  box-shadow: var(--shadow-lg);
}

.about-badge-card {
  position: absolute;
  bottom: 0; right: -20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1rem 1.4rem;
  display: flex;
  align-items: center;
  gap: .85rem;
  box-shadow: var(--shadow-lg);
}
.about-badge-card i {
  font-size: 1.5rem;
  color: var(--red);
}
.about-badge-card strong { display: block; font-size: .95rem; color: var(--dark); }
.about-badge-card span  { font-size: .78rem; color: var(--grey); }

.about-desc { color: var(--grey); margin-bottom: 2rem; }

.mission-cards { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.5rem; }

.mission-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.4rem;
  background: var(--light);
  border-radius: var(--radius);
  border-left: 3px solid var(--red);
  transition: var(--transition);
}
.mission-card:hover { transform: translateX(4px); box-shadow: var(--shadow); }

.mission-icon {
  flex-shrink: 0;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--red-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
  font-size: .9rem;
}

.mission-card h4 { font-size: .95rem; margin-bottom: .2rem; }
.mission-card p  { font-size: .85rem; color: var(--grey); margin: 0; }

.about-values { display: flex; flex-wrap: wrap; gap: .6rem; }
.value-tag {
  display: flex; align-items: center; gap: .4rem;
  font-size: .82rem; font-weight: 500;
  color: var(--red);
  background: var(--red-light);
  padding: .3rem .85rem;
  border-radius: 50px;
}
.value-tag i { font-size: .7rem; }

/* =============================================
   SERVICES
   ============================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon-wrap {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
  transition: var(--transition);
}
.service-icon-wrap.red  { background: var(--red-light); color: var(--red); }
.service-icon-wrap.dark { background: #eef0f5; color: var(--dark-2); }
.service-card:hover .service-icon-wrap.red  { background: var(--red); color: var(--white); }
.service-card:hover .service-icon-wrap.dark { background: var(--dark-2); color: var(--white); }

.service-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: .5rem; }
.service-card p  { font-size: .875rem; color: var(--grey); margin-bottom: 1.2rem; }

.service-link {
  font-size: .85rem;
  font-weight: 600;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  transition: var(--transition);
}
.service-link i { font-size: .7rem; transition: var(--transition); }
.service-link:hover i { transform: translateX(4px); }

/* =============================================
   WHY CHOOSE US
   ============================================= */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.why-list { margin: 1.5rem 0; display: flex; flex-direction: column; gap: .85rem; }
.why-list li {
  display: flex; align-items: center; gap: .75rem;
  font-size: .95rem; color: var(--dark);
}
.why-list i { color: var(--red); font-size: .85rem; flex-shrink: 0; }

.why-visual { position: relative; }

.why-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  border-radius: var(--radius);
  overflow: hidden;
}

.why-img { width: 100%; height: 200px; object-fit: cover; object-position: top center; border-radius: var(--radius); transition: transform .4s; }
.why-img:hover { transform: scale(1.03); }
.why-img-1 { grid-column: 1 / -1; height: 240px; }

.why-badge {
  position: absolute;
  bottom: -16px; left: 24px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1rem 1.4rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  box-shadow: var(--shadow-lg);
  font-size: .9rem;
}
.why-badge i { color: var(--red); font-size: 1.2rem; }
.why-badge strong { color: var(--red); }

/* =============================================
   SURGICAL SERVICES
   ============================================= */
.surgical-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 220px 220px;
  gap: 1rem;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 2rem;
}

.surgical-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}
.surgical-img-wrap.tall {
  grid-row: span 2;
}
.surgical-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform .5s;
}
.surgical-img-wrap:hover img { transform: scale(1.06); }

.img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(139,15,15,.75) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  opacity: 0;
  transition: var(--transition);
}
.surgical-img-wrap:hover .img-overlay { opacity: 1; }
.img-overlay span { color: var(--white); font-size: .85rem; font-weight: 600; }

.surgical-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: center;
  padding-top: 1rem;
}

.stag {
  display: flex; align-items: center; gap: .5rem;
  font-size: .85rem; font-weight: 500;
  color: var(--dark);
  background: var(--white);
  padding: .5rem 1.1rem;
  border-radius: 50px;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.stag i { color: var(--red); }
.stag:hover { background: var(--red); color: var(--white); border-color: var(--red); }
.stag:hover i { color: var(--white); }

/* =============================================
   CONSULTING
   ============================================= */
.consulting-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}

.consulting-img-stack {
  position: relative;
  height: 520px;
}

.cimg {
  position: absolute;
  border-radius: var(--radius);
  object-fit: cover;
  object-position: top center;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}
.cimg-1 { width: 65%; height: 60%; top: 0; left: 0; z-index: 2; }
.cimg-2 { width: 55%; height: 52%; bottom: 0; right: 0; z-index: 3; }
.cimg-3 { width: 45%; height: 40%; top: 50%; left: 30%; transform: translateY(-50%); z-index: 1; border: 5px solid var(--white); }

.cimg:hover { transform: scale(1.03) translateY(-4px); z-index: 10; }
.cimg-3:hover { transform: scale(1.03) translateY(-4px) translateX(0); }

.consulting-items { display: flex; flex-direction: column; gap: .5rem; }

.consult-item {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  padding: 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
  background: var(--white);
}
.consult-item:hover {
  border-color: var(--red);
  box-shadow: 0 4px 20px rgba(176,26,26,.1);
  transform: translateX(4px);
}

.ci-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--red-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
  font-size: 1rem;
  transition: var(--transition);
}
.consult-item:hover .ci-icon { background: var(--red); color: var(--white); }

.consult-item h4 { font-size: .95rem; font-weight: 600; margin-bottom: .2rem; }
.consult-item p  { font-size: .82rem; color: var(--grey); margin: 0; }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testi-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.testi-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; }

.testi-stars { color: #f59e0b; margin-bottom: 1rem; font-size: .9rem; }
.testi-card > p { font-size: .9rem; color: var(--grey); margin-bottom: 1.5rem; font-style: italic; }

.testi-author { display: flex; align-items: center; gap: .85rem; }
.testi-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.testi-author strong { display: block; font-size: .9rem; }
.testi-author span   { font-size: .78rem; color: var(--grey); }

/* =============================================
   CONTACT
   ============================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.contact-info .section-title { font-size: 2rem; }
.contact-info > p { color: var(--grey); margin-bottom: 2rem; }

.contact-details { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.contact-details li { display: flex; align-items: flex-start; gap: 1rem; }

.contact-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--red-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
  font-size: .9rem;
}

.contact-details strong { display: block; font-size: .9rem; margin-bottom: .1rem; }
.contact-details span   { font-size: .85rem; color: var(--grey); }

.contact-socials { display: flex; gap: .75rem; }
.contact-socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--red-light);
  color: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
  transition: var(--transition);
}
.contact-socials a:hover { background: var(--red); color: var(--white); transform: translateY(-3px); }

.contact-form-wrap {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.1rem; }
.form-group label { font-size: .83rem; font-weight: 600; color: var(--dark); }

.form-group input,
.form-group select,
.form-group textarea {
  padding: .75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: .9rem;
  color: var(--dark);
  background: var(--light);
  transition: var(--transition);
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(176,26,26,.1);
}
.form-group textarea { resize: vertical; }

.form-success {
  display: none;
  align-items: center;
  gap: .65rem;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #166534;
  padding: 1rem;
  border-radius: 10px;
  font-size: .88rem;
  margin-top: 1rem;
}
.form-success.show { display: flex; }
.form-success i { font-size: 1.1rem; }

/* =============================================
   FOOTER
   ============================================= */
.footer { background: var(--dark); color: rgba(255,255,255,.8); }

.footer-top { padding: 5rem 0 3rem; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
}

.footer-brand img {
  height: 60px;
  width: auto;
  object-fit: contain;
  margin-bottom: 1.2rem;
  filter: brightness(1.2);
}
.footer-brand p { font-size: .875rem; line-height: 1.8; color: rgba(255,255,255,.55); margin-bottom: 1.5rem; }

.footer-socials { display: flex; gap: .65rem; }
.footer-socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.7);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem;
  transition: var(--transition);
}
.footer-socials a:hover { background: var(--red); color: var(--white); transform: translateY(-3px); }

.footer-col h5 {
  font-size: .95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: .6rem;
}
.footer-col h5::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 28px; height: 2px;
  background: var(--red);
  border-radius: 2px;
}

.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-col ul a { font-size: .875rem; color: rgba(255,255,255,.55); transition: var(--transition); }
.footer-col ul a:hover { color: var(--white); padding-left: 4px; }

.footer-contact li {
  display: flex; align-items: flex-start; gap: .65rem;
  font-size: .875rem; color: rgba(255,255,255,.55);
}
.footer-contact i { color: var(--red); margin-top: .2rem; flex-shrink: 0; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.5rem 0;
  text-align: center;
}
.footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.35); }

/* =============================================
   BACK TO TOP
   ============================================= */
.back-top {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  border: none;
  cursor: pointer;
  font-size: .9rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(176,26,26,.4);
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 900;
}
.back-top.show { opacity: 1; transform: translateY(0); }
.back-top:hover { background: var(--red-dark); transform: translateY(-3px); }

/* =============================================
   SCROLL REVEAL
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal.delay-1 { transition-delay: .15s; }
.reveal.delay-2 { transition-delay: .3s; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .about-grid     { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-wrap { width: 320px; height: 320px; }
  .why-grid       { grid-template-columns: 1fr; gap: 3rem; }
  .consulting-grid { grid-template-columns: 1fr; }
  .consulting-img-stack { height: 320px; }
  .contact-grid   { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid    { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

/* =============================================
   MOBILE DRAWER
   ============================================= */
.mobile-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,10,20,.55);
  backdrop-filter: blur(4px);
  z-index: 1001;
  opacity: 0;
  transition: opacity .35s ease;
}
.mobile-backdrop.show {
  display: block;
  opacity: 1;
}

.mobile-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 300px;
  background: var(--white);
  z-index: 1002;
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 40px rgba(0,0,0,.18);
}
.mobile-drawer.open { transform: translateX(0); }

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(135deg, var(--dark) 0%, var(--red-dark) 100%);
}
.drawer-head img {
  height: 52px;
  width: auto;
  object-fit: contain;
}
.drawer-close {
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  color: var(--white);
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: .95rem;
  transition: var(--transition);
}
.drawer-close:hover { background: rgba(255,255,255,.3); transform: rotate(90deg); }

.drawer-links {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1rem;
  gap: .25rem;
  overflow-y: auto;
}
.drawer-links a {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: .85rem 1rem;
  border-radius: 10px;
  font-size: .95rem;
  font-weight: 500;
  color: var(--dark);
  transition: var(--transition);
}
.drawer-links a i {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--red-light);
  color: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem;
  flex-shrink: 0;
  transition: var(--transition);
}
.drawer-links a:hover {
  background: var(--red-light);
  color: var(--red);
  padding-left: 1.3rem;
}
.drawer-links a:hover i { background: var(--red); color: var(--white); }

.drawer-divider {
  height: 1px;
  background: var(--border);
  margin: .5rem 0;
}

.drawer-footer {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--border);
  background: var(--light);
}
.drawer-footer .btn-primary {
  width: 100%;
  justify-content: center;
  border-radius: 10px;
}
.drawer-emergency {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .8rem;
  color: var(--grey);
  margin-top: .85rem;
  justify-content: center;
}
.drawer-emergency i { color: var(--red); }
.drawer-emergency strong { color: var(--dark); }

@media (max-width: 768px) {
  .section { padding: 70px 0; }

  .nav-links, .nav-cta {
    display: none;
  }
  .hamburger { display: flex; }

  .nav-logo { border-radius: 10px; padding: 5px 10px; }
  .nav-logo img { height: 58px; }
  .navbar.scrolled .nav-logo img { height: 50px; }

  .services-grid  { grid-template-columns: 1fr; }
  .testi-grid     { grid-template-columns: 1fr; }
  .surgical-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .surgical-img-wrap.tall { grid-row: span 1; }
  .footer-grid    { grid-template-columns: 1fr; }
  .form-row       { grid-template-columns: 1fr; }
  .hero-stats     { gap: 1rem; }
  .stat-divider   { display: none; }
}

@media (max-width: 480px) {
  .services-grid  { grid-template-columns: 1fr; }
  .surgical-gallery { grid-template-columns: 1fr; }
  .about-img-wrap { width: 260px; height: 260px; }
}
