/* ============================================================
   Travel By MK - Main Stylesheet
   Colors: Teal #2fbcb1, Dark Teal #0c9497, Navy #03243e, Orange #fc985a, Cream #fbf0d7
   ============================================================ */

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

:root {
  --teal: #2fbcb1;
  --teal-dark: #0c9497;
  --navy: #03243e;
  --orange: #fc985a;
  --cream: #fbf0d7;
  --slate-900: #0f172a;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --white: #ffffff;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--slate-900);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* CONTAINER */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 640px) { .container { padding: 0 2rem; } }
@media (min-width: 1024px) { .container { padding: 0 3rem; } }

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
  padding: 0.75rem 0;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--slate-200);
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
  padding: 0.4rem 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img { height: 96px; width: auto; }
.nav-links { display: none; gap: 0.5rem; align-items: center; }
@media (min-width: 768px) { .nav-links { display: flex; } }
.nav-btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  background: var(--teal);
  color: var(--slate-900);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}
.nav-btn:hover { background: var(--teal-dark); color: var(--white); transform: translateY(-2px); }
.nav-btn.active { background: var(--teal-dark); color: var(--white); }
.nav-toggle {
  display: flex;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--slate-900);
  padding: 0.25rem;
}
@media (min-width: 768px) { .nav-toggle { display: none; } }
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem;
  background: var(--white);
  border-top: 1px solid var(--slate-200);
}
.nav-mobile.open { display: flex; }
.nav-mobile .nav-btn { width: 100%; text-align: center; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--teal);
  color: var(--slate-900);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-primary:hover { background: var(--teal-dark); color: var(--white); transform: translateY(-2px); }
.btn-primary.btn-lg { padding: 1.1rem 2.5rem; font-size: 1.1rem; }
.btn-primary.btn-full { width: 100%; text-align: center; }
.btn-outline {
  display: inline-block;
  padding: 0.6rem 1.25rem;
  background: transparent;
  color: var(--slate-700);
  border: 1px solid var(--slate-300);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-outline:hover { border-color: var(--teal); color: var(--teal); }
.btn-outline-white {
  display: inline-block;
  padding: 1rem 2rem;
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: all 0.2s;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.15); }
.btn-outline-white.btn-sm { padding: 0.5rem 1rem; font-size: 0.85rem; }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.85rem; }
.btn-white {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--white);
  color: var(--slate-900);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-white:hover { background: var(--teal-dark); color: var(--white); }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(15,23,42,0.55), rgba(15,23,42,0.2), transparent);
}
.hero-content {
  position: relative;
  z-index: 1;
}
.hero-text {
  max-width: 600px;
  color: var(--white);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(47,188,177,0.2);
  border: 1px solid rgba(47,188,177,0.35);
  backdrop-filter: blur(4px);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero-text h1 {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}
.gradient-text {
  background: linear-gradient(to right, var(--teal), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--orange);
  font-weight: 600;
  max-width: 480px;
  margin-bottom: 2rem;
  line-height: 1.6;
}
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  animation: bounce 2s infinite;
}
.scroll-line {
  width: 2px;
  height: 3rem;
  background: linear-gradient(to bottom, var(--teal), var(--white), var(--teal));
}
.scroll-indicator span { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700; }
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }

/* ============================================================
   SECTIONS
   ============================================================ */
.section-white { padding: 5rem 0; background: var(--white); }
.section-gray { padding: 5rem 0; background: var(--slate-50); }
.section-cta {
  padding: 5rem 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.section-cta h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--navy); margin-bottom: 1rem; }
.section-cta p { color: #034a5b; font-size: 1.05rem; max-width: 600px; margin: 0 auto 2.5rem; }
.teal-bg { background: var(--teal) !important; }
.text-center { text-align: center; }

.section-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
}
.white-label { color: var(--white) !important; }

.section-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.section-header h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); }
.section-desc { color: var(--slate-500); max-width: 560px; margin-top: 0.75rem; }

/* TWO COLUMN LAYOUT */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 1024px) { .two-col { grid-template-columns: 1fr 1fr; } }

.text-col h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); margin-bottom: 1.25rem; }
.text-col p { color: var(--slate-600); line-height: 1.8; margin-bottom: 1.5rem; }
.orange-text { color: var(--orange); }
.gray-text { color: var(--slate-400); }

.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin: 1.5rem 0 2rem; }
.feature-item { display: flex; gap: 1rem; align-items: flex-start; }
.feature-icon { font-size: 1.4rem; width: 2.8rem; height: 2.8rem; background: var(--slate-50); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.feature-item h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.25rem; }
.feature-item p { font-size: 0.85rem; color: var(--slate-500); }

.text-link { font-family: 'Outfit', sans-serif; font-weight: 700; color: var(--slate-900); display: inline-flex; align-items: center; gap: 0.5rem; transition: color 0.2s; }
.text-link:hover { color: var(--teal); }

/* IMG CARD */
.img-card { position: relative; }
.img-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25); }
.floating-card {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  background: var(--white);
  padding: 1.25rem 1.5rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.12);
  max-width: 240px;
  border-left: 4px solid var(--teal);
  display: none;
}
@media (min-width: 768px) { .floating-card { display: block; } }
.floating-quote { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1rem; margin-bottom: 0.4rem; }
.floating-sub { font-size: 0.8rem; color: var(--slate-500); }

/* ============================================================
   DESTINATION CARDS
   ============================================================ */
.dest-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .dest-grid { grid-template-columns: repeat(3, 1fr); } }

.dest-card {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 3/4;
}
@media (min-width: 768px) { .dest-card { aspect-ratio: 4/5; } }
.dest-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.dest-card:hover img { transform: scale(1.1); }
.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,0.9), rgba(15,23,42,0.2), transparent);
  opacity: 0.8;
  transition: opacity 0.3s;
}
.dest-card:hover .dest-overlay { opacity: 0.9; }
.dest-text {
  position: absolute;
  bottom: 0; left: 0;
  padding: 2rem;
  width: 100%;
  transform: translateY(0.5rem);
  transition: transform 0.3s;
}
.dest-card:hover .dest-text { transform: translateY(0); }
.dest-label { display: block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--teal); margin-bottom: 0.5rem; }
.dest-text h3 { font-size: 1.3rem; color: var(--white); margin-bottom: 0.5rem; }
.dest-text p { font-size: 0.85rem; color: rgba(255,255,255,0.75); line-height: 1.5; }

/* ============================================================
   REPORT CARDS
   ============================================================ */
.report-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 640px) { .report-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .report-grid { grid-template-columns: repeat(3, 1fr); } }

.report-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--slate-200);
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.2s;
  cursor: pointer;
  height: 100%;
}
.report-card:hover { box-shadow: 0 20px 40px -8px rgba(0,0,0,0.12); transform: translateY(-2px); }

.card-img { aspect-ratio: 4/3; overflow: hidden; background: var(--slate-200); }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.report-card:hover .card-img img { transform: scale(1.05); }
.card-img-placeholder { display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--slate-800), var(--slate-900)); }
.card-img-placeholder span { font-size: 3.5rem; font-family: 'Outfit', sans-serif; font-weight: 700; color: rgba(255,255,255,0.15); }

.card-body { padding: 1.5rem; flex-grow: 1; display: flex; flex-direction: column; }
.card-badges { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 0.75rem; }
.badge { display: inline-block; padding: 0.2rem 0.6rem; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; border-radius: 2px; }
.badge-teal { background: rgba(47,188,177,0.12); color: var(--teal-dark); }
.badge-dark { background: var(--slate-800); color: var(--white); }

.card-title { font-size: 1rem; font-weight: 700; color: var(--slate-900); margin-bottom: 0.4rem; line-height: 1.4; transition: color 0.2s; }
.report-card:hover .card-title { color: var(--teal); }
.card-entity { font-size: 0.9rem; font-weight: 600; color: var(--slate-700); margin-bottom: 0.2rem; }
.card-location { font-size: 0.82rem; color: var(--slate-500); margin-bottom: 0.6rem; }
.card-preview { font-size: 0.85rem; color: var(--slate-600); line-height: 1.6; margin-bottom: 0.75rem; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.card-date { font-size: 0.8rem; color: var(--slate-400); margin-top: auto; }

/* ============================================================
   REPORTS PAGE
   ============================================================ */
.page-hero { padding: 5rem 0 3.5rem; }
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); margin: 0.5rem 0 1rem; }
.page-hero p { font-size: 1.05rem; max-width: 560px; }
.teal-bg h1, .teal-bg p { color: var(--slate-900); }
.teal-bg .section-label { color: var(--white); }

.filter-bar {
  background: var(--white);
  border-bottom: 1px solid var(--slate-200);
  position: sticky;
  top: 62px;
  z-index: 50;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  padding: 1.25rem 0;
}
.search-wrap { position: relative; max-width: 420px; margin-bottom: 1rem; }
.search-icon { position: absolute; left: 0.75rem; top: 50%; transform: translateY(-50%); font-size: 1rem; }
.search-wrap input {
  width: 100%;
  padding: 0.6rem 1rem 0.6rem 2.4rem;
  border: 1px solid var(--slate-300);
  border-radius: 6px;
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.2s;
}
.search-wrap input:focus { border-color: var(--teal); box-shadow: 0 0 0 2px rgba(47,188,177,0.15); }
.filter-btns { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.filter-btn {
  padding: 0.4rem 1rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  background: transparent;
  border: 1px solid var(--slate-300);
  color: var(--slate-700);
  cursor: pointer;
  transition: all 0.2s;
  border-radius: 2px;
}
.filter-btn:hover { border-color: var(--teal); color: var(--teal); }
.filter-btn.active { background: var(--teal); color: var(--slate-900); border-color: var(--teal); font-weight: 700; }

.no-results { text-align: center; padding: 5rem 0; color: var(--slate-600); }
.no-results h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }

/* ============================================================
   REPORT DETAIL PAGE
   ============================================================ */
.report-hero { position: relative; width: 100%; background: var(--slate-100); margin-top: 0; }
.report-hero img { width: 100%; max-height: 80vh; object-fit: contain; }
.report-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,0.75), rgba(15,23,42,0.2), transparent);
}
.report-hero-text {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding-bottom: 3rem;
}
.report-title-hero {
  display: none;
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  color: var(--white);
  margin: 0.75rem 0;
  max-width: 900px;
}
@media (min-width: 768px) { .report-title-hero { display: block; } }

.category-badge {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  background: var(--teal);
  color: var(--slate-900);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 2px;
}
.teal-badge { background: rgba(47,188,177,0.12); color: var(--teal-dark); }

.report-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.9rem;
  color: var(--slate-600);
  align-items: center;
}
.white-meta { color: rgba(255,255,255,0.85) !important; }
.white-meta span { color: rgba(255,255,255,0.85); }

.share-btn {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
  transition: background 0.2s;
  border-radius: 2px;
}
.share-btn:hover { background: rgba(255,255,255,0.25); }

.mobile-back { padding: 1rem 0; display: block; }
@media (min-width: 768px) { .mobile-back { display: none; } }

.report-hero-plain { background: var(--slate-50); padding: 5rem 0 3rem; }
.report-hero-plain h1 { font-size: clamp(1.8rem, 4vw, 3rem); margin: 1rem 0; }

.report-body { padding: 4rem 0; max-width: 900px; }

/* PROSE STYLES for report content */
.prose { font-size: 1.05rem; line-height: 1.8; color: var(--slate-700); }
.prose h1, .prose h2, .prose h3, .prose h4 { font-family: 'Outfit', sans-serif; color: var(--slate-900); margin: 2rem 0 1rem; }
.prose h2 { font-size: 1.6rem; }
.prose h3 { font-size: 1.3rem; }
.prose p { margin-bottom: 1.25rem; }
.prose ul, .prose ol { margin: 1rem 0 1.25rem 1.5rem; }
.prose li { margin-bottom: 0.4rem; }
.prose strong { font-weight: 700; color: var(--slate-900); }
.prose em { font-style: italic; }
.prose a { color: var(--teal-dark); text-decoration: underline; }
.prose blockquote { border-left: 4px solid var(--teal); padding: 1rem 1.5rem; background: var(--slate-50); margin: 1.5rem 0; font-style: italic; color: var(--slate-600); }
.prose img { border-radius: 4px; margin: 1.5rem 0; box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
.prose hr { border: none; border-top: 1px solid var(--slate-200); margin: 2rem 0; }
.prose audio, .prose video { width: 100%; margin: 1.5rem 0; border-radius: 4px; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero { padding: 2rem 0 4rem; background: var(--slate-50); }
.about-photo-wrap { display: flex; flex-direction: column; align-items: center; }
.about-photo { width: 280px; border-radius: 50%; overflow: hidden; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25); cursor: pointer; }
@media (min-width: 1024px) { .about-photo { width: 360px; } }
.about-photo img { width: 100%; height: 100%; object-fit: cover; transition: filter 0.7s ease; }
.grayscale { filter: grayscale(100%); }
.photo-hint { font-size: 0.78rem; color: var(--slate-400); margin-top: 0.75rem; text-align: center; }

.bio-container { max-width: 900px; }
.bio-container h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 1.25rem; }
.bio-container > p { color: var(--slate-600); line-height: 1.8; margin-bottom: 1.5rem; font-size: 1.05rem; }

.info-box { background: var(--slate-50); border-left: 4px solid var(--teal); padding: 1.5rem 2rem; margin: 2rem 0; }
.info-box h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.75rem; }
.info-box p { color: var(--slate-600); line-height: 1.7; margin-bottom: 0.5rem; }
.fine-print { font-size: 0.82rem; font-style: italic; color: var(--slate-500) !important; }

.cred-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 3rem; }
@media (min-width: 640px) { .cred-grid { grid-template-columns: repeat(2, 1fr); } }
.cred-card { display: flex; gap: 1.25rem; padding: 1.5rem; background: var(--slate-50); border: 1px solid var(--slate-100); align-items: flex-start; }
.cred-icon { font-size: 1.4rem; width: 2.8rem; height: 2.8rem; background: var(--white); box-shadow: 0 2px 8px rgba(0,0,0,0.06); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cred-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.4rem; }
.cred-card p { font-size: 0.85rem; color: var(--slate-600); line-height: 1.6; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr; min-height: calc(100vh - 5rem); }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; } }

.contact-left {
  background: var(--teal);
  padding: 4rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 1024px) { .contact-left { padding: 6rem; } }
.contact-left h1 { font-size: clamp(2rem, 4vw, 3.5rem); margin: 1rem 0 2rem; color: var(--slate-900); }
.contact-left > p { color: var(--slate-700); font-size: 1.05rem; line-height: 1.7; max-width: 420px; margin-bottom: 3rem; }

.contact-details { display: flex; flex-direction: column; gap: 2rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon { width: 2.5rem; height: 2.5rem; background: var(--white); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; color: var(--teal-dark); }
.contact-item h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.25rem; }
.contact-item p { color: var(--slate-700); font-size: 0.9rem; }
.contact-item a { color: var(--slate-700); transition: color 0.2s; }
.contact-item a:hover { color: var(--navy); }

.contact-right { background: var(--slate-50); padding: 4rem 2rem; display: flex; align-items: center; justify-content: center; }
@media (min-width: 1024px) { .contact-right { padding: 6rem; } }
.form-wrap { width: 100%; max-width: 500px; }
.form-wrap h2 { font-size: 1.5rem; margin-bottom: 2rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.25rem; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--slate-700); }
.form-group input,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1px solid var(--slate-200);
  background: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
  color: var(--slate-900);
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 2px rgba(47,188,177,0.15); }
.form-group textarea { resize: none; }

.form-success { padding: 0.75rem 1rem; background: #dcfce7; color: #15803d; border-radius: 4px; margin-top: 1rem; font-size: 0.9rem; font-weight: 600; }
.form-error { padding: 0.75rem 1rem; background: #fee2e2; color: #dc2626; border-radius: 4px; margin-top: 1rem; font-size: 0.9rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--cream); padding: 4rem 0 2rem; border-top: 1px solid var(--slate-200); }
.footer-top { margin-bottom: 3rem; }
.footer-newsletter h3 { font-size: 1.5rem; color: var(--navy); margin-bottom: 0.5rem; }
.footer-newsletter > p { color: var(--slate-600); margin-bottom: 1.25rem; }
.newsletter-form { display: flex; flex-wrap: wrap; gap: 0.75rem; max-width: 480px; }
.newsletter-form input { flex: 1; min-width: 200px; padding: 0.65rem 1rem; border: 1px solid var(--slate-300); font-family: 'Inter', sans-serif; font-size: 0.9rem; outline: none; background: var(--white); }
.newsletter-form input:focus { border-color: var(--teal); }
.newsletter-form button { padding: 0.65rem 1.25rem; background: var(--teal); color: var(--white); border: none; font-family: 'Outfit', sans-serif; font-weight: 700; cursor: pointer; transition: background 0.2s; }
.newsletter-form button:hover { background: var(--teal-dark); }

.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; margin-bottom: 3rem; }
@media (min-width: 640px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
.footer-brand img { height: 80px; margin-bottom: 1rem; }
.footer-brand p { color: var(--slate-600); font-size: 0.88rem; line-height: 1.7; max-width: 320px; }
.footer-links h4, .footer-contact h4 { font-size: 1rem; color: var(--navy); margin-bottom: 1.25rem; }
.footer-links ul, .footer-contact ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a, .footer-contact a { color: var(--slate-600); font-size: 0.88rem; transition: color 0.2s; cursor: pointer; text-decoration: underline; }
.footer-links a:hover, .footer-contact a:hover { color: var(--teal); }
.footer-links a { text-decoration: none; }
.footer-bottom { border-top: 1px solid var(--slate-200); padding-top: 2rem; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 1rem; }
.footer-bottom p { font-size: 0.82rem; color: var(--slate-500); }

/* ============================================================
   LOADING STATES
   ============================================================ */
.loading-spinner { font-size: 2rem; text-align: center; padding: 4rem; color: var(--teal); animation: spin 1s linear infinite; display: inline-block; }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.loading-full { display: flex; align-items: center; justify-content: center; min-height: 60vh; }

/* PAGE FADE IN */
body { animation: fadeIn 0.4s ease-out; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* ============================================================
   MOBILE FIRST - phones (<640px)
   ============================================================ */
@media (max-width: 639px) {

  /* Nav - smaller logo on phones */
  .nav-logo img { height: 56px; }
  .navbar { padding: 0.4rem 0; }

  /* Hero - tighten up on phones */
  .hero { padding-top: 4rem; min-height: 90vh; }
  .hero-text h1 { font-size: 2.2rem; }
  .hero-sub { font-size: 0.95rem; }
  .hero-btns { flex-direction: column; gap: 0.75rem; }
  .hero-btns .btn-primary,
  .hero-btns .btn-outline-white { width: 100%; text-align: center; padding: 0.85rem 1rem; font-size: 0.95rem; }
  .scroll-indicator { display: none; }

  /* Sections */
  .section-white, .section-gray, .section-cta { padding: 3rem 0; }
  .section-header { flex-direction: column; align-items: flex-start; }
  .section-header .btn-outline { display: none; } /* hide "View All" on mobile - redundant */

  /* Two column - stack on mobile */
  .two-col { gap: 2rem; }
  .img-card img { aspect-ratio: 16/9; }

  /* Feature grid - stack on very small */
  .feature-grid { grid-template-columns: 1fr; gap: 1rem; }

  /* Destination cards - reduce height on phones */
  .dest-card { aspect-ratio: 4/3; }
  .dest-text { padding: 1.25rem; }
  .dest-text h3 { font-size: 1.1rem; }
  .dest-text p { display: none; } /* hide description on phone */

  /* Reports grid - single column on phone */
  .report-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .card-body { padding: 1rem; }
  .card-title { font-size: 0.95rem; }

  /* Filter bar - better touch targets */
  .filter-bar { top: 56px; padding: 0.75rem 0; }
  .search-wrap { max-width: 100%; }
  .search-wrap input { font-size: 1rem; padding: 0.7rem 1rem 0.7rem 2.4rem; }
  .filter-btns { gap: 0.4rem; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 0.25rem; }
  .filter-btn { white-space: nowrap; padding: 0.5rem 0.85rem; font-size: 0.8rem; flex-shrink: 0; }

  /* Page hero */
  .page-hero { padding: 4.5rem 0 2rem; }
  .page-hero h1 { font-size: 1.8rem; }

  /* Report detail - image on top, content below on mobile */
  .report-hero img { max-height: none; height: 56vw; min-height: 200px; object-fit: cover; }
  .report-hero-overlay { display: none; }
  .report-hero-text { position: static; padding: 1rem 1rem 0; background: var(--white); }
  .report-hero-text .btn-outline-white { display: none; }
  .report-title-hero { display: block !important; color: var(--slate-900) !important; font-size: 1.3rem !important; margin: 0.5rem 0 0.5rem !important; line-height: 1.3 !important; }
  .report-meta.white-meta span { color: var(--slate-500) !important; }
  .share-btn { background: var(--teal); border-color: var(--teal); color: var(--white); }
  .report-meta { gap: 0.4rem; font-size: 0.78rem; flex-wrap: wrap; }
  .category-badge { margin-top: 0 !important; }
  .report-body { padding: 1.5rem 0; }
  .report-body .container { padding: 0 1rem; }
  .prose { font-size: 0.97rem; line-height: 1.75; }
  .prose h2 { font-size: 1.3rem; }
  .prose h3 { font-size: 1.1rem; }
  .prose img { margin: 1rem 0; }

  /* About page */
  .about-hero { padding: 1rem 0 2.5rem; }
  .about-photo { width: 200px; }
  .bio-container h2 { font-size: 1.4rem; }
  .cred-grid { grid-template-columns: 1fr; }

  /* Contact page */
  .contact-left { padding: 3rem 1.5rem; }
  .contact-left h1 { font-size: 1.8rem; margin-bottom: 1.25rem; }
  .contact-right { padding: 2.5rem 1.5rem; }
  .form-row { grid-template-columns: 1fr; } /* stack name fields */
  .form-group input, .form-group textarea { font-size: 1rem; } /* prevent iOS zoom */

  /* Footer */
  .footer-top { margin-bottom: 2rem; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input,
  .newsletter-form button { width: 100%; }
  .footer-grid { gap: 1.5rem; }

  /* CTA section */
  .section-cta h2 { font-size: 1.6rem; }
  .section-cta p { font-size: 0.95rem; }
  .btn-primary.btn-lg { padding: 0.9rem 1.5rem; font-size: 1rem; }
}

/* ============================================================
   TABLET (640px - 1023px)
   ============================================================ */
@media (min-width: 640px) and (max-width: 1023px) {

  .nav-logo img { height: 72px; }

  .hero-text h1 { font-size: 3rem; }

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

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

  .contact-left { padding: 4rem 3rem; }
  .contact-right { padding: 4rem 3rem; }

  .about-photo { width: 260px; }

  .section-white, .section-gray, .section-cta { padding: 4rem 0; }
}
