/* ========================================
   东朗健康产业 — Donglang Health & Wellness
   外国人赴华医疗旅游独立站全局样式
   ======================================== */

/* ---------- CSS Variables ---------- */
:root {
  --color-primary: #0d6b6e;
  --color-primary-dark: #084b4e;
  --color-primary-light: #e0f2f1;
  --color-accent: #c8963e;
  --color-accent-light: #fef3e2;
  --color-ocean: #1a5276;
  --color-ocean-light: #d4e6f1;
  --color-text: #1a1a2e;
  --color-text-light: #555;
  --color-bg: #fafbfc;
  --color-white: #ffffff;
  --color-border: #e5e7eb;
  --color-success: #059669;
  --color-danger: #dc2626;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.15);
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --max-width: 1200px;
  --header-height: 72px;
}

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

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans SC", sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  padding-top: var(--header-height);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--color-primary-dark); }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

@media (max-width: 768px) {
  .container { padding: 0 16px; }
  html { font-size: 15px; }
}

/* ---------- Typography ---------- */
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; line-height: 1.2; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; line-height: 1.25; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; line-height: 1.3; }
h4 { font-size: 1.1rem; font-weight: 600; }

.section-title {
  text-align: center;
  margin-bottom: 0.75rem;
}
.section-subtitle {
  text-align: center;
  color: var(--color-text-light);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.text-accent { color: var(--color-accent); }
.text-primary { color: var(--color-primary); }
.text-small { font-size: 0.875rem; color: var(--color-text-light); }

/* ---------- Header / Nav ---------- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  height: var(--header-height);
  display: flex; align-items: center;
}

.header .container {
  display: flex; align-items: center; justify-content: space-between;
}

.logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 1.25rem; color: var(--color-primary);
}
.logo-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-ocean));
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.3rem;
}

.nav { display: flex; align-items: center; gap: 6px; }
.nav a {
  padding: 8px 14px; border-radius: var(--radius-sm);
  font-size: 0.925rem; font-weight: 500; color: var(--color-text);
  transition: all 0.2s;
}
.nav a:hover, .nav a.active {
  background: var(--color-primary-light);
  color: var(--color-primary);
}

.nav-cta {
  margin-left: 8px;
}

.lang-switch {
  display: flex; align-items: center; gap: 4px;
  margin-left: 16px; padding: 6px 10px;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  font-size: 0.8rem; cursor: pointer;
  background: var(--color-white);
  transition: all 0.2s;
}
.lang-switch:hover { border-color: var(--color-primary); }
.lang-switch span { padding: 2px 8px; border-radius: 12px; }
.lang-switch span.active { background: var(--color-primary); color: white; }

.mobile-menu-btn {
  display: none;
  background: none; border: none; cursor: pointer;
  font-size: 1.5rem; color: var(--color-text);
}

@media (max-width: 900px) {
  .nav { display: none; }
  .nav.open {
    display: flex; flex-direction: column;
    position: absolute; top: var(--header-height); left: 0; right: 0;
    background: white; border-bottom: 1px solid var(--color-border);
    padding: 12px; gap: 4px; box-shadow: var(--shadow-lg);
  }
  .mobile-menu-btn { display: block; }
  .lang-switch { margin-left: auto; margin-right: 8px; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: 50px;
  font-size: 0.95rem; font-weight: 600;
  border: none; cursor: pointer;
  transition: all 0.25s;
  text-decoration: none; white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-ocean));
  color: white; box-shadow: 0 4px 14px rgba(13, 107, 110, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13, 107, 110, 0.45);
  color: white;
}
.btn-accent {
  background: var(--color-accent); color: white;
  box-shadow: 0 4px 14px rgba(200, 150, 62, 0.35);
}
.btn-accent:hover {
  background: #b8860b; color: white;
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent; color: var(--color-primary);
  border: 2px solid var(--color-primary);
}
.btn-outline:hover {
  background: var(--color-primary); color: white;
}
.btn-white {
  background: white; color: var(--color-primary);
  box-shadow: var(--shadow-md);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-sm { padding: 8px 16px; font-size: 0.85rem; }
.btn-lg { padding: 16px 32px; font-size: 1.1rem; }

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex; align-items: center;
  background: linear-gradient(135deg, #f0f9f9 0%, #e8f4f8 50%, #fef9f0 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(13, 107, 110, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -30%; left: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(200, 150, 62, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 680px;
}
.hero-badge {
  display: inline-block; padding: 6px 16px;
  background: rgba(13, 107, 110, 0.1);
  color: var(--color-primary);
  border-radius: 50px;
  font-size: 0.85rem; font-weight: 600;
  margin-bottom: 1.25rem;
}
.hero h1 { margin-bottom: 1rem; }
.hero h1 .highlight {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  font-size: 1.15rem; color: var(--color-text-light);
  margin-bottom: 2rem; line-height: 1.8;
}
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-stats {
  display: flex; gap: 32px; margin-top: 3rem;
  padding-top: 1.5rem; border-top: 1px solid var(--color-border);
}
.hero-stat h3 {
  font-size: 1.5rem; color: var(--color-primary);
  margin-bottom: 2px;
}
.hero-stat p { font-size: 0.8rem; color: var(--color-text-light); margin: 0; }

@media (max-width: 768px) {
  .hero { min-height: auto; padding: 80px 0 60px; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
}

/* ---------- Sections ---------- */
.section {
  padding: 80px 0;
}
.section-alt {
  background: var(--color-white);
}
.section-dark {
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-ocean));
  color: white;
}
.section-dark .section-subtitle { color: rgba(255, 255, 255, 0.75); }

/* ---------- Cards ---------- */
.card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: all 0.3s;
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.card-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
.card-icon.teal { background: var(--color-primary-light); color: var(--color-primary); }
.card-icon.gold { background: var(--color-accent-light); color: var(--color-accent); }
.card-icon.blue { background: var(--color-ocean-light); color: var(--color-ocean); }

.card h3 { margin-bottom: 0.5rem; }
.card p { color: var(--color-text-light); font-size: 0.95rem; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.card-grid-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 900px) {
  .card-grid-3, .card-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .card-grid-3, .card-grid-4, .card-grid { grid-template-columns: 1fr; }
}

/* ---------- Trust Bar ---------- */
.trust-bar {
  background: white;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 24px 0;
}
.trust-bar .container {
  display: flex; align-items: center; justify-content: center;
  gap: 48px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.9rem; font-weight: 500;
}
.trust-item .check {
  width: 24px; height: 24px;
  background: var(--color-primary-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-primary); font-size: 0.75rem;
}

/* ---------- Comparison Table ---------- */
.compare-table {
  width: 100%; border-collapse: collapse;
  background: white; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-md);
}
.compare-table th {
  background: var(--color-primary);
  color: white; padding: 16px 20px;
  font-weight: 600; text-align: left;
  font-size: 0.95rem;
}
.compare-table td {
  padding: 14px 20px; border-bottom: 1px solid var(--color-border);
  font-size: 0.925rem;
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:nth-child(even) { background: #f9fafb; }
.compare-table .savings {
  color: var(--color-success); font-weight: 700;
}
.compare-table .highlight-row { background: var(--color-accent-light) !important; }

/* ---------- Package Cards ---------- */
.package-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.package-card {
  background: white;
  border-radius: var(--radius-lg);
  border: 2px solid var(--color-border);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s;
  position: relative;
}
.package-card:hover {
  border-color: var(--color-primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.package-card.featured {
  border-color: var(--color-accent);
  background: linear-gradient(180deg, var(--color-accent-light) 0%, white 25%);
  transform: scale(1.03);
}
.package-card.featured:hover { transform: scale(1.03) translateY(-4px); }
.package-badge {
  display: inline-block; padding: 4px 16px;
  background: var(--color-accent); color: white;
  border-radius: 50px; font-size: 0.8rem; font-weight: 700;
  margin-bottom: 1rem;
}
.package-name { font-size: 1.3rem; font-weight: 700; margin-bottom: 0.5rem; }
.package-price { font-size: 2.5rem; font-weight: 800; color: var(--color-primary); margin-bottom: 1.25rem; }
.package-price span { font-size: 0.9rem; font-weight: 400; color: var(--color-text-light); }
.package-features { text-align: left; margin-bottom: 1.5rem; }
.package-features li {
  padding: 8px 0; border-bottom: 1px solid #f3f4f6;
  font-size: 0.9rem; display: flex; align-items: center; gap: 8px;
}
.package-features li::before {
  content: '\2713'; color: var(--color-success); font-weight: 700;
}

@media (max-width: 900px) {
  .package-cards { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .package-card.featured { transform: none; }
  .package-card.featured:hover { transform: translateY(-4px); }
}

/* ---------- Testimonial ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: white; border-radius: var(--radius-lg);
  padding: 28px; box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--color-primary);
}
.testimonial-card p.quote {
  font-style: italic; color: var(--color-text-light);
  margin-bottom: 1rem; font-size: 0.95rem;
  line-height: 1.7;
}
.testimonial-author {
  display: flex; align-items: center; gap: 12px;
}
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--color-primary-light);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--color-primary);
  font-size: 1.1rem;
}
.testimonial-author .name { font-weight: 600; font-size: 0.9rem; }
.testimonial-author .country { font-size: 0.8rem; color: var(--color-text-light); }

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-ocean));
  color: white; text-align: center;
  padding: 64px 0; border-radius: var(--radius-xl);
  margin: 0 24px;
}
.cta-banner h2 { margin-bottom: 0.75rem; }
.cta-banner p { font-size: 1.1rem; opacity: 0.85; margin-bottom: 2rem; }

/* ---------- FAQ Accordion ---------- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: white; border-radius: var(--radius);
  margin-bottom: 12px; border: 1px solid var(--color-border);
  overflow: hidden;
}
.faq-question {
  padding: 20px 24px; font-weight: 600;
  cursor: pointer; display: flex; justify-content: space-between;
  align-items: center; font-size: 1rem;
  transition: background 0.2s;
}
.faq-question:hover { background: #f9fafb; }
.faq-question::after {
  content: '+'; font-size: 1.3rem; color: var(--color-primary);
  transition: transform 0.3s;
}
.faq-item.open .faq-question::after {
  content: '\2212';
}
.faq-answer {
  padding: 0 24px; max-height: 0; overflow: hidden;
  transition: all 0.3s ease;
  color: var(--color-text-light); font-size: 0.95rem;
}
.faq-item.open .faq-answer {
  padding: 0 24px 20px; max-height: 500px;
}

/* ---------- Forms ---------- */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; margin-bottom: 6px;
  font-weight: 600; font-size: 0.9rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius);
  font-size: 0.95rem; font-family: inherit;
  transition: border-color 0.2s;
  background: white;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(13, 107, 110, 0.1);
}
.form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
}
.form-message {
  padding: 14px 18px; border-radius: var(--radius);
  font-size: 0.9rem; margin-top: 12px; display: none;
}
.form-message.success {
  display: block; background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0;
}
.form-message.error {
  display: block; background: #fef2f2; color: #991b1b; border: 1px solid #fecaca;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--color-text);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 40px;
}
.footer h4 {
  color: white; margin-bottom: 1rem; font-size: 1rem;
}
.footer a { color: rgba(255, 255, 255, 0.6); font-size: 0.9rem; }
.footer a:hover { color: white; }
.footer-brand p { font-size: 0.9rem; margin-bottom: 1rem; }
.footer-links li { margin-bottom: 8px; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px; text-align: center;
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- Page Hero (Sub Pages) ---------- */
.page-hero {
  background: linear-gradient(135deg, #f0f9f9, #e8f4f8);
  padding: 60px 0; text-align: center;
}
.page-hero h1 { margin-bottom: 0.75rem; }
.page-hero p { font-size: 1.1rem; color: var(--color-text-light); max-width: 600px; margin: 0 auto; }

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  padding: 16px 0; font-size: 0.85rem;
  color: var(--color-text-light);
}
.breadcrumb a { color: var(--color-text-light); }
.breadcrumb a:hover { color: var(--color-primary); }
.breadcrumb span { color: var(--color-primary); }

/* ---------- Trip Planner ---------- */
.planner-container {
  background: white;
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  max-width: 800px; margin: 0 auto;
}
.planner-step {
  margin-bottom: 32px;
}
.planner-step h3 {
  font-size: 1.1rem; margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.step-num {
  width: 32px; height: 32px;
  background: var(--color-primary);
  color: white; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 700;
}
.planner-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
}
.planner-option {
  padding: 16px; border: 2px solid var(--color-border);
  border-radius: var(--radius); text-align: center;
  cursor: pointer; transition: all 0.2s;
  font-size: 0.9rem; font-weight: 500;
}
.planner-option:hover { border-color: var(--color-primary); background: var(--color-primary-light); }
.planner-option.selected {
  border-color: var(--color-primary); background: var(--color-primary-light);
  color: var(--color-primary-dark); font-weight: 700;
}
.planner-summary {
  background: var(--color-primary-light);
  border-radius: var(--radius);
  padding: 24px; margin-top: 32px;
}
.planner-summary h4 { margin-bottom: 12px; color: var(--color-primary-dark); }
.planner-summary ul li {
  padding: 6px 0; font-size: 0.95rem;
  display: flex; align-items: center; gap: 8px;
}

/* ---------- Timeline ---------- */
.timeline {
  position: relative; padding-left: 30px;
}
.timeline::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 2px; background: var(--color-primary-light);
}
.timeline-item {
  position: relative; padding-bottom: 32px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: '';
  position: absolute; left: -34px; top: 4px;
  width: 10px; height: 10px;
  background: var(--color-primary);
  border-radius: 50%; border: 3px solid var(--color-primary-light);
}
.timeline-item h4 { margin-bottom: 4px; }
.timeline-item p { color: var(--color-text-light); font-size: 0.9rem; }

/* ---------- Feature Grid ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}
.feature-box {
  text-align: center; padding: 32px 20px;
  background: white; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s;
}
.feature-box:hover { transform: translateY(-3px); }
.feature-box .icon {
  font-size: 2.5rem; margin-bottom: 1rem;
}
.feature-box h4 { margin-bottom: 0.5rem; }
.feature-box p { color: var(--color-text-light); font-size: 0.9rem; }

/* ---------- Modal ---------- */
.modal-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.5);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.modal-overlay.open {
  opacity: 1; pointer-events: all;
}
.modal {
  background: white; border-radius: var(--radius-xl);
  padding: 40px; max-width: 560px; width: 90%;
  max-height: 90vh; overflow-y: auto;
  box-shadow: var(--shadow-xl);
  position: relative;
}
.modal-close {
  position: absolute; top: 16px; right: 16px;
  background: none; border: none; font-size: 1.5rem;
  cursor: pointer; color: var(--color-text-light);
}

/* ---------- Animations ---------- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-fade-up {
  animation: fadeInUp 0.6s ease-out forwards;
}
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; opacity: 0; }
.delay-4 { animation-delay: 0.4s; opacity: 0; }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.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; }
.hidden { display: none !important; }

/* ---------- Blog ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
}
.blog-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: all 0.3s;
  display: flex; flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.blog-card-img {
  height: 200px;
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-ocean-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
}
.blog-card-body {
  padding: 24px; flex: 1; display: flex; flex-direction: column;
}
.blog-card-category {
  display: inline-block;
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  color: var(--color-primary); background: var(--color-primary-light);
  padding: 4px 12px; border-radius: 50px; margin-bottom: 12px;
  align-self: flex-start;
}
.blog-card h3 {
  font-size: 1.2rem; margin-bottom: 8px; line-height: 1.4;
}
.blog-card h3 a { color: var(--color-text); }
.blog-card h3 a:hover { color: var(--color-primary); }
.blog-card-excerpt {
  font-size: 0.9rem; color: var(--color-text-light);
  margin-bottom: 16px; flex: 1;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.blog-card-meta {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px; border-top: 1px solid var(--color-border);
  font-size: 0.8rem; color: var(--color-text-light);
}
.blog-card-meta span { display: flex; align-items: center; gap: 4px; }

/* Blog Post */
.blog-post {
  max-width: 780px; margin: 0 auto;
}
.blog-post-header {
  margin-bottom: 32px;
}
.blog-post-header .category {
  display: inline-block;
  font-size: 0.8rem; font-weight: 700; text-transform: uppercase;
  color: var(--color-primary); background: var(--color-primary-light);
  padding: 4px 14px; border-radius: 50px; margin-bottom: 16px;
}
.blog-post-header h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 16px; line-height: 1.3;
}
.blog-post-meta {
  display: flex; gap: 20px; flex-wrap: wrap;
  font-size: 0.9rem; color: var(--color-text-light);
  margin-bottom: 24px;
}
.blog-post-thumbnail {
  width: 100%; height: 360px;
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-ocean-light));
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem;
  margin-bottom: 32px;
}
.blog-post-body {
  font-size: 1.05rem; line-height: 1.9;
}
.blog-post-body h2 {
  font-size: 1.5rem; margin-top: 40px; margin-bottom: 16px;
  padding-bottom: 8px; border-bottom: 2px solid var(--color-primary-light);
}
.blog-post-body h3 {
  font-size: 1.2rem; margin-top: 32px; margin-bottom: 12px;
  color: var(--color-primary);
}
.blog-post-body p { margin-bottom: 20px; color: var(--color-text-light); }
.blog-post-body ul, .blog-post-body ol {
  margin: 16px 0 24px 24px;
}
.blog-post-body li {
  margin-bottom: 8px; color: var(--color-text-light);
  list-style: disc;
}
.blog-post-body blockquote {
  border-left: 4px solid var(--color-primary);
  padding: 16px 24px; margin: 28px 0;
  background: var(--color-primary-light);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic; color: var(--color-primary-dark);
}
.blog-post-body .cta-inline {
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-ocean));
  color: white; padding: 28px 32px;
  border-radius: var(--radius-lg);
  text-align: center; margin: 40px 0;
}
.blog-post-body .cta-inline h3 { color: white; margin-top: 0; }
.blog-post-body .cta-inline .btn { margin-top: 12px; }

/* Blog Sidebar */
.blog-sidebar {
  background: white; border-radius: var(--radius-lg);
  padding: 28px; border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}
.blog-sidebar h4 {
  font-size: 1.1rem; margin-bottom: 16px;
  padding-bottom: 12px; border-bottom: 2px solid var(--color-primary-light);
}

/* ---------- Print ---------- */
@media print {
  .header, .footer, .btn, .nav { display: none; }
  body { padding-top: 0; }
}
