/* =============================================
   TAXI VAN SERVICES KRANIOTAKIS
   Fonts : Cinzel (display) + Raleway (body)
   Palette: #0E0B08 warm black · #C8973E deep gold
   Mood  : Mediterranean authority, not editorial
   ============================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:      #0A0A0A;
  --black-2:    #111111;
  --black-3:    #181818;
  --black-4:    #202020;
  --gold:       #C8973E;
  --gold-light: #DFB468;
  --gold-pale:  #F0D9A8;
  --gold-dim:   rgba(200,151,62,.08);
  --gold-line:  rgba(200,151,62,.18);
  --white:      #FFFFFF;
  --off-white:  #F5F0E8;
  --grey:       #C8C4BE;
  --grey-mid:   #A8A49E;

  --display: 'Cinzel', 'Trajan Pro', serif;
  --body:    'Raleway', system-ui, sans-serif;

  --ease:     cubic-bezier(.25,.1,.25,1);
  --ease-out: cubic-bezier(0,0,.2,1);
  --t: .35s;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--body);
  background: var(--black);
  color: var(--off-white);
  overflow-x: hidden;
  line-height: 1.6;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

/* ── Loader ── */
.loader {
  position: fixed; inset: 0;
  background: var(--black);
  z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  transition: opacity .6s, visibility .6s;
}
.loader.gone { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner { text-align: center; }
.loader-line {
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  width: 0; margin: 0 auto 20px;
  transition: width 1.2s var(--ease-out);
}
.loader-text {
  font-family: var(--display);
  font-size: .65rem;
  font-weight: 400;
  letter-spacing: .5em;
  color: var(--gold);
  opacity: 0;
  transition: opacity .6s .8s;
  text-transform: uppercase;
}
.loader.loading .loader-line { width: 180px; }
.loader.loading .loader-text { opacity: 1; }

/* ── Scroll reveal ── */
.reveal-up {
  opacity: 0; transform: translateY(36px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
  transition-delay: var(--d, 0s);
}
.reveal-up.in { opacity: 1; transform: none; }

.reveal-left {
  opacity: 0; transform: translateX(-36px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
  transition-delay: var(--d, 0s);
}
.reveal-left.in { opacity: 1; transform: none; }

.reveal-right {
  opacity: 0; transform: translateX(36px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.reveal-right.in { opacity: 1; transform: none; }

/* ── Layout ── */
.container { max-width: 1240px; margin: 0 auto; padding: 0 48px; }
.section { padding: 120px 0; }

/* ── Section header ── */
.section-head { max-width: 560px; }
.section-head.center { text-align: center; margin: 0 auto 72px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-size: .6rem;
  font-weight: 400;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.eyebrow::before, .eyebrow::after {
  content: '';
  display: block;
  width: 20px; height: 1px;
  background: var(--gold);
  opacity: .6;
}
.section-head:not(.center) .eyebrow::after { display: none; }

.section-title {
  font-family: var(--display);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.section-title em {
  font-style: normal;
  color: var(--gold);
  font-weight: 400;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-block;
  padding: 14px 36px;
  background: var(--gold);
  color: var(--black);
  font-family: var(--display);
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--t), transform var(--t), box-shadow var(--t);
  border: none;
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.15);
  opacity: 0;
  transition: opacity var(--t);
}
.btn-primary:hover { background: var(--gold-light); box-shadow: 0 6px 28px rgba(200,151,62,.35); }
.btn-primary:hover::after { opacity: 1; }

.btn-ghost {
  display: inline-block;
  padding: 13px 36px;
  background: transparent;
  color: var(--off-white);
  border: 1px solid rgba(245,240,232,.2);
  font-family: var(--display);
  font-size: .62rem;
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color var(--t), color var(--t), background var(--t);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-dim); }

.btn-full { width: 100%; text-align: center; }


/* =============================================
   NAVIGATION
   ============================================= */
#navbar {
  position: fixed; inset: 0 0 auto 0;
  z-index: 500;
  padding: 28px 0;
  transition: padding var(--t), background var(--t), border-color var(--t);
  border-bottom: 1px solid transparent;
}
#navbar.scrolled {
  padding: 16px 0;
  background: rgba(14,11,8,.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: var(--gold-line);
}

.nav-inner {
  max-width: 1240px; margin: 0 auto; padding: 0 48px;
  display: flex; align-items: center; justify-content: space-between;
}

.nav-logo { display: flex; flex-direction: column; gap: 3px; }
.logo-name {
  font-family: var(--display);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  line-height: 1;
}
.logo-taxi { color: var(--white); }
.logo-van  { color: var(--gold); }
.logo-sub {
  font-family: var(--body);
  font-size: .58rem;
  font-weight: 300;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav-links { display: flex; align-items: center; gap: 40px; }

.nav-link {
  font-family: var(--display);
  font-size: .58rem;
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  transition: color var(--t);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

.nav-link.nav-cta {
  background: var(--gold);
  color: var(--black);
  padding: 9px 22px;
  font-weight: 600;
}
.nav-link.nav-cta::after { display: none; }
.nav-link.nav-cta:hover { background: var(--gold-light); color: var(--black); }

/* ── Services dropdown ── */
.nav-dropdown-wrap { position: relative; }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: rgba(10,10,10,.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--gold-line);
  min-width: 160px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s var(--ease), transform .22s var(--ease);
  z-index: 10;
}
.nav-dropdown-wrap:hover .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown li { border-bottom: 1px solid var(--gold-line); }
.nav-dropdown li:last-child { border-bottom: none; }
.nav-dropdown-link {
  display: block;
  padding: 11px 20px;
  font-family: var(--display);
  font-size: .52rem;
  font-weight: 400;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  white-space: nowrap;
  transition: color var(--t), background var(--t), padding-left var(--t);
}
.nav-dropdown-link:hover {
  color: var(--gold);
  background: var(--gold-dim);
  padding-left: 26px;
}
@media (max-width: 767px) {
  .nav-dropdown { display: none; }
}

.nav-toggle {
  display: none; flex-direction: column; gap: 6px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.toggle-line {
  display: block; width: 26px; height: 1px;
  background: var(--off-white); transition: var(--t);
}
.nav-toggle.open .toggle-line:first-child { transform: translateY(3.5px) rotate(45deg); }
.nav-toggle.open .toggle-line:last-child  { transform: translateY(-3.5px) rotate(-45deg); }


/* =============================================
   HERO — Split left / right
   ============================================= */
/* Mobile first: vertical crop */
.hero {
  position: relative;
  min-height: 100svh;
  background: var(--black) url('final%20vertical%20photo.png') center center / cover no-repeat;
  display: flex;
  align-items: center;
  padding: 120px 80px 80px;
  overflow: hidden;
}

/* Desktop: horizontal image */
@media (min-width: 768px) {
  .hero {
    background-image: url('excursions/home%20section%20photo.png');
  }
}

/* Geometric corner accent — stay in corners, never near text */
.hero::before {
  content: '';
  position: absolute;
  top: 20px; right: 20px;
  width: 72px; height: 72px;
  border-top: 1px solid var(--gold-line);
  border-right: 1px solid var(--gold-line);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 20px; left: 20px;
  width: 72px; height: 72px;
  border-bottom: 1px solid var(--gold-line);
  border-left: 1px solid var(--gold-line);
  pointer-events: none;
}

/* Dark overlay over background image */
.hero-bg-glow {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(10,10,10,.82) 0%, rgba(10,10,10,.65) 50%, rgba(10,10,10,.75) 100%);
  pointer-events: none;
}

/* Left column */
.hero-left { flex: 1; padding-right: 80px; z-index: 2; }

.hero-eyebrow {
  display: block;
  font-family: var(--display);
  font-size: .58rem;
  font-weight: 400;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
}

.hero-title {
  font-family: var(--display);
  font-size: clamp(1.9rem, 3.2vw, 3.4rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.3;
  letter-spacing: .06em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}
.hero-line { display: block; }
.hero-italic {
  font-weight: 300;
  color: var(--gold);
  font-style: italic;
  font-size: .95em;
  letter-spacing: .08em;
  text-transform: none;
}

.hero-sub {
  font-family: var(--body);
  font-size: .88rem;
  font-weight: 300;
  color: rgba(255,255,255,.9);
  line-height: 1.9;
  letter-spacing: .04em;
  max-width: 360px;
}

/* Vertical divider */
.hero-divider {
  width: 1px; height: 220px;
  background: linear-gradient(to bottom, transparent, var(--gold-line) 30%, var(--gold-line) 70%, transparent);
  flex-shrink: 0;
  align-self: center;
  z-index: 2;
}

/* Right column */
.hero-right {
  padding-left: 80px;
  display: flex; flex-direction: column;
  align-items: flex-start;
  gap: 16px; z-index: 2;
  min-width: 280px;
}
.hero-right-label {
  font-family: var(--display);
  font-size: .52rem;
  font-weight: 400;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(245,240,232,.25);
  margin-bottom: 4px;
}

/* Mobile-only elements — hidden on desktop */
.hero-mobile-cta { display: none; }
.hero-mobile-tagline { display: none; }

/* KN monogram watermark */
.hero-monogram {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--display);
  font-size: clamp(14rem, 22vw, 22rem);
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(200,151,62,.04);
  letter-spacing: -.04em;
  pointer-events: none;
  user-select: none;
  z-index: 1;
  line-height: 1;
}

/* Hero tagline */
.hero-tagline {
  font-family: var(--body);
  font-style: italic;
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: .04em;
  margin-bottom: 20px;
}

/* Three trust icons */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.hero-trust span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--display);
  font-size: .55rem;
  font-weight: 400;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
}
.hero-trust span svg {
  width: 13px; height: 13px;
  stroke: var(--gold);
  flex-shrink: 0;
}
.hero-trust-dot {
  color: var(--gold) !important;
  font-size: .7rem !important;
  letter-spacing: 0 !important;
}

/* Scroll hint */
.hero-scroll {
  position: absolute; bottom: 36px; right: 60px; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: rgba(245,240,232,.25);
  font-family: var(--display);
  font-size: .52rem; letter-spacing: .24em; text-transform: uppercase;
  transition: color var(--t);
}
.hero-scroll:hover { color: var(--gold); }
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(200,151,62,.5), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse { 0%,100% { opacity:1; } 50% { opacity:.3; } }

/* =============================================
   INTRO STRIP
   ============================================= */
.intro-strip {
  background: var(--black-2);
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
  padding: 16px 0; overflow: hidden;
}
.strip-inner {
  display: flex; align-items: center;
  gap: 40px; white-space: nowrap;
  width: max-content;
  animation: stripScroll 26s linear infinite;
}
.strip-inner span {
  font-family: var(--display);
  font-size: .55rem; font-weight: 400;
  letter-spacing: .28em; text-transform: uppercase;
  color: rgba(245,240,232,.3); flex-shrink: 0;
}
.strip-dot { color: var(--gold) !important; }
@keyframes stripScroll { from { transform:translateX(0); } to { transform:translateX(-50%); } }


/* =============================================
   SERVICES — 3-column cards
   ============================================= */
.services { background: var(--black); }
.services .section-head { margin-bottom: 16px; }

.svc-sub {
  font-family: var(--body);
  font-size: .88rem; font-weight: 300;
  color: rgba(255,255,255,.85);
  line-height: 1.85; max-width: 560px;
  margin: 16px auto 64px;
  text-align: center; letter-spacing: .02em;
}

.svc-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--gold-line);
  box-shadow: 0 0 0 4px var(--black), 0 0 0 5px var(--gold-line);
}

.svc-card {
  padding: 48px 40px;
  display: flex; flex-direction: column;
  border-right: 1px solid var(--gold-line);
  position: relative; overflow: hidden;
  transition: background var(--t);
  cursor: pointer;
}
.svc-card:last-child { border-right: none; }
.svc-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--t);
}
.svc-card:hover { background: var(--black-2); }
.svc-card:hover::before { opacity: 1; }

.svc-card-num {
  font-family: var(--display);
  font-size: .58rem; font-weight: 400;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 28px;
}

.svc-card-icon {
  width: 48px; height: 48px;
  border: 1px solid var(--gold-line);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  transition: background var(--t), border-color var(--t);
}
.svc-card:hover .svc-card-icon { background: var(--gold-dim); border-color: var(--gold); }
.svc-card-icon svg { width: 22px; height: 22px; stroke: var(--gold); }

.svc-card h3 {
  font-family: var(--display);
  font-size: 1.1rem; font-weight: 600;
  color: var(--white); line-height: 1.3;
  letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: 16px;
}

.svc-card p {
  font-family: var(--body);
  font-size: .85rem; font-weight: 300;
  color: var(--grey); line-height: 1.85;
  margin-bottom: 24px;
}

.svc-card ul {
  flex: 1; display: flex; flex-direction: column;
  gap: 10px; margin-bottom: 32px;
}
.svc-card ul li {
  font-family: var(--body);
  font-size: .78rem; font-weight: 300;
  color: rgba(255,255,255,.85);
  letter-spacing: .04em;
  display: flex; align-items: center; gap: 12px;
}
.svc-card ul li::before {
  content: '';
  display: block; width: 6px; height: 6px;
  border: 1px solid var(--gold); flex-shrink: 0;
  transform: rotate(45deg);
}

/* Per-service WhatsApp booking button */
.svc-book-block {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid rgba(245,240,232,.06);
}
.svc-wa-btn {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; width: 100%;
  padding: 12px 20px;
  background: rgba(37,211,102,.07);
  border: 1px solid rgba(37,211,102,.2);
  color: #5edf8a;
  font-family: var(--display);
  font-size: .58rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  transition: background var(--t), border-color var(--t), gap var(--t);
  cursor: pointer;
}
.svc-wa-btn:hover { background: rgba(37,211,102,.14); border-color: rgba(37,211,102,.45); gap: 14px; }
.svc-wa-btn svg { width: 15px; height: 15px; fill: #5edf8a; flex-shrink: 0; }

/* Note bar */
.svc-note {
  display: flex; align-items: center; gap: 28px;
  margin-top: 48px;
}
.svc-note-line { flex: 1; height: 1px; background: var(--gold-line); opacity: .5; }
.svc-note p {
  font-family: var(--body);
  font-size: .78rem; font-weight: 300;
  color: rgba(255,255,255,.8); text-align: center;
  line-height: 1.7; max-width: 560px; letter-spacing: .02em;
}
.svc-note p strong { color: var(--gold); font-weight: 500; }


/* =============================================
   ABOUT
   ============================================= */
.about { background: var(--black-2); overflow: hidden; }

.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 680px;
}

.about-img-col { position: relative; display: flex; flex-direction: column; }

.about-img-wrap {
  position: relative; flex: 1; min-height: 520px; overflow: hidden;
}
.about-img-wrap img {
  height: 100%; object-position: top center;
  filter: brightness(.8) contrast(1.05) sepia(.1);
  transition: transform 8s ease;
}
.about-img-wrap:hover img { transform: scale(1.03); }

.about-frame {
  position: absolute; inset: 20px;
  border: 1px solid var(--gold-line);
  pointer-events: none;
}
/* Diagonal accent line */
.about-frame::after {
  content: '';
  position: absolute;
  top: -1px; right: -1px;
  width: 40px; height: 40px;
  border-top: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
}

.about-credentials {
  background: var(--black);
  border-top: 1px solid var(--gold-line);
  padding: 28px 48px;
  display: flex; align-items: center; gap: 40px;
}
.cred { text-align: center; flex: 1; }
.cred-n {
  display: block;
  font-family: var(--display);
  font-size: 1rem; font-weight: 600;
  color: var(--gold); line-height: 1;
  letter-spacing: .12em; text-transform: uppercase;
  margin-bottom: 6px;
}
.cred-l {
  font-family: var(--body);
  font-size: .62rem; font-weight: 300;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(245,240,232,.3); line-height: 1.5;
}
.cred-sep { width: 1px; height: 40px; background: var(--gold-line); }

.about-text-col { padding: 80px 72px; display: flex; flex-direction: column; justify-content: center; }
.about-text-col .section-title { text-align: left; margin-bottom: 28px; color: #6A9BD4; }
.about-text-col .section-title em { color: var(--gold); }

.about-divider {
  width: 40px; height: 2px;
  background: var(--gold);
  margin-bottom: 28px;
}

.about-lead {
  font-family: var(--body);
  font-size: 1.05rem; font-style: italic; font-weight: 300;
  color: rgba(255,255,255,.92);
  line-height: 1.75; margin-bottom: 20px;
  padding-left: 20px;
  border-left: 2px solid var(--gold);
}

.about-body {
  font-family: var(--body);
  font-size: .88rem; font-weight: 300;
  color: var(--grey); line-height: 1.95; margin-bottom: 40px;
}

.about-pillars { display: flex; flex-direction: column; gap: 20px; }
.pillar { display: flex; align-items: flex-start; gap: 16px; }
.pillar-icon {
  width: 38px; height: 38px;
  border: 1px solid var(--gold-line);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.pillar-icon svg { width: 16px; height: 16px; stroke: var(--gold); }
.pillar strong {
  display: block;
  font-family: var(--display);
  font-size: .7rem; font-weight: 600;
  color: var(--off-white); letter-spacing: .12em; text-transform: uppercase;
  margin-bottom: 3px;
}
.pillar span {
  font-family: var(--body);
  font-size: .78rem; font-weight: 300;
  color: var(--grey-mid); letter-spacing: .02em;
}


/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials {
  background: var(--black);
  border-top: 1px solid var(--gold-line);
}

.testi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--gold-line);
}

.testi-card {
  padding: 48px 40px;
  border-right: 1px solid var(--gold-line);
  transition: background var(--t);
}
.testi-card:last-child { border-right: none; }
.testi-card:hover { background: var(--black-2); }

.testi-stars {
  color: var(--gold);
  font-size: .9rem; letter-spacing: .1em; margin-bottom: 20px;
}

.testi-card p {
  font-family: var(--body);
  font-size: .9rem; font-style: italic; font-weight: 300;
  color: rgba(245,240,232,.6); line-height: 1.85; margin-bottom: 28px;
}

.testi-sig {
  display: flex; align-items: center; gap: 14px;
  padding-top: 20px; border-top: 1px solid rgba(245,240,232,.06);
}
.testi-av {
  width: 36px; height: 36px;
  background: var(--gold); color: var(--black);
  font-family: var(--display); font-size: .8rem; font-weight: 600;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.testi-sig strong {
  display: block;
  font-family: var(--display);
  font-size: .65rem; font-weight: 600;
  color: var(--off-white); letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: 3px;
}
.testi-sig span {
  font-family: var(--body);
  font-size: .72rem; font-weight: 300;
  color: rgba(245,240,232,.3); letter-spacing: .04em;
}


/* =============================================
   GALLERY
   ============================================= */
.gallery { background: var(--black-2); }
.gallery .container { margin-bottom: 48px; }

.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px 280px;
  gap: 4px;
}

.gal-item { position: relative; overflow: hidden; }
.gal-item img { transition: transform .7s var(--ease); height: 100%; }
.gal-item:hover img { transform: scale(1.05); }
.gal-over {
  position: absolute; inset: 0;
  background: rgba(14,11,8,.35);
  transition: opacity var(--t);
}
.gal-item:hover .gal-over { opacity: 0; }

.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }


/* =============================================
   CONTACT
   ============================================= */
.contact { background: var(--black); }

.contact-layout {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 80px; align-items: flex-start;
}

.contact-intro {
  font-family: var(--body);
  font-size: .88rem; font-weight: 300;
  color: var(--grey); line-height: 1.85; margin-bottom: 40px;
}

.contact-items { display: flex; flex-direction: column; gap: 3px; margin-bottom: 48px; }

.c-item {
  display: flex; align-items: center; gap: 18px;
  padding: 18px 22px;
  background: var(--black-2);
  border: 1px solid rgba(245,240,232,.05);
  transition: border-color var(--t), background var(--t), transform var(--t);
  cursor: pointer;
}
.c-item:hover { border-color: var(--gold-line); background: var(--black-3); transform: translateX(4px); }

.c-icon { width: 42px; height: 42px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.c-wa { background: #25D366; }
.c-ph { background: var(--black-3); border: 1px solid var(--gold-line); }
.c-em { background: var(--black-3); border: 1px solid var(--gold-line); }
.c-icon svg { width: 18px; height: 18px; }
.c-wa svg { fill: white; }
.c-ph svg, .c-em svg { stroke: var(--gold); fill: none; }

.c-text { flex: 1; }
.c-text strong {
  display: block;
  font-family: var(--display);
  font-size: .65rem; font-weight: 600;
  color: var(--off-white); letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: 3px;
}
.c-text span {
  font-family: var(--body);
  font-size: .72rem; font-weight: 300;
  color: rgba(245,240,232,.3); letter-spacing: .04em;
}

.c-arrow {
  font-size: .9rem; color: var(--gold);
  opacity: 0; transform: translateX(-8px);
  transition: opacity var(--t), transform var(--t);
}
.c-item:hover .c-arrow { opacity: 1; transform: none; }

.contact-quote { padding-top: 36px; }
.cq-line { width: 28px; height: 2px; background: var(--gold); margin-bottom: 20px; }
.contact-quote p {
  font-family: var(--body);
  font-size: 1rem; font-style: italic; font-weight: 300;
  color: rgba(245,240,232,.45); line-height: 1.7; margin-bottom: 10px;
}
.contact-quote cite {
  font-family: var(--display);
  font-size: .6rem; font-style: normal;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold);
}

/* Booking form */
.booking-wrap {
  background: var(--black-2);
  border: 1px solid var(--gold-line);
  box-shadow: 0 0 0 4px var(--black), 0 0 0 5px var(--gold-line);
}
.booking-form { padding: 48px; }

.form-heading {
  display: flex; align-items: baseline;
  justify-content: space-between;
  margin-bottom: 32px; padding-bottom: 20px;
  border-bottom: 1px solid rgba(245,240,232,.06);
}
.form-heading h3 {
  font-family: var(--display);
  font-size: 1rem; font-weight: 600;
  color: var(--white); letter-spacing: .14em; text-transform: uppercase;
}
.form-heading span {
  font-family: var(--body);
  font-size: .62rem; font-weight: 300;
  letter-spacing: .1em; color: rgba(245,240,232,.22); text-transform: uppercase;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }

.form-group label {
  font-family: var(--display);
  font-size: .55rem; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  color: rgba(245,240,232,.35);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--black);
  border: 1px solid rgba(245,240,232,.08);
  color: var(--off-white);
  padding: 13px 16px;
  font-family: var(--body);
  font-size: .88rem; font-weight: 300;
  outline: none; border-radius: 0; appearance: none; -webkit-appearance: none;
  transition: border-color var(--t);
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C8973E' stroke-width='1.2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(245,240,232,.16); }
.form-group input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(.4) sepia(1) saturate(2); opacity:.6; }
.form-group textarea { resize: vertical; min-height: 90px; }
.form-group select option { background: var(--black-3); }

.form-note {
  text-align: center;
  font-family: var(--body); font-size: .68rem; font-weight: 300;
  letter-spacing: .06em; color: rgba(245,240,232,.2); margin-top: 12px;
}
.form-success {
  background: var(--gold-dim);
  border: 1px solid var(--gold-line);
  color: var(--gold-pale);
  padding: 16px 20px;
  font-family: var(--body); font-size: .85rem; font-weight: 300;
  line-height: 1.6; margin-top: 14px;
}


/* ── Service card discover link (boxed button) ── */
.svc-discover-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px 20px;
  background: transparent;
  border: 1px solid var(--gold-line);
  color: var(--gold);
  font-family: var(--display);
  font-size: .56rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 12px;
  transition: background var(--t), border-color var(--t), letter-spacing var(--t);
}
.svc-discover-link:hover {
  background: var(--gold-dim);
  border-color: rgba(200,151,62,.5);
  letter-spacing: .24em;
}


/* =============================================
   DESTINATION SECTIONS (City Tours + Excursions)
   ============================================= */
.dest-city      { background: var(--black-2); padding: 120px 0; }
.dest-excursions { background: var(--black); border-top: 1px solid var(--gold-line); padding: 120px 0; }

.dest-intro {
  font-family: var(--body);
  font-size: .95rem; font-weight: 300;
  color: rgba(255,255,255,.88);
  line-height: 1.9; max-width: 640px;
  margin: 18px auto 72px;
  text-align: center; letter-spacing: .02em;
}

/* Grids */
.dest-grid {
  display: grid;
  gap: 32px;
}
.dest-grid-2 { grid-template-columns: repeat(2, 1fr); }
.dest-grid-3 { grid-template-columns: repeat(3, 1fr); }

/* Card */
.dest-card {
  background: var(--black-3);
  border: 1px solid var(--gold-line);
  overflow: hidden;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  cursor: default;
}
.dest-card:hover {
  transform: translateY(-6px);
  border-color: rgba(200,151,62,.45);
  box-shadow: 0 20px 56px rgba(0,0,0,.55);
}

/* Photo */
.dest-img {
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}
.dest-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform .8s var(--ease);
  filter: brightness(.92) contrast(1.07);
}
.dest-card:hover .dest-img img { transform: scale(1.07); }

/* Info */
.dest-info {
  padding: 30px 32px 34px;
}
.dest-info h3 {
  font-family: var(--display);
  font-size: .95rem; font-weight: 600;
  color: var(--white);
  letter-spacing: .12em; text-transform: uppercase;
  margin-bottom: 12px;
  line-height: 1.3;
}
.dest-info h3::after {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: var(--gold);
  margin-top: 10px;
  transition: width .35s var(--ease);
}
.dest-card:hover .dest-info h3::after { width: 56px; }

.dest-info p {
  font-family: var(--body);
  font-size: .88rem; font-weight: 300;
  color: rgba(255,255,255,.88);
  line-height: 1.85;
}

/* "And much more" bar */
.dest-more {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 72px;
  padding: 40px 48px;
  border: 1px solid var(--gold-line);
  background: rgba(200,151,62,.04);
}
.dest-more p {
  font-family: var(--body);
  font-size: .9rem; font-weight: 300;
  color: rgba(245,240,232,.38);
  text-align: center; line-height: 1.8;
  max-width: 640px; letter-spacing: .02em;
  flex: 1;
}
.dest-more p strong { color: var(--gold); font-weight: 500; font-size: 1rem; }

/* Responsive */
@media (max-width: 1024px) {
  .dest-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .dest-city, .dest-excursions { padding: 96px 0; }
}
@media (max-width: 767px) {
  .dest-city, .dest-excursions { padding: 72px 0; }
  .dest-grid-2,
  .dest-grid-3 { grid-template-columns: 1fr; }
  .dest-grid { gap: 24px; }
  .dest-img { aspect-ratio: 16 / 10; }
  .dest-info { padding: 22px 24px 26px; }
  .dest-intro { margin-bottom: 48px; font-size: .88rem; }
  .dest-more { flex-direction: column; gap: 16px; padding: 28px 24px; margin-top: 48px; }
}


/* ── Contact CTA buttons ── */
.contact-intro {
  text-align: center;
  font-family: var(--body);
  font-size: .95rem; font-weight: 300;
  color: rgba(255,255,255,.88); line-height: 1.85;
  margin-bottom: 0;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  margin-top: 2rem;
}

@media (min-width: 600px) {
  .contact-actions { flex-direction: row; justify-content: center; }
}

.btn-wa-cta,
.btn-phone-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 4px;
  font-family: var(--display);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  cursor: pointer;
}
.btn-wa-cta:hover,
.btn-phone-cta:hover { transform: scale(1.03); }

.btn-wa-cta {
  background: #25D366;
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(37,211,102,.25);
}
.btn-wa-cta:hover { box-shadow: 0 6px 28px rgba(37,211,102,.4); }

.btn-phone-cta {
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 4px 20px rgba(200,151,62,.25);
}
.btn-phone-cta:hover { box-shadow: 0 6px 28px rgba(200,151,62,.4); }

.contact-avail {
  text-align: center;
  font-family: var(--body);
  font-size: .75rem; font-weight: 300;
  letter-spacing: .1em;
  color: rgba(255,255,255,.8);
  margin-top: 1.25rem;
}

/* =============================================
   FOOTER
   ============================================= */
.footer { background: var(--black-2); border-top: 1px solid var(--gold-line); }

.footer-top-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px; padding: 72px 48px 56px;
}

.ft-brand .ft-name {
  display: block;
  font-family: var(--display); font-size: .9rem; font-weight: 600;
  color: var(--white); letter-spacing: .16em; text-transform: uppercase;
  margin-bottom: 4px; line-height: 1;
}
.ft-brand .ft-sub {
  display: block;
  font-family: var(--body); font-size: .6rem; font-weight: 300;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px;
}
.ft-brand p { font-family: var(--body); font-size: .82rem; font-weight: 300; color: rgba(255,255,255,.75); line-height: 1.8; max-width: 260px; }

.footer h4 {
  font-family: var(--display); font-size: .58rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}
.footer ul { display: flex; flex-direction: column; gap: 10px; }
.footer ul li, .footer ul a { font-family: var(--body); font-size: .82rem; font-weight: 300; color: rgba(255,255,255,.75); transition: color var(--t); }
.footer ul a:hover { color: var(--gold); }

.ft-contact p { font-family: var(--body); font-size: .82rem; font-weight: 300; color: rgba(255,255,255,.75); line-height: 2; }
.ft-contact a { transition: color var(--t); }
.ft-contact a:hover { color: var(--gold); }

.footer-bottom { border-top: 1px solid rgba(245,240,232,.05); }
.footer-bottom-inner {
  display: flex; justify-content: space-between;
  padding: 20px 48px;
  font-family: var(--body); font-size: .68rem; font-weight: 300;
  letter-spacing: .08em; color: rgba(245,240,232,.18);
}


/* =============================================
   WHATSAPP FAB
   ============================================= */
.wa-fab {
  position: fixed; bottom: 32px; right: 32px; z-index: 400;
  width: 52px; height: 52px; background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,.35);
  transition: transform var(--t), box-shadow var(--t);
  clip-path: polygon(8px 0%, 100% 0%, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0% 100%, 0% 8px);
}
.wa-fab:hover { transform: scale(1.08); box-shadow: 0 6px 32px rgba(37,211,102,.5); }
.wa-fab svg { width: 26px; height: 26px; fill: white; }


/* =============================================
   RESPONSIVE — Full Device Coverage
   ============================================= */

/* ── Small laptop / large tablet landscape: ≤1280px ── */
@media (max-width: 1280px) {
  .container { max-width: 1100px; }
  .hero { padding: 120px 60px 80px; }
}

/* ── Tablet landscape / small laptop: ≤1100px ── */
@media (max-width: 1100px) {
  .svc-cards { grid-template-columns: 1fr 1fr; border-bottom: none; }
  .svc-card { border-bottom: 1px solid var(--gold-line); }
  .svc-card:nth-child(2) { border-right: none; }
  .about-text-col { padding: 60px 48px; }
  .footer-top-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
}

/* ── Tablet portrait: ≤1024px ── */
@media (max-width: 1024px) {
  .hero { padding: 110px 48px 72px; }
  .hero-title { font-size: clamp(1.8rem, 3.8vw, 3rem); }
  .about-text-col { padding: 56px 40px; }
  .section { padding: 96px 0; }
}

/* ── Tablet portrait narrow / large phone landscape: ≤900px ── */
@media (max-width: 900px) {
  .section { padding: 80px 0; }
  .container { padding: 0 32px; }

  /* Services */
  .svc-cards { grid-template-columns: 1fr; }
  .svc-card { border-right: none; border-bottom: 1px solid var(--gold-line); }
  .svc-card:last-child { border-bottom: none; }
  .svc-note { flex-direction: column; gap: 12px; }
  .svc-note-line { width: 40px; height: 1px; flex: none; }

  /* Hero — stacked, show mobile CTA */
  .hero {
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 100px 48px 64px;
    min-height: 100svh;
    text-align: center;
  }
  .hero::before, .hero::after { display: none; }
  .hero-left { padding-right: 0; width: 100%; text-align: center; display: flex; flex-direction: column; align-items: center; }
  .hero-title { font-size: clamp(1.8rem, 4.5vw, 2.8rem); text-align: center; }
  .hero-mobile-tagline { display: block; }
  .hero-divider, .hero-right, .hero-sub, .hero-scroll { display: none; }
  .hero-mobile-cta {
    display: flex; flex-direction: row;
    gap: 16px; justify-content: center; width: 100%; z-index: 2;
  }
  .hero-mobile-cta .btn-primary { width: auto; text-align: center; background: var(--gold); color: var(--black); }
  .hero-mobile-cta .btn-discover { width: auto; text-align: center; border-color: rgba(255,255,255,.35); color: #fff; }

  /* About */
  .about-grid { grid-template-columns: 1fr; }
  .about-img-wrap { min-height: 400px; }
  .about-text-col { padding: 56px 40px; }

  /* Testimonials */
  .testi-grid { grid-template-columns: 1fr; border: 1px solid var(--gold-line); }
  .testi-card { border-right: none; border-bottom: 1px solid var(--gold-line); }
  .testi-card:last-child { border-bottom: none; }

  /* Gallery */
  .gallery-mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .g-tall { grid-row: span 1; }
  .g-wide { grid-column: span 2; }

  /* Footer */
  .footer-top-inner { grid-template-columns: 1fr 1fr; gap: 32px; padding: 56px 32px 40px; }
}

/* ── Mobile: ≤767px ── */
@media (max-width: 767px) {

  /* Navigation: transparent horizontal inline bar */
  .nav-toggle { display: none; }
  #navbar { padding: 12px 0; }
  .nav-inner { padding: 0 16px; flex-wrap: nowrap; }

  /* Shrink logo on mobile to free up space for nav links */
  .logo-name { font-size: .72rem; }
  .logo-sub  { font-size: .48rem; }

  .nav-links {
    display: flex !important;
    position: static;
    background: transparent;
    backdrop-filter: none; -webkit-backdrop-filter: none;
    flex-direction: row; align-items: center; justify-content: flex-start;
    gap: 0; overflow-x: auto; -webkit-overflow-scrolling: touch;
    scrollbar-width: none; padding: 0;
    flex-shrink: 1; min-width: 0;
  }
  .nav-links::-webkit-scrollbar { display: none; }
  .nav-link { font-size: .46rem; letter-spacing: .16em; color: rgba(255,255,255,.65); padding: 6px 9px; white-space: nowrap; }
  .nav-link::after { display: none; }
  .nav-link:hover, .nav-link.active { color: var(--gold); }
  .nav-link.nav-cta { display: none; }

  /* Overlay: dark top (sky), opens to sunset */
  .hero-bg-glow {
    background: linear-gradient(to bottom, rgba(10,10,10,.78) 0%, rgba(10,10,10,.50) 25%, rgba(10,10,10,.18) 55%, rgba(10,10,10,.22) 100%);
  }

  /* Hero */
  .hero {
    background-size: cover; background-position: center center; background-color: #000;
    flex-direction: column; justify-content: space-between; align-items: center;
    padding: 72px 20px 44px; min-height: 100svh;
  }
  .hero-left { padding-right: 0; width: 100%; display: flex; flex-direction: column; align-items: center; text-align: center; z-index: 2; }
  .hero-title { text-align: center; margin-bottom: 0; font-size: clamp(1.8rem, 9vw, 2.6rem); }
  .hero-mobile-tagline { display: block; color: #fff; font-family: var(--body); font-size: 15px; font-weight: 400; text-align: center; margin-top: 10px; letter-spacing: .04em; }
  .hero-sub, .hero-right, .hero-divider, .hero-scroll { display: none; }
  .hero-trust { display: flex; justify-content: center; gap: 10px; margin-top: 14px; margin-bottom: 0; }

  .hero-mobile-cta { display: flex; flex-direction: column; align-items: center; gap: 12px; width: 100%; z-index: 2; }
  .hero-mobile-cta .btn-primary { width: 100%; text-align: center; background: var(--gold); color: var(--black); }
  .hero-mobile-cta .btn-discover { width: 100%; text-align: center; border-color: rgba(255,255,255,.35); color: #fff; }
  .hero-mobile-cta .btn-discover:hover { border-color: var(--gold); color: var(--gold); }

  /* Layout */
  .section { padding: 64px 0; }
  .container { padding: 0 20px; }
  .about-text-col { padding: 40px 20px; }
  .svc-card { padding: 36px 24px; }
  .footer-top-inner { grid-template-columns: 1fr; padding: 48px 20px 36px; }
  .footer-bottom-inner { padding: 16px 20px; flex-direction: column; gap: 6px; }

  /* Contact actions */
  .contact-actions { flex-direction: column; }
  .btn-wa-cta, .btn-phone-cta { width: 100%; justify-content: center; }

  /* Global readability */
  .eyebrow, .section-title, .svc-sub, .svc-card p, .svc-card ul li, .svc-card-num,
  .about-lead, .about-body, .pillar span, .testi-card p, .testi-sig span,
  .contact-intro, .contact-avail, .c-text span, .contact-quote p, .cred-l,
  .strip-inner span, .svc-note p, .footer ul li, .footer ul a,
  .ft-brand p, .ft-contact p, .footer-bottom-inner span { color: #f0f0f0; }
}

/* ── Small mobile: ≤480px ── */
@media (max-width: 480px) {
  .hero-title { font-size: clamp(1.65rem, 10vw, 2.2rem); }
  .gallery-mosaic { grid-template-columns: 1fr; }
  .g-wide, .g-tall { grid-column: span 1; grid-row: span 1; }
  .testi-grid { border: none; }
  .footer-top-inner { padding: 40px 20px 28px; }
  .section { padding: 56px 0; }
}

/* ── XS phones: ≤375px (iPhone SE, Galaxy S8, etc.) ── */
@media (max-width: 375px) {
  .hero { padding: 64px 16px 36px; }
  .hero-title { font-size: clamp(1.5rem, 11vw, 2rem); }
  .nav-inner { padding: 0 12px; }
  .nav-link { font-size: .40rem; padding: 5px 7px; }
  .container { padding: 0 16px; }
  .svc-card { padding: 28px 18px; }
  .btn-wa-cta, .btn-phone-cta { padding: .85rem 1.25rem; font-size: .6rem; }
  .about-text-col { padding: 32px 16px; }
  .section { padding: 48px 0; }
}


/* =============================================
   ACCESSIBILITY
   ============================================= */

/* Skip to main content */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  background: var(--gold);
  color: var(--black);
  padding: 10px 20px;
  font-family: var(--display);
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: top .15s;
}
.skip-link:focus { top: 8px; outline: 2px solid var(--black); outline-offset: 2px; }

/* Focus-visible rings — keyboard users only, no mouse flicker */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
  outline: none;
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal-up, .reveal-left, .reveal-right {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  html { scroll-behavior: auto; }
}
