/* =============================================
   GASTRIC SLEEVE CENTER TURKEY — Main Stylesheet
   gastricsleevecenterturkey.com
   ============================================= */

/* === VARIABLES === */
:root {
  --navy:       #0A1D4C;
  --turquoise:  #30F2F2;
  --med-blue:   #007B9E;
  --red:        #E30613;
  --white:      #FFFFFF;
  --bg-light:   #F4F6F8;
  --text-dark:  #1A1A2E;
  --text-muted: #5E6A7A;
  --border:     #DDE3EC;
  --shadow:     0 4px 24px rgba(10,29,76,0.10);
  --shadow-sm:  0 2px 8px rgba(10,29,76,0.07);
  --radius:     10px;
  --radius-lg:  18px;
  --transition: 0.22s ease;
}

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

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

body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: var(--med-blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--navy); }
ul { list-style: none; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.22;
  color: var(--navy);
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.45rem); }
h4 { font-size: 1.1rem; }
p  { margin-bottom: 1rem; color: var(--text-dark); }
p:last-child { margin-bottom: 0; }

.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--med-blue);
  margin-bottom: 0.6rem;
}

/* === LAYOUT === */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.container--narrow { max-width: 820px; }
.container--wide   { max-width: 1360px; }

section { padding: 4.5rem 0; }
section.section--alt { background: var(--bg-light); }
section.section--dark {
  background: var(--navy);
  color: var(--white);
}
section.section--dark h2,
section.section--dark h3,
section.section--dark p { color: var(--white); }

.grid-2  { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3  { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4  { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.97rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
}
.btn-primary:hover {
  background: #1ebe58;
  border-color: #1ebe58;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.35);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.65);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  color: var(--white);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: #0e245e;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-lg { padding: 1rem 2.2rem; font-size: 1.05rem; }
.btn-sm { padding: 0.55rem 1.2rem; font-size: 0.875rem; }

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/* === HEADER & NAVIGATION === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 1.5rem;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  flex-shrink: 0;
}
.site-logo__mark {
  width: 40px;
  height: 40px;
  background: var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--turquoise);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.03em;
}
.site-logo__text {
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--navy);
  line-height: 1.2;
}
.site-logo__text span { color: var(--med-blue); display: block; font-size: 0.72rem; font-weight: 500; }

.main-nav { display: flex; align-items: center; gap: 0.1rem; }
.main-nav a {
  padding: 0.45rem 0.8rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-dark);
  border-radius: 6px;
  transition: all var(--transition);
  white-space: nowrap;
}
.main-nav a:hover,
.main-nav a.active {
  background: var(--bg-light);
  color: var(--navy);
}
.header-cta { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.header-cta .btn { padding: 0.6rem 1.2rem; font-size: 0.875rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  width: 40px;
  height: 40px;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 1rem 1.25rem 1.5rem;
  gap: 0.25rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 0.7rem 0.5rem;
  border-bottom: 1px solid var(--border);
  font-weight: 500;
  color: var(--text-dark);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu .btn { margin-top: 0.75rem; width: 100%; justify-content: center; }

/* === HERO === */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #0d2660 60%, #0f3070 100%);
  color: var(--white);
  padding: 5.5rem 0 4.5rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2330F2F2' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-content h1 { color: var(--white); margin-bottom: 1rem; }
.hero-content h1 span { color: var(--turquoise); }
.hero-sub {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 1.8rem;
  line-height: 1.65;
}
.hero-bullets {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255,255,255,0.88);
  font-size: 0.95rem;
}
.hero-bullets li::before {
  content: '';
  width: 20px;
  height: 20px;
  background: var(--turquoise);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%230A1D4C'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-size: 13px;
  background-repeat: no-repeat;
  background-position: center;
}
.hero-image-wrap {
  position: relative;
}
.hero-image-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, rgba(48,242,242,0.12), rgba(0,123,158,0.2));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(48,242,242,0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  text-align: center;
  padding: 2rem;
}
.hero-image-placeholder svg { opacity: 0.4; }
.hero-badge {
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  color: var(--navy);
  padding: 0.65rem 1.4rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.82rem;
  box-shadow: var(--shadow);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-green 1.8s infinite;
}
@keyframes pulse-green {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

/* === TRUST BAR === */
.trust-bar {
  background: var(--bg-light);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--navy);
}
.trust-item svg { color: var(--med-blue); flex-shrink: 0; }

/* === CARDS === */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  transition: all var(--transition);
}
.card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
  border-color: rgba(0,123,158,0.2);
}
.card-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(0,123,158,0.1), rgba(48,242,242,0.1));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--med-blue);
}
.card h3 { margin-bottom: 0.5rem; font-size: 1.08rem; }
.card p  { font-size: 0.92rem; color: var(--text-muted); margin: 0; }

/* === SECTION HEADER === */
.section-header { margin-bottom: 2.8rem; }
.section-header.text-center { text-align: center; }
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 640px;
}
.section-header.text-center p { margin: 0 auto; }

/* === PACKAGE INCLUSIONS === */
.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}
.package-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: all var(--transition);
}
.package-item:hover {
  border-color: var(--med-blue);
  background: rgba(0,123,158,0.03);
}
.package-item__icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  line-height: 1;
}
.package-note {
  background: rgba(0,123,158,0.06);
  border: 1px solid rgba(0,123,158,0.15);
  border-radius: var(--radius);
  padding: 1.2rem 1.5rem;
  margin-top: 1.5rem;
  font-size: 0.92rem;
  color: var(--text-muted);
}
.package-note strong { color: var(--navy); }

/* === PATIENT JOURNEY TIMELINE === */
.journey-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.journey-step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 1.5rem;
  position: relative;
}
.journey-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 31px;
  top: 64px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--turquoise), var(--border));
}
.journey-step__num {
  width: 64px;
  height: 64px;
  background: var(--navy);
  color: var(--turquoise);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 6px var(--bg-light);
}
.journey-step__content {
  padding: 0.5rem 0 2rem;
}
.journey-step__content h3 {
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
  color: var(--navy);
}
.journey-step__content p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin: 0;
}

/* === COST COMPARISON TABLE === */
.cost-table-wrap { overflow-x: auto; }
.cost-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.cost-table th {
  background: var(--navy);
  color: var(--white);
  padding: 1rem 1.25rem;
  text-align: left;
  font-weight: 600;
}
.cost-table th:first-child { border-radius: var(--radius) 0 0 0; }
.cost-table th:last-child  { border-radius: 0 var(--radius) 0 0; }
.cost-table td {
  padding: 0.9rem 1.25rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-dark);
}
.cost-table tr:last-child td { border-bottom: none; }
.cost-table tr:hover td { background: var(--bg-light); }
.cost-table .highlight td { background: rgba(48,242,242,0.07); font-weight: 600; }
.cost-table .badge {
  display: inline-block;
  background: #dcfce7;
  color: #166534;
  padding: 0.2rem 0.65rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
}

/* === BMI CALCULATOR === */
.bmi-calculator {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}
.bmi-form {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 1rem;
  align-items: end;
  margin-bottom: 1.25rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition);
  font-family: inherit;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--med-blue);
  box-shadow: 0 0 0 3px rgba(0,123,158,0.1);
}
.bmi-result {
  display: none;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem 1.5rem;
  font-size: 0.95rem;
}
.bmi-result.show { display: block; }
.bmi-result .bmi-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
}
.bmi-result .bmi-category { font-weight: 600; color: var(--med-blue); }

/* === FAQ ACCORDION === */
.faq-list { display: flex; flex-direction: column; gap: 0.5rem; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--med-blue); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.4rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--navy);
  background: var(--white);
  border: none;
  width: 100%;
  text-align: left;
  gap: 1rem;
  user-select: none;
}
.faq-question:hover { background: var(--bg-light); }
.faq-question svg {
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--med-blue);
}
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding: 0 1.4rem 1.2rem;
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.7;
  background: var(--white);
}
.faq-item.open .faq-answer { display: block; }

/* === CTA BANNER === */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #0f3070 100%);
  color: var(--white);
  padding: 4.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(48,242,242,0.08) 0%, transparent 70%);
  top: -200px;
  right: -100px;
  pointer-events: none;
}
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner p { color: rgba(255,255,255,0.78); max-width: 580px; margin: 0 auto 2rem; }
.cta-banner .cta-group { justify-content: center; }
.cta-note {
  margin-top: 1.2rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}

/* === WHATSAPP STICKY BUTTON === */
.whatsapp-sticky {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.6rem;
}
.whatsapp-sticky__btn {
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: all var(--transition);
  text-decoration: none;
}
.whatsapp-sticky__btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
}
.whatsapp-sticky__btn svg { width: 30px; height: 30px; }
.whatsapp-sticky__tooltip {
  background: var(--navy);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
  animation: float-in 0.4s ease;
}
@keyframes float-in {
  from { opacity: 0; transform: translateX(10px); }
  to   { opacity: 1; transform: translateX(0); }
}
.whatsapp-sticky__pulse {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 16px;
  height: 16px;
  background: var(--red);
  border-radius: 50%;
  border: 2px solid var(--white);
  animation: pulse-red 2s infinite;
}
@keyframes pulse-red {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.7; }
}

/* === PAGE HERO (Inner pages) === */
.page-hero {
  background: linear-gradient(135deg, var(--navy), #0d2660);
  color: var(--white);
  padding: 3.5rem 0 2.5rem;
  position: relative;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1rem;
}
.breadcrumb a { color: rgba(255,255,255,0.65); }
.breadcrumb a:hover { color: var(--turquoise); }
.breadcrumb span { color: rgba(255,255,255,0.35); }
.page-hero h1 { color: var(--white); max-width: 720px; margin-bottom: 0.75rem; }
.page-hero p  { color: rgba(255,255,255,0.75); max-width: 620px; font-size: 1.05rem; }

/* === CONTACT FORM === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}
.contact-info h3 { margin-bottom: 1rem; }
.contact-info p  { color: var(--text-muted); margin-bottom: 1.5rem; }
.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  transition: all var(--transition);
}
.contact-method:hover { border-color: var(--med-blue); background: rgba(0,123,158,0.03); }
.contact-method__icon {
  width: 42px;
  height: 42px;
  background: #dcfce7;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #16a34a;
}
.contact-method__text h4 { font-size: 0.9rem; margin-bottom: 0.15rem; }
.contact-method__text p  { font-size: 0.82rem; color: var(--text-muted); margin: 0; }
.assessment-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}
.assessment-form h3 { margin-bottom: 1.5rem; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit { margin-top: 1.25rem; }
.form-submit .btn { width: 100%; justify-content: center; }
.form-disclaimer {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.75rem;
}

/* === BLOG === */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.blog-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
  border-color: rgba(0,123,158,0.2);
}
.blog-card__image {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--bg-light), #e1e8f0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.8rem;
  text-align: center;
  padding: 1rem;
}
.blog-card__body { padding: 1.4rem; flex: 1; display: flex; flex-direction: column; }
.blog-card__tag {
  display: inline-block;
  background: rgba(0,123,158,0.08);
  color: var(--med-blue);
  padding: 0.2rem 0.65rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}
.blog-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  line-height: 1.35;
}
.blog-card h3 a { color: var(--navy); }
.blog-card h3 a:hover { color: var(--med-blue); }
.blog-card p { font-size: 0.875rem; color: var(--text-muted); flex: 1; }
.blog-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--text-muted);
}
.blog-card__footer a {
  color: var(--med-blue);
  font-weight: 600;
  font-size: 0.82rem;
}

/* === BEFORE & AFTER CARDS === */
.ba-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.ba-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  position: relative;
}
.ba-card__quote {
  font-size: 0.93rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.65;
}
.ba-card__meta { display: flex; flex-direction: column; gap: 0.15rem; }
.ba-card__name { font-weight: 700; font-size: 0.9rem; color: var(--navy); }
.ba-card__detail { font-size: 0.8rem; color: var(--text-muted); }
.ba-disclaimer {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-style: italic;
  border-left: 3px solid var(--border);
  padding-left: 1rem;
  margin-top: 2rem;
}

/* === REVIEW CARDS === */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
}
.review-stars {
  display: flex;
  gap: 0.15rem;
  margin-bottom: 0.75rem;
  color: #f59e0b;
  font-size: 1.05rem;
}
.review-text { font-size: 0.93rem; color: var(--text-muted); margin-bottom: 1rem; line-height: 1.65; font-style: italic; }
.review-author { font-weight: 700; font-size: 0.88rem; color: var(--navy); }
.review-location { font-size: 0.78rem; color: var(--text-muted); }
.review-disclaimer {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-style: italic;
  border-left: 3px solid var(--border);
  padding-left: 1rem;
  margin-top: 2rem;
}

/* === COMPARISON PAGE === */
.compare-table {
  width: 100%;
  border-collapse: collapse;
}
.compare-table th {
  background: var(--navy);
  color: var(--white);
  padding: 1rem 1.25rem;
  font-weight: 600;
}
.compare-table th.highlight-col { background: var(--med-blue); }
.compare-table td {
  padding: 0.9rem 1.25rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.93rem;
  vertical-align: top;
}
.compare-table .check { color: #16a34a; font-weight: 700; }
.compare-table .cross { color: var(--red); }
.compare-table tr:hover td { background: var(--bg-light); }

/* === RECOVERY TIMELINE === */
.recovery-phases { display: flex; flex-direction: column; gap: 1.25rem; }
.recovery-phase {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  align-items: start;
}
.recovery-phase__label {
  background: var(--navy);
  color: var(--turquoise);
  padding: 0.6rem 1rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.85rem;
  text-align: center;
  line-height: 1.35;
}
.recovery-phase__content h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.recovery-phase__content p  { font-size: 0.91rem; color: var(--text-muted); margin: 0; }
.recovery-phase__list {
  margin-top: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.recovery-phase__list li {
  background: var(--bg-light);
  padding: 0.2rem 0.7rem;
  border-radius: 50px;
  font-size: 0.78rem;
  color: var(--text-dark);
  font-weight: 500;
}

/* === FOOTER === */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin: 1rem 0 1.5rem;
}
.footer-brand .site-logo__text { color: var(--white); }
.footer-col h4 {
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--turquoise); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 0;
}
.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-disclaimer {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.65;
}
.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

/* === MOBILE CTA BAR === */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 950;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 0.75rem 1rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
}
.mobile-cta-bar .btn { flex: 1; justify-content: center; font-size: 0.9rem; }

/* === UTILITY === */
.divider {
  width: 60px;
  height: 3px;
  background: var(--turquoise);
  border-radius: 2px;
  margin: 0.75rem auto 0;
}
.divider--left { margin: 0.75rem 0 0; }

.highlight-text { color: var(--med-blue); }
.tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
}
.tag--green { background: #dcfce7; color: #166534; }
.tag--blue  { background: rgba(0,123,158,0.1); color: var(--med-blue); }
.tag--navy  { background: rgba(10,29,76,0.08); color: var(--navy); }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .grid-4  { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .review-grid { grid-template-columns: repeat(2, 1fr); }
  .ba-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  section { padding: 3rem 0; }
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.45rem; }

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

  .hero { padding: 3rem 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-image-wrap { display: none; }

  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }

  .trust-bar-inner { gap: 1rem; justify-content: flex-start; }

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

  .blog-grid { grid-template-columns: 1fr; }
  .review-grid { grid-template-columns: 1fr; }
  .ba-grid { grid-template-columns: 1fr; }

  .recovery-phase { grid-template-columns: 1fr; }
  .recovery-phase__label { text-align: left; }

  .bmi-form { grid-template-columns: 1fr 1fr; }
  .bmi-form .btn { grid-column: 1 / -1; }

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

  .whatsapp-sticky { bottom: 5rem; right: 1rem; }
  .whatsapp-sticky__btn { width: 52px; height: 52px; }

  .mobile-cta-bar { display: flex; }
  body { padding-bottom: 64px; }

  .journey-step { grid-template-columns: 50px 1fr; gap: 1rem; }
  .journey-step__num { width: 50px; height: 50px; font-size: 1rem; }

  .page-hero { padding: 2.5rem 0 1.75rem; }
  .cta-group { flex-direction: column; }
  .cta-group .btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .trust-bar-inner { flex-direction: column; align-items: flex-start; }
  .package-grid { grid-template-columns: 1fr; }
  .bmi-form { grid-template-columns: 1fr; }
}
