* {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

:root {
  --orange: #5421eb;
  --orange-dark: #10064e;
  --orange-light: #FDF0EB;
  --sand: #F5EED8;
  --deep: #1A1208;
  --text: #3D2E1E;
  --muted: #8A7A6A;
  --white: #FFFFFF;
  --card-bg: #FFFDF9;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden
}

h1,
h2,
h3,
h4 {
  font-family: 'Cormorant Garamond', serif
}

nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(232, 87, 42, 0.1);
  padding: 0 2rem
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: -0.5px
}

.logo span {
  color: var(--deep)
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
  list-style: none
}

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 400;
  transition: color 0.2s;
  letter-spacing: 0.3px
}

.nav-links a:hover {
  color: var(--orange)
}

.nav-cta {
  background: var(--orange);
  color: var(--white) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 4px;
  font-weight: 500 !important
}

.nav-cta:hover {
  background: var(--orange-dark) !important;
  color: var(--white) !important
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: 0.3s;
  display: block
}

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #0D1117
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0D1117 0%, #1a2035 40%, #0f1a0a 100%)
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: radial-gradient(circle at 2px 2px, white 1px, transparent 0);
  background-size: 40px 40px
}

.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1476514525535-07fb3b4ae5f1?w=1600&q=80') center/cover;
  opacity: 0.25
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  max-width: 800px
}

.hero-badge {
  display: inline-block;
  background: rgba(51, 4, 87, 0.539);
  border: 1px solid rgba(36, 4, 80, 0.555);
  color: #77bcde;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 1.5rem
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1.5rem;
  font-weight: 400
}

.hero h1 em {
  font-style: italic;
  color: #7096f0
}

.hero p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 2.5rem
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  padding: 0.85rem 2rem;
  border: none;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  display: inline-block
}

.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-1px)
}

.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 0.85rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  display: inline-block
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.05)
}

.hero-stats {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 3rem;
  z-index: 2
}

.stat {
  text-align: center
}

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--white);
  font-weight: 600;
  line-height: 1
}

.stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 0.25rem
}

.scroll-indicator {
  position: absolute;
  bottom: 1.5rem;
  right: 2rem;
  z-index: 2;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.7rem;
  letter-spacing: 2px;
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  gap: 0.5rem
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2)
}

.search-bar {
  background: var(--white);
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06)
}

.search-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem
}

.search-form {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr 1fr auto;
  gap: 0;
  background: var(--white);
  border: 1.5px solid rgba(38, 118, 238, 0.25);
  border-radius: 8px;
  overflow: hidden
}

.search-field {
  padding: 1rem 1.25rem;
  border-right: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.2rem
}

.search-field:last-of-type {
  border-right: none
}

.search-label {
  font-size: 0.65rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500
}

.search-field input,
.search-field select {
  border: none;
  outline: none;
  font-size: 0.95rem;
  color: var(--text);
  background: transparent;
  font-family: 'DM Sans', sans-serif;
  width: 100%
}

.search-field select {
  cursor: pointer;
  appearance: none
}

.search-btn {
  background: var(--orange);
  color: var(--white);
  border: none;
  padding: 0 2rem;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  transition: background 0.2s;
  font-family: 'DM Sans', sans-serif;
  display: flex;
  align-items: center;
  gap: 0.5rem
}

.search-btn:hover {
  background: var(--orange-dark)
}

section {
  padding: 5rem 2rem
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto
}

.section-label {
  font-size: 0.7rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 500;
  margin-bottom: 0.75rem
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--deep);
  line-height: 1.15;
  margin-bottom: 1rem
}

.section-sub {
  color: var(--muted);
  line-height: 1.7;
  max-width: 500px
}

.services {
  background: var(--sand)
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem
}

.service-card {
  background: var(--white);
  padding: 2rem 1.5rem;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.25s;
  cursor: pointer;
  position: relative;
  overflow: hidden
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.25s;
  transform-origin: left
}

.service-card:hover::before {
  transform: scaleX(1)
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(232, 87, 42, 0.1)
}

.service-icon {
  width: 48px;
  height: 48px;
  background: var(--orange-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--orange);
  font-size: 1.2rem
}

.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--deep)
}

.service-card p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6
}

/* =========================
   DESTINATIONS SECTION
========================= */

.destinations {
  padding: 100px 5%;
  background: var(--white, #f7f9fc);
}

/* =========================
   HEADER
========================= */

.dest-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.section-label {
  color: var(--orange, #0d6efd);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  margin-top: 10px;
  color: var(--deep, #111);
}

/* =========================
   TABS
========================= */

.dest-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  background: var(--sand, #eef2f7);
  border-radius: 50px;
  padding: 6px;
}

.dest-tab {
  border: none;
  padding: 12px 24px;
  border-radius: 50px;
  background: transparent;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted, #666);
  transition: all 0.3s ease;
}

.dest-tab:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.8);
}

.dest-tab.active {
  background: var(--orange, #0d6efd);
  color: var(--white, #fff);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

/* =========================
   GRID
========================= */

.dest-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 25px;
}

/* =========================
   CARD
========================= */

.dest-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  transition: 0.4s ease;
}

.dest-card:first-child {
  grid-row: span 2;
}

.dest-card:hover {
  transform: translateY(-5px);
}

.dest-img,
.dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.dest-card:hover .dest-img,
.dest-card:hover img {
  transform: scale(1.08);
}

/* Overlay */

.dest-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.8),
      rgba(0, 0, 0, 0.15));
  z-index: 1;
}

/* =========================
   CONTENT
========================= */

.dest-info,
.dest-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 25px;
  z-index: 2;
  color: white;
}

.dest-info h3,
.dest-overlay h3 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 12px;
  color: white;
}

.dest-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.dest-country {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  letter-spacing: 0.5px;
}

.dest-price {
  background: var(--orange, #ff7b00);
  color: white;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* =========================
   PLACEHOLDER
========================= */

.dest-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: white;
}

/* =========================
   CUSTOM CARD COLORS
========================= */

.dest-card.card-maroc {
  background: linear-gradient(135deg, #C8864A, #8B5E3C);
}

.dest-card.card-turquie {
  background: linear-gradient(135deg, #2E86AB, #1B4F72);
}

.dest-card.card-italie {
  background: linear-gradient(135deg, #52C41A, #237804);
}

.dest-card.card-france {
  background: linear-gradient(135deg, #722ED1, #4B0082);
}

.dest-card.card-egypte {
  background: linear-gradient(135deg, #D4A017, #8B6914);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
  .dest-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .dest-card:first-child {
    grid-row: auto;
    grid-column: span 2;
    height: 500px;
  }
}

@media (max-width: 768px) {
  .destinations {
    padding: 70px 20px;
  }

  .section-title {
    font-size: 32px;
  }

  .dest-grid {
    grid-template-columns: 1fr;
  }

  .dest-card:first-child {
    grid-column: span 1;
    height: 420px;
  }

  .dest-card {
    height: 350px;
  }

  .dest-info h3,
  .dest-overlay h3 {
    font-size: 24px;
  }
}

.featured {
  background: var(--deep);
  color: var(--white)
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem
}

.offer-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.25s;
  cursor: pointer
}

.offer-card:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-2px)
}

.offer-img {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative
}

.offer-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--orange);
  color: var(--white);
  padding: 0.2rem 0.6rem;
  border-radius: 3px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase
}

.offer-body {
  padding: 1.5rem
}

.offer-body h3 {
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 0.5rem
}

.offer-body p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  margin-bottom: 1.25rem
}

.offer-footer {
  display: flex;
  align-items: center;
  justify-content: space-between
}

.offer-price {
  color: var(--white)
}

.offer-price .from {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.5px
}

.offer-price .amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 600
}

.offer-price .currency {
  font-size: 0.85rem;
  margin-left: 2px;
  color: rgba(255, 255, 255, 0.5)
}

.offer-details {
  display: flex;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.78rem;
  margin-bottom: 1rem
}

.offer-details span {
  display: flex;
  align-items: center;
  gap: 0.3rem
}

.btn-small {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.82rem;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'DM Sans', sans-serif
}

.btn-small:hover {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange)
}

.why {
  background: var(--orange-light)
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-top: 3rem
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 2rem
}

.why-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start
}

.why-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  color: rgba(232, 87, 42, 0.2);
  font-weight: 600;
  line-height: 1;
  min-width: 40px
}

.why-text h4 {
  font-size: 1rem;
  color: var(--deep);
  margin-bottom: 0.35rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500
}

.why-text p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6
}

.why-visual {
  background: var(--white);
  border-radius: 12px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06)
}

.testimonial-card {
  background: var(--sand);
  border-radius: 8px;
  padding: 1.5rem
}

.stars {
  color: var(--orange);
  font-size: 0.8rem;
  margin-bottom: 0.75rem
}

.testimonial-card blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--deep);
  line-height: 1.5;
  margin-bottom: 1rem
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem
}

.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 500
}

.author-info span {
  display: block;
  font-size: 0.8rem;
  color: var(--muted)
}

.author-info strong {
  font-size: 0.9rem;
  color: var(--deep);
  font-weight: 500
}

.why-stats-row {
  display: flex;
  gap: 1rem
}

.mini-stat {
  flex: 1;
  background: var(--orange);
  color: var(--white);
  padding: 1rem;
  border-radius: 8px;
  text-align: center
}

.mini-stat .n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1
}

.mini-stat .l {
  font-size: 0.7rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.7;
  margin-top: 0.2rem
}

/* =========================
   BLOG
========================= */

.blog {
  padding: 100px 5%;
  background: #f8fafc;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

/* =========================
   CARD
========================= */

.blog-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  transition: 0.4s;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
}

.blog-card:hover {
  transform: translateY(-8px);
}

.blog-thumb {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.blog-card:hover .blog-thumb img {
  transform: scale(1.08);
}

/* CATEGORY */

.blog-category {
  position: absolute;
  top: 20px;
  left: 20px;
  background: white;
  color: #111;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
}

/* BODY */

.blog-body {
  padding: 28px;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  color: #777;
  font-size: 14px;
  margin-bottom: 18px;
}

.blog-meta i {
  margin-right: 6px;
}

.blog-body h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #111;
}

.blog-body p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 25px;
}

/* BUTTON */

.blog-link {
  border: none;
  background: #0d6efd;
  color: white;
  padding: 14px 22px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

.blog-link:hover {
  transform: translateY(-2px);
  background: #0056d6;
}

/* =========================
   POPUP
========================= */

.article-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 9999;
  /* IMPORTANT */
  overflow-y: auto;
}

.article-popup.active {
  display: flex;
}

.popup-box {
  background: white;
  width: 100%;
  max-width: 850px;
  /* IMPORTANT */
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 28px;
  padding: 40px;
  position: relative;
  animation: popupShow 0.3s ease;
}

@keyframes popupShow {
  from {
    transform: translateY(40px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.popup-box::-webkit-scrollbar {
  width: 8px;
}

.popup-box::-webkit-scrollbar-thumb {
  background: #d0d7e2;
  border-radius: 50px;
}

/* ========================= ANIMATION ========================= */

@keyframes popupShow {

  from {
    transform: translateY(40px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }

}

@media (max-width: 768px) {

  .popup-box {
    padding: 25px;
    max-height: 95vh;
  }

}

/* CLOSE */

.popup-close {
  position: absolute;
  top: 20px;
  right: 20px;
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #f1f1f1;
  cursor: pointer;
  font-size: 22px;
}

/* HEADER */

.popup-badge {
  display: inline-block;
  background: #e8f0ff;
  color: #0d6efd;
  padding: 10px 18px;
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 20px;
}

.popup-header h2 {
  font-size: 34px;
  margin-bottom: 15px;
}

.popup-header p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 35px;
}

/* CONTENT */

.popup-content {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.popup-item {
  display: flex;
  gap: 20px;
  background: #f8fafc;
  padding: 24px;
  border-radius: 20px;
}

.popup-icon {
  min-width: 65px;
  height: 65px;
  background: white;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
}

.popup-item h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.popup-item p {
  color: #666;
  line-height: 1.7;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {

  .popup-box {
    padding: 25px;
  }

  .popup-header h2 {
    font-size: 28px;
  }

  .popup-item {
    flex-direction: column;
  }

}

/* =========================
   FEATURED SECTION
========================= */

.featured {
  padding: 100px 5%;
  background:
    radial-gradient(circle at top left, rgba(240, 160, 112, 0.08), transparent),
    #0f1722;
  position: relative;
  overflow: hidden;
}

.section-inner {
  max-width: 1400px;
  margin: auto;
}

/* =========================
   HEADER
========================= */

.featured-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 60px;
}

.featured-label {
  color: #f0a070;
}

.featured-title {
  color: white;
  margin-bottom: 0;
}

.featured-link {
  color: white;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 14px 22px;
  border-radius: 50px;
  transition: 0.3s;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(10px);
}

.featured-link:hover {
  background: #f0a070;
  border-color: #f0a070;
  transform: translateY(-3px);
}

/* =========================
   GRID
========================= */

.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
}

/* =========================
   CARD
========================= */

.offer-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  overflow: hidden;
  transition: 0.4s ease;
  backdrop-filter: blur(10px);
  position: relative;
}

.offer-card:hover {
  transform: translateY(-8px);
  border-color: rgba(240, 160, 112, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

/* =========================
   IMAGE
========================= */

.offer-img {
  height: 250px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.offer-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.6),
      transparent);
}

.offer-icon {
  font-size: 80px;
  position: relative;
  z-index: 2;
}

.offer-top {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  justify-content: flex-start;
  z-index: 3;
}

.offer-badge {
  background: #f0a070;
  color: white;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 50px;
  letter-spacing: 0.5px;
}

.offer-badge.best {
  background: #ff4d4f;
}

.offer-badge.new {
  background: #00b894;
}

/* =========================
   BODY
========================= */

.offer-body {
  padding: 28px;
  color: white;
}

.offer-location {
  color: #f0a070;
  font-size: 14px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.offer-body h3 {
  font-size: 30px;
  margin-bottom: 18px;
  font-weight: 700;
}

.offer-details {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 20px;
}

.offer-details span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.offer-details .fa-star {
  color: #f0a070;
}

.offer-body p {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  font-size: 15px;
  margin-bottom: 30px;
}

/* =========================
   FOOTER
========================= */

.offer-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.offer-price .from {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  margin-bottom: 4px;
}

.offer-price .amount {
  font-size: 36px;
  font-weight: 800;
  color: white;
}

.offer-price .currency {
  color: #f0a070;
  margin-left: 5px;
  font-weight: 600;
}

.btn-book {
  border: none;
  background: #f0a070;
  color: white;
  padding: 14px 26px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 700;
  transition: 0.3s;
  font-size: 15px;
}

.btn-book:hover {
  transform: translateY(-3px);
  background: #ffb182;
  box-shadow: 0 10px 25px rgba(240, 160, 112, 0.35);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {

  .featured {
    padding: 70px 20px;
  }

  .featured-title {
    font-size: 34px;
  }

  .offer-body h3 {
    font-size: 24px;
  }

  .offer-price .amount {
    font-size: 28px;
  }

  .featured-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   OFFER IMAGE
========================= */

.offer-img {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.offer-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.offer-card:hover .offer-img img {
  transform: scale(1.08);
}

.offer-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.7),
      rgba(0, 0, 0, 0.1));
}

/* =========================
   BOOKING POPUP
========================= */

.booking-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 9999;
}

.booking-popup.active {
  display: flex;
}

.booking-box {
  background: white;
  width: 100%;
  max-width: 750px;
  border-radius: 30px;
  padding: 40px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

/* CLOSE */

.booking-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: #f1f1f1;
  cursor: pointer;
  font-size: 22px;
}

/* HEADER */

.booking-badge {
  display: inline-block;
  background: #e8f0ff;
  color: #0d6efd;
  padding: 10px 18px;
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 20px;
}

.booking-header h2 {
  font-size: 34px;
  margin-bottom: 15px;
}

.booking-header p {
  color: #666;
  margin-bottom: 35px;
}

/* FORM */

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 10px;
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  border: 1px solid #ddd;
  border-radius: 16px;
  padding: 16px;
  font-size: 15px;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #0d6efd;
}

.submit-booking {
  border: none;
  background: #0d6efd;
  color: white;
  padding: 18px;
  border-radius: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.submit-booking:hover {
  background: #0056d6;
}

/* MOBILE */

@media (max-width: 768px) {

  .booking-box {
    padding: 25px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

}

/* =========================
   NEWSLETTER
========================= */

.newsletter {
  padding: 100px 5%;
  background:
    linear-gradient(135deg,
      #0d1b2a,
      #1b263b);
}

.newsletter-inner {
  max-width: 850px;
  margin: auto;
  text-align: center;
  color: white;
}

.newsletter-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  margin-bottom: 25px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.newsletter h2 {
  font-size: 52px;
  margin-bottom: 20px;
  line-height: 1.1;
}

.newsletter p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 40px;
}

/* =========================
   FORM
========================= */

.newsletter-form {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.08);
  padding: 12px;
  border-radius: 24px;
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.newsletter-form input {
  flex: 1;
  border: none;
  background: transparent;
  color: white;
  font-size: 16px;
  padding: 18px;
  outline: none;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
  border: none;
  background: white;
  color: #111;
  padding: 18px 28px;
  border-radius: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s ease;
  white-space: nowrap;
}

.newsletter-form button:hover {
  transform: translateY(-2px);
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

  .newsletter h2 {
    font-size: 38px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form button {
    width: 100%;
  }

}

footer {
  background: var(--deep);
  color: rgba(255, 255, 255, 0.6);
  padding: 4rem 2rem 2rem
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem
}

.footer-brand .logo {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  display: block
}

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.45);
  max-width: 280px;
  margin-bottom: 1.5rem
}

.social-links {
  display: flex;
  gap: 0.75rem
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  transition: all 0.2s;
  cursor: pointer;
  text-decoration: none
}

.social-link:hover {
  border-color: var(--orange);
  color: var(--orange)
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500
}

.footer-col ul {
  list-style: none
}

.footer-col ul li {
  margin-bottom: 0.6rem
}

.footer-col ul a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s
}

.footer-col ul a:hover {
  color: var(--orange)
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem
}

.footer-bottom p {
  font-size: 0.8rem
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none
}

.footer-bottom a:hover {
  color: var(--orange)
}

#mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding: 1.5rem 2rem;
  z-index: 998;
  flex-direction: column;
  gap: 1rem
}

#mobile-menu a {
  color: var(--text);
  text-decoration: none;
  font-size: 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05)
}

#mobile-menu.open {
  display: flex
}

.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  backdrop-filter: blur(4px)
}

.modal-overlay.open {
  display: flex
}

.modal {
  background: var(--white);
  border-radius: 12px;
  max-width: 480px;
  width: 100%;
  padding: 2.5rem;
  position: relative
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--muted)
}

.modal h2 {
  font-size: 1.8rem;
  color: var(--deep);
  margin-bottom: 0.5rem
}

.modal p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem
}

.form-group {
  margin-bottom: 1rem
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 0.35rem;
  letter-spacing: 0.5px
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
  color: var(--text);
  background: var(--white)
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--orange)
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem
}

.submit-btn {
  width: 100%;
  background: var(--orange);
  color: var(--white);
  border: none;
  padding: 0.9rem;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
  font-family: 'DM Sans', sans-serif;
  margin-top: 0.5rem
}

.submit-btn:hover {
  background: var(--orange-dark)
}

.modal-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 1.5rem;
  border-radius: 6px;
  background: var(--sand);
  padding: 0.25rem;
  overflow: hidden
}

.modal-tab {
  flex: 1;
  border: none;
  background: transparent;
  padding: 0.6rem;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  border-radius: 4px;
  transition: all 0.2s;
  color: var(--muted)
}

.modal-tab.active {
  background: var(--white);
  color: var(--deep);
  font-weight: 500
}

@media(max-width:768px) {
  .nav-links {
    display: none
  }

  .hamburger {
    display: flex
  }

  .search-form {
    grid-template-columns: 1fr
  }

  .search-field {
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08)
  }

  .dest-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto
  }

  .dest-card:first-child {
    grid-row: span 1;
    grid-column: span 2
  }

  .why-grid {
    grid-template-columns: 1fr
  }

  .footer-top {
    grid-template-columns: 1fr 1fr
  }

  .hero-stats {
    gap: 1.5rem
  }

  #contact .section-inner>div {
    grid-template-columns: 1fr !important
  }
}

/* =========================
   MODAL LOGIN / REGISTER
========================= */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 10, 20, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: 0.35s ease;
  padding: 1rem;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  width: 100%;
  max-width: 520px;
  background: #fff;
  border-radius: 24px;
  padding: 2rem;
  position: relative;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.25);
  animation: modalAnim 0.35s ease;
  max-height: 90vh;
  overflow-y: auto;
}

@keyframes modalAnim {
  from {
    transform: translateY(30px) scale(0.96);
    opacity: 0;
  }

  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

.modal h2 {
  font-size: 2rem;
  margin-bottom: 0.4rem;
  color: #0d2137;
}

.modal p {
  color: #6b7280;
  margin-bottom: 1.5rem;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: #f3f4f6;
  cursor: pointer;
  font-size: 1rem;
  transition: 0.3s;
}

.modal-close:hover {
  background: #e8572a;
  color: white;
  transform: rotate(90deg);
}

.modal-tabs {
  display: flex;
  background: #f4f4f5;
  border-radius: 14px;
  padding: 5px;
  margin-bottom: 2rem;
}

.modal-tab {
  flex: 1;
  border: none;
  background: transparent;
  padding: 0.9rem;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

.modal-tab.active {
  background: white;
  color: #e8572a;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: #0d2137;
}

.form-group input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid #d1d5db;
  outline: none;
  transition: 0.3s;
  font-size: 0.95rem;
}

.form-group input:focus {
  border-color: #e8572a;
  box-shadow: 0 0 0 4px rgba(232, 87, 42, 0.15);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.submit-btn {
  width: 100%;
  border: none;
  padding: 15px;
  border-radius: 16px;
  background: linear-gradient(135deg, #e8572a, #ff8b4d);
  color: white;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: 0.35s;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(232, 87, 42, 0.3);
}

/* MOBILE */
@media (max-width: 768px) {
  .modal {
    padding: 1.5rem;
    border-radius: 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .modal h2 {
    font-size: 1.6rem;
  }
}

.nav-account {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logged-user {
  background: rgba(232, 87, 42, 0.12);
  padding: 10px 16px;
  border-radius: 14px;
  color: var(--orange);
  font-weight: 600;
}

.logout-btn {
  color: #e63939;
  font-size: 0.9rem;
  font-weight: 600;
  transition: 0.3s;
}

.logout-btn:hover {
  color: #b91c1c;
}