/* ============================================
   MDBD Recovery - Calm Ocean Style (#1)
   Architecture: Sidebar Navigation (#4)
   ============================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;600;700&family=Open+Sans:wght@300;400;600&display=swap');

/* CSS Variables - Calm Ocean Palette */
:root {
  --primary: #4A90A4;
  --primary-dark: #3A7A8E;
  --primary-light: #6AAFBF;
  --secondary: #7BC4C4;
  --accent: #F0F7F4;
  --text: #2C3E50;
  --text-light: #5D7B8A;
  --bg-white: #FFFFFF;
  --bg-soft: #F8FBFC;
  --bg-accent: #EDF5F7;
  --shadow-sm: 0 2px 8px rgba(74,144,164,0.08);
  --shadow-md: 0 4px 20px rgba(74,144,164,0.1);
  --shadow-lg: 0 8px 40px rgba(74,144,164,0.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --sidebar-width: 280px;
  --topbar-height: 48px;
  --transition: 0.3s ease;
}

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

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

body {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--bg-white);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text);
}

h1 { font-size: 2.5rem; font-weight: 700; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }

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

a:hover { color: var(--primary-dark); }

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol { padding-left: 1.5rem; }

/* ============================================
   Top Bar (Phone + CTA)
   ============================================ */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--topbar-height);
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  z-index: 1001;
  font-size: 0.9rem;
  padding: 0 1rem;
}

.topbar a {
  color: #fff;
  font-weight: 600;
}

.topbar a:hover {
  color: var(--accent);
}

.topbar-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.topbar-cta {
  background: rgba(255,255,255,0.2);
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  transition: background var(--transition);
}

.topbar-cta:hover {
  background: rgba(255,255,255,0.35);
}

/* ============================================
   Sidebar Navigation
   ============================================ */
.sidebar {
  position: fixed;
  top: var(--topbar-height);
  left: 0;
  width: var(--sidebar-width);
  height: calc(100vh - var(--topbar-height));
  background: var(--bg-white);
  border-right: 1px solid #E8F0F2;
  overflow-y: auto;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: transform var(--transition);
  box-shadow: var(--shadow-sm);
}

.sidebar-logo {
  padding: 0 1.5rem 1.5rem;
  border-bottom: 1px solid #E8F0F2;
  margin-bottom: 1rem;
}

.sidebar-logo h2 {
  font-size: 1.3rem;
  color: var(--primary);
  font-weight: 700;
}

.sidebar-logo p {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-bottom: 0;
}

.sidebar-nav {
  list-style: none;
  padding: 0;
}

.sidebar-nav > li {
  border-bottom: 1px solid #F0F5F7;
}

.sidebar-nav > li > a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.5rem;
  color: var(--text);
  font-weight: 400;
  font-size: 0.95rem;
  transition: all var(--transition);
  border-left: 3px solid transparent;
}

.sidebar-nav > li > a:hover,
.sidebar-nav > li.active > a {
  background: var(--bg-accent);
  color: var(--primary);
  border-left-color: var(--primary);
}

.sidebar-nav > li > a .nav-icon {
  width: 20px;
  text-align: center;
  font-size: 1.1rem;
}

/* Submenu */
.sidebar-submenu {
  list-style: none;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: var(--bg-soft);
}

.sidebar-nav > li.open .sidebar-submenu {
  max-height: 300px;
}

.sidebar-submenu li a {
  display: block;
  padding: 0.5rem 1.5rem 0.5rem 3.5rem;
  color: var(--text-light);
  font-size: 0.85rem;
  transition: all var(--transition);
}

.sidebar-submenu li a:hover {
  color: var(--primary);
  background: var(--bg-accent);
}

.expand-arrow {
  margin-left: auto;
  transition: transform 0.3s;
  font-size: 0.7rem;
}

.sidebar-nav > li.open .expand-arrow {
  transform: rotate(180deg);
}

/* Sidebar CTA */
.sidebar-cta {
  margin: 1.5rem 1.5rem 0;
  padding: 1rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: var(--radius-md);
  text-align: center;
  color: #fff;
}

.sidebar-cta p {
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
  opacity: 0.9;
}

.sidebar-cta a {
  display: block;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
}

/* Mobile hamburger */
.hamburger {
  display: none;
  position: fixed;
  top: calc(var(--topbar-height) + 10px);
  left: 10px;
  z-index: 1002;
  background: var(--primary);
  color: #fff;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 1.3rem;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
}

.hamburger:hover {
  background: var(--primary-dark);
}

/* Overlay */
.sidebar-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.4);
  z-index: 999;
}

/* ============================================
   Main Content Area
   ============================================ */
.main-content {
  margin-left: var(--sidebar-width);
  margin-top: var(--topbar-height);
  min-height: calc(100vh - var(--topbar-height));
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(74,144,164,0.85), rgba(123,196,196,0.7));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 700px;
  padding: 3rem 2rem;
}

.hero-content h1 {
  color: #fff;
  font-size: 2.8rem;
  margin-bottom: 1rem;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.hero-content p {
  font-size: 1.15rem;
  opacity: 0.95;
  margin-bottom: 2rem;
  font-weight: 300;
}

.hero-inner {
  min-height: 350px;
}

/* Page hero (smaller) */
.hero-page {
  min-height: 300px;
}

.hero-page .hero-content h1 {
  font-size: 2.2rem;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-align: center;
}

.btn-primary {
  background: #fff;
  color: var(--primary);
}

.btn-primary:hover {
  background: var(--accent);
  color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.6);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
}

.btn-ocean {
  background: var(--primary);
  color: #fff;
}

.btn-ocean:hover {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   Sections
   ============================================ */
.section {
  padding: 4rem 2.5rem;
}

.section-alt {
  background: var(--bg-soft);
}

.section-accent {
  background: var(--bg-accent);
}

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

.section-header h2 {
  margin-bottom: 0.75rem;
  color: var(--text);
}

.section-header p {
  color: var(--text-light);
  font-size: 1.05rem;
}

.section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  margin: 1rem auto;
  border-radius: 2px;
}

/* ============================================
   Trust Bar
   ============================================ */
.trust-bar {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding: 2rem;
  background: var(--bg-white);
  border-bottom: 1px solid #E8F0F2;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
}

.trust-item .trust-icon {
  font-size: 1.5rem;
  color: var(--primary);
}

/* ============================================
   Cards
   ============================================ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid #E8F0F2;
}

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

.card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-body {
  padding: 1.5rem;
}

.card-body h3 {
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

.card-body p {
  color: var(--text-light);
  font-size: 0.95rem;
}

.card-icon {
  width: 50px;
  height: 50px;
  background: var(--bg-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

/* ============================================
   Feature Grid (Why Choose Us)
   ============================================ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-item {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--bg-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.feature-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.feature-item .feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: #fff;
}

.feature-item h4 {
  margin-bottom: 0.5rem;
}

.feature-item p {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* ============================================
   Stats
   ============================================ */
.stats-row {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  padding: 2rem 0;
}

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

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  font-family: 'Lato', sans-serif;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: 0.25rem;
}

/* ============================================
   Gallery
   ============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* ============================================
   Testimonials
   ============================================ */
.testimonials-slider {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.testimonial-card {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  text-align: center;
  display: none;
  border: 1px solid #E8F0F2;
}

.testimonial-card.active {
  display: block;
}

.testimonial-card .quote {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.testimonial-card .quote::before {
  content: '\201C';
  font-size: 3rem;
  color: var(--secondary);
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.testimonial-card .author {
  font-weight: 600;
  color: var(--primary);
}

.testimonial-card .program {
  font-size: 0.85rem;
  color: var(--text-light);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #D0DEE3;
  border: none;
  cursor: pointer;
  transition: background var(--transition);
}

.testimonial-dot.active {
  background: var(--primary);
}

/* ============================================
   CTA Banner
   ============================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  text-align: center;
  padding: 3.5rem 2rem;
}

.cta-banner h2 {
  color: #fff;
  margin-bottom: 1rem;
}

.cta-banner p {
  opacity: 0.95;
  max-width: 600px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
}

.cta-banner .cta-phone {
  font-size: 1.8rem;
  font-weight: 700;
  display: block;
  margin-bottom: 1.5rem;
}

.cta-banner .cta-phone a {
  color: #fff;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--text);
  color: #C8D6DB;
  padding: 3rem 2.5rem 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-col h4 {
  color: #fff;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-col p,
.footer-col a {
  color: #A0B5BE;
  font-size: 0.9rem;
  line-height: 2;
}

.footer-col a:hover {
  color: var(--secondary);
}

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

.footer-col ul li a {
  display: block;
  padding: 0.2rem 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: #7A99A5;
}

/* ============================================
   About Page Specifics
   ============================================ */
.approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.approach-card {
  padding: 1.5rem;
  background: var(--bg-white);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--primary);
  box-shadow: var(--shadow-sm);
}

.approach-card h4 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

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

.team-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--bg-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.team-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 2rem;
  color: #fff;
}

.team-card h4 {
  margin-bottom: 0.25rem;
}

.team-card .title {
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.team-card p {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Mission box */
.mission-box {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  padding: 2.5rem;
  border-radius: var(--radius-md);
  text-align: center;
  margin: 2rem 0;
}

.mission-box h3 {
  color: #fff;
  margin-bottom: 1rem;
}

.mission-box p {
  font-size: 1.1rem;
  opacity: 0.95;
}

/* ============================================
   Programs Page
   ============================================ */
.program-section {
  padding: 3rem 0;
  border-bottom: 1px solid #E8F0F2;
}

.program-section:last-child {
  border-bottom: none;
}

.program-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.program-header .program-icon {
  width: 50px;
  height: 50px;
  background: var(--bg-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
}

.program-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.program-content img {
  border-radius: var(--radius-md);
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.daily-schedule {
  background: var(--bg-soft);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}

.daily-schedule h4 {
  margin-bottom: 1rem;
  color: var(--primary);
}

.schedule-item {
  display: flex;
  gap: 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid #E8F0F2;
  font-size: 0.9rem;
}

.schedule-item:last-child {
  border-bottom: none;
}

.schedule-time {
  font-weight: 600;
  color: var(--primary);
  min-width: 100px;
}

/* Comparison table */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  background: var(--bg-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.comparison-table th {
  background: var(--primary);
  color: #fff;
  padding: 0.85rem 1rem;
  text-align: left;
  font-weight: 600;
}

.comparison-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #E8F0F2;
  font-size: 0.9rem;
}

.comparison-table tr:hover {
  background: var(--bg-soft);
}

/* ============================================
   Admissions Page
   ============================================ */
.steps-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.step-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--bg-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
}

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

.step-card p {
  color: var(--text-light);
  font-size: 0.9rem;
}

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

.insurance-item {
  background: var(--bg-white);
  padding: 1rem;
  border-radius: var(--radius-sm);
  text-align: center;
  font-weight: 600;
  color: var(--text);
  box-shadow: var(--shadow-sm);
  border: 1px solid #E8F0F2;
  transition: all var(--transition);
}

.insurance-item:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* FAQ Accordion */
.faq-list { margin: 2rem 0; }

.faq-item {
  background: var(--bg-white);
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid #E8F0F2;
  overflow: hidden;
}

.faq-question {
  padding: 1rem 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--text);
  transition: all var(--transition);
}

.faq-question:hover {
  color: var(--primary);
  background: var(--bg-soft);
}

.faq-question .faq-toggle {
  font-size: 1.2rem;
  color: var(--primary);
  transition: transform 0.3s;
}

.faq-item.open .faq-question .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 1.5rem;
}

.faq-item.open .faq-answer {
  max-height: 500px;
  padding: 0 1.5rem 1rem;
}

.faq-answer p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================
   Contact Page
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.contact-info-card {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid #E8F0F2;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid #F0F5F7;
}

.contact-info-item:last-child {
  border-bottom: none;
}

.contact-info-item .ci-icon {
  width: 45px;
  height: 45px;
  background: var(--bg-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-info-item h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

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

.map-container {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: 0;
}

/* ============================================
   Blog Page
   ============================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.blog-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid #E8F0F2;
  transition: all var(--transition);
}

.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.blog-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-body {
  padding: 1.5rem;
}

.blog-card-category {
  display: inline-block;
  background: var(--bg-accent);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  margin-bottom: 0.75rem;
}

.blog-card-body h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.blog-card-body p {
  color: var(--text-light);
  font-size: 0.9rem;
}

.blog-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--text-light);
}

.blog-featured {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 3rem;
  background: var(--bg-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid #E8F0F2;
}

.blog-featured img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.blog-featured-body {
  padding: 2rem;
}

/* ============================================
   Privacy Page
   ============================================ */
.privacy-content {
  max-width: 800px;
  margin: 0 auto;
}

.privacy-content h2 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.privacy-content h3 {
  font-size: 1.2rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.privacy-content ul {
  margin-bottom: 1rem;
}

.privacy-content li {
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

/* ============================================
   Packing / What to Bring Lists
   ============================================ */
.checklist {
  list-style: none;
  padding: 0;
}

.checklist li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-light);
}

.checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

/* ============================================
   Utility Classes
   ============================================ */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.container { max-width: 900px; margin: 0 auto; }

/* Wave divider */
.wave-divider {
  height: 40px;
  background: var(--bg-soft);
  position: relative;
  overflow: hidden;
}

.wave-divider::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -5%;
  width: 110%;
  height: 40px;
  background: var(--bg-white);
  border-radius: 0 0 50% 50%;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 992px) {
  .sidebar {
    transform: translateX(-100%);
  }

  .sidebar.open {
    transform: translateX(0);
  }

  .sidebar-overlay.active {
    display: block;
  }

  .hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .main-content {
    margin-left: 0;
  }

  .hero-content h1 { font-size: 2rem; }

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

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

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

@media (max-width: 768px) {
  .section { padding: 3rem 1.5rem; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .hero { min-height: 400px; }
  .hero-page { min-height: 250px; }
  .stats-row { gap: 1.5rem; }
  .stat-number { font-size: 2rem; }
  .trust-bar { gap: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .topbar { font-size: 0.8rem; gap: 1rem; }
}

@media (max-width: 480px) {
  .section { padding: 2rem 1rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .trust-bar { flex-direction: column; align-items: center; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .steps-timeline { grid-template-columns: 1fr; }
}
