/* ==========================================================================
   MECHANICAL CLINIC — REDESIGN: "HOSPITAL FOR CARS"
   Dark-first medical aesthetic with red/white/charcoal brand palette
   ========================================================================== */

/* ─── Fonts ─── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* ─── Design Tokens ─── */
:root {
  /* Brand Colors */
  --clinic-red: #D42B2B;
  --clinic-red-light: #E85454;
  --clinic-red-dark: #A51E1E;
  --clinic-red-glow: rgba(212, 43, 43, 0.4);

  /* Backgrounds */
  --bg-body: #0E0E12;
  --bg-section: #131318;
  --bg-card: #1A1A22;
  --bg-card-hover: #22222E;
  --bg-elevated: #25253A;

  /* Text */
  --text-primary: #F0F0F5;
  --text-secondary: #A0A0B8;
  --text-muted: #6B6B82;
  --text-white: #FFFFFF;

  /* Accents */
  --ecg-green: #00E676;
  --whatsapp-green: #25D366;
  --border: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(255, 255, 255, 0.12);

  /* Shadows */
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3);
  --shadow-card-hover: 0 12px 40px rgba(0, 0, 0, 0.5);
  --shadow-red-glow: 0 0 30px rgba(212, 43, 43, 0.3);
  --shadow-btn: 0 4px 16px rgba(212, 43, 43, 0.4);

  /* Typography */
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --section-pad: 4.5rem 0;
  --container-max: 1200px;
  --gap-grid: 1.5rem;

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 100px;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast: 0.2s var(--ease);
  --t-normal: 0.35s var(--ease);
  --t-slow: 0.6s var(--ease);
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-body);
  color: var(--text-primary);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
ul { list-style: none; }
a { color: inherit; text-decoration: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  line-height: 1.2;
  font-weight: 700;
}

p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

/* ─── Layout ─── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: var(--section-pad);
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 3.5rem;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--clinic-red);
  margin-bottom: 1rem;
}

.section-label::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--clinic-red);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-title .highlight {
  color: var(--clinic-red);
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto;
}

/* ─── Header / Nav ─── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all var(--t-normal);
}

.header.scrolled {
  padding: 0.7rem 0;
  background: rgba(14, 14, 18, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: opacity var(--t-fast);
}

.logo-link:hover { opacity: 0.85; }

.logo-badge-img {
  height: 38px;
  width: 38px;
  object-fit: contain;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  display: inline-flex;
  align-items: center;
}

.logo-text .highlight {
  color: var(--clinic-red);
  margin-left: 0.35rem;
}

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

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text-secondary);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  transition: all var(--t-fast);
  position: relative;
}

.nav-link:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}

.nav-link.active {
  color: var(--clinic-red);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: color var(--t-fast);
}

.nav-phone svg {
  width: 16px;
  height: 16px;
  stroke: var(--clinic-red);
}

.nav-phone:hover {
  color: var(--text-primary);
}

/* Mobile menu toggle */
.mobile-menu-btn {
  display: none;
  color: var(--text-primary);
  padding: 0.4rem;
  z-index: 1100;
}

.mobile-menu-btn svg {
  width: 26px;
  height: 26px;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.75rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--t-normal);
  border: none;
  text-decoration: none;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn-red {
  background: var(--clinic-red);
  color: var(--text-white);
}

.btn-red:hover {
  background: var(--clinic-red-dark);
  box-shadow: var(--shadow-btn);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: var(--whatsapp-green);
  color: var(--text-white);
}

.btn-whatsapp:hover {
  background: #1EBE57;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-hover);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-phone {
  background: var(--bg-card);
  color: var(--text-primary);
  border: 1px solid var(--border-hover);
}

.btn-phone:hover {
  background: var(--bg-card-hover);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1rem;
}

/* ─── Hero Section ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 7rem 0 4rem;
  overflow: hidden;
}

/* Workshop photo background */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.12;
  filter: grayscale(40%);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    var(--bg-body) 0%,
    rgba(14, 14, 18, 0.7) 40%,
    rgba(14, 14, 18, 0.9) 70%,
    var(--bg-body) 100%
  );
}

/* ECG Heartbeat Line */
.ecg-line {
  position: absolute;
  bottom: 15%;
  left: 0;
  width: 200%;
  height: 80px;
  z-index: 1;
  opacity: 0.15;
  animation: ecg-scroll 8s linear infinite;
}

.ecg-line path {
  stroke: var(--clinic-red);
  stroke-width: 2;
  fill: none;
  filter: drop-shadow(0 0 6px var(--clinic-red-glow));
}

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

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1.1rem;
  background: rgba(212, 43, 43, 0.1);
  border: 1px solid rgba(212, 43, 43, 0.25);
  border-radius: var(--radius-pill);
  margin-bottom: 1.75rem;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--clinic-red);
  border-radius: 50%;
  animation: pulse-dot 1.5s ease-in-out infinite;
}

.hero-badge span {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--clinic-red-light);
}

.hero-title {
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
}

.hero-title .highlight {
  color: var(--clinic-red);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 540px;
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.hero-punjabi {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 2.25rem;
  font-style: italic;
  opacity: 0.7;
}

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

.hero-stats {
  display: flex;
  gap: 3rem;
  border-top: 1px solid var(--border);
  padding-top: 2rem;
}

.hero-stat {
  text-align: left;
}

.hero-stat .number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
}

.hero-stat .number .unit {
  color: var(--clinic-red);
}

.hero-stat .label {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
}

/* Logo float on right side of hero */
.hero-visual {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  opacity: 0.28;
  pointer-events: none;
}

.hero-visual img {
  width: 420px;
  height: 420px;
  object-fit: contain;
}

/* ─── Service Cards ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-grid);
}

.service-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  transition: all var(--t-normal);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(212, 43, 43, 0.06) 50%,
    transparent 100%
  );
  transition: none;
  pointer-events: none;
  z-index: 0;
}

.service-card:hover::before {
  animation: scan-sweep 0.8s ease-out forwards;
}

@keyframes scan-sweep {
  0% { top: -100%; }
  100% { top: 200%; }
}

/* Scan line glow */
.service-card::after {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--clinic-red), transparent);
  opacity: 0;
  transition: none;
  z-index: 1;
}

.service-card:hover::after {
  animation: scan-line 0.8s ease-out forwards;
}

@keyframes scan-line {
  0% { top: -2px; opacity: 1; }
  100% { top: calc(100% + 2px); opacity: 0; }
}

.service-card:hover {
  border-color: rgba(212, 43, 43, 0.2);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.service-card > * {
  position: relative;
  z-index: 2;
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(212, 43, 43, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: all var(--t-normal);
}

.service-card:hover .service-icon {
  background: var(--clinic-red);
}

.service-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--clinic-red);
  stroke-width: 1.5;
  fill: none;
  transition: stroke var(--t-normal);
}

.service-card:hover .service-icon svg {
  stroke: var(--text-white);
}

.service-name {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.service-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 1.25rem;
}

.service-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--clinic-red);
  transition: gap var(--t-fast);
}

.service-cta:hover { gap: 0.6rem; }

.service-cta svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
}

/* ─── Combo Deal Banner ─── */
#combo-section {
  position: relative;
  background-color: var(--bg-section);
  overflow: hidden;
}

#combo-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 43, 43, 0.12) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.combo-banner {
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, var(--clinic-red-dark) 0%, var(--clinic-red) 50%, #E04040 100%);
  border-radius: var(--radius-lg);
  padding: 3rem;
  overflow: hidden;
  color: var(--text-white);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 40px var(--clinic-red-glow), 0 20px 40px rgba(0, 0, 0, 0.6);
  transition: box-shadow var(--t-normal), transform var(--t-normal);
}

.combo-banner:hover {
  box-shadow: 0 0 60px rgba(212, 43, 43, 0.55), 0 24px 50px rgba(0, 0, 0, 0.7);
  transform: translateY(-2px);
}

.combo-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.combo-banner::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.1);
  pointer-events: none;
}

.combo-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}

.combo-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.9rem;
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

.combo-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 1rem;
}

.combo-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 2rem;
  margin-bottom: 1.5rem;
}

.combo-list li {
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.9);
}

.combo-list li svg {
  width: 16px;
  height: 16px;
  stroke: #FFD700; /* Gold checkmark color */
  fill: none;
  flex-shrink: 0;
}

.combo-free {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.1rem;
  background: #FFD700;
  color: #1A1A2E;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.combo-free svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  flex-shrink: 0;
}

.combo-price-box {
  text-align: center;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  min-width: 220px;
  box-shadow: inset 0 0 15px rgba(255, 255, 255, 0.05);
}

.combo-price-original {
  font-size: 1.15rem;
  text-decoration: line-through;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.2rem;
  font-family: var(--font-heading);
  font-weight: 500;
}

.combo-price-save {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  background: #FFD700;
  color: #1A1A2E;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.combo-price-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.combo-price {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.combo-price .currency {
  font-size: 1.5rem;
  vertical-align: super;
}

.combo-price-note {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
}

.combo-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: var(--text-white);
  color: var(--whatsapp-green);
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  margin-top: 1rem;
  transition: all var(--t-normal);
  text-decoration: none;
  width: 100%;
}

.combo-cta svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex-shrink: 0;
}

.combo-cta:hover {
  transform: translateY(-2px);
  background: var(--whatsapp-green);
  color: var(--text-white);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* ─── Trust / Stats Strip ─── */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.trust-card {
  text-align: center;
  padding: 2rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all var(--t-normal);
}

.trust-card:hover {
  border-color: rgba(212, 43, 43, 0.2);
  transform: translateY(-2px);
}

.trust-card .icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(212, 43, 43, 0.1);
}

.trust-card .icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--clinic-red);
  fill: none;
}

.trust-card .value {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
}

.trust-card .label {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ─── Contact Page ─── */
.contact-hero {
  padding: 8rem 0 4rem;
  text-align: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2.5rem;
}

.contact-info-card h3 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-info-card h3 svg {
  width: 20px;
  height: 20px;
  stroke: var(--clinic-red);
  fill: none;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-item-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(212, 43, 43, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--clinic-red);
  fill: none;
}

.contact-item-text h4 {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--text-primary);
}

.contact-item-text p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
}

.contact-item-text a {
  color: var(--text-primary);
  transition: color var(--t-fast);
}

.contact-item-text a:hover {
  color: var(--clinic-red);
}

/* WhatsApp specific contact item styles */
#contact-whatsapp .contact-item-icon {
  background: rgba(37, 211, 102, 0.1);
}

#contact-whatsapp .contact-item-icon svg {
  fill: var(--whatsapp-green);
}

.contact-cta-group {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

/* Hours Card */
.hours-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-row .day {
  font-weight: 600;
  color: var(--text-primary);
}

.hours-row .time {
  color: var(--text-secondary);
}

.hours-row.closed .time {
  color: var(--clinic-red);
  font-weight: 600;
}

/* Map Container */
.map-container {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 350px;
  margin-top: 2rem;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: invert(90%) hue-rotate(180deg) brightness(0.9) contrast(1.2);
}

/* ─── Footer ─── */
.footer {
  background: var(--bg-section);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}

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

.footer-logo {
  height: 38px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 320px;
  line-height: 1.7;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.footer-social-link {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t-fast);
}

.footer-social-link:hover {
  background: var(--clinic-red);
  border-color: var(--clinic-red);
}

.footer-social-link svg {
  width: 16px;
  height: 16px;
  stroke: var(--text-secondary);
  fill: none;
  transition: stroke var(--t-fast);
}

.footer-social-link:hover svg {
  stroke: var(--text-white);
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

.footer-links li {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color var(--t-fast);
}

.footer-links a:hover {
  color: var(--clinic-red);
}

.footer-links svg {
  width: 15px;
  height: 15px;
  stroke: var(--clinic-red); /* Clinic Red for standard footer icons */
  fill: none;
  flex-shrink: 0;
  transition: stroke var(--t-fast);
}

.footer-links a:hover svg {
  stroke: var(--clinic-red-light);
}

/* Green WhatsApp footer icon style */
.footer-links a.whatsapp-link svg {
  stroke: none;
  fill: var(--whatsapp-green);
}

.footer-links a.whatsapp-link:hover svg {
  fill: #1ebd56; /* Slightly lighter WhatsApp green */
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
}

/* ─── Scroll Reveal ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Services Page Specific ─── */
.services-hero {
  padding: 8rem 0 3rem;
  text-align: center;
}

/* Prescription-style combo card */
.prescription-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  position: relative;
}

.prescription-card::before {
  content: 'Rx';
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(212, 43, 43, 0.08);
  line-height: 1;
}

.prescription-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px dashed var(--border);
}

.prescription-title {
  font-size: 1.4rem;
  font-weight: 700;
}

.prescription-badge {
  padding: 0.3rem 0.8rem;
  background: rgba(212, 43, 43, 0.1);
  border: 1px solid rgba(212, 43, 43, 0.2);
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--clinic-red);
}

.prescription-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.prescription-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.prescription-item .check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(0, 230, 118, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.prescription-item .check svg {
  width: 10px;
  height: 10px;
  stroke: var(--ecg-green);
  stroke-width: 3;
  fill: none;
}

.prescription-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 2px dashed var(--border);
}

.prescription-price {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--clinic-red);
}

.prescription-price .starting {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 0.2rem;
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .combo-inner {
    grid-template-columns: 1fr;
  }

  .combo-price-box {
    min-width: unset;
  }

  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .hero-visual {
    display: none;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 4rem 0;
  }

  .nav-wrapper {
    display: contents;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg-section);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    gap: 0.5rem;
    transition: right var(--t-normal);
    border-left: 1px solid var(--border);
    z-index: 1050;
  }

  .nav-menu.open {
    right: 0;
  }

  .nav-link {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .nav-phone {
    display: none;
  }

  /* Mobile menu overlay */
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1040;
  }

  .nav-overlay.open {
    display: block;
  }

  .hero {
    padding: 6.5rem 0 3rem;
    min-height: auto;
  }

  .hero-title {
    font-size: 2.4rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .hero-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .section-title {
    font-size: 1.85rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .combo-banner {
    padding: 2rem 1.5rem;
  }

  .combo-list {
    grid-template-columns: 1fr;
  }

  .combo-price {
    font-size: 2.25rem;
  }

  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-info-card {
    padding: 1.5rem;
  }

  .contact-cta-group {
    flex-direction: column;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .prescription-items {
    grid-template-columns: 1fr;
  }

  .prescription-footer {
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .combo-title {
    font-size: 1.5rem;
  }

  .service-card {
    padding: 1.5rem;
  }
}
