/* =============================================================
   Majestic Ventures Tourism — Global Stylesheet
   Theme: Premium travel advisory. Deep teal-navy + brass gold + cream.
   ============================================================= */

/* ---------- Design tokens ---------- */
:root {
  --navy-900: #071d27;
  --navy: #0c2f3f;
  --navy-700: #12475b;
  --teal: #14697f;
  --teal-soft: #e6f0f2;
  --gold: #c19a49;
  --gold-bright: #d8b45f;
  --gold-soft: #f3ead6;
  --sand: #f6f1e8;
  --cream: #fcfaf5;
  --ink: #17262c;
  --body: #45565d;
  --muted: #778288;
  --line: #e7e0d3;
  --white: #ffffff;

  --shadow-sm: 0 4px 14px rgba(12, 47, 63, 0.08);
  --shadow-md: 0 14px 40px rgba(12, 47, 63, 0.12);
  --shadow-lg: 0 30px 70px rgba(7, 29, 39, 0.22);

  --radius: 14px;
  --radius-lg: 22px;
  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 64px);

  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset / base ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--body);
  background: var(--cream);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--ink);
  line-height: 1.15;
  font-weight: 700;
  margin: 0 0 0.4em;
  letter-spacing: -0.01em;
}

p { margin: 0 0 1rem; }

ul { margin: 0; padding: 0; list-style: none; }

::selection { background: var(--gold); color: #fff; }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: clamp(64px, 9vw, 120px);
  position: relative;
}

/* Keep anchored sections clear of the fixed header */
section[id], [id="consult"], [id="contact"], [id="about"], [id="why"] { scroll-margin-top: 84px; }

.section--tight { padding-block: clamp(48px, 6vw, 80px); }
.section--sand { background: var(--sand); }
.section--navy { background: var(--navy); color: #cfe0e5; }
.section--navy h2, .section--navy h3 { color: #fff; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 30px; height: 2px;
  background: var(--gold);
  display: inline-block;
}
.eyebrow--center { justify-content: center; }

.section-head { max-width: 720px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(2rem, 4.2vw, 3rem);
  margin-bottom: 0.5rem;
}
.section-head .lead {
  font-size: 1.08rem;
  color: var(--body);
}

.lead { font-size: 1.12rem; }
.text-gold { color: var(--gold); }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--gold);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  padding: 15px 30px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  background: var(--btn-bg);
  color: var(--btn-fg);
  cursor: pointer;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
    background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
  box-shadow: 0 10px 24px rgba(193, 154, 73, 0.28);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(193, 154, 73, 0.38); }
.btn:active { transform: translateY(-1px); }

.btn--gold { --btn-bg: var(--gold); --btn-fg: #fff; }
.btn--gold:hover { background: var(--gold-bright); }

.btn--dark { --btn-bg: var(--navy); --btn-fg: #fff; box-shadow: 0 10px 24px rgba(12,47,63,0.25); }
.btn--dark:hover { background: var(--navy-900); box-shadow: 0 16px 34px rgba(12,47,63,0.35); }

.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
  box-shadow: none;
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.12); border-color: #fff; box-shadow: none; }

.btn--outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--line);
  box-shadow: none;
}
.btn--outline:hover { border-color: var(--gold); color: var(--gold); background: #fff; box-shadow: var(--shadow-sm); }

.btn--sm { padding: 11px 22px; font-size: 0.9rem; }
.btn--block { width: 100%; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--teal);
  transition: gap 0.3s var(--ease), color 0.3s var(--ease);
}
.link-arrow svg { transition: transform 0.3s var(--ease); }
.link-arrow:hover { color: var(--gold); }
.link-arrow:hover svg { transform: translateX(4px); }

/* =============================================================
   Header / Navigation
   ============================================================= */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), padding 0.4s var(--ease);
  padding-block: 18px;
}
.site-header.scrolled {
  background: rgba(252, 250, 245, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 6px 24px rgba(7, 29, 39, 0.08);
  padding-block: 12px;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark {
  width: 44px; height: 44px;
  flex: none;
  color: var(--gold);
  transition: transform 0.6s var(--ease);
}
.brand:hover .brand__mark { transform: rotate(20deg); }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.22rem;
  color: #fff;
  letter-spacing: 0.01em;
  transition: color 0.4s var(--ease);
}
.brand__tag {
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-bright);
  font-weight: 600;
}
.scrolled .brand__name { color: var(--navy); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav__links a {
  font-size: 0.96rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  padding-block: 6px;
  transition: color 0.3s var(--ease);
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.nav__links a:hover::after,
.nav__links a.active::after { width: 100%; }
.nav__links a:hover { color: #fff; }
.scrolled .nav__links a { color: var(--navy); }
.scrolled .nav__links a:hover { color: var(--gold); }

.nav__cta { display: flex; align-items: center; gap: 14px; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.nav__toggle span {
  width: 26px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.3s var(--ease), background 0.4s var(--ease);
}
.scrolled .nav__toggle span { background: var(--navy); }
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================================================
   Hero
   ============================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  z-index: -2;
}
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  animation: heroZoom 18s var(--ease) forwards;
}
@keyframes heroZoom { from { transform: scale(1.12); } to { transform: scale(1); } }
.hero::after {
  content: "";
  position: absolute; inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(7, 29, 39, 0.55) 0%, rgba(7, 29, 39, 0.32) 42%, rgba(7, 29, 39, 0.85) 100%),
    radial-gradient(120% 85% at 50% 42%, rgba(7, 29, 39, 0.05) 0%, rgba(7, 29, 39, 0.55) 100%);
}
.hero__inner {
  padding-block: 150px 100px;
  max-width: 860px;
  margin-inline: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(6px);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 26px;
}
.hero__badge strong { color: var(--gold-bright); font-weight: 700; }
.hero h1 {
  color: #fff;
  font-size: clamp(2.5rem, 5.6vw, 4.4rem);
  line-height: 1.08;
  margin-bottom: 24px;
  max-width: 15ch;
  text-wrap: balance;
}
.hero h1 em { font-style: italic; color: var(--gold-bright); }
.hero__lead {
  font-size: clamp(1.05rem, 2.2vw, 1.26rem);
  color: rgba(255, 255, 255, 0.92);
  max-width: 620px;
  margin: 0 auto 38px;
  text-wrap: pretty;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.hero__scroll {
  position: absolute;
  left: 50%; bottom: 30px;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.75);
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.hero__scroll span { width: 1px; height: 46px; background: linear-gradient(rgba(255,255,255,0.7), transparent); animation: scrollLine 2s ease-in-out infinite; }
@keyframes scrollLine { 0%,100% { opacity: 0.3; transform: scaleY(0.6); } 50% { opacity: 1; transform: scaleY(1); } }

/* ---------- Trust bar ---------- */
.trustbar {
  background: var(--navy);
  color: #d6e5ea;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.trustbar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-block: 40px;
}
.trust {
  display: flex; align-items: center; gap: 16px;
  padding: 6px 10px;
}
.trust__icon {
  flex: none;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: rgba(193, 154, 73, 0.15);
  color: var(--gold-bright);
}
.trust__num { font-family: var(--serif); font-size: 1.5rem; color: #fff; font-weight: 700; line-height: 1; }
.trust__label { font-size: 0.88rem; color: #9fb6bd; }

/* =============================================================
   Meet Kaiser
   ============================================================= */
.about {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(36px, 6vw, 84px);
  align-items: center;
}
.about__media { position: relative; }
.about__photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  transform: rotate(-1.5deg);
}
.about__photo img { width: 100%; height: 100%; object-fit: cover; }
.about__frame {
  position: absolute;
  inset: 22px -22px -22px 22px;
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  z-index: -1;
}
.about__badge {
  position: absolute;
  right: -18px; bottom: 26px;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  padding: 16px 20px;
  display: flex; align-items: center; gap: 14px;
  max-width: 240px;
}
.about__badge .b-ico { color: var(--gold); flex: none; }
.about__badge strong { display: block; color: var(--ink); font-family: var(--serif); font-size: 1.05rem; }
.about__badge span { font-size: 0.8rem; color: var(--muted); }

.about__body p { color: var(--body); }
.about__sign {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--navy);
  margin-top: 10px;
}
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0 30px; }
.chip {
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--navy-700);
  background: var(--teal-soft);
  border: 1px solid #d7e6e9;
  padding: 8px 16px;
  border-radius: 999px;
}
.about__actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* =============================================================
   Why book — cards
   ============================================================= */
.why-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
  margin-top: 52px;
}
.why-card {
  position: relative;
  flex: 0 1 calc((100% - 44px) / 3);
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: left;
  cursor: pointer;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
  overflow: hidden;
  font: inherit;
  color: inherit;
}
.why-card--cta { background: var(--navy); border-color: var(--navy); }
.why-card--cta h3 { color: #fff; }
.why-card--cta p { color: #bcd2d9; }
.why-card--cta .why-card__icon { background: rgba(216,180,95,.16); color: var(--gold-bright); }
.why-card--cta .why-card__more { color: var(--gold-bright); }
.why-card::before {
  content: "";
  position: absolute; left: 0; top: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
}
.why-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: transparent; }
.why-card:hover::before { transform: scaleX(1); }
.why-card__icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: var(--gold-soft);
  color: var(--gold);
  margin-bottom: 20px;
  transition: background 0.4s var(--ease), color 0.4s var(--ease);
}
.why-card:hover .why-card__icon { background: var(--navy); color: var(--gold-bright); }
.why-card h3 { font-size: 1.22rem; margin-bottom: 8px; }
.why-card p { font-size: 0.96rem; margin: 0; color: var(--body); }
.why-card__more {
  margin-top: auto;
  padding-top: 16px;
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.86rem; font-weight: 600; color: var(--teal);
}
.why-card__more svg { transition: transform 0.3s var(--ease); }
.why-card:hover .why-card__more svg { transform: translateX(4px); }

/* =============================================================
   Destinations / experience cards
   ============================================================= */
.dest-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 52px;
}
.dest-grid > * {
  flex: 0 1 calc((100% - 48px) / 3);
  min-width: 0;
}

.dcard {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  color: #fff;
  text-align: left;
  font: inherit;
  border: 0;
  padding: 0;
  box-shadow: var(--shadow-sm);
  isolation: isolate;
}
.dcard__img { position: absolute; inset: 0; z-index: -2; }
.dcard__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.dcard::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(7,29,39,0) 30%, rgba(7,29,39,0.35) 55%, rgba(7,29,39,0.92) 100%);
  transition: background 0.5s var(--ease);
}
.dcard:hover .dcard__img img { transform: scale(1.08); }
.dcard:hover::after { background: linear-gradient(180deg, rgba(7,29,39,0.05) 10%, rgba(7,29,39,0.55) 55%, rgba(11,52,66,0.96) 100%); }
.dcard__body { padding: 28px; width: 100%; }
.dcard__kicker {
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-bright); font-weight: 600; margin-bottom: 8px;
  display: block;
}
.dcard h3 { color: #fff; font-size: 1.5rem; margin-bottom: 6px; }
.dcard p {
  font-size: 0.92rem; color: rgba(255,255,255,0.85); margin: 0;
  max-height: 0; opacity: 0; overflow: hidden;
  transition: max-height 0.5s var(--ease), opacity 0.4s var(--ease), margin 0.4s var(--ease);
}
.dcard:hover p { max-height: 120px; opacity: 1; margin-top: 4px; }
.dcard__tag {
  position: absolute; top: 18px; left: 18px; z-index: 1;
  background: rgba(7,29,39,0.5);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff; font-size: 0.74rem; font-weight: 600;
  padding: 6px 14px; border-radius: 999px;
}
.dcard__open {
  position: absolute; top: 16px; right: 16px; z-index: 1;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.3);
  display: grid; place-items: center;
  color: #fff;
  transition: background 0.35s var(--ease), transform 0.35s var(--ease);
}
.dcard:hover .dcard__open { background: var(--gold); transform: rotate(90deg); }

/* Filter tabs */
.filters {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 34px;
}
.filter-btn {
  font: inherit; cursor: pointer;
  font-size: 0.9rem; font-weight: 600;
  padding: 10px 22px; border-radius: 999px;
  background: #fff; color: var(--navy-700);
  border: 1.5px solid var(--line);
  transition: all 0.3s var(--ease);
}
.filter-btn:hover { border-color: var(--gold); color: var(--gold); }
.filter-btn.active { background: var(--navy); border-color: var(--navy); color: #fff; }

/* =============================================================
   Testimonials
   ============================================================= */
.tslider { margin-top: 52px; --per: 3; --tgap: 24px; }
.tslider__viewport { overflow: hidden; }
.tslider__track {
  display: flex;
  gap: var(--tgap);
  align-items: stretch;
  transition: transform 0.6s var(--ease);
  will-change: transform;
}
.tcard {
  flex: 0 0 calc((100% - (var(--per) - 1) * var(--tgap)) / var(--per));
  display: flex;
  flex-direction: column;
  background: var(--navy-700);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 34px 30px;
  position: relative;
}
.tcard blockquote { margin: 0; }

/* Slider controls */
.tslider__controls {
  display: flex; align-items: center; justify-content: center;
  gap: 22px; margin-top: 38px;
}
.tslider__arrow {
  width: 50px; height: 50px; flex: none;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.06);
  color: #fff; cursor: pointer;
  display: grid; place-items: center;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.tslider__arrow:hover:not(:disabled) { background: var(--gold); border-color: var(--gold); transform: translateY(-2px); }
.tslider__arrow:disabled { opacity: 0.3; cursor: default; }
.tslider__dots { display: flex; align-items: center; gap: 9px; }
.tslider__dot {
  width: 9px; height: 9px; border-radius: 999px; padding: 0;
  background: rgba(255,255,255,0.28); border: 0; cursor: pointer;
  transition: background 0.3s var(--ease), width 0.3s var(--ease);
}
.tslider__dot:hover { background: rgba(255,255,255,0.55); }
.tslider__dot.active { background: var(--gold-bright); width: 28px; }
.tcard__quote {
  font-family: var(--serif);
  font-size: 4rem;
  line-height: 0.6;
  color: var(--gold);
  opacity: 0.5;
  margin-bottom: 12px;
  height: 30px;
}
.tcard p { color: #d7e5ea; font-size: 1rem; font-style: italic; }
.tcard__stars { color: var(--gold-bright); letter-spacing: 3px; margin-bottom: 18px; font-size: 0.95rem; }
.tcard__who { display: flex; align-items: center; gap: 14px; margin-top: auto; padding-top: 22px; }
.tavatar {
  width: 48px; height: 48px; border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  color: #fff; font-weight: 700; font-family: var(--serif); font-size: 1.1rem;
  flex: none;
}
.tcard__who strong { color: #fff; font-family: var(--sans); font-weight: 600; display: block; font-size: 0.98rem; }
.tcard__who span { color: #93aab2; font-size: 0.84rem; }

/* =============================================================
   Consultation / contact split
   ============================================================= */
.consult {
  position: relative;
  overflow: hidden;
}
.consult__bg { position: absolute; inset: 0; z-index: -2; }
.consult__bg img { width: 100%; height: 100%; object-fit: cover; }
.consult::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(120deg, rgba(7,29,39,0.94) 0%, rgba(12,47,63,0.86) 45%, rgba(18,71,91,0.7) 100%);
}
.consult__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
  color: #fff;
}
.consult__intro h2 { color: #fff; font-size: clamp(2rem, 4vw, 2.9rem); }
.consult__intro .lead { color: rgba(255,255,255,0.88); }
.consult__points { margin-top: 26px; display: grid; gap: 16px; }
.consult__point { display: flex; gap: 14px; align-items: flex-start; }
.consult__point .cp-ico { color: var(--gold-bright); flex: none; margin-top: 3px; }
.consult__point strong { color: #fff; display: block; font-size: 1.02rem; }
.consult__point span { color: rgba(255,255,255,0.78); font-size: 0.92rem; }

.form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3.5vw, 42px);
  box-shadow: var(--shadow-lg);
  color: var(--body);
}
.form-card h3 { font-size: 1.5rem; margin-bottom: 4px; }
.form-card > p { font-size: 0.94rem; margin-bottom: 22px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 0.84rem; font-weight: 600; color: var(--ink); margin-bottom: 7px; }
.field input,
.field select,
.field textarea {
  width: 100%;
  font: inherit; font-size: 0.96rem;
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: 11px;
  background: var(--cream);
  color: var(--ink);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}
.field textarea { resize: vertical; min-height: 108px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(193, 154, 73, 0.14);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: 0.8rem; color: var(--muted); margin: 14px 0 0; text-align: center; }
.form-success {
  display: none;
  text-align: center;
  padding: 20px 0;
}
.form-success.show { display: block; animation: fadeUp 0.5s var(--ease); }
.form-success .fs-ico {
  width: 66px; height: 66px; margin: 0 auto 16px;
  border-radius: 50%; display: grid; place-items: center;
  background: var(--gold-soft); color: var(--gold);
}
.form-success h3 { color: var(--navy); }

/* =============================================================
   Contact strip
   ============================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px;
}
.ccard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  text-align: center;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.ccard:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.ccard__ico {
  width: 58px; height: 58px; margin: 0 auto 18px;
  border-radius: 16px; display: grid; place-items: center;
  background: var(--navy); color: var(--gold-bright);
}
.ccard h3 { font-size: 1.14rem; margin-bottom: 6px; }
.ccard a, .ccard p { color: var(--body); font-size: 0.98rem; margin: 2px 0; word-break: break-word; }
.ccard a:hover { color: var(--gold); }

/* =============================================================
   Footer
   ============================================================= */
.footer {
  background: var(--navy-900);
  color: #a9c0c8;
  padding-block: 68px 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer .brand__name { color: #fff; }
.footer__about { max-width: 320px; font-size: 0.95rem; margin-top: 18px; }
.footer h4 {
  color: #fff; font-family: var(--sans); font-size: 0.86rem;
  letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 20px; font-weight: 600;
}
.footer__links li { margin-bottom: 11px; }
.footer__links a { font-size: 0.95rem; transition: color 0.3s var(--ease), padding 0.3s var(--ease); }
.footer__links a:hover { color: var(--gold-bright); padding-left: 5px; }
.footer__contact li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; font-size: 0.94rem; }
.footer__contact svg { color: var(--gold); flex: none; margin-top: 3px; }
.footer__contact a:hover { color: var(--gold-bright); }
.footer__social { display: flex; gap: 12px; margin-top: 20px; }
.footer__social a {
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: #cde0e6;
  transition: all 0.3s var(--ease);
}
.footer__social a:hover { background: var(--gold); border-color: var(--gold); color: #fff; transform: translateY(-3px); }
.footer__bar {
  border-top: 1px solid rgba(255,255,255,0.09);
  padding-block: 24px;
  display: flex; flex-wrap: wrap; gap: 12px;
  align-items: center; justify-content: space-between;
  font-size: 0.86rem; color: #85a0a8;
}
.footer__bar a { color: #85a0a8; }
.footer__bar a:hover { color: var(--gold-bright); }

/* =============================================================
   Floating WhatsApp
   ============================================================= */
.wa-float {
  position: fixed;
  right: 24px; bottom: 24px;
  z-index: 90;
  display: flex; align-items: center; gap: 0;
  background: #25d366;
  color: #fff;
  border-radius: 999px;
  padding: 15px;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), padding 0.35s var(--ease);
  overflow: hidden;
}
.wa-float svg { flex: none; }
.wa-float__label {
  max-width: 0; opacity: 0; white-space: nowrap;
  font-weight: 600; font-size: 0.95rem;
  transition: max-width 0.4s var(--ease), opacity 0.3s var(--ease), margin 0.4s var(--ease);
}
.wa-float:hover { transform: translateY(-3px); box-shadow: 0 16px 38px rgba(37, 211, 102, 0.55); }
.wa-float:hover .wa-float__label { max-width: 160px; opacity: 1; margin-left: 10px; margin-right: 6px; }
.wa-float::after {
  content: ""; position: absolute; inset: 0; border-radius: 999px;
  border: 2px solid #25d366; animation: waPulse 2.4s ease-out infinite;
}
@keyframes waPulse { 0% { transform: scale(1); opacity: 0.7; } 100% { transform: scale(1.5); opacity: 0; } }

/* =============================================================
   Modal system
   ============================================================= */
.modal-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(7, 29, 39, 0.72);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.35s var(--ease), visibility 0.35s var(--ease);
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal {
  background: var(--cream);
  border-radius: var(--radius-lg);
  max-width: 720px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  transform: translateY(30px) scale(0.98);
  opacity: 0;
  transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
}
.modal-overlay.open .modal { transform: translateY(0) scale(1); opacity: 1; }
.modal[hidden] { display: none; }

.modal__media { position: relative; height: 230px; }
.modal__media img { width: 100%; height: 100%; object-fit: cover; }
.modal__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,29,39,0.1), rgba(7,29,39,0.5)); }
.modal__kicker {
  position: absolute; left: 30px; bottom: 22px; z-index: 1;
  color: var(--gold-bright); font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
}
.modal__title-over {
  position: absolute; left: 30px; bottom: 40px; z-index: 1;
  color: #fff; font-family: var(--serif); font-size: 1.8rem; margin: 0;
}
.modal__close {
  position: absolute; top: 16px; right: 16px; z-index: 3;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(7,29,39,0.5);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff; cursor: pointer;
  display: grid; place-items: center;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.modal__close:hover { background: var(--gold); transform: rotate(90deg); }
.modal__body { padding: 30px clamp(24px, 4vw, 40px) 36px; }
.modal__body > h2 { font-size: 1.7rem; margin-bottom: 14px; }
.modal__body h4 {
  font-family: var(--sans); font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold); margin: 26px 0 12px; font-weight: 700;
}
.modal__body p { color: var(--body); }
.modal__body p:first-of-type { font-size: 1.04rem; }
.pop-list { display: flex; flex-wrap: wrap; gap: 9px; }
.pop-list li {
  background: var(--white); border: 1px solid var(--line);
  padding: 7px 15px; border-radius: 999px; font-size: 0.86rem; font-weight: 500; color: var(--navy-700);
}
.modal__gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 6px; }
.modal__gallery img { border-radius: 10px; aspect-ratio: 1; object-fit: cover; }
.modal__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; padding-top: 24px; border-top: 1px solid var(--line); }

/* Simple modal variant (full bio / why-book) */
.modal--text .modal__body { padding-top: 40px; }
.modal--text .modal__body p { font-size: 1rem; }
.modal--text .modal__icon {
  width: 60px; height: 60px; border-radius: 16px;
  display: grid; place-items: center; background: var(--gold-soft); color: var(--gold);
  margin-bottom: 18px;
}

/* =============================================================
   Scroll reveal
   ============================================================= */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: 0.08s; }
[data-reveal-delay="2"] { transition-delay: 0.16s; }
[data-reveal-delay="3"] { transition-delay: 0.24s; }
[data-reveal-delay="4"] { transition-delay: 0.32s; }
[data-reveal-delay="5"] { transition-delay: 0.4s; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

/* =============================================================
   Page banner (secondary pages)
   ============================================================= */
.page-hero {
  position: relative;
  min-height: 58vh;
  display: flex; align-items: center;
  color: #fff; overflow: hidden;
}
.page-hero__bg { position: absolute; inset: 0; z-index: -2; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(7,29,39,0.7) 0%, rgba(7,29,39,0.45) 50%, rgba(7,29,39,0.85) 100%);
}
.page-hero__inner {
  padding-block: 150px 70px;
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
}
.page-hero .lead { margin-inline: auto; max-width: 640px; }
.page-hero h1 { color: #fff; font-size: clamp(2.4rem, 5vw, 3.8rem); text-wrap: balance; }
.page-hero .lead { color: rgba(255,255,255,0.9); }
.breadcrumb { font-size: 0.86rem; color: rgba(255,255,255,0.7); margin-bottom: 18px; letter-spacing: 0.02em; }
.breadcrumb a:hover { color: var(--gold-bright); }

/* =============================================================
   Responsive
   ============================================================= */
@media (max-width: 980px) {
  .trustbar__grid { grid-template-columns: repeat(2, 1fr); gap: 14px 24px; }
  .about { grid-template-columns: 1fr; }
  .about__media { max-width: 440px; margin-inline: auto; }
  .about__frame { inset: 16px -16px -16px 16px; }
  .why-card { flex-basis: calc((100% - 22px) / 2); }
  .dest-grid > * { flex-basis: calc((100% - 24px) / 2); }
  .tslider { --per: 2; }
  .consult__grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .nav__links, .nav__cta .btn { display: none; }
  .nav__toggle { display: flex; }
  .nav.open .nav__links {
    display: flex;
    position: absolute;
    top: calc(100% + 10px); left: var(--gutter); right: var(--gutter);
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    background: #fff;
    padding: 18px 22px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
  }
  .nav.open .nav__links a { color: var(--navy); width: 100%; padding: 10px 0; border-bottom: 1px solid var(--line); }
  .nav.open .nav__links a:last-child { border-bottom: 0; }
  .why-card { flex-basis: 100%; }
  .dest-grid > * { flex-basis: 100%; }
  .tslider { --per: 1; }
  .field-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__inner { padding-block: 120px 90px; }
  .about__badge { right: 0; }
  .modal__gallery { grid-template-columns: repeat(3, 1fr); }
  .wa-float__label { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}



