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

:root {
  --charcoal: #1E2530;
  --charcoal-dark: #12161C;
  --charcoal-mid: #2D3748;
  --sage: #5F8469;
  --sage-light: #8BAD92;
  --sage-pale: #EBF2EC;
  --copper: #A8673A;
  --warm-white: #FAF9F6;
  --cream: #F2EAE0;
  --gray-100: #EDE9E3;
  --gray-200: #DDD8D0;
  --gray-400: #A09890;
  --gray-600: #6B6560;
  --text: #1C1916;
  --text-muted: #6B6560;
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Inter', sans-serif;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 16px 40px rgba(0, 0, 0, 0.16);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
  --nav-height: 80px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--text);
  background-color: var(--warm-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
  color: var(--charcoal);
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  margin-bottom: 1.2rem;
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
}

h4 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}

h5 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

a {
  color: var(--sage);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--sage-light);
}

/* Utilities */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad {
  padding: 96px 0;
}

.section-pad-sm {
  padding: 64px 0;
}

.text-center {
  text-align: center;
}

.text-white {
  color: white;
}

.text-sage {
  color: var(--sage);
}

.sage-rule {
  width: 48px;
  height: 2px;
  background-color: var(--sage);
  margin: 1.5rem 0;
}

.sage-rule.left {
  margin-left: 0;
  margin-right: auto;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  color: var(--sage);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-muted);
}

em {
  font-style: italic;
  color: var(--sage);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 32px;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  outline: none;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-sage {
  background-color: var(--sage);
  color: white;
}

.btn-sage:hover {
  background-color: var(--sage-light);
  color: white;
}

.btn-charcoal {
  background-color: var(--charcoal);
  color: white;
}

.btn-charcoal:hover {
  background-color: var(--charcoal-mid);
  color: white;
}

.btn-outline-sage {
  border: 2px solid var(--sage);
  color: var(--sage);
  background-color: transparent;
}

.btn-outline-sage:hover {
  background-color: var(--sage);
  color: white;
}

.btn-outline-white {
  border: 2px solid white;
  color: white;
  background-color: transparent;
}

.btn-outline-white:hover {
  background-color: white;
  color: var(--charcoal);
}

.btn-copper {
  background-color: var(--copper);
  color: white;
}

.btn-copper:hover {
  background-color: #93593d;
  color: white;
}

.btn-lg {
  padding: 16px 40px;
  font-size: 1rem;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background-color: transparent;
  z-index: 1000;
  transition: var(--transition);
}

.navbar.solid {
  background-color: var(--charcoal-dark);
  box-shadow: var(--shadow);
}

.navbar.scrolled {
  background-color: var(--charcoal-dark);
  box-shadow: var(--shadow);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2px;
}

.nav-links > li {
  position: relative;
}

.nav-links > li > a {
  display: block;
  padding: 24px 16px;
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
  font-weight: 500;
}

.nav-links > li > a:hover {
  color: var(--sage-light);
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--charcoal);
  border-radius: var(--radius);
  min-width: 220px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  list-style: none;
  overflow: hidden;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 12px 20px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  transition: var(--transition);
}

.dropdown-menu li a:hover {
  background-color: rgba(95, 132, 105, 0.2);
  color: var(--sage-light);
}

/* Mobile Menu */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background-color: white;
  transition: var(--transition);
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.navbar.mobile-open ~ .mobile-menu-overlay {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -320px;
  width: 310px;
  height: 100vh;
  background-color: var(--charcoal-dark);
  z-index: 999;
  padding: 96px 28px 44px;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.navbar.mobile-open ~ .mobile-menu-overlay ~ .mobile-menu {
  right: 0;
}

.mobile-nav-links {
  list-style: none;
}

.mobile-nav-links li {
  margin-bottom: 24px;
}

.mobile-nav-links a {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition);
}

.mobile-nav-links a:hover {
  color: var(--sage-light);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, var(--charcoal-dark) 0%, var(--charcoal) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: var(--nav-height);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 24px;
  text-align: center;
}

.hero h1 {
  color: white;
  margin-bottom: 1.5rem;
}

.hero .lead {
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-btns {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-accent-line {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--sage) 0%, var(--sage-light) 100%);
  border-radius: 2px;
}

/* Trust Bar */
.trust-bar {
  background-color: var(--charcoal-dark);
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  font-weight: 500;
}

.trust-divider {
  width: 1px;
  height: 24px;
  background-color: rgba(255, 255, 255, 0.2);
}

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, var(--charcoal-dark) 0%, var(--charcoal) 100%);
  padding: 150px 0 72px;
  margin-top: var(--nav-height);
  text-align: center;
}

.page-hero h1 {
  color: white;
  margin-bottom: 1.5rem;
}

.breadcrumb {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.breadcrumb a {
  color: var(--sage-light);
}

/* Cards */
.card {
  background-color: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.service-card {
  text-align: center;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  background-color: var(--cream);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--sage-light);
}

.service-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background-color: var(--sage-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  flex-shrink: 0;
}

.service-icon svg {
  width: 36px;
  height: 36px;
  color: var(--sage);
  stroke: var(--sage);
  fill: none;
  stroke-width: 2;
}

.service-card h3 {
  margin-bottom: 0.8rem;
}

.service-card p {
  flex-grow: 1;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--sage);
  font-weight: 600;
  font-size: 0.9rem;
}

.link-arrow::after {
  content: '→';
  transition: var(--transition);
}

.service-card:hover .link-arrow::after {
  transform: translateX(4px);
}

.condition-card {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  background-color: white;
  transition: var(--transition);
  cursor: pointer;
}

.condition-card:hover {
  border-color: var(--sage);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.condition-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--sage-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.condition-icon svg {
  width: 26px;
  height: 26px;
  color: var(--sage);
  stroke: var(--sage);
  fill: none;
  stroke-width: 2;
}

.condition-card h4 {
  margin-bottom: 0.4rem;
}

.condition-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

/* Grids */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 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: 2rem;
}

.grid-auto {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

/* Split Layout */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.split.reverse {
  direction: rtl;
}

.split.reverse > * {
  direction: ltr;
}

/* HealthMe Section */
.healthme-section {
  background: linear-gradient(135deg, var(--charcoal-dark) 0%, var(--charcoal) 100%);
  color: white;
  padding: 5rem 0;
}

.healthme-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.healthme-text h2 {
  color: white;
  margin-bottom: 1.5rem;
}

.healthme-text p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.healthme-badge {
  display: inline-block;
  background-color: rgba(95, 132, 105, 0.2);
  border: 1px solid var(--sage-light);
  border-radius: var(--radius-lg);
  padding: 3rem;
  text-align: center;
}

.healthme-badge-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.healthme-badge h3 {
  color: var(--sage-light);
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.healthme-badge p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin: 0;
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 3rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: var(--sage-light);
}

.timeline-item {
  margin-bottom: 3rem;
  position: relative;
}

.timeline-dot {
  position: absolute;
  left: -3.5rem;
  top: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--sage);
  border: 3px solid white;
  box-shadow: 0 0 0 2px var(--sage-light);
}

.timeline-year {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--copper);
  margin-bottom: 0.4rem;
}

.timeline-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.3rem;
}

.timeline-sub {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Institution Badges */
.institution-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
}

.institution-badge {
  background-color: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  transition: var(--transition);
}

.institution-badge:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.inst-seal {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: white;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 0.9rem;
}

.baylor .inst-seal {
  background: linear-gradient(135deg, #1B5233, #2E7D4F);
}

.tamu .inst-seal {
  background: linear-gradient(135deg, #500000, #6B0000);
}

.cdu .inst-seal {
  background: linear-gradient(135deg, #003087, #1A4A9F);
}

.stanford .inst-seal {
  background: linear-gradient(135deg, #8C1515, #A52020);
}

.uth .inst-seal {
  background: linear-gradient(135deg, #CC5500, #E06B1A);
}

.inst-name {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
}

.inst-degree {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Membership Cards */
.membership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.membership-card {
  background-color: white;
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--sage);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
}

.membership-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.membership-icon {
  width: 48px;
  height: 48px;
  background-color: var(--sage-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.membership-icon svg {
  width: 26px;
  height: 26px;
  color: var(--sage);
  stroke: var(--sage);
  fill: none;
  stroke-width: 2;
}

.membership-card h4 {
  margin-bottom: 0.6rem;
  font-size: 1.1rem;
}

.membership-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

/* Hospital Cards */
.hospital-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.hospital-card {
  background-color: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
}

.hospital-card:hover {
  border-color: var(--sage);
  box-shadow: var(--shadow-lg);
}

.hospital-card-icon {
  width: 44px;
  height: 44px;
  background-color: var(--charcoal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.hospital-card-icon svg {
  width: 22px;
  height: 22px;
  color: var(--sage);
  stroke: var(--sage);
  fill: none;
  stroke-width: 2;
}

.hospital-card h4 {
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
}

.hosp-detail {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
  line-height: 1.6;
}

/* Forms */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: var(--transition);
  background-color: white;
  color: var(--text);
}

.form-control:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(95, 132, 105, 0.1);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
  font-family: var(--font-sans);
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%235F8469' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.form-card {
  background-color: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow);
}

/* Stats */
.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--sage-light);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Accordion */
.accordion-item {
  border-bottom: 1px solid var(--gray-200);
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  transition: var(--transition);
}

.accordion-header:hover {
  color: var(--sage);
}

.accordion-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.8rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.accordion-header.active .accordion-icon {
  background-color: var(--sage);
  transform: rotate(180deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}

.accordion-body.open {
  max-height: 500px;
  opacity: 1;
  padding-bottom: 1.5rem;
}

.accordion-body p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

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

.process-step {
  background-color: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
}

.process-step:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.step-number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--copper);
}

.process-step h4 {
  margin-bottom: 0.6rem;
  font-size: 1.05rem;
}

.process-step p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

/* Medical Tourism */
.flag-badge {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.15);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}

/* Cost Table */
.cost-table {
  width: 100%;
  border-collapse: collapse;
  background-color: white;
}

.cost-table th {
  background-color: var(--charcoal);
  color: white;
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9rem;
}

.cost-table th.highlight {
  background-color: var(--sage);
}

.cost-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--gray-200);
  font-size: 0.95rem;
}

.cost-table tbody tr:hover {
  background-color: var(--sage-pale);
}

.highlight-val {
  color: var(--sage);
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.1rem;
}

/* Product Cards */
.product-card {
  background-color: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.product-img {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--gray-100) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--gray-400);
}

.product-info {
  padding: 1.5rem;
}

.product-brand {
  display: block;
  color: var(--copper);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.product-card h4 {
  margin-bottom: 0.5rem;
}

.product-badge {
  display: inline-block;
  background-color: var(--sage-pale);
  color: var(--sage);
  padding: 4px 8px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: 1rem;
}

/* Contact */
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.3rem;
}

.contact-info-text h4 {
  margin-bottom: 0.3rem;
  font-size: 0.95rem;
}

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

.map-embed {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  overflow: hidden;
}

/* Footer */
footer {
  background-color: var(--charcoal-dark);
  color: white;
  padding: 3rem 0 1rem;
}

.footer-main {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-bottom: 2rem;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding: 0 24px;
}

.footer-brand {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  display: block;
}

.footer-col h5 {
  color: var(--sage-light);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.2rem;
  font-weight: 700;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.8rem;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--sage-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a {
  color: var(--sage-light);
  font-size: 0.85rem;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: var(--transition);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 {
  transition-delay: 0.1s;
}

.fade-in-delay-2 {
  transition-delay: 0.2s;
}

.fade-in-delay-3 {
  transition-delay: 0.3s;
}

.fade-in-delay-4 {
  transition-delay: 0.4s;
}

/* Guide Layout */
.guide-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
}

.guide-sidebar {
  position: sticky;
  top: 100px;
  align-self: start;
}

.sidebar-card {
  background-color: var(--charcoal);
  color: white;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.sidebar-card h5 {
  color: var(--sage-light);
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.sidebar-card ul {
  list-style: none;
}

.sidebar-card ul li {
  margin-bottom: 0.7rem;
}

.sidebar-card ul li a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: var(--transition);
}

.sidebar-card ul li a:hover {
  color: var(--sage-light);
}

.guide-content h2 {
  border-top: 2px solid var(--gray-200);
  padding-top: 2rem;
  margin-top: 2.5rem;
}

.guide-content h2:first-child {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

.guide-content ul {
  list-style: none;
  margin: 1.5rem 0;
}

.guide-content ul li {
  margin-bottom: 0.8rem;
  padding-left: 1.5rem;
  position: relative;
}

.guide-content ul li::before {
  content: '▪';
  position: absolute;
  left: 0;
  color: var(--sage);
  font-weight: bold;
}

.highlight-box {
  background-color: var(--sage-pale);
  border-left: 4px solid var(--sage);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin: 2rem 0;
}

.highlight-box strong {
  color: var(--sage);
}

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

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

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

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

  .split.reverse {
    direction: ltr;
  }

  .healthme-content {
    grid-template-columns: 1fr;
  }

  .guide-layout {
    grid-template-columns: 1fr;
  }

  .guide-sidebar {
    position: relative;
    top: auto;
  }

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

@media (max-width: 640px) {
  .grid-2,
  .grid-3,
  .grid-4,
  .grid-auto {
    grid-template-columns: 1fr;
  }

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

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

  .trust-bar-inner {
    gap: 1.5rem;
  }

  .trust-divider {
    display: none;
  }

  .form-card {
    padding: 24px;
  }

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

  .membership-grid,
  .hospital-grid,
  .process-steps {
    grid-template-columns: 1fr;
  }

  .timeline {
    padding-left: 0;
  }

  .timeline::before {
    display: none;
  }

  .timeline-dot {
    position: static;
    margin-bottom: 1rem;
  }

  .page-hero {
    padding: 100px 0 50px;
  }

  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.4rem;
  }

  .hero-accent-line {
    bottom: 20px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 1.5rem;
  }
}
