/* ============================================================
   KCA Advisors - Compassionate Care (#10) + Tab-Based Sections (#5)
   Generated: 2026-02-13
   ============================================================ */

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

:root {
  --primary: #7B68A6;
  --primary-dark: #5E4D8A;
  --primary-light: #9B8BC6;
  --secondary: #C9A0C9;
  --accent: #F0B5B5;
  --accent-dark: #D99A9A;
  --text: #3D3250;
  --text-light: #6B5E80;
  --bg: #FBF9FC;
  --bg-alt: #FFFFFF;
  --bg-card: #FFFFFF;
  --border: #E8E0F0;
  --shadow: rgba(123,104,166,0.12);
  --shadow-lg: rgba(123,104,166,0.18);
  --radius: 16px;
  --radius-sm: 12px;
  --radius-xs: 8px;
  --transition: 0.3s ease;
  --max-width: 1200px;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Open Sans', sans-serif;
}

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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; }

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

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

p { margin-bottom: 1rem; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* --- Skip Navigation --- */
.skip-nav {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--primary);
  color: #fff;
  padding: 0.75rem 1.5rem;
  z-index: 10000;
  border-radius: 0 0 var(--radius-xs) 0;
  font-weight: 600;
}
.skip-nav:focus { top: 0; }

/* --- Header --- */
.site-header {
  background: var(--bg-alt);
  border-bottom: 2px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px var(--shadow);
}

.header-top {
  background: var(--primary);
  color: #fff;
  padding: 0.5rem 0;
  font-size: 0.875rem;
}

.header-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.header-top a { color: #fff; }
.header-top a:hover { color: var(--accent); }

.header-main .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-heart {
  color: var(--accent-dark);
  font-size: 1.75rem;
}

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

.header-phone {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--primary);
}

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

/* --- Navigation / Tab Bar --- */
.tab-nav {
  background: var(--bg-alt);
  border-bottom: 2px solid var(--border);
}

.tab-nav .container {
  display: flex;
  align-items: stretch;
  gap: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.tab-nav a {
  display: flex;
  align-items: center;
  padding: 1rem 1.25rem;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-light);
  border-bottom: 3px solid transparent;
  white-space: nowrap;
  transition: all var(--transition);
}

.tab-nav a:hover,
.tab-nav a.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
  background: rgba(123,104,166,0.05);
}

.tab-nav a.active {
  font-weight: 600;
}

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  transition: all var(--transition);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-color: var(--primary-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(123,104,166,0.85) 0%, rgba(201,160,201,0.7) 100%);
}

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

.hero-content h1 {
  color: #fff;
  font-size: 2.75rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  line-height: 1.6;
}

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

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-align: center;
}

.btn-primary {
  background: var(--accent);
  color: var(--text);
}
.btn-primary:hover {
  background: var(--accent-dark);
  color: var(--text);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(240,181,181,0.4);
}

.btn-secondary {
  background: rgba(255,255,255,0.2);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.3);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

.btn-solid {
  background: var(--primary);
  color: #fff;
}
.btn-solid:hover {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--shadow-lg);
}

/* --- Trust Bar --- */
.trust-bar {
  background: var(--bg-alt);
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}

.trust-bar .container {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

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

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

/* --- Section Styles --- */
.section {
  padding: 4rem 0;
}

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

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  margin-bottom: 1rem;
  position: relative;
}

.section-header h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 2px;
  margin: 0.75rem auto 0;
}

.section-header p {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 650px;
  margin: 0 auto;
}

/* --- Tab Content System (Inner Pages) --- */
.page-tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--border);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  background: var(--bg-alt);
  padding: 0 1.5rem;
}

.page-tabs button,
.page-tabs a {
  padding: 1rem 1.5rem;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-light);
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition);
}

.page-tabs button:hover,
.page-tabs a:hover,
.page-tabs button.active,
.page-tabs a.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.tab-panel {
  display: none;
  animation: fadeTab 0.4s ease;
}

.tab-panel.active {
  display: block;
}

@keyframes fadeTab {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

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

.card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 16px var(--shadow);
  transition: all var(--transition);
  border: 1px solid var(--border);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px 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.25rem;
}

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

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

/* --- Program Cards --- */
.program-card {
  text-align: center;
  padding: 2rem 1.5rem;
}

.program-card .card-icon {
  margin: 0 auto 1rem;
}

/* --- Stats --- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 2rem 1rem;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
}

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

/* --- Testimonials --- */
.testimonial-slider {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: 0 4px 20px var(--shadow);
  border-left: 4px solid var(--secondary);
  margin-bottom: 2rem;
}

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

.testimonial-card blockquote::before {
  content: '\201C';
  font-size: 3rem;
  color: var(--secondary);
  line-height: 0;
  vertical-align: -0.6em;
  margin-right: 0.25rem;
}

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

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

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

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

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform var(--transition);
}

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

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(transparent, rgba(61,50,80,0.8));
  color: #fff;
  font-weight: 500;
  font-size: 0.9rem;
}

/* --- CTA Section --- */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  text-align: center;
  padding: 4rem 0;
}

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

.cta-section p {
  opacity: 0.9;
  font-size: 1.15rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-phone {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  display: block;
  margin-bottom: 1.5rem;
}

.cta-phone a { color: var(--accent); }
.cta-phone a:hover { color: #fff; }

/* --- FAQ Accordion --- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  overflow: hidden;
  background: var(--bg-card);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all var(--transition);
}

.faq-question:hover {
  color: var(--primary);
  background: rgba(123,104,166,0.03);
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--primary);
  transition: transform var(--transition);
}

.faq-item.open .faq-question::after {
  content: '\2212';
}

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

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

.faq-answer p {
  color: var(--text-light);
  line-height: 1.8;
}

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

.blog-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 16px var(--shadow);
  transition: all var(--transition);
  border: 1px solid var(--border);
}

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

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

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

.blog-category {
  display: inline-block;
  background: rgba(123,104,166,0.1);
  color: var(--primary);
  font-size: 0.8rem;
  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 h3 a { color: var(--text); }
.blog-card-body h3 a:hover { color: var(--primary); }

.blog-date {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 1rem;
}

/* --- Insurance Logos --- */
.insurance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
  text-align: center;
}

.insurance-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.5rem 1rem;
  font-weight: 600;
  color: var(--text);
  transition: all var(--transition);
}

.insurance-item:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 12px var(--shadow);
}

/* --- Steps/Timeline --- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  counter-reset: step;
}

.step {
  text-align: center;
  position: relative;
}

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

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

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

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

.team-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 16px var(--shadow);
  border: 1px solid var(--border);
}

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

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

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

.team-creds {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* --- Contact Info --- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.contact-info-box {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 4px 16px var(--shadow);
  border: 1px solid var(--border);
}

.contact-info-box h3 {
  margin-bottom: 1.5rem;
  color: var(--primary);
}

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

.contact-detail-icon {
  font-size: 1.25rem;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 16px var(--shadow);
}

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

/* --- Breadcrumbs --- */
.breadcrumbs {
  padding: 1rem 0;
  font-size: 0.875rem;
  color: var(--text-light);
}

.breadcrumbs a { color: var(--primary); }
.breadcrumbs span { margin: 0 0.5rem; }

/* --- Footer --- */
.site-footer {
  background: var(--text);
  color: rgba(255,255,255,0.8);
  padding: 3.5rem 0 0;
}

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

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

.footer-col p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  line-height: 1.7;
}

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

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

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

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

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.footer-contact-icon {
  color: var(--secondary);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

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

/* --- Utility --- */
.text-center { text-align: center; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }

/* --- Day Schedule --- */
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}

.schedule-table th,
.schedule-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.schedule-table th {
  background: rgba(123,104,166,0.05);
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--primary);
}

/* --- Comparison Table --- */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.95rem;
}

.comparison-table th,
.comparison-table td {
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  text-align: center;
}

.comparison-table th {
  background: var(--primary);
  color: #fff;
  font-family: var(--font-heading);
}

.comparison-table tbody tr:nth-child(even) {
  background: rgba(123,104,166,0.03);
}

/* --- Packing List --- */
.packing-list {
  columns: 2;
  column-gap: 2rem;
  list-style: none;
  margin: 1rem 0;
}

.packing-list li {
  padding: 0.4rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-light);
  break-inside: avoid;
}

.packing-list li::before {
  content: '\2713';
  color: var(--primary);
  font-weight: 700;
  position: absolute;
  left: 0;
}

/* --- Blog Article Body --- */
.article-content {
  max-width: 800px;
  margin: 0 auto;
}

.article-content h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.article-content ul,
.article-content ol {
  margin: 1rem 0 1.5rem 1.5rem;
  color: var(--text-light);
}

.article-content li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

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

.privacy-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.privacy-content h2:first-of-type {
  border-top: none;
  padding-top: 0;
}

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

.modality-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.modality-icon {
  font-size: 1.5rem;
  color: var(--primary);
  flex-shrink: 0;
}

.modality-item h4 {
  margin-bottom: 0.35rem;
  font-size: 1.05rem;
}

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

/* --- Substances List --- */
.substance-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.substance-tag {
  background: rgba(123,104,166,0.1);
  color: var(--primary);
  padding: 0.5rem 1.25rem;
  border-radius: 30px;
  font-weight: 500;
  font-size: 0.9rem;
}

/* --- Mobile Navigation --- */
@media (max-width: 768px) {
  .hamburger { display: flex; }

  .tab-nav .container {
    flex-direction: column;
    display: none;
    padding: 0;
  }

  .tab-nav.open .container {
    display: flex;
  }

  .tab-nav a {
    padding: 0.875rem 1.5rem;
    border-bottom: 1px solid var(--border);
    border-left: 3px solid transparent;
  }

  .tab-nav a:hover,
  .tab-nav a.active {
    border-bottom-color: var(--border);
    border-left-color: var(--primary);
  }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }

  .hero { min-height: 400px; }
  .hero-content h1 { font-size: 2rem; }
  .hero-content p { font-size: 1rem; }

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

  .page-tabs {
    flex-direction: column;
    padding: 0;
  }

  .page-tabs button,
  .page-tabs a {
    border-bottom: 1px solid var(--border);
    border-left: 3px solid transparent;
  }

  .page-tabs button.active,
  .page-tabs a.active {
    border-bottom-color: var(--border);
    border-left-color: var(--primary);
  }

  .packing-list { columns: 1; }

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

  .header-phone { display: none; }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 1.75rem; }
  .btn { padding: 0.75rem 1.5rem; font-size: 0.9rem; }
  .stat-number { font-size: 2rem; }
  .card-grid { grid-template-columns: 1fr; }
}
