/* ============================================================
   GURIRAB PULMONOLOGY — Design System
   Theme: Sky-blue / midnight navy  (respiratory, air, breath)
   ============================================================
   --navy      #0B1E36   Midnight navy
   --navy-2    #112840   Lighter navy layer
   --sky       #1584C8   Sky blue (primary accent)
   --sky-lt    #8AC8E8   Light sky
   --mint      #0F9E82   Health green (secondary)
   --orange    #E07640   Warm CTA
   --light-bg  #EBF5FC   Airy pale background
   --text      #1A2B3C
   --muted     #607080
   ============================================================ */

/* ── Reset & base ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:     #0B1E36;
  --navy-2:   #112840;
  --sky:      #1584C8;
  --sky-lt:   #8AC8E8;
  --mint:     #0F9E82;
  --orange:   #E07640;
  --light-bg: #EBF5FC;
  --text:     #1A2B3C;
  --muted:    #607080;
  --white:    #FFFFFF;
  --shadow-sm: 0 2px 16px rgba(11,30,54,.07);
  --shadow-md: 0 8px 36px rgba(11,30,54,.13);
  --radius:   14px;
  --tr: .3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  font-size: 1rem;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
.section-pad { padding: 90px 0; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn-sky {
  background: var(--sky);
  color: var(--white);
  border: 2px solid var(--sky);
  font-weight: 600;
  letter-spacing: .2px;
  transition: background var(--tr), box-shadow var(--tr), transform var(--tr);
}
.btn-sky:hover, .btn-sky:focus {
  background: #1270aa;
  border-color: #1270aa;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(21,132,200,.35);
}

.btn-outline-hero {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.5);
  font-weight: 600;
  transition: all var(--tr);
}
.btn-outline-hero:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-2px);
}

/* ── Section helpers ─────────────────────────────────────── */
.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: .75rem;
}
.section-label-light {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--sky-lt);
  margin-bottom: .75rem;
}
.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
}


/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
  background: var(--navy);
  color: rgba(255,255,255,.8);
  font-size: .82rem;
  font-weight: 500;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.top-bar .vbar { opacity: .25; }
.top-bar a {
  color: rgba(255,255,255,.7);
  font-size: 1rem;
  transition: color var(--tr);
}
.top-bar a:hover { color: var(--sky-lt); }


/* ============================================================
   NAVBAR
   ============================================================ */
.main-navbar {
  background: var(--white);
  border-bottom: 1px solid rgba(11,30,54,.07);
  padding: 16px 0;
  transition: box-shadow var(--tr);
  z-index: 1000;
}
.main-navbar.scrolled { box-shadow: 0 4px 24px rgba(11,30,54,.1); }

/* Logo */
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--sky) 0%, #0d6ea8 100%);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* Full lockup logo in the navbar */
.brand-logo {
  height: 42px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
@media (max-width: 575.98px) { .brand-logo { height: 34px; } }

.brand-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.3px;
}
.brand-text span { color: var(--sky); }

.main-navbar .nav-link {
  font-size: .875rem;
  font-weight: 600;
  color: var(--navy) !important;
  padding: 6px 14px !important;
  border-radius: 8px;
  transition: color var(--tr), background var(--tr);
}
.main-navbar .nav-link:hover {
  color: var(--sky) !important;
  background: rgba(21,132,200,.08);
}

.main-navbar .navbar-toggler {
  border-color: rgba(11,30,54,.2);
}
.main-navbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%230B1E36' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}


/* ============================================================
   HERO — dark gradient
   ============================================================ */
.hero-section {
  background: linear-gradient(140deg, #0B1E36 0%, #0f3055 45%, #0d5c96 100%);
  padding: 90px 0 0;
  position: relative;
  overflow: hidden;
}
.min-vh-hero { min-height: 88vh; }

/* Breathing rings */
.breathe-rings {
  position: absolute;
  top: 50%; right: 8%;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 0;
}
.ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(138,200,232,.25);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%) scale(0.9);
  animation: breathe-pulse 4s ease-out infinite;
}
.r1 { width: 420px; height: 420px; animation-delay: 0s; }
.r2 { width: 640px; height: 640px; animation-delay: 1.3s; }
.r3 { width: 860px; height: 860px; animation-delay: 2.6s; }

@keyframes breathe-pulse {
  0%   { transform: translate(-50%,-50%) scale(0.92); opacity: 0; }
  30%  { opacity: .6; }
  100% { transform: translate(-50%,-50%) scale(1.12); opacity: 0; }
}

/* Hero copy */
.hero-copy { position: relative; z-index: 2; padding-bottom: 60px; }

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(138,200,232,.12);
  color: var(--sky-lt);
  border: 1px solid rgba(138,200,232,.3);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,.7);
  max-width: 480px;
  margin-bottom: 2rem;
  line-height: 1.75;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 2rem;
}
.hero-badges span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  padding: 5px 14px;
  border-radius: 50px;
  backdrop-filter: blur(4px);
}
.hero-badges span i { color: var(--sky-lt); }

.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; }

/* Hero image */
.hero-image-col { position: relative; z-index: 2; }
.hero-img-wrapper {
  position: relative;
  border-radius: 24px 24px 0 0;
  overflow: hidden;
}
.hero-img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.hero-badge-float {
  position: absolute;
  bottom: 28px; left: -18px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 22px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'DM Sans', sans-serif;
}
.hero-badge-float i { font-size: 1.5rem; color: var(--sky); }
.hero-badge-float span {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
}
.hero-badge-float small {
  font-size: .72rem;
  font-weight: 500;
  color: var(--muted);
}

/* Wave divider */
.hero-wave {
  position: relative;
  bottom: -2px;
  line-height: 0;
  z-index: 1;
}
.hero-wave svg { width: 100%; height: 60px; }


/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--navy);
  padding: 50px 0;
  border-top: 3px solid var(--sky);
}
.stat-item {
  padding: 20px 12px;
  border-right: 1px solid rgba(255,255,255,.06);
}
.stat-item:last-child { border-right: none; }

.stat-num {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--sky-lt);
  line-height: 1;
}
.stat-plus {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--sky-lt);
}
.stat-item p {
  margin: 8px 0 0;
  font-size: .8rem;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: 1.2px;
}


/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section { background: var(--light-bg); }

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  height: 100%;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: transform var(--tr), box-shadow var(--tr);
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--sky), var(--sky-lt));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--tr);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.service-card:hover::after { transform: scaleX(1); }

.service-icon-circle {
  width: 62px; height: 62px;
  background: rgba(21,132,200,.1);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: background var(--tr);
}
.service-card:hover .service-icon-circle { background: var(--sky); }
.service-icon-circle i {
  font-size: 1.4rem;
  color: var(--sky);
  transition: color var(--tr);
}
.service-card:hover .service-icon-circle i { color: var(--white); }

.service-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.service-card p { font-size: .9rem; color: var(--muted); margin-bottom: 20px; line-height: 1.65; }
.service-link {
  font-size: .85rem;
  font-weight: 700;
  color: var(--sky);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap var(--tr);
}
.service-link:hover { gap: 9px; }


/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-section { background: var(--white); }

.why-img-wrapper { position: relative; }
.why-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}
.why-exp-badge {
  position: absolute;
  bottom: -18px; right: -18px;
  background: linear-gradient(135deg, var(--sky) 0%, #0d6ea8 100%);
  color: var(--white);
  border-radius: var(--radius);
  padding: 22px 26px;
  text-align: center;
  box-shadow: 0 8px 28px rgba(21,132,200,.4);
}
.exp-num {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.exp-text {
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255,255,255,.8);
  text-transform: uppercase;
  letter-spacing: .5px;
  line-height: 1.5;
  margin-top: 4px;
  display: block;
}

/* Accordion */
.why-accordion { margin-top: 1.25rem; display: flex; flex-direction: column; gap: 10px; }

.why-acc-item {
  border: 1.5px solid rgba(11,30,54,.1);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--tr), box-shadow var(--tr);
}
.why-acc-item.active {
  border-color: var(--sky);
  box-shadow: 0 4px 22px rgba(21,132,200,.18);
}

.why-acc-header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background var(--tr);
}
.why-acc-item.active .why-acc-header { background: var(--navy); }
.why-acc-header:hover { background: rgba(11,30,54,.04); }
.why-acc-item.active .why-acc-header:hover { background: var(--navy-2); }

.acc-num {
  font-size: .82rem;
  font-weight: 800;
  color: var(--sky);
  min-width: 28px;
  flex-shrink: 0;
}
.acc-title {
  flex: 1;
  font-family: 'DM Sans', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  color: var(--navy);
}
.why-acc-item.active .acc-title { color: var(--white); }

.acc-icon { color: var(--muted); transition: transform var(--tr); flex-shrink: 0; }
.why-acc-item.active .acc-icon { transform: rotate(180deg); color: var(--sky-lt); }

.why-acc-body {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height .4s ease, padding .3s ease;
}
.why-acc-item.active .why-acc-body { max-height: 160px; padding: 0 20px 18px; background: var(--navy); }
.why-acc-body p { font-size: .92rem; margin: 0; color: rgba(255,255,255,.75); }
.why-acc-item:not(.active) .why-acc-body p { color: var(--muted); }


/* ============================================================
   SERVICES DETAIL — dark navy band
   ============================================================ */
.services-detail-section { background: var(--navy); }

.services-detail-inner {
  display: grid;
  grid-template-columns: 1fr 2.5fr;
}

.services-detail-heading {
  background: var(--navy-2);
  padding: 72px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.services-detail-heading h2 {
  color: var(--white);
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  margin-bottom: 1rem;
  line-height: 1.3;
}
.services-detail-heading p { color: rgba(255,255,255,.55); font-size: .92rem; line-height: 1.75; }

.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.detail-col {
  padding: 52px 32px;
  border-left: 1px solid rgba(255,255,255,.07);
  transition: background var(--tr);
}
.detail-col:hover { background: rgba(21,132,200,.07); }

.detail-col-icon {
  width: 46px; height: 46px;
  background: rgba(21,132,200,.2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.detail-col-icon i { font-size: 1.2rem; color: var(--sky-lt); }
.detail-col h4 { color: var(--white); font-size: .98rem; margin-bottom: 14px; }

.detail-col ul { list-style: none; padding: 0; margin-bottom: 22px; }
.detail-col ul li {
  color: rgba(255,255,255,.55);
  font-size: .87rem;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  display: flex;
  align-items: center;
  gap: 8px;
}
.detail-col ul li::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--sky);
  flex-shrink: 0;
}

.detail-link {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  color: rgba(255,255,255,.7);
  border: 1px solid rgba(255,255,255,.2);
  padding: 6px 18px;
  border-radius: 50px;
  transition: all var(--tr);
}
.detail-link:hover {
  background: var(--sky);
  border-color: var(--sky);
  color: var(--white);
}


/* ============================================================
   WORKING PROCESS
   ============================================================ */
.process-section { background: var(--white); }

.process-timeline { position: relative; }
.process-line {
  position: absolute;
  top: 52px; left: 12.5%; right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--sky), var(--sky-lt));
  z-index: 0;
}

.process-step { text-align: center; padding: 0 10px; position: relative; z-index: 1; }

.process-icon {
  position: relative;              /* anchors .process-num to the circle */
  width: 90px; height: 90px;
  background: var(--light-bg);
  border: 3px solid var(--sky);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  transition: background var(--tr), transform var(--tr), box-shadow var(--tr);
}
.process-step:hover .process-icon {
  background: var(--sky);
  transform: scale(1.08);
  box-shadow: 0 8px 24px rgba(21,132,200,.3);
}
.process-icon i { font-size: 1.6rem; color: var(--sky); transition: color var(--tr); }
.process-step:hover .process-icon i { color: var(--white); }

.process-num {
  position: absolute;
  top: 2px; right: 2px;            /* sits on the circle's rim, not off its corner */
  background: var(--navy);
  color: var(--white);
  width: 28px; height: 28px;
  border-radius: 50%;
  font-size: .7rem;
  font-weight: 800;
  line-height: 1;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 3px var(--white);
  z-index: 2;
}
.process-step h4 { font-size: 1rem; margin-bottom: 8px; color: var(--navy); }
.process-step p { font-size: .87rem; color: var(--muted); line-height: 1.6; }


/* ============================================================
   QUOTE SECTION
   ============================================================ */
.quote-section {
  position: relative;
  background: url('img/lung-bg.jpg') center / cover no-repeat;
  padding: 100px 0;
  overflow: hidden;
}
.quote-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(140deg, rgba(11,30,54,.95) 0%, rgba(13,92,150,.82) 100%);
}
.quote-section-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  border: 4px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow-md);
}
.quote-content { color: var(--white); }
.quote-icon { font-size: 2.75rem; color: var(--sky-lt); opacity: .6; margin-bottom: 1rem; }

.quote-content blockquote {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-style: italic;
  line-height: 1.8;
  color: rgba(255,255,255,.88);
  margin-bottom: 2rem;
}
.quote-author { display: flex; align-items: center; gap: 16px; }
.quote-author img {
  width: 64px; height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--sky);
}
.quote-author strong {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}
.quote-author span { font-size: .85rem; color: var(--sky-lt); }


/* ============================================================
   TEAM SECTION
   ============================================================ */
.team-section { background: var(--light-bg); }

.team-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--tr), box-shadow var(--tr);
}
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }

.team-photo-wrap { position: relative; overflow: hidden; }
.team-photo-wrap img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: top center;
  transition: transform .5s ease;
}
.team-card:hover .team-photo-wrap img { transform: scale(1.05); }

.team-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(11,30,54,.88) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 12px;
  padding-bottom: 20px;
  opacity: 0;
  transition: opacity var(--tr);
}
.team-card:hover .team-overlay { opacity: 1; }
.team-overlay a {
  width: 38px; height: 38px;
  background: var(--sky);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
  transition: background var(--tr);
}
.team-overlay a:hover { background: var(--white); color: var(--sky); }

.team-info { padding: 24px; }
.team-info h4 { font-size: 1.1rem; color: var(--navy); margin-bottom: 4px; }
.team-info span {
  display: block;
  font-size: .85rem;
  color: var(--sky);
  font-weight: 600;
  margin-bottom: 10px;
}
.team-info p { font-size: .88rem; color: var(--muted); margin: 0; line-height: 1.6; }


/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--white); }

.testimonial-card {
  background: var(--white);
  border: 1.5px solid rgba(11,30,54,.07);
  border-radius: var(--radius);
  padding: 32px 28px;
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition: transform var(--tr), box-shadow var(--tr);
}
.testimonial-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.testimonial-featured { background: var(--navy); border-color: transparent; }
.testimonial-featured .test-quote { color: rgba(255,255,255,.88); }
.testimonial-featured .test-author strong { color: var(--white); }
.testimonial-featured .test-author span { color: var(--sky-lt); }

.test-stars { color: #F59E0B; letter-spacing: 2px; margin-bottom: 16px; }
.test-quote { font-size: .95rem; color: var(--text); font-style: italic; line-height: 1.75; margin-bottom: 24px; }
.test-author { display: flex; align-items: center; gap: 14px; }
.test-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--sky);
  color: var(--white);
  font-size: .85rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.test-author strong {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  color: var(--navy);
}
.test-author span { font-size: .82rem; color: var(--muted); }


/* ============================================================
   APPOINTMENT
   ============================================================ */
.appointment-section { overflow: hidden; }

.appt-left { background: var(--navy); min-height: 600px; }
.appt-left-inner {
  padding: 80px 60px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.appt-left-inner h2 {
  color: var(--white);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.appt-left-inner > p { color: rgba(255,255,255,.65); font-size: 1rem; margin-bottom: 2.5rem; }

.appt-info-items { display: flex; flex-direction: column; gap: 22px; }
.appt-info-item { display: flex; align-items: flex-start; gap: 16px; }
.appt-info-item > i { font-size: 1.1rem; color: var(--sky-lt); margin-top: 3px; flex-shrink: 0; }
.appt-info-item strong {
  display: block;
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,.5);
  margin-bottom: 3px;
}
.appt-info-item span { font-size: .9rem; color: rgba(255,255,255,.85); }

.appt-right { background: var(--light-bg); }
.appt-form-wrapper { padding: 70px 60px; }
.appt-form-wrapper h3 { font-size: 1.75rem; color: var(--navy); margin-bottom: 6px; }

/* Contact detail cards (replaces the old appointment form) */
.contact-cards { display: flex; flex-direction: column; gap: 16px; }

.contact-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 22px;
  background: var(--white);
  border: 1.5px solid rgba(11,30,54,.10);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--text);
  box-shadow: var(--shadow-sm);
  transition: border-color var(--tr), box-shadow var(--tr), transform var(--tr);
}
a.contact-card:hover,
a.contact-card:focus-visible {
  border-color: var(--sky);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  outline: none;
}
a.contact-card:focus-visible { box-shadow: 0 0 0 3.5px rgba(21,132,200,.24); }

.contact-card-static { cursor: default; }

.contact-card-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(21,132,200,.10);
  color: var(--sky);
  font-size: 1.05rem;
}
.contact-card-static .contact-card-icon { background: rgba(11,30,54,.06); color: var(--navy); }

.contact-card-body { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.contact-card-body strong {
  font-size: .74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .9px;
  color: var(--muted);
}
.contact-card-value {
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--navy);
  word-break: break-word;
}
.contact-card-note { font-size: .82rem; color: var(--muted); }

.contact-card-arrow {
  margin-left: auto;
  flex-shrink: 0;
  color: var(--sky);
  font-size: .9rem;
  opacity: .45;
  transition: opacity var(--tr), transform var(--tr);
}
a.contact-card:hover .contact-card-arrow { opacity: 1; transform: translateX(4px); }

.contact-disclaimer {
  margin-top: 26px;
  margin-bottom: 0;
  font-size: .82rem;
  line-height: 1.6;
  color: var(--muted);
  background: rgba(11,30,54,.04);
  border-radius: 10px;
  padding: 14px 16px;
}
.contact-disclaimer i { color: var(--sky); }

@media (max-width: 575.98px) {
  .contact-card { padding: 16px; gap: 14px; }
  .contact-card-icon { width: 42px; height: 42px; font-size: .95rem; }
  .contact-card-value { font-size: .95rem; }
  .contact-card-arrow { display: none; }
}


/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--navy); padding-top: 72px; }

.footer-brand { max-width: 320px; }
.footer-logo {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1rem;
}
.footer-logo i { color: var(--sky-lt); }
.footer-brand p { font-size: .87rem; color: rgba(255,255,255,.45); line-height: 1.75; margin-bottom: 1.5rem; }

.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.7);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
  transition: background var(--tr), color var(--tr);
}
.footer-socials a:hover { background: var(--sky); color: var(--white); }

.footer-heading {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,.9);
  margin-bottom: 1.25rem;
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: .88rem;
  color: rgba(255,255,255,.45);
  transition: color var(--tr), padding-left var(--tr);
  display: inline-block;
}
.footer-links a:hover { color: var(--sky-lt); padding-left: 4px; }

.footer-contact { list-style: none; padding: 0; }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .87rem;
  color: rgba(255,255,255,.45);
  margin-bottom: 13px;
  line-height: 1.5;
}
.footer-contact i { color: var(--sky-lt); margin-top: 2px; flex-shrink: 0; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 20px 0;
  margin-top: 10px;
}
.footer-bottom p, .footer-bottom a { font-size: .82rem; color: rgba(255,255,255,.3); }
.footer-bottom a:hover { color: var(--sky-lt); }


/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 46px; height: 46px;
  background: var(--sky);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  box-shadow: 0 4px 20px rgba(21,132,200,.45);
  opacity: 0; pointer-events: none;
  transform: translateY(10px);
  transition: opacity var(--tr), transform var(--tr);
  z-index: 999;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top:hover { background: var(--navy); box-shadow: 0 6px 22px rgba(11,30,54,.35); color: var(--white); }


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1199px) {
  .services-detail-inner { grid-template-columns: 1fr; }
  .services-detail-grid { grid-template-columns: repeat(2, 1fr); }
  .detail-col:nth-child(odd) { border-left: none; }
  .services-detail-heading { padding: 60px 40px; }
  .breathe-rings { display: none; }
}

@media (max-width: 991px) {
  .section-pad { padding: 70px 0; }
  .hero-section { padding: 70px 0 0; }
  .min-vh-hero { min-height: auto; }
  .hero-img { height: 420px; }
  .hero-badge-float { left: 10px; }
  .why-img { height: 420px; }
  .why-exp-badge { bottom: -14px; right: 10px; }
  .appt-left-inner { padding: 60px 40px; }
  .appt-form-wrapper { padding: 60px 40px; }
  .process-line { display: none; }
  .quote-section-img { height: 320px; }
}

@media (max-width: 767px) {
  .hero-title { font-size: 2.4rem; }
  .hero-copy { padding-bottom: 40px; }
  .hero-img { height: 300px; }
  .hero-badge-float { display: none; }
  .hero-ctas { flex-direction: column; }

  .services-detail-grid { grid-template-columns: 1fr; }
  .detail-col { border-left: none; border-top: 1px solid rgba(255,255,255,.06); }

  .appt-left-inner { padding: 50px 24px; }
  .appt-form-wrapper { padding: 40px 24px; }

  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.06); }

  .why-exp-badge { right: 10px; bottom: -10px; padding: 16px 20px; }
  .exp-num { font-size: 2rem; }

  .footer-bottom .d-flex { flex-direction: column; gap: 6px; text-align: center; }
}

@media (max-width: 575px) {
  .brand-text { font-size: 1rem; }
  .hero-title { font-size: 1.9rem; }
  .section-title { font-size: 1.6rem; }
  .process-icon { width: 72px; height: 72px; }
  .process-icon i { font-size: 1.3rem; }
}


/* ============================================================
   NAVBAR DROPDOWN — hover on desktop
   ============================================================ */
@media (min-width: 992px) {
  .nav-item.dropdown:hover > .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

.main-navbar .dropdown-menu {
  border: none;
  border-radius: 14px;
  box-shadow: 0 16px 48px rgba(11,30,54,.14);
  padding: 8px;
  min-width: 260px;
  top: calc(100% + 6px);
  animation: ddFadeIn .18s ease;
}

@keyframes ddFadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.main-navbar .dropdown-item {
  border-radius: 9px;
  padding: 10px 14px;
  font-size: .875rem;
  font-weight: 500;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background var(--tr), color var(--tr), padding-left var(--tr);
}
.main-navbar .dropdown-item:hover {
  background: rgba(21,132,200,.08);
  color: var(--sky);
  padding-left: 18px;
}
.main-navbar .dropdown-item i {
  width: 20px;
  color: var(--sky);
  font-size: .82rem;
  flex-shrink: 0;
}


/* ============================================================
   SERVICE PAGE — HERO
   ============================================================ */
.service-page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 55%, #0d5c96 100%);
  padding: 80px 0 64px;
  position: relative;
  overflow: hidden;
}
.service-page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 70% 50%, rgba(21,132,200,.18) 0%, transparent 60%);
  pointer-events: none;
}

.service-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: .82rem;
  margin-bottom: 1.75rem;
}
.service-breadcrumb a { color: rgba(255,255,255,.45); transition: color var(--tr); }
.service-breadcrumb a:hover { color: var(--sky-lt); }
.service-breadcrumb .sep { color: rgba(255,255,255,.2); }
.service-breadcrumb .current { color: var(--sky-lt); font-weight: 600; }

.service-hero-icon {
  width: 72px; height: 72px;
  background: rgba(21,132,200,.2);
  border: 2px solid rgba(21,132,200,.4);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.9rem;
  color: var(--sky-lt);
  margin-bottom: 1.5rem;
}

.service-page-hero h1 {
  font-size: clamp(1.85rem, 3.5vw, 2.9rem);
  color: var(--white);
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.15;
}
.service-page-hero .hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.68);
  max-width: 620px;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.service-hero-tags {
  display: flex; flex-wrap: wrap; gap: 10px;
}
.service-hero-tag {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.78);
  border-radius: 50px;
  padding: 5px 16px;
  font-size: .8rem;
  font-weight: 500;
}

.service-page-hero .hero-cta-row {
  display: flex; flex-wrap: wrap; gap: 14px; margin-top: 2rem;
}


/* ============================================================
   SERVICE PAGE — CONTENT SECTIONS
   ============================================================ */
.sp-section  { padding: 86px 0; }
.sp-section-alt { background: var(--light-bg); }

.sp-overview-text { font-size: 1.02rem; line-height: 1.9; color: var(--text); }

.sp-highlight-box {
  background: linear-gradient(135deg, rgba(21,132,200,.06), rgba(15,158,130,.05));
  border-left: 4px solid var(--sky);
  border-radius: 0 12px 12px 0;
  padding: 22px 26px;
  margin: 2rem 0;
}
.sp-highlight-box p {
  font-size: 1rem;
  font-style: italic;
  color: var(--navy);
  margin: 0;
  font-weight: 500;
  line-height: 1.7;
}

.sp-stat-box {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.sp-stat-item { text-align: center; }
.sp-stat-num {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--sky-lt);
  line-height: 1;
  margin-bottom: 6px;
}
.sp-stat-label { font-size: .82rem; color: rgba(255,255,255,.55); text-align: center; }
.sp-stat-divider { height: 1px; background: rgba(255,255,255,.07); }


/* Symptoms Grid */
.symptom-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 14px;
  margin-top: 2rem;
}
.symptom-item {
  background: var(--white);
  border: 1.5px solid rgba(11,30,54,.07);
  border-radius: var(--radius);
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: border-color var(--tr), box-shadow var(--tr);
}
.symptom-item:hover {
  border-color: var(--sky);
  box-shadow: 0 4px 18px rgba(21,132,200,.1);
}
.symptom-icon {
  width: 38px; height: 38px;
  background: rgba(21,132,200,.1);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  color: var(--sky);
  font-size: .88rem;
  flex-shrink: 0;
}
.symptom-item p {
  margin: 0;
  font-size: .88rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.45;
}


/* Approach Cards */
.approach-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: transform var(--tr), box-shadow var(--tr);
  position: relative;
  overflow: hidden;
}
.approach-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sky), var(--sky-lt));
}
.approach-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.approach-num {
  font-size: 2.8rem;
  font-weight: 900;
  color: rgba(21,132,200,.1);
  line-height: 1;
  margin-bottom: 14px;
  font-family: 'DM Sans', sans-serif;
}
.approach-card h4 { font-size: 1.02rem; color: var(--navy); margin-bottom: 10px; }
.approach-card p { font-size: .87rem; color: var(--muted); line-height: 1.75; margin: 0; }


/* Treatments List */
.treatment-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(11,30,54,.06);
}
.treatment-item:last-child { border-bottom: none; }
.treatment-icon {
  width: 44px; height: 44px;
  background: var(--sky);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1rem;
  flex-shrink: 0;
}
.treatment-item h5 { font-size: .95rem; color: var(--navy); margin-bottom: 4px; font-weight: 700; }
.treatment-item p  { font-size: .87rem; color: var(--muted); margin: 0; line-height: 1.65; }


/* SP FAQ */
.sp-faq-item {
  border: 1.5px solid rgba(11,30,54,.08);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 10px;
  transition: border-color var(--tr);
}
.sp-faq-item.open { border-color: var(--sky); }

.sp-faq-header {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: .93rem;
  font-weight: 600;
  color: var(--navy);
  transition: background var(--tr);
}
.sp-faq-header:hover { background: rgba(11,30,54,.02); }
.sp-faq-item.open .sp-faq-header { background: var(--navy); color: var(--white); }
.sp-faq-icon { font-size: .78rem; transition: transform var(--tr); flex-shrink: 0; color: var(--sky); }
.sp-faq-item.open .sp-faq-icon { transform: rotate(180deg); color: var(--sky-lt); }

.sp-faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
  padding: 0 22px;
}
.sp-faq-item.open .sp-faq-body { max-height: 220px; padding: 0 22px 18px; background: var(--navy); }
.sp-faq-body p { font-size: .88rem; color: rgba(255,255,255,.72); margin: 0; line-height: 1.8; }
.sp-faq-item:not(.open) .sp-faq-body p { color: var(--muted); }


/* SP CTA */
.sp-cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, #0d5c96 100%);
  padding: 90px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.sp-cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 30% 50%, rgba(138,200,232,.12) 0%, transparent 60%);
  pointer-events: none;
}
.sp-cta-section h2 {
  color: var(--white);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
  position: relative;
}
.sp-cta-section p {
  color: rgba(255,255,255,.68);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  max-width: 540px;
  margin-left: auto; margin-right: auto;
  position: relative;
}
.sp-cta-section .btn { position: relative; }


/* SP Responsive */
@media (max-width: 767px) {
  .service-page-hero { padding: 60px 0 48px; }
  .service-page-hero h1 { font-size: 1.85rem; }
  .sp-section { padding: 60px 0; }
  .symptom-grid { grid-template-columns: 1fr 1fr; }
  .sp-stat-box { flex-direction: row; flex-wrap: wrap; justify-content: center; }
}
@media (max-width: 480px) {
  .symptom-grid { grid-template-columns: 1fr; }
}
