/* ============================================================
   Elite Healthcare Medical Services — Global Stylesheet
   Color Palette: Deep Teal #0d2b35, Gold #c9a96e, Cream #f5f0e8
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Montserrat:wght@300;400;500;600&display=swap');

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

:root {
  --teal-dark:   #0a2028;
  --teal:        #0d2b35;
  --teal-mid:    #12404f;
  --gold:        #c9a96e;
  --gold-light:  #e0c898;
  --gold-dark:   #a07840;
  --cream:       #f5f0e8;
  --cream-dark:  #ede6d6;
  --white:       #ffffff;
  --text-dark:   #1a1a1a;
  --text-mid:    #4a4a4a;
  --text-light:  #8a8a8a;
  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Montserrat', sans-serif;
  --transition:  0.35s ease;
  --radius:      4px;
  --shadow:      0 8px 40px rgba(0,0,0,0.12);
  --shadow-lg:   0 20px 60px rgba(0,0,0,0.2);
}

html { scroll-behavior: smooth; font-size: 16px; }

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

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

/* ---- Typography ---- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }

.serif { font-family: var(--font-serif); }
.gold  { color: var(--gold); }
.cream { color: var(--cream); }

/* ---- Utility ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section    { padding: 100px 0; }
.section-sm { padding: 60px 0; }
.text-center { text-align: center; }

.divider {
  width: 60px; height: 2px;
  background: var(--gold);
  margin: 1.2rem auto 2rem;
}
.divider-left { margin-left: 0; }

.tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-gold {
  background: var(--gold);
  color: var(--teal-dark);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,169,110,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--teal-dark);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--teal-dark);
}
.btn-white:hover {
  background: var(--cream);
  transform: translateY(-2px);
}

/* ---- Navigation ---- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  transition: background var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: rgba(10, 32, 40, 0.97);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
  backdrop-filter: blur(10px);
}

.navbar-logo img {
  height: 56px;
  width: auto;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.navbar-links a {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
  transition: color var(--transition);
  position: relative;
}

.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.navbar-links a:hover,
.navbar-links a.active { color: var(--gold); }
.navbar-links a:hover::after,
.navbar-links a.active::after { width: 100%; }

.navbar-cta {
  font-size: 0.7rem !important;
  padding: 0.55rem 1.4rem;
  background: var(--gold) !important;
  color: var(--teal-dark) !important;
  border-radius: var(--radius);
  font-weight: 700 !important;
  letter-spacing: 0.12em !important;
}
.navbar-cta:hover { background: var(--gold-light) !important; }
.navbar-cta::after { display: none !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--cream);
  transition: var(--transition);
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.45);
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,32,40,0.85) 0%, rgba(10,32,40,0.4) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 2rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero-content .tag { font-size: 0.75rem; }

.hero-content h1 {
  color: var(--white);
  max-width: 700px;
  margin-bottom: 1.5rem;
}

.hero-content h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-content p {
  color: rgba(245,240,232,0.85);
  font-size: 1.05rem;
  max-width: 520px;
  margin-bottom: 2.5rem;
  font-weight: 300;
  letter-spacing: 0.03em;
}

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

.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(245,240,232,0.6);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ---- Section Headings ---- */
.section-heading { margin-bottom: 3.5rem; }
.section-heading.text-center .divider { margin: 1rem auto 0; }
.section-heading.left .divider { margin: 1rem 0 0; }

/* ---- Cards ---- */
.card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.card-img { width: 100%; height: 240px; object-fit: cover; }
.card-body { padding: 1.8rem; }
.card-body h3 { margin-bottom: 0.6rem; font-size: 1.4rem; }
.card-body p { color: var(--text-mid); font-size: 0.9rem; margin-bottom: 1.2rem; }

/* ---- Service Grid ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

/* ---- Service Icon Card ---- */
.service-icon-card {
  background: var(--white);
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-icon-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  transform: scaleX(0);
  transition: transform var(--transition);
}
.service-icon-card:hover::before { transform: scaleX(1); }
.service-icon-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.service-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--teal), var(--teal-mid));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.service-icon svg { width: 28px; height: 28px; fill: var(--gold); }
.service-icon-card h3 { font-size: 1.3rem; margin-bottom: 0.6rem; color: var(--teal-dark); }
.service-icon-card p { font-size: 0.88rem; color: var(--text-mid); margin-bottom: 0; }

/* ---- Dark Section ---- */
.section-dark {
  background: var(--teal-dark);
  color: var(--cream);
}
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--cream); }
.section-dark p { color: rgba(245,240,232,0.8); }

.section-teal {
  background: var(--teal);
  color: var(--cream);
}
.section-teal h2, .section-teal h3 { color: var(--cream); }
.section-teal p { color: rgba(245,240,232,0.8); }

.section-cream { background: var(--cream); }
.section-cream-dark { background: var(--cream-dark); }

/* ---- Two Column Layout ---- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

.col-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
.col-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 8px;
}
.col-image::after {
  content: '';
  position: absolute;
  bottom: -20px; right: -20px;
  width: 60%;
  height: 60%;
  border: 2px solid var(--gold);
  border-radius: 8px;
  z-index: -1;
}

/* ---- Steps / Process ---- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
}

.step-card {
  text-align: center;
  padding: 2rem 1.5rem;
}

.step-number {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1rem;
}

.step-card h4 { margin-bottom: 0.5rem; font-size: 1.1rem; }
.step-card p  { font-size: 0.88rem; color: var(--text-mid); margin-bottom: 0; }

/* ---- Stats Bar ---- */
.stats-bar {
  background: var(--teal-dark);
  padding: 4rem 2rem;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
  text-align: center;
}
.stat-item h3 {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 0.3rem;
}
.stat-item p {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.7);
  margin-bottom: 0;
}

/* ---- Testimonials ---- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: 8px;
  padding: 2.5rem;
}

.testimonial-stars { color: var(--gold); font-size: 1rem; margin-bottom: 1rem; }
.testimonial-text {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--cream);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}
.testimonial-author {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ---- CTA Banner ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal-mid) 100%);
  padding: 80px 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at center, rgba(201,169,110,0.08) 0%, transparent 60%);
}
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner p  { color: rgba(245,240,232,0.8); max-width: 560px; margin: 0 auto 2.5rem; font-size: 1rem; }

/* ---- Page Hero (inner pages) ---- */
.page-hero {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 80px;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.4);
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,32,40,0.9) 0%, rgba(10,32,40,0.5) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}
.page-hero-content h1 { color: var(--white); margin-bottom: 0.5rem; }
.page-hero-content p  { color: rgba(245,240,232,0.8); font-size: 1.05rem; max-width: 560px; }

/* ---- Accordion ---- */
.accordion-item {
  border-bottom: 1px solid rgba(201,169,110,0.2);
}
.accordion-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 1.4rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--teal-dark);
  text-align: left;
}
.accordion-btn .icon {
  width: 24px; height: 24px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  color: var(--gold);
  font-size: 1.1rem;
  line-height: 1;
}
.accordion-btn.open .icon { transform: rotate(45deg); }
.accordion-body {
  display: none;
  padding-bottom: 1.4rem;
  color: var(--text-mid);
  font-size: 0.9rem;
  line-height: 1.8;
}
.accordion-body.open { display: block; }

/* ---- Contact Form ---- */
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.15);
}
.form-group textarea { resize: vertical; min-height: 130px; }

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

/* ---- Map / Contact Info ---- */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
}
.contact-info-item { text-align: center; }
.contact-info-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--teal), var(--teal-mid));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.contact-info-icon svg { width: 22px; height: 22px; fill: var(--gold); }
.contact-info-item h4 { font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.4rem; }
.contact-info-item p  { font-size: 0.9rem; color: var(--text-mid); margin-bottom: 0; }

/* ---- Hours Table ---- */
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table tr { border-bottom: 1px solid rgba(201,169,110,0.15); }
.hours-table td { padding: 0.8rem 0; font-size: 0.9rem; }
.hours-table td:last-child { text-align: right; color: var(--gold); font-weight: 600; }

/* ---- Footer ---- */
.footer {
  background: var(--teal-dark);
  color: rgba(245,240,232,0.7);
  padding: 70px 2rem 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand img { height: 70px; margin-bottom: 1.2rem; }
.footer-brand p { font-size: 0.88rem; line-height: 1.8; max-width: 280px; }
.footer-col h5 {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(245,240,232,0.7);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-col p { font-size: 0.88rem; line-height: 1.9; }
.footer-bottom {
  border-top: 1px solid rgba(201,169,110,0.15);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(245,240,232,0.4);
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ---- Booking Page ---- */
.booking-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: start;
}

.booking-info h3 { margin-bottom: 1rem; }
.booking-info p  { color: var(--text-mid); font-size: 0.9rem; margin-bottom: 1.5rem; }

.booking-steps { margin-top: 2rem; }
.booking-step  { display: flex; gap: 1.2rem; margin-bottom: 1.5rem; align-items: flex-start; }
.booking-step-num {
  width: 36px; height: 36px;
  background: var(--teal-dark);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.booking-step-text h5 { font-size: 0.9rem; font-weight: 600; margin-bottom: 0.2rem; }
.booking-step-text p  { font-size: 0.85rem; color: var(--text-mid); margin-bottom: 0; }

/* ---- About Page ---- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
}
.team-card { text-align: center; }
.team-card img {
  width: 160px; height: 160px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.2rem;
  border: 3px solid var(--gold);
}
.team-card h4 { margin-bottom: 0.2rem; }
.team-card .role { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); }

/* ---- Values ---- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}
.value-card {
  padding: 2rem;
  border-left: 3px solid var(--gold);
  background: rgba(255,255,255,0.04);
}
.value-card h4 { color: var(--gold); margin-bottom: 0.5rem; font-size: 1.1rem; }
.value-card p  { font-size: 0.88rem; margin-bottom: 0; opacity: 0.8; }

/* ---- Weight Mgmt Page ---- */
.wm-section-card {
  background: var(--white);
  border-radius: 8px;
  padding: 3rem;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--gold);
  margin-bottom: 2rem;
}
.wm-section-card h3 { color: var(--teal-dark); margin-bottom: 1rem; }
.wm-section-card p  { color: var(--text-mid); font-size: 0.92rem; }
.wm-section-card ul { padding-left: 1.2rem; list-style: disc; }
.wm-section-card ul li { color: var(--text-mid); font-size: 0.92rem; margin-bottom: 0.4rem; }

/* ---- IV Therapy Page ---- */
.iv-benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}
.iv-benefit {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: 8px;
  padding: 2rem 1.5rem;
  text-align: center;
}
.iv-benefit .icon-wrap {
  font-size: 2rem;
  margin-bottom: 0.8rem;
  color: var(--gold);
}
.iv-benefit h4 { font-size: 1rem; color: var(--cream); margin-bottom: 0.4rem; }
.iv-benefit p  { font-size: 0.83rem; opacity: 0.75; margin-bottom: 0; }

/* ---- Animations ---- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .two-col { grid-template-columns: 1fr; gap: 3rem; }
  .two-col.reverse { direction: ltr; }
  .col-image::after { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .booking-wrapper { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .navbar-links { display: none; flex-direction: column; position: fixed; top: 80px; left: 0; right: 0; background: rgba(10,32,40,0.98); padding: 2rem; gap: 1.5rem; }
  .navbar-links.open { display: flex; }
  .hamburger { display: flex; }
  .section { padding: 70px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-content h1 { font-size: 2.4rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.2rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; }
  .stats-grid { grid-template-columns: 1fr; }
}
