/* ==========================================
   MD-HOLIDAYS — Global Styles
   ========================================== */

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

:root {
  --gold: #c9a84c;
  --gold-dark: #a88630;
  --dark: #1a1a1a;
  --text: #3a3a3a;
  --muted: #6b6b6b;
  --light-bg: #f9f6f0;
  --white: #ffffff;
  --border: #e5e0d6;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', sans-serif;
  --nav-h: 72px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

/* ==========================================
   NAVBAR
   ========================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 2rem;
}

.logo {
  text-decoration: none;
  flex-shrink: 0;
  line-height: 1;
}
.logo-img {
  height: 113px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.8rem;
  margin-left: auto;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text);
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--dark);
  color: var(--white);
  text-decoration: none;
  padding: 0.55rem 1.1rem;
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  white-space: nowrap;
  transition: background 0.2s;
  flex-shrink: 0;
}
.nav-phone:hover { background: var(--gold); }

.lang-switcher {
  display: flex;
  gap: 0.2rem;
  align-items: center;
  flex-shrink: 0;
}
.lang-btn {
  background: none;
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 0.25rem 0.5rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  color: var(--muted);
  transition: all 0.2s;
  font-family: var(--font-body);
}
.lang-btn:hover { border-color: var(--gold); color: var(--gold); }
.lang-btn.active { background: var(--gold); border-color: var(--gold); color: var(--white); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: all 0.3s;
}

/* ==========================================
   HERO
   ========================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}
.hero-slide.active {
  opacity: 1;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(255,250,242,0.88) 0%,
    rgba(255,250,242,0.7) 40%,
    rgba(255,250,242,0.15) 70%,
    rgba(255,250,242,0) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 2rem 5rem;
  max-width: 580px;
  margin-left: 8vw;
}

.hero-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.hero-label-line {
  display: block;
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.18;
  color: var(--dark);
  margin-bottom: 1.2rem;
}
.hero-title em {
  font-family: 'Great Vibes', cursive;
  font-style: normal;
  color: var(--gold);
  font-weight: 400;
  font-size: 1.25em;
  line-height: 1.1;
  display: block;
}

.hero-desc {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 2.2rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.4rem;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); }

.btn-outline-light {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}
.btn-outline-light:hover { background: var(--dark); color: var(--white); }

.btn-dark {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}
.btn-dark:hover { background: #333; }

.btn-outline-dark {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}
.btn-outline-dark:hover { background: var(--dark); color: var(--white); }

.btn-full { width: 100%; justify-content: center; }

.btn-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0;
  padding: 0.8rem 1.4rem;
  border-radius: 4px;
  text-transform: none;
}

/* ==========================================
   FEATURES STRIP
   ========================================== */
.features {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0;
}

.features-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  flex: 1;
  min-width: 160px;
}
.feature-icon {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.feature-text strong {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 0.3rem;
  line-height: 1.4;
}
.feature-text p {
  font-size: 0.72rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ==========================================
   DESTINATIONS
   ========================================== */
.destinations {
  background: var(--light-bg);
  padding: 5rem 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.6rem;
}
.text-gold { color: var(--gold); }
.section-header p { font-size: 0.88rem; color: var(--muted); }

.destinations-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.8rem;
}

.dest-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3/4;
}
.dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.dest-card:hover img { transform: scale(1.06); }
.dest-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 55%);
}

.dest-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: 1rem 0.9rem;
  color: var(--white);
}
.dest-label strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}
.dest-label span { font-size: 0.65rem; opacity: 0.85; line-height: 1.4; }

.dest-card--highlight .dest-label strong { color: var(--gold); }
.dest-card--highlight::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 2px;
  height: 30%;
  background: var(--gold);
  z-index: 3;
}

.dest-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* ==========================================
   SPLIT SECTION
   ========================================== */
.split-section {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 2rem;
  gap: 4rem;
  align-items: center;
}

.split-left h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--dark);
  margin-bottom: 1.2rem;
}
.split-left p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.split-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.split-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.75rem;
  color: var(--text);
  line-height: 1.5;
  font-weight: 500;
}
.split-feature svg { flex-shrink: 0; margin-top: 2px; }

/* Quote Form */
.quote-form {
  background: var(--dark);
  border-radius: 12px;
  padding: 2.5rem;
  color: var(--white);
}

.quote-tag {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.6rem;
}
.quote-form h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.quote-form-header p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  margin-bottom: 0.7rem;
}
.form input,
.form textarea {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  padding: 0.75rem 1rem;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.82rem;
  width: 100%;
  outline: none;
  transition: border-color 0.2s;
}
.form input::placeholder,
.form textarea::placeholder { color: rgba(255,255,255,0.4); }
.form input:focus,
.form textarea:focus { border-color: var(--gold); }
.form-full { width: 100%; margin-bottom: 0.7rem; display: block; }
.form textarea { resize: vertical; }

.form-or {
  text-align: center;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  margin: 0.8rem 0;
  position: relative;
}
.form-or::before,
.form-or::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 35%;
  height: 1px;
  background: rgba(255,255,255,0.15);
}
.form-or::before { left: 0; }
.form-or::after { right: 0; }

/* ==========================================
   PLANE DECORATION
   ========================================== */
.plane-deco {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* ==========================================
   PARTNERS
   ========================================== */
.partners {
  background: var(--light-bg);
  padding: 3rem 2rem;
  border-top: 1px solid var(--border);
}

.partners-label {
  text-align: center;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2rem;
}

.partners-logos {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.55;
  filter: grayscale(100%);
  transition: all 0.3s;
}
.partner-logo:hover { opacity: 1; filter: grayscale(0%); }
.partner-logo img {
  height: 36px;
  max-width: 130px;
  object-fit: contain;
}

/* ==========================================
   VALUES
   ========================================== */
.values {
  background: var(--dark);
  padding: 2.5rem 2rem;
}

.values-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}

.value-item strong {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
}
.value-item p {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.5;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 3rem;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem 2.5rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem;
}

.footer-brand .logo { margin-bottom: 1.2rem; }
.footer-brand .logo-img { filter: brightness(0) invert(1); opacity: 0.9; mix-blend-mode: normal; }

.footer-social {
  display: flex;
  gap: 0.8rem;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: all 0.2s;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }

.footer-col h4 {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer-col p {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.5rem;
  line-height: 1.5;
}
.footer-col p a {
  color: inherit;
  text-decoration: none;
}
.footer-col p a:hover {
  color: var(--gold);
}
.footer-col p svg { flex-shrink: 0; color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.2rem 2rem;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.3);
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
  .destinations-grid { grid-template-columns: repeat(3, 1fr); }
  .split-section { grid-template-columns: 1fr; }
  .footer-container { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links, .nav-phone { display: none; }
  .nav-hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--white);
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border);
    gap: 1.2rem;
    z-index: 999;
  }
  .hero-content { margin-left: 1.5rem; margin-right: 1.5rem; }
  .features-container { flex-direction: column; gap: 1.5rem; }
  .destinations-grid { grid-template-columns: repeat(2, 1fr); }
  .destinations-grid .dest-card:last-child { grid-column: span 2; aspect-ratio: 2/1; }
  .form-row { grid-template-columns: 1fr; }
  .footer-container { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .plane-deco { display: none; }
}

@media (max-width: 480px) {
  .destinations-grid { grid-template-columns: 1fr; }
  .destinations-grid .dest-card:last-child { grid-column: span 1; aspect-ratio: 3/4; }
  .hero-ctas { flex-direction: column; }
  .split-features { grid-template-columns: 1fr; }
}
