/* ================================================================
   ExploreEden – Index Redesign CSS
   All new/overriding styles for navbar, popular, contact, why-us, footer
   ================================================================ */

/* ---- Reset / Base ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", "Josefin Sans", sans-serif;
  background: #edeee8;
  color: #2b3535;
  line-height: 1.65;
}

/* ---- Colour Tokens ---- */
:root {
  --teal-dark: #122a2a;
  --teal-mid: #1e5f5f;
  --teal-accent: #377e80;
  --teal-light: #59bdb1;
  --cream: #edeee8;
  --cream-dark: #d9dad3;
  --text-dark: #122a2a;
  --text-mid: #2b3535;
  --text-muted: #5a6b6b;
  --white: #fafafa;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 6px 24px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.18);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-pill: 50px;
}

/* ================================================================
   NAVBAR
   ================================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1100;
  background: var(--white);
  border-bottom: 1px solid var(--cream-dark);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 32px;
}

/* Brand */
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.nav-brand-name {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--teal-dark);
  letter-spacing: 0.5px;
}

/* Nav links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 4px;
  margin-left: auto;
}
.nav-links a {
  display: block;
  padding: 8px 14px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
  border-radius: var(--radius-sm);
  transition:
    background 0.2s,
    color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover {
  background: var(--cream);
  color: var(--teal-accent);
}

/* Auth buttons */
.nav-auth {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.btn-register,
.btn-login {
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s;
}
.btn-register {
  border: 1.5px solid var(--teal-accent);
  color: var(--teal-accent);
  background: transparent;
}
.btn-register:hover {
  background: var(--teal-accent);
  color: var(--white);
}
.btn-login {
  background: var(--teal-dark);
  color: var(--white);
}
.btn-login:hover {
  background: var(--teal-accent);
  transform: translateY(-1px);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--teal-dark);
  transition: all 0.3s;
  border-radius: 2px;
}
.nav-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--cream-dark);
  padding: 16px 24px 24px;
}
.mobile-menu.open {
  display: block;
}
.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu a {
  display: block;
  padding: 10px 14px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-mid);
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}
.mobile-menu a:hover {
  background: var(--cream);
  color: var(--teal-accent);
}

@media (max-width: 960px) {
  .nav-links,
  .nav-auth {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }
  .nav-container {
    gap: 0;
  }
}

/* ================================================================
   SLIDER (full-screen, new overlay style)
   ================================================================ */
.slider-container {
  position: relative;
  width: 100%;
  height: 90vh;
  min-height: 480px;
  overflow: hidden;
}
.slider {
  display: flex;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  animation: none !important; /* disable old CSS animation */
}
.slider.auto {
  animation: none !important;
}

.slide {
  min-width: 100%;
  height: 100%;
  position: relative;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(18, 42, 42, 0.75) 0%,
    rgba(18, 42, 42, 0.1) 70%
  );
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 80px;
  color: var(--white);
}
.slide-tag {
  display: inline-block;
  background: var(--teal-light);
  color: var(--teal-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
  width: fit-content;
}
.slide-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 14px;
}
.slide-sub {
  font-size: clamp(14px, 2vw, 20px);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 30px;
  max-width: 480px;
}
.slide-btn {
  display: inline-block;
  background: var(--teal-light);
  color: var(--teal-dark);
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.25s;
  width: fit-content;
}
.slide-btn:hover {
  background: var(--white);
  transform: translateY(-2px);
}

.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  z-index: 2;
  padding: 0 16px;
  pointer-events: none;
}
.nav button {
  pointer-events: all;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  transition: background 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav button:hover {
  background: var(--teal-accent);
}

.slide-dots {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}
.slide-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: all 0.25s;
  padding: 0;
}
.slide-dots button.active {
  width: 24px;
  border-radius: 4px;
  background: var(--white);
}

/* ================================================================
   QUICK LINKS BAR
   ================================================================ */
.quick-links {
  background: var(--white);
  display: flex;
  justify-content: center;
  gap: 4px;
  padding: 16px 24px;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--cream-dark);
  box-shadow: var(--shadow-sm);
}
.ql-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-mid);
  transition: all 0.25s;
  white-space: nowrap;
}
.ql-item i {
  font-size: 16px;
  color: var(--teal-accent);
}
.ql-item:hover {
  background: var(--teal-accent);
  color: var(--white);
}
.ql-item:hover i {
  color: var(--white);
}

/* ================================================================
   SHARED SECTION HEADER
   ================================================================ */
.section-header {
  text-align: center;
  padding: 20px 20px 32px;
}
.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
  color: var(--teal-dark);
  margin-bottom: 10px;
}
.section-sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* ================================================================
   OFFERS SECTION
   ================================================================ */
.offers-section {
  padding: 60px 40px;
  max-width: 1280px;
  margin: 0 auto;
}

.offers-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  border-bottom: 2px solid var(--cream-dark);
  padding-bottom: 14px;
}
.offer-tab {
  background: none;
  border: none;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  border-radius: var(--radius-pill);
  transition: all 0.2s;
}
.offer-tab:hover,
.offer-tab.active {
  background: var(--teal-accent);
  color: var(--white);
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}
.offer-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.offer-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.offer-img-wrap {
  position: relative;
  overflow: hidden;
}
.offer-img-wrap img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.offer-card:hover .offer-img-wrap img {
  transform: scale(1.05);
}
.offer-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--teal-dark);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
}
.offer-body {
  padding: 22px;
}
.offer-body h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--teal-dark);
  margin-bottom: 8px;
}
.offer-body p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 18px;
  line-height: 1.5;
}
.offer-btn {
  display: inline-block;
  padding: 9px 22px;
  background: var(--teal-accent);
  color: var(--white);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.2s;
}
.offer-btn:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
}

/* ================================================================
   DESTINATIONS SECTION
   ================================================================ */
.destinations-section {
  padding: 60px 40px;
  background: var(--cream);
  max-width: 1280px;
  margin: 0 auto;
}
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}
.dest-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.dest-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.dest-img-wrap {
  position: relative;
}
.dest-img-wrap img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.dest-card:hover .dest-img-wrap img {
  transform: scale(1.06);
}
.dest-rank {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--teal-dark);
  color: var(--white);
  font-family: "Playfair Display", serif;
  font-size: 16px;
  font-weight: 700;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dest-body {
  padding: 22px;
}
.dest-body h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--teal-dark);
  margin-bottom: 6px;
}
.dest-tag {
  font-size: 12px;
  font-weight: 600;
  color: var(--teal-accent);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 10px;
}
.dest-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 18px;
}
.dest-actions {
  display: flex;
  gap: 10px;
}
.btn-explore,
.btn-plan {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.btn-explore {
  background: var(--teal-accent);
  color: var(--white);
}
.btn-explore:hover {
  background: var(--teal-dark);
}
.btn-plan {
  background: var(--cream);
  color: var(--teal-dark);
  border: 1.5px solid var(--teal-accent);
}
.btn-plan:hover {
  background: var(--teal-accent);
  color: var(--white);
}

/* ================================================================
   PLAN YOUR TRIP SECTION
   ================================================================ */
.plan-section {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  padding: 100px 20px;
}
.plan-overlay {
  background: linear-gradient(
    135deg,
    rgba(18, 42, 42, 0.85),
    rgba(55, 126, 128, 0.6)
  );
  max-width: 900px;
  margin: 0 auto;
  border-radius: 20px;
  padding: 60px 50px;
  text-align: center;
  color: var(--white);
  backdrop-filter: blur(4px);
}
.plan-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 16px;
}
.plan-overlay h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  margin-bottom: 16px;
}
.plan-overlay > .plan-content > p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
}
.plan-features {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 32px;
  margin-bottom: 36px;
}
.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
}
.plan-features i {
  color: var(--teal-light);
  font-size: 18px;
}
.plan-btn {
  display: inline-block;
  background: var(--teal-light);
  color: var(--teal-dark);
  padding: 16px 40px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.25s;
}
.plan-btn:hover {
  background: var(--white);
  transform: translateY(-2px);
}

/* ================================================================
   POPULAR WITH TRAVELLERS
   ================================================================ */
.popular-section {
  padding: 72px 20px;
  background: var(--white);
}
.popular-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.popular-inner .section-title {
  text-align: center;
  margin-bottom: 8px;
}
.popular-inner .section-sub {
  text-align: center;
  margin-bottom: 36px;
}

.popular-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--cream-dark);
}
.pop-tab {
  background: none;
  border: 1.5px solid var(--cream-dark);
  color: var(--text-mid);
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}
.pop-tab:hover,
.pop-tab.active {
  background: var(--teal-accent);
  border-color: var(--teal-accent);
  color: var(--white);
}

.popular-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 20px;
}
.pop-col {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-right: 1px solid var(--cream-dark);
  padding: 8px 0;
}
.pop-col:last-child {
  border-right: none;
}
.pop-col a {
  display: block;
  padding: 10px 20px;
  text-decoration: none;
  font-size: 14px;
  color: var(--teal-accent);
  font-weight: 500;
  transition:
    background 0.2s,
    color 0.2s;
  border-bottom: 1px solid var(--cream-dark);
}
.pop-col a:last-child {
  border-bottom: none;
}
.pop-col a:hover {
  background: var(--teal-accent);
  color: var(--white);
}

.popular-show-more {
  margin: 20px 0 10px;
}
.popular-show-more a {
  font-size: 14px;
  font-weight: 600;
  color: var(--teal-accent);
  text-decoration: none;
  transition: color 0.2s;
}
.popular-show-more a:hover {
  color: var(--teal-dark);
  text-decoration: underline;
}

.popular-breadcrumb {
  padding: 16px 0 0;
  border-top: 1px solid var(--cream-dark);
  font-size: 13px;
  color: var(--text-muted);
  line-height: 2;
}
.popular-breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
}
.popular-breadcrumb a:hover {
  color: var(--teal-accent);
  text-decoration: underline;
}

@media (max-width: 900px) {
  .popular-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pop-col {
    border-right: 1px solid var(--cream-dark);
  }
  .pop-col:nth-child(even) {
    border-right: none;
  }
}
@media (max-width: 500px) {
  .popular-grid {
    grid-template-columns: 1fr;
  }
  .pop-col {
    border-right: none;
  }
}

/* ================================================================
   REVIEWS
   ================================================================ */
.reviews-section {
  padding: 72px 40px;
  background: var(--cream);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.review-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.review-header img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--teal-light);
  flex-shrink: 0;
}
.review-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--teal-dark);
  display: block;
  margin-bottom: 4px;
}
.stars {
  color: #f5a623;
  font-size: 15px;
  letter-spacing: 2px;
}
.review-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  font-style: italic;
}

/* ================================================================
   CONTACT US
   ================================================================ */
.contact-section {
  padding: 72px 20px;
  background: var(--white);
}
.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal-light);
  background: rgba(89, 189, 177, 0.12);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}
.contact-left h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  color: var(--teal-dark);
  margin-bottom: 16px;
}
.contact-left > p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.7;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 22px;
  background: var(--cream);
  border-radius: var(--radius);
  border-left: 4px solid var(--teal-accent);
  transition: box-shadow 0.25s;
}
.contact-info-card:hover {
  box-shadow: var(--shadow-sm);
}
.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--teal-accent);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-info-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--teal-dark);
  margin-bottom: 4px;
}
.contact-info-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}
.contact-info-card a {
  color: var(--teal-accent);
  text-decoration: none;
}
.contact-info-card a:hover {
  text-decoration: underline;
}

.contact-right {
  background: var(--cream);
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.contact-right h3 {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--teal-dark);
  margin-bottom: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 18px;
}
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
}
.form-group input,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: inherit;
  color: var(--text-dark);
  background: var(--white);
  outline: none;
  transition: border 0.2s;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--teal-accent);
}
.contact-submit {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--teal-dark);
  color: var(--white);
  border: none;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
  width: 100%;
  justify-content: center;
}
.contact-submit:hover {
  background: var(--teal-accent);
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ================================================================
   WHY US – 3 CARDS
   ================================================================ */
.whyus-section {
  padding: 72px 40px;
  background: var(--teal-dark);
}
.whyus-section .section-title {
  color: var(--white);
}
.whyus-section .section-sub {
  color: rgba(255, 255, 255, 0.65);
}

.whyus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}
.whyus-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.3s;
  position: relative;
}
.whyus-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-6px);
}
.whyus-card.featured {
  background: var(--teal-accent);
  border-color: var(--teal-accent);
  box-shadow: 0 20px 50px rgba(55, 126, 128, 0.4);
}
.whyus-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin: 0 auto 24px;
}
.whyus-card.featured .whyus-icon {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}
.whyus-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}
.whyus-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
  margin-bottom: 24px;
}
.whyus-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--teal-light);
  text-decoration: none;
  transition: color 0.2s;
}
.whyus-card.featured .whyus-link {
  color: var(--white);
}
.whyus-link:hover {
  color: var(--white);
}

@media (max-width: 860px) {
  .whyus-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
}

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer {
  background: #0b1f1f;
  color: rgba(255, 255, 255, 0.75);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 40px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 40px 48px;
}
.footer-logo {
  width: 50px;
  height: 50px;
  object-fit: contain;
  margin-bottom: 12px;
}
.footer-tagline {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}
.footer-desc {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.6);
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.25s;
}
.footer-social a:hover {
  background: var(--teal-accent);
  border-color: var(--teal-accent);
  color: var(--white);
}

.footer-links-group h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-links-group ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links-group a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links-group a:hover {
  color: var(--teal-light);
}

.footer-newsletter h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--white);
  margin-bottom: 12px;
}
.footer-newsletter > p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 18px;
  line-height: 1.6;
}
.newsletter-form {
  display: flex;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  margin-bottom: 10px;
}
.newsletter-form input {
  flex: 1;
  padding: 11px 16px;
  background: rgba(255, 255, 255, 0.07);
  border: none;
  color: var(--white);
  font-size: 14px;
  font-family: inherit;
  outline: none;
}
.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.newsletter-form button {
  padding: 11px 18px;
  background: var(--teal-accent);
  color: var(--white);
  border: none;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.newsletter-form button:hover {
  background: var(--teal-light);
  color: var(--teal-dark);
}
.newsletter-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}
.footer-bottom p .fa-heart {
  color: #e74c3c;
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-bottom-links a:hover {
  color: var(--teal-light);
}

@media (max-width: 1100px) {
  .footer-top {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}
@media (max-width: 680px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    padding: 40px 24px 32px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .footer-newsletter {
    grid-column: 1 / -1;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    padding: 20px 24px;
  }
}

/* ================================================================
   BACK-TO-TOP BUTTON
   ================================================================ */
#myBtn {
  display: none;
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  width: 48px;
  height: 48px;
  background: var(--teal-accent);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition:
    background 0.25s,
    transform 0.25s;
}
#myBtn:hover {
  background: var(--teal-dark);
  transform: translateY(-3px);
}

/* ================================================================
   RESPONSIVE CLEANUP
   ================================================================ */
@media (max-width: 768px) {
  .offers-section,
  .destinations-section,
  .reviews-section,
  .whyus-section {
    padding: 48px 20px;
  }
  .slide-overlay {
    padding: 0 30px;
  }
  .plan-overlay {
    padding: 40px 28px;
  }
}
