:root {
  --navy-900: #0a1a3a;
  --navy-800: #0f2342;
  --navy-700: #15305a;
  --emerald-600: #0e7c5b;
  --emerald-500: #16a974;
  --emerald-400: #34d399;
  --amber-500: #f59e0b;
  --amber-400: #fbbf24;
  --bg: #f6f8fb;
  --surface: #ffffff;
  --surface-alt: #eef2f8;
  --text: #0f1a2c;
  --muted: #5b6b85;
  --border: #e3e8f1;
  --shadow-sm: 0 2px 8px rgba(15, 35, 66, 0.06);
  --shadow-md: 0 10px 30px rgba(15, 35, 66, 0.08);
  --shadow-lg: 0 22px 50px rgba(15, 35, 66, 0.14);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --container: 1180px;
  --font-sans: "Inter", "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  --font-display: "Manrope", "Inter", system-ui, sans-serif;
  --grad-primary: linear-gradient(135deg, #0e7c5b 0%, #16a974 50%, #34d399 100%);
  --grad-night: linear-gradient(135deg, #0a1a3a 0%, #15305a 60%, #0e7c5b 100%);
  --grad-gold: linear-gradient(135deg, #f59e0b 0%, #fde68a 100%);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img:not(.logo-img) { max-width: 100%; height: auto; display: block; }
.logo-img { max-width: 50px; height: auto; }

a { color: var(--emerald-600); text-decoration: none; transition: color .25s ease; }
a:hover { color: var(--emerald-500); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy-800);
  line-height: 1.18;
  letter-spacing: -0.01em;
  font-weight: 800;
}
h1 { font-size: clamp(2rem, 4.6vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); }
h3 { font-size: 1.3rem; }
p { color: var(--text); }

.container { width: min(100% - 2rem, var(--container)); margin-inline: auto; }

.section { padding: 90px 0; position: relative; }
.section--tight { padding: 60px 0; }
.section--alt { background: var(--surface-alt); }

.section-header { text-align: center; max-width: 740px; margin: 0 auto 56px; }
.section-header .eyebrow {
  display: inline-block;
  font-size: .8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--emerald-600);
  font-weight: 700;
  margin-bottom: 12px;
}
.section-header h2 { margin-bottom: 14px; }
.section-header p { color: var(--muted); font-size: 1.05rem; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: .01em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  font-size: .98rem;
  font-family: var(--font-sans);
}
.btn-primary {
  background: var(--grad-primary);
  color: #fff;
  box-shadow: 0 10px 28px rgba(14, 124, 91, .35);
}
.btn-primary:hover { transform: translateY(-2px) scale(1.03); color: #fff; box-shadow: 0 16px 36px rgba(14, 124, 91, .45); }
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.45);
}
.btn-outline:hover { background: rgba(255,255,255,.12); color: #fff; transform: translateY(-2px); }
.btn-ghost {
  background: var(--surface);
  color: var(--navy-800);
  border: 1px solid var(--border);
}
.btn-ghost:hover { color: var(--navy-800); border-color: var(--emerald-500); box-shadow: var(--shadow-md); transform: translateY(-2px); }

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.86);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--border);
  transition: padding .25s ease, box-shadow .25s ease;
}
.header.scrolled { box-shadow: var(--shadow-sm); }
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 24px;
}
.navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy-800);
  font-family: var(--font-display);
  font-weight: 800;
}
.navbar-brand .site-name {
  font-size: 1.35rem;
  letter-spacing: -0.01em;
}
.navbar-brand:hover { color: var(--navy-800); }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}
.nav-menu li a {
  display: inline-block;
  padding: 8px 14px;
  color: var(--text);
  font-weight: 600;
  font-size: .96rem;
  border-radius: 8px;
  position: relative;
  transition: color .2s ease, background .2s ease;
}
.nav-menu li a::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 4px;
  height: 2px;
  background: var(--emerald-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
  pointer-events: none;
}
.nav-menu li a:hover::after, .nav-menu li a.active::after { transform: scaleX(1); }
.nav-menu li a:hover, .nav-menu li a.active { color: var(--emerald-600); }
.nav-cta { margin-left: 8px; }
.nav-cta .btn { padding: 10px 20px; }

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  width: 44px;
  height: 44px;
  position: relative;
}
.menu-toggle span {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 2px;
  background: var(--navy-800);
  border-radius: 2px;
  transition: transform .25s, opacity .25s, top .25s;
}
.menu-toggle span:nth-child(1) { top: 14px; }
.menu-toggle span:nth-child(2) { top: 21px; }
.menu-toggle span:nth-child(3) { top: 28px; }
.menu-toggle.open span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--grad-night);
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .42;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, rgba(10,26,58,.92) 0%, rgba(15,48,90,.82) 45%, rgba(14,124,91,.62) 100%);
  pointer-events: none;
}
.hero::before {
  content: "";
  position: absolute;
  width: 520px; height: 520px;
  right: -160px; top: -160px;
  background: radial-gradient(circle, rgba(52,211,153,.35), transparent 70%);
  pointer-events: none;
  z-index: -1;
}
.hero::after {
  content: "";
  position: absolute;
  width: 420px; height: 420px;
  left: -120px; bottom: -120px;
  background: radial-gradient(circle, rgba(245,158,11,.22), transparent 70%);
  pointer-events: none;
  z-index: -1;
}
.hero-content {
  color: #fff;
  max-width: 760px;
  padding: 110px 0 90px;
}
.hero-content .badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  font-size: .85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #d6f6e6;
  font-weight: 700;
  margin-bottom: 22px;
}
.hero-content .badge::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 999px;
  background: var(--emerald-400);
  box-shadow: 0 0 0 4px rgba(52,211,153,.25);
}
.hero-content h1 { color: #fff; margin-bottom: 22px; }
.hero-content h1 span.accent { color: var(--amber-400); }
.hero-content p {
  font-size: 1.12rem;
  color: rgba(255,255,255,.86);
  margin-bottom: 32px;
  max-width: 620px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust {
  margin-top: 38px;
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(255,255,255,.78);
  font-size: .92rem;
  flex-wrap: wrap;
}
.hero-trust .avatars {
  display: inline-flex;
}
.hero-trust .avatars img {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 2px solid #0f2342;
  object-fit: cover;
}
.hero-trust .avatars img + img { margin-left: -12px; }

.intro {
  background: var(--surface);
  padding: 80px 0;
}
.intro-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
.intro-grid .eyebrow {
  display: inline-block;
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--emerald-600);
  font-weight: 700;
  margin-bottom: 12px;
}
.intro-grid h2 { margin-bottom: 18px; }
.intro-grid p { color: var(--muted); margin-bottom: 18px; }
.intro-grid ul.checklist {
  list-style: none;
  margin-top: 14px;
  display: grid;
  gap: 10px;
}
.intro-grid ul.checklist li {
  padding-left: 30px;
  position: relative;
  color: var(--text);
}
.intro-grid ul.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--grad-primary);
  color: #fff;
  font-size: .78rem;
  font-weight: 800;
  display: grid;
  place-items: center;
  pointer-events: none;
}
.intro-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: rotate(-1deg);
}
.intro-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .6s ease;
}
.intro-visual:hover img { transform: scale(1.05); }
.intro-visual .visual-badge {
  position: absolute;
  bottom: 18px; left: 18px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  padding: 12px 16px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: var(--navy-800);
  box-shadow: var(--shadow-md);
}
.intro-visual .visual-badge .dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--emerald-500);
  box-shadow: 0 0 0 5px rgba(22,169,116,.18);
}

.services { background: var(--bg); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--surface);
  padding: 32px 26px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--grad-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
  pointer-events: none;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(15,35,66,.15);
  border-color: rgba(22,169,116,.4);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card .service-icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(22,169,116,.14), rgba(245,158,11,.12));
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: var(--emerald-600);
}
.service-card h3 { margin-bottom: 10px; }
.service-card p { color: var(--muted); font-size: .96rem; }
.service-card .service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-weight: 700;
  font-size: .92rem;
  color: var(--emerald-600);
}
.service-card .service-link::after {
  content: "→";
  transition: transform .25s ease;
}
.service-card:hover .service-link::after { transform: translateX(4px); }

.stats-section {
  background: var(--grad-night);
  color: #fff;
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(52,211,153,.18), transparent 50%),
              radial-gradient(circle at 85% 30%, rgba(245,158,11,.15), transparent 50%);
  pointer-events: none;
}
.stats-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.stat-item .stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
  line-height: 1;
}
.stat-item .stat-label {
  color: rgba(255,255,255,.78);
  margin-top: 10px;
  display: block;
  font-size: .98rem;
  letter-spacing: .02em;
}

.destinations { background: var(--bg); }
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.destination-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform .35s ease, box-shadow .35s ease;
}
.destination-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(15,35,66,.15);
}
.destination-card .card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.destination-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.destination-card:hover .card-image img { transform: scale(1.06); }
.destination-card .card-image .tag {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(255,255,255,.92);
  color: var(--navy-800);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 6px 12px;
  border-radius: 999px;
}
.destination-card .card-body { padding: 22px; }
.destination-card .card-body h3 { margin-bottom: 8px; }
.destination-card .card-body p { color: var(--muted); font-size: .94rem; }
.destination-card .card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px dashed var(--border);
  color: var(--muted);
  font-size: .88rem;
}
.destination-card .card-meta strong { color: var(--emerald-600); font-weight: 800; }

.testimonials { background: var(--surface); }
.testimonial-carousel {
  position: relative;
  overflow: hidden;
  max-width: 940px;
  margin: 0 auto;
}
.testimonial-track {
  display: flex;
  transition: transform .55s cubic-bezier(.4,0,.2,1);
}
.testimonial-slide {
  flex: 0 0 100%;
  padding: 10px;
}
.testimonial-card {
  background: var(--surface-alt);
  padding: 38px 36px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  position: relative;
}
.testimonial-card::before {
  content: "“";
  position: absolute;
  top: 16px; right: 28px;
  font-family: Georgia, serif;
  font-size: 5rem;
  color: var(--emerald-500);
  opacity: .25;
  line-height: 1;
  pointer-events: none;
}
.testimonial-stars { color: var(--amber-500); margin-bottom: 14px; font-size: 1.05rem; letter-spacing: 2px; }
.testimonial-card blockquote {
  font-size: 1.08rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-author img { width: 54px; height: 54px; border-radius: 50%; object-fit: cover; }
.testimonial-author-info strong { display: block; color: var(--navy-800); font-size: 1rem; }
.testimonial-author-info span { color: var(--muted); font-size: .88rem; }
.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
}
.carousel-controls button {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--navy-800);
  transition: background .2s, color .2s, border-color .2s;
}
.carousel-controls button:hover { background: var(--emerald-500); color: #fff; border-color: var(--emerald-500); }
.carousel-dots { display: flex; gap: 8px; }
.carousel-dots button {
  width: 10px; height: 10px;
  border-radius: 999px;
  background: var(--border);
  border: 0;
  cursor: pointer;
  padding: 0;
  transition: width .25s, background .25s;
}
.carousel-dots button.active { width: 30px; background: var(--emerald-500); }

.blog-preview { background: var(--bg); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.blog-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(15,35,66,.15);
}
.blog-card .card-image {
  overflow: hidden;
  aspect-ratio: 16 / 10;
}
.blog-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.blog-card:hover .card-image img { transform: scale(1.05); }
.blog-card .card-body { padding: 22px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.blog-card .blog-date {
  font-size: .82rem;
  color: var(--muted);
  letter-spacing: .03em;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.blog-card .blog-date::before {
  content: "";
  width: 18px; height: 2px;
  background: var(--emerald-500);
  pointer-events: none;
}
.blog-card h3 { font-size: 1.18rem; margin-bottom: 12px; line-height: 1.32; }
.blog-card h3 a { color: var(--navy-800); }
.blog-card h3 a:hover { color: var(--emerald-600); }
.blog-card p { color: var(--muted); font-size: .94rem; margin-bottom: 16px; flex: 1; }
.blog-card .read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: .9rem;
  color: var(--emerald-600);
  margin-top: auto;
}
.blog-card .read-more::after {
  content: "→";
  transition: transform .25s ease;
}
.blog-card:hover .read-more::after { transform: translateX(4px); }

.newsletter {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.newsletter-card {
  background: var(--grad-night);
  border-radius: var(--radius-lg);
  padding: 60px 50px;
  color: #fff;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.newsletter-card::before {
  content: "";
  position: absolute;
  right: -120px; top: -120px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(52,211,153,.35), transparent 70%);
  pointer-events: none;
}
.newsletter-card h2 { color: #fff; margin-bottom: 12px; position: relative; }
.newsletter-card p { color: rgba(255,255,255,.82); position: relative; }
.newsletter-form { display: flex; gap: 10px; position: relative; }
.newsletter-form input {
  flex: 1;
  padding: 16px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.1);
  color: #fff;
  font-size: 1rem;
  font-family: inherit;
  outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.7); }
.newsletter-form input:focus { border-color: var(--emerald-400); background: rgba(255,255,255,.18); }

.cta { background: var(--surface-alt); }
.cta-content {
  background: var(--grad-night);
  border-radius: var(--radius-lg);
  padding: 70px 50px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-content::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(52,211,153,.2), transparent 50%),
              radial-gradient(circle at 80% 70%, rgba(245,158,11,.18), transparent 50%);
  pointer-events: none;
}
.cta-content h2 { color: #fff; max-width: 700px; margin: 0 auto 16px; position: relative; }
.cta-content p { color: rgba(255,255,255,.85); max-width: 620px; margin: 0 auto 28px; position: relative; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }

.footer {
  background: var(--navy-900);
  color: rgba(255,255,255,.78);
  padding: 70px 0 24px;
  position: relative;
}
.footer-content {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
}
.footer h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 18px;
  letter-spacing: .02em;
  font-weight: 700;
}
.footer-brand .navbar-brand { color: #fff; margin-bottom: 16px; }
.footer-brand .navbar-brand .site-name { color: #fff; }
.footer-brand p { color: rgba(255,255,255,.7); font-size: .94rem; max-width: 320px; margin-bottom: 18px; }
.footer-brand .social {
  display: flex;
  gap: 10px;
}
.footer-brand .social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: grid;
  place-items: center;
  color: #fff;
  transition: background .25s, transform .25s;
  font-size: .9rem;
}
.footer-brand .social a:hover { background: var(--emerald-500); transform: translateY(-3px); color: #fff; }
.footer-links ul, .footer-contact ul { list-style: none; display: grid; gap: 10px; }
.footer-links a, .footer-contact a, .footer-contact span {
  color: rgba(255,255,255,.7);
  font-size: .94rem;
  transition: color .2s;
}
.footer-links a:hover, .footer-contact a:hover { color: var(--emerald-400); }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact li::before {
  content: "•";
  color: var(--emerald-400);
  font-weight: 800;
}
.footer-bottom {
  margin-top: 50px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.08);
  text-align: center;
  font-size: .88rem;
  color: rgba(255,255,255,.55);
}
.footer-bottom .reg { color: rgba(255,255,255,.7); margin-left: 6px; }

.page-hero {
  background: var(--grad-night);
  color: #fff;
  padding: 110px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: -120px; right: -100px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(52,211,153,.3), transparent 70%);
  pointer-events: none;
}
.page-hero::after {
  content: "";
  position: absolute;
  bottom: -160px; left: -120px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(245,158,11,.22), transparent 70%);
  pointer-events: none;
}
.page-hero h1 { color: #fff; max-width: 760px; margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,.85); font-size: 1.08rem; max-width: 640px; }
.breadcrumbs {
  display: flex;
  gap: 8px;
  margin-bottom: 22px;
  font-size: .9rem;
  color: rgba(255,255,255,.7);
}
.breadcrumbs a { color: rgba(255,255,255,.85); }
.breadcrumbs a:hover { color: var(--emerald-400); }
.breadcrumbs span { color: rgba(255,255,255,.45); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-grid .image-stack { position: relative; }
.about-grid .image-stack img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.about-grid .image-stack .img-small {
  position: absolute;
  bottom: -40px; right: -30px;
  width: 60%;
  border: 8px solid var(--bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-text .eyebrow {
  display: inline-block;
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--emerald-600);
  font-weight: 700;
  margin-bottom: 12px;
}
.about-text h2 { margin-bottom: 16px; }
.about-text p { color: var(--muted); margin-bottom: 16px; }
.about-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 24px;
}
.about-meta .meta-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 18px;
  border-radius: var(--radius-md);
}
.about-meta .meta-card strong {
  display: block;
  color: var(--emerald-600);
  font-size: 1.6rem;
  font-family: var(--font-display);
}
.about-meta .meta-card span { color: var(--muted); font-size: .9rem; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  text-align: center;
  transition: transform .3s, box-shadow .3s;
}
.team-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(15,35,66,.12); }
.team-card img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.team-card .team-body { padding: 18px 16px 22px; }
.team-card h3 { font-size: 1.1rem; margin-bottom: 4px; }
.team-card .role { color: var(--emerald-600); font-size: .88rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.team-card p { color: var(--muted); font-size: .9rem; margin-top: 10px; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  padding: 30px 26px;
  background: var(--surface);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--emerald-500);
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s;
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.value-card .value-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--emerald-600);
  opacity: .55;
  margin-bottom: 6px;
}
.value-card h3 { margin-bottom: 8px; }
.value-card p { color: var(--muted); font-size: .94rem; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: start;
}
.contact-info { display: grid; gap: 18px; }
.contact-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px;
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: transform .25s, border-color .25s, box-shadow .25s;
}
.contact-card:hover { transform: translateY(-3px); border-color: var(--emerald-500); box-shadow: var(--shadow-md); }
.contact-card .icon {
  width: 50px; height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(22,169,116,.14), rgba(245,158,11,.12));
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  color: var(--emerald-600);
  flex-shrink: 0;
}
.contact-card h4 { color: var(--navy-800); margin-bottom: 4px; font-size: 1rem; }
.contact-card p, .contact-card a { color: var(--muted); font-size: .95rem; }
.contact-card a:hover { color: var(--emerald-600); }

.contact-form {
  background: var(--surface);
  padding: 32px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.contact-form h3 { margin-bottom: 6px; }
.contact-form .form-sub { color: var(--muted); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: .88rem;
  color: var(--navy-800);
  margin-bottom: 6px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 13px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  font-family: inherit;
  font-size: .96rem;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--emerald-500);
  box-shadow: 0 0 0 3px rgba(22,169,116,.15);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-status {
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: .92rem;
  display: none;
}
.form-status.success {
  display: block;
  background: rgba(22,169,116,.12);
  color: var(--emerald-600);
  border: 1px solid rgba(22,169,116,.3);
}
.form-status.error {
  display: block;
  background: rgba(220,38,38,.08);
  color: #b91c1c;
  border: 1px solid rgba(220,38,38,.25);
}

.map-wrap {
  margin-top: 60px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.map-wrap iframe { width: 100%; height: 380px; border: 0; display: block; }

.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  padding: 0;
  transition: box-shadow .2s, border-color .2s;
}
.faq-item[open] { border-color: var(--emerald-500); box-shadow: var(--shadow-sm); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 24px;
  font-weight: 700;
  color: var(--navy-800);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 1.02rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--surface-alt);
  color: var(--emerald-600);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  font-weight: 800;
  transition: transform .25s, background .25s;
}
.faq-item[open] summary::after { content: "−"; background: var(--emerald-500); color: #fff; transform: rotate(180deg); }
.faq-item .faq-body { padding: 0 24px 22px; color: var(--muted); line-height: 1.7; }

.legal { background: var(--surface); padding: 80px 0; }
.legal-content { max-width: 880px; margin: 0 auto; background: var(--surface); }
.legal-content h2 { color: var(--navy-800); margin: 36px 0 14px; }
.legal-content h3 { color: var(--navy-700); margin: 22px 0 10px; font-size: 1.15rem; }
.legal-content p, .legal-content li { color: var(--text); margin-bottom: 12px; line-height: 1.75; }
.legal-content ul, .legal-content ol { padding-left: 22px; }
.legal-content .updated {
  display: inline-block;
  background: var(--surface-alt);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: .85rem;
  color: var(--muted);
  margin-bottom: 24px;
}

.blog-listing { background: var(--bg); padding: 80px 0; }
.blog-listing .blog-grid { gap: 30px; }
.blog-filter {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.blog-filter button {
  padding: 10px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  font-size: .9rem;
  color: var(--navy-800);
  transition: all .25s;
  font-family: inherit;
}
.blog-filter button:hover, .blog-filter button.active {
  background: var(--emerald-500);
  border-color: var(--emerald-500);
  color: #fff;
}

.article {
  background: var(--surface);
  padding: 80px 0 60px;
}
.article-wrap {
  max-width: 820px;
  margin: 0 auto;
}
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  color: var(--muted);
  font-size: .92rem;
  margin-bottom: 18px;
}
.article-meta .author {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy-800);
  font-weight: 700;
}
.article-meta .author img { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; }
.article-meta .pill {
  background: rgba(22,169,116,.1);
  color: var(--emerald-600);
  padding: 4px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .04em;
}
.article h1 { margin-bottom: 14px; }
.article-lead {
  font-size: 1.18rem;
  color: var(--muted);
  margin-bottom: 28px;
  line-height: 1.6;
}
.article-cover {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 36px;
  box-shadow: var(--shadow-md);
}
.article-cover img { width: 100%; aspect-ratio: 2 / 1; object-fit: cover; }
.article-body p { margin-bottom: 18px; line-height: 1.85; font-size: 1.04rem; color: var(--text); }
.article-body h2 { margin: 36px 0 14px; font-size: 1.6rem; }
.article-body h3 { margin: 26px 0 10px; }
.article-body ul, .article-body ol { padding-left: 22px; margin-bottom: 18px; }
.article-body li { margin-bottom: 8px; color: var(--text); line-height: 1.7; }
.article-body blockquote {
  border-left: 4px solid var(--emerald-500);
  background: var(--surface-alt);
  padding: 20px 26px;
  margin: 26px 0;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
  color: var(--navy-800);
  font-size: 1.06rem;
}
.article-share {
  display: flex;
  gap: 10px;
  margin: 36px 0;
  padding: 18px 22px;
  background: var(--surface-alt);
  border-radius: var(--radius-md);
  align-items: center;
}
.article-share span { font-weight: 700; color: var(--navy-800); margin-right: 8px; }
.article-share a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--surface);
  display: grid;
  place-items: center;
  color: var(--navy-800);
  font-weight: 700;
  font-size: .85rem;
  transition: background .25s, color .25s, transform .25s;
  border: 1px solid var(--border);
}
.article-share a:hover { background: var(--emerald-500); color: #fff; transform: translateY(-2px); border-color: var(--emerald-500); }

.related-articles {
  background: var(--bg);
  padding: 70px 0;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 18px;
  right: 18px;
  max-width: 720px;
  margin: 0 auto;
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  box-shadow: var(--shadow-lg);
  display: none;
  z-index: 200;
  border: 1px solid var(--border);
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.cookie-banner.show { display: flex; }
.cookie-banner p { font-size: .92rem; color: var(--text); flex: 1; min-width: 220px; }
.cookie-banner .cookie-actions { display: flex; gap: 10px; }
.cookie-banner button {
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .88rem;
  cursor: pointer;
  border: 0;
  font-family: inherit;
  transition: transform .2s, background .2s;
}
.cookie-banner button.accept { background: var(--grad-primary); color: #fff; }
.cookie-banner button.accept:hover { transform: translateY(-2px); }
.cookie-banner button.decline { background: var(--surface-alt); color: var(--navy-800); }

.fade-in { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .services-grid, .destinations-grid, .blog-grid, .team-grid, .values-grid, .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .intro-grid, .about-grid, .contact-grid, .newsletter-card {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer-content { grid-template-columns: 1fr 1fr; }
  .about-grid .image-stack .img-small { display: none; }
  .newsletter-card { padding: 40px 28px; }
}

@media (max-width: 720px) {
  .section { padding: 60px 0; }
  .menu-toggle { display: block; }
  .nav-menu {
    position: fixed;
    inset: 70px 0 0 0;
    background: var(--surface);
    flex-direction: column;
    padding: 28px;
    gap: 6px;
    transform: translateY(-110%);
    transition: transform .35s ease;
    border-top: 1px solid var(--border);
    align-items: stretch;
  }
  .nav-menu.open { transform: translateY(0); }
  .nav-menu li a { width: 100%; padding: 14px 18px; border-radius: 10px; }
  .nav-menu li a::after { display: none; }
  .nav-cta { width: 100%; margin: 14px 0 0; }
  .nav-cta .btn { width: 100%; justify-content: center; }
  .services-grid, .destinations-grid, .blog-grid, .team-grid, .values-grid, .stats-grid {
    grid-template-columns: 1fr;
  }
  .footer-content { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .hero { min-height: 70vh; }
  .hero-content { padding: 80px 0 60px; }
  .cta-content { padding: 50px 24px; }
}
