/* ===========================================
   ECOLUXE JOURNEYS — DESIGN SYSTEM
   =========================================== */

:root {
  /* Base */
  --bg-primary: #071a14;
  --bg-secondary: #0c2a20;
  --bg-elevated: rgba(255, 255, 255, 0.05);
  --bg-glass: rgba(12, 42, 32, 0.55);

  /* Accents */
  --accent-primary: #2dd4bf;
  --accent-secondary: #86efac;
  --accent-gold: #fbbf24;

  /* Text */
  --text-primary: #ecfdf5;
  --text-secondary: #bbf7d0;
  --text-muted: #6ee7b7;

  /* Borders & Glows */
  --border-soft: rgba(134, 239, 172, 0.12);
  --border-hover: rgba(45, 212, 191, 0.35);
  --glow-soft: 0 8px 40px rgba(45, 212, 191, 0.12);
  --glow-medium: 0 12px 60px rgba(45, 212, 191, 0.22);

  /* Layout */
  --container-max: 1320px;
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  /* Fonts */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Cormorant Garamond', Georgia, serif;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--bg-primary);
  background-image:
    radial-gradient(ellipse at top left, rgba(45, 212, 191, 0.08), transparent 50%),
    radial-gradient(ellipse at bottom right, rgba(134, 239, 172, 0.05), transparent 50%);
  min-height: 100vh;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.3s var(--ease); }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

/* Typography */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}

h1 { font-size: clamp(2.5rem, 5.5vw, 4.6rem); font-weight: 300; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 300; }
h3 { font-size: clamp(1.35rem, 2vw, 1.75rem); }
h4 { font-size: 1.1rem; font-family: var(--font-body); font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; }

em { font-style: italic; color: var(--accent-secondary); font-weight: 400; }

p { color: var(--text-secondary); font-size: 1.02rem; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-primary);
  margin-bottom: 1.25rem;
}

/* Layout */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: 110px 0;
  position: relative;
}

.section-head {
  max-width: 720px;
  margin: 0 auto 70px;
  text-align: center;
}

.section-head p {
  margin-top: 1.25rem;
  font-size: 1.08rem;
}

/* ===========================================
   NAVIGATION — GLASS
   =========================================== */

.nav-glass {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 0;
  background: rgba(7, 26, 20, 0.6);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border-bottom: 1px solid var(--border-soft);
  transition: all 0.4s var(--ease);
}

.nav-glass.scrolled {
  padding: 12px 0;
  background: rgba(7, 26, 20, 0.85);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  font-size: 1.1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  color: var(--bg-primary);
  box-shadow: var(--glow-soft);
}

.logo-text em { color: var(--accent-primary); font-style: italic; margin-left: 2px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  position: relative;
  font-size: 0.93rem;
  font-weight: 400;
  color: var(--text-secondary);
  padding: 6px 0;
  transition: color 0.3s var(--ease);
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--accent-primary);
  transition: width 0.4s var(--ease);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text-primary);
  transition: all 0.3s var(--ease);
}

/* ===========================================
   BUTTONS
   =========================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.93rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.4s var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-primary) 0%, #34d399 100%);
  color: var(--bg-primary);
  box-shadow: 0 4px 20px rgba(45, 212, 191, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(45, 212, 191, 0.4);
  filter: brightness(1.08);
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(134, 239, 172, 0.3);
  color: var(--text-primary);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  border-color: var(--accent-primary);
  background: rgba(45, 212, 191, 0.08);
  transform: translateY(-2px);
}

.btn-lg { padding: 17px 38px; font-size: 1rem; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent-primary);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: gap 0.3s var(--ease);
}

.link-arrow:hover { gap: 12px; color: var(--accent-secondary); }

/* ===========================================
   HERO
   =========================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 100px;
  overflow: hidden;
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: slowZoom 28s ease-in-out infinite alternate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 26, 20, 0.45) 0%, rgba(7, 26, 20, 0.82) 100%),
    linear-gradient(90deg, rgba(7, 26, 20, 0.7) 0%, rgba(7, 26, 20, 0.2) 60%);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-text {
  max-width: 680px;
}

.hero-desc {
  margin: 1.75rem 0 2.5rem;
  font-size: 1.18rem;
  line-height: 1.75;
  color: var(--text-secondary);
  max-width: 560px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.hero-meta {
  display: flex;
  gap: 60px;
  padding-top: 2rem;
  border-top: 1px solid var(--border-soft);
  flex-wrap: wrap;
}

.hero-meta div { display: flex; flex-direction: column; }
.hero-meta strong {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--text-primary);
}
.hero-meta span {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}

.scroll-hint {
  position: absolute;
  bottom: 38px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  text-align: center;
}

.scroll-hint span {
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--accent-primary));
  margin: 0 auto 8px;
  animation: pulse 2.5s ease-in-out infinite;
}

.scroll-hint p {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ===========================================
   PAGE HERO (subpages)
   =========================================== */

.page-hero {
  position: relative;
  padding: 200px 0 120px;
  overflow: hidden;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.page-hero.small { min-height: 50vh; padding: 180px 0 80px; }

.page-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: slowZoom 30s ease-in-out infinite alternate;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 26, 20, 0.55) 0%, rgba(7, 26, 20, 0.88) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.page-hero-content p {
  margin-top: 1.25rem;
  font-size: 1.15rem;
  max-width: 580px;
}

/* ===========================================
   EXPERIENCE CARDS
   =========================================== */

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.card-grid.three { grid-template-columns: repeat(3, 1fr); }

.exp-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: all 0.5s var(--ease);
}

.exp-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
  box-shadow: var(--glow-medium);
}

.exp-image {
  height: 260px;
  overflow: hidden;
  position: relative;
}

.exp-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-soft);
}

.exp-card:hover .exp-image img { transform: scale(1.08); }

.exp-body { padding: 28px 28px 32px; }

.tag {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-primary);
  margin-bottom: 0.85rem;
  font-weight: 500;
}

.exp-body h3 { margin-bottom: 0.75rem; }
.exp-body p { margin-bottom: 1.25rem; font-size: 0.98rem; }

/* ===========================================
   DESTINATIONS GRID
   =========================================== */

.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 300px;
  gap: 24px;
}

.dest-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  transition: all 0.5s var(--ease);
  cursor: pointer;
}

.dest-card.tall { grid-row: span 2; }

.dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-soft);
}

.dest-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 26, 20, 0.9) 0%, transparent 55%);
  transition: opacity 0.4s var(--ease);
}

.dest-card:hover img { transform: scale(1.07); }

.dest-info {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
}

.dest-info span {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-secondary);
  margin-bottom: 0.4rem;
}

.dest-info h3 {
  font-size: 1.65rem;
  color: var(--text-primary);
}

/* Destinations full */
.dest-full-grid { display: flex; flex-direction: column; gap: 90px; }

.dest-full {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

.dest-full.reverse { direction: rtl; }
.dest-full.reverse > * { direction: ltr; }

.dest-full img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.dest-full-body .tag { margin-bottom: 1rem; }
.dest-full-body h3 { font-size: 2.4rem; margin-bottom: 1.25rem; }
.dest-full-body p { margin-bottom: 1.5rem; font-size: 1.08rem; }

/* ===========================================
   SUSTAINABILITY SECTION
   =========================================== */

.sustainability-section {
  background: linear-gradient(180deg, transparent, rgba(12, 42, 32, 0.4));
}

.sustain-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.sustain-visual img {
  border-radius: var(--radius-lg);
  height: 520px;
  width: 100%;
  object-fit: cover;
}

.sustain-text h2 { margin-bottom: 1.5rem; }
.sustain-text p { margin-bottom: 2rem; font-size: 1.08rem; }

.sustain-list {
  margin-bottom: 2.5rem;
}

.sustain-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-soft);
  color: var(--text-secondary);
  font-size: 1rem;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-primary);
  box-shadow: 0 0 12px rgba(45, 212, 191, 0.5);
  flex-shrink: 0;
}

/* ===========================================
   VALUES / PILLARS
   =========================================== */

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.value-card {
  padding: 40px 28px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  transition: all 0.5s var(--ease);
  backdrop-filter: blur(10px);
}

.value-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
}

.value-icon {
  font-size: 1.8rem;
  color: var(--accent-primary);
  margin-bottom: 1.5rem;
}

.value-card h3 { margin-bottom: 0.75rem; }
.value-card p { font-size: 0.95rem; }

.pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.pillar {
  padding: 48px 40px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  transition: all 0.5s var(--ease);
}

.pillar:hover { border-color: var(--border-hover); box-shadow: var(--glow-soft); }

.pillar-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--accent-gold);
  margin-bottom: 1.25rem;
  letter-spacing: 0.05em;
}

.pillar h3 { margin-bottom: 1rem; }

/* ===========================================
   TESTIMONIAL
   =========================================== */

.testimonial-section {
  padding: 80px 0;
}

.quote {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  padding: 60px 40px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(10px);
}

.quote p {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-style: italic;
  line-height: 1.5;
  color: var(--text-primary);
  margin-bottom: 2rem;
}

.quote-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.quote-meta img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--border-soft);
}

.quote-meta div { text-align: left; }
.quote-meta strong { display: block; font-family: var(--font-body); font-size: 0.95rem; font-weight: 500; }
.quote-meta span { font-size: 0.82rem; color: var(--text-muted); }

/* ===========================================
   CTA SECTION
   =========================================== */

.cta-section {
  position: relative;
}

.cta-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  padding: 80px 40px;
  background:
    linear-gradient(135deg, rgba(45, 212, 191, 0.08), rgba(134, 239, 172, 0.04)),
    var(--bg-elevated);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(14px);
}

.cta-inner h2 { margin-bottom: 1.25rem; }
.cta-inner p { margin-bottom: 2.25rem; font-size: 1.1rem; }

/* ===========================================
   TWO COLUMN
   =========================================== */

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.two-col p { margin-bottom: 1.25rem; }

.soft-img {
  border-radius: var(--radius-lg);
  height: 500px;
  width: 100%;
  object-fit: cover;
}

/* ===========================================
   CONTACT
   =========================================== */

.contact-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-form { display: flex; flex-direction: column; gap: 22px; }

.field { display: flex; flex-direction: column; gap: 8px; }

.field label {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.field input,
.field textarea {
  padding: 16px 20px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s var(--ease);
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent-primary);
  background: rgba(45, 212, 191, 0.04);
  box-shadow: 0 0 0 3px rgba(45, 212, 191, 0.12);
}

.field input::placeholder,
.field textarea::placeholder { color: var(--text-muted); opacity: 0.6; }

.contact-form button { align-self: flex-start; margin-top: 10px; }

.contact-side {
  padding: 44px 36px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
}

.contact-side h3 { margin-bottom: 1rem; }
.contact-side > p { margin-bottom: 2rem; }

.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-info > div { padding-bottom: 18px; border-bottom: 1px solid var(--border-soft); }
.contact-info > div:last-child { border-bottom: none; }
.contact-info span {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.contact-info a { color: var(--accent-primary); }
.contact-info a:hover { color: var(--accent-secondary); }

/* ===========================================
   LEGAL PAGES
   =========================================== */

.legal { max-width: 820px; margin: 0 auto; }
.legal h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin: 2.5rem 0 1rem;
  color: var(--accent-secondary);
}
.legal h2:first-child { margin-top: 0; }
.legal p { margin-bottom: 1rem; font-size: 1rem; }
.legal a { color: var(--accent-primary); }
.legal a:hover { color: var(--accent-secondary); }

/* ===========================================
   FOOTER
   =========================================== */

.site-footer {
  padding: 90px 0 30px;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-soft);
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand p {
  margin-top: 1.25rem;
  font-size: 0.95rem;
  max-width: 280px;
}

.footer-grid h4 {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.footer-grid a {
  display: block;
  padding: 6px 0;
  font-size: 0.95rem;
  color: var(--text-secondary);
  transition: color 0.3s var(--ease);
}

.footer-grid a:hover { color: var(--accent-primary); }

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid var(--border-soft);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}

/* ===========================================
   PARTICLES
   =========================================== */

.particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.particles span {
  position: absolute;
  display: block;
  width: 4px;
  height: 4px;
  background: var(--accent-secondary);
  border-radius: 50%;
  opacity: 0;
  animation: float 18s linear infinite;
  box-shadow: 0 0 8px rgba(134, 239, 172, 0.4);
}

.particles span:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 22s; }
.particles span:nth-child(2) { left: 22%; animation-delay: 3s; animation-duration: 25s; }
.particles span:nth-child(3) { left: 38%; animation-delay: 7s; animation-duration: 19s; }
.particles span:nth-child(4) { left: 52%; animation-delay: 1s; animation-duration: 28s; }
.particles span:nth-child(5) { left: 66%; animation-delay: 9s; animation-duration: 21s; }
.particles span:nth-child(6) { left: 78%; animation-delay: 5s; animation-duration: 24s; }
.particles span:nth-child(7) { left: 88%; animation-delay: 2s; animation-duration: 26s; }
.particles span:nth-child(8) { left: 45%; animation-delay: 11s; animation-duration: 20s; }
.particles span:nth-child(9) { left: 15%; animation-delay: 14s; animation-duration: 23s; }
.particles span:nth-child(10) { left: 72%; animation-delay: 8s; animation-duration: 27s; }