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

:root {
  --primary: #2c5f7a;
  --primary-dark: #1a3d50;
  --primary-light: #4a85a3;
  --accent: #c9a96e;
  --accent-light: #e8d5b0;
  --cream: #f8f4ef;
  --cream-dark: #ede7de;
  --dark: #1a1a1a;
  --text: #333;
  --text-light: #666;
  --white: #fff;
  --font-display: "Playfair Display", serif;
  --font-body: "DM Sans", sans-serif;
  --shadow: 0 4px 24px rgba(44, 95, 122, 0.1);
  --shadow-lg: 0 12px 48px rgba(44, 95, 122, 0.18);
  --radius: 12px;
  --radius-lg: 20px;
}

html {
  scroll-behavior: smooth;
}

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

/* ─── NAVBAR ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8%;
  height: 90px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(44, 95, 122, 0.08);
  transition: box-shadow 0.3s;
}
nav.scrolled {
  box-shadow: var(--shadow);
}
 .license-strip {
        position: fixed;
        top: 90px; 
        left: 0;
        right: 0;
        z-index: 998;
        background: #0f1b22;
        color: rgba(255,255,255,0.72);
        font-family: 'DM Sans', sans-serif;
        font-size: 0.7rem;
        font-weight: 500;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.6rem;
        padding: 0.38rem 1rem;
        border-bottom: 1px solid rgba(255,255,255,0.06);
        white-space: nowrap;
        overflow: hidden;
      }

      .license-strip .license-dot {
        opacity: 0.35;
        font-size: 0.85rem;
      }

      .license-strip .license-num {
        color: #e8b84b;
        font-weight: 700;
        letter-spacing: 0.1em;
      }

      .license-strip i {
        color: #e8b84b;
        font-size: 0.65rem;
      }

      #hero {
        padding-top: calc(72px + 30px); 
      }

      @media (max-width: 600px) {
        .license-strip {
          font-size: 0.58rem;
          gap: 0.4rem;
          padding: 0.32rem 0.5rem;
        }
        .license-strip span:last-child,
        .license-strip .license-dot:last-of-type {
          display: none;
        }
      }

.nav-logo > img {
  width: 150px;
  text-decoration: none;
  letter-spacing: -0.5px;
}
.nav-logo span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--primary);
}

.nav-dropdown {
  position: relative;
}
.nav-dropdown > a::after {
  content: " ▾";
  font-size: 0.7rem;
}
/* Bridge gap so mouse can travel from link to menu without it closing */
.nav-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 12px;
}
.dropdown-menu {
  display: block;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: calc(100% + 12px);
   z-index: 1002;
  left: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 200px;
  padding: 8px 0;
  border: 1px solid rgba(44, 95, 122, 0.08);
  transform: translateY(6px);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease,
    visibility 0s 0.18s;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease,
    visibility 0s 0s;
}
.dropdown-menu a {
  display: block;
  padding: 10px 18px;
  font-size: 0.875rem;
  color: var(--text);
}
.dropdown-menu a:hover {
  background: var(--cream);
  color: var(--primary);
}
/* Mobile dropdown inside hamburger menu */
.nav-links.mobile-open {
  display: flex !important;
}
.nav-links.mobile-open .nav-dropdown .dropdown-menu {
  display: none;
  position: static;
  box-shadow: none;
  border: none;
  background: var(--cream);
  border-radius: var(--radius);
  padding: 4px 0 4px 1rem;
  margin-top: 4px;
  transform: none;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: none;
}

.nav-contact {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-light);
}
.nav-contact a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.nav-cta {
  background: var(--primary);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 500 !important;
  font-size: 0.875rem !important;
  transition:
    background 0.2s,
    transform 0.15s !important;
}
.nav-cta:hover {
  background: var(--primary-dark) !important;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: 0.3s;
}

/* ─── HERO ─── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-bg {
  overflow: hidden;
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      135deg,
      rgba(26, 61, 80, 0.4),
      rgba(44, 95, 122, 0.3),
      rgba(74, 133, 163, 0.2)
    ),
    url("./assets/videos/index.webm");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  background-attachment: fixed;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 61, 80, 0.5) 0%,
    rgba(26, 61, 80, 0.7) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 5%;
  max-width: 800px;
  animation: fadeUp 1s ease both;
}
.hero-badge {
  display: inline-block;
  background: rgba(201, 169, 110, 0.2);
  border: 1px solid rgba(201, 169, 110, 0.5);
  color: var(--accent-light);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.hero-content h1 em {
  color: var(--accent);
  font-style: italic;
}
.hero-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}
.btn-primary {
  background: var(--accent);
  color: var(--dark);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s;
  border: 2px solid var(--accent);
}
.btn-primary:hover {
  background: transparent;
  color: var(--accent);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s;
  border: 2px solid rgba(255, 255, 255, 0.6);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
}

.hero-scroll {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  letter-spacing: 1px;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero-scroll i {
  font-size: 1rem;
}

/* ─── QUICK ENQUIRY STRIP ─── */
.enquiry-strip {
  background: var(--primary);
  padding: 28px 5%;
  display: flex;
  border-radius: 20px;
  position: absolute;
  align-items: center;
  bottom: -80px; /* adjust this to overlap nicely */
  left: 50%;
  width: calc(100% - 40px); /* 🔥 key for responsiveness */
  max-width: 1100px;
  transform: translateX(-50%);
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.enquiry-strip p {
  color: var(--white);
  font-size: 1rem;
  font-weight: 300;
}
.enquiry-strip strong {
  font-weight: 600;
}
.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}
.enquiry-btn {
  width: 100%;
}
.enquiry-form input,
.enquiry-form select {
  padding: 11px 16px;
  border-radius: 8px;
  border: none;
  font-family: var(--font-body);
  font-size: 0.875rem;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  outline: none;
  min-width: 160px;
}
.enquiry-form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='white' height='20' viewBox='0 0 20 20' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M5 7l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;

  background-position: right 10px center;
  background-size: 16px;
}
.enquiry-form input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.enquiry-form select option {
  color: var(--dark);
}
.enquiry-form button {
  padding: 11px 24px;
  border-radius: 8px;
  background: var(--accent);
  color: var(--dark);
  border: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: opacity 0.2s;
}
.enquiry-form button:hover {
  opacity: 0.88;
}

/* ─── SECTION COMMONS ─── */
section {
  padding: 90px 5%;
}
.section-tag {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 560px;
  line-height: 1.7;
}
.section-header {
  margin-bottom: 3rem;
}
.section-header.center {
  text-align: center;
}
.section-header.center .section-sub {
  margin: 0 auto;
}

/* fade-in on scroll */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── ABOUT ─── */
#about {
  background: var(--cream);
  margin-top: 30px;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-images {
  position: relative;
  height: 420px;
}
.about-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 72%;
  height: 82%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-img-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 52%;
  height: 52%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}
.about-img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-badge {
  position: absolute;
  bottom: 52%;
  right: 24%;
  background: var(--accent);
  color: var(--dark);
  padding: 12px 18px;
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.4;
  box-shadow: var(--shadow);
}
.about-content h2 {
  margin-bottom: 1.25rem;
}
.about-content p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.about-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 1.5rem;
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.about-feature-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--primary);
  color: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.about-feature h4 {
  font-size: 0.925rem;
  font-weight: 600;
  margin-bottom: 2px;
}
.about-feature p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin: 0;
}

/* ─── STATS ─── */
#stats {
  background: var(--primary);
  padding: 60px 5%;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item {
  color: var(--white);
}
.stat-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-size: 0.875rem;
  margin-top: 8px;
  opacity: 0.8;
  letter-spacing: 0.5px;
}

/* ─── DESTINATIONS ─── */
#destinations {
  background: var(--white);
}
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.dest-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3/4;
  transition: transform 0.3s;
}
.dest-card:first-child,
.dest-card:nth-child(5) {
  grid-column: span 2;
  aspect-ratio: 4/3;
}
.dest-card:hover {
  transform: scale(1.02);
}
.dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.dest-card:hover img {
  transform: scale(1.06);
}
.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26, 61, 80, 0.85) 0%,
    transparent 60%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
}
.dest-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}
.dest-tag {
  font-size: 0.75rem;
  color: var(--accent-light);
  letter-spacing: 1px;
}
.dest-arrow {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  opacity: 0;
  transition: opacity 0.25s;
}
.dest-card:hover .dest-arrow {
  opacity: 1;
}

/* ─── SERVICES ─── */
#services {
  background:
    linear-gradient(
      135deg,
      rgba(26, 61, 80, 0.7),
      rgba(44, 95, 122, 0.6),
      rgba(74, 133, 163, 0.5)
    ),
    url(./assets/images/shikaras.jpeg);
  background-position: center;
  background-attachment: fixed;
}
#service-title,
#service-sub {
  color: var(--cream);
}
#service-tag {
  color: var(--accent-light);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  border-top: 3px solid transparent;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--accent);
}
.service-icon {
  width: 56px;
  height: 56px;
  background: var(--cream);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  color: var(--primary);
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 0.75rem;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  margin-top: 1rem;
  transition: gap 0.2s;
}
.service-link:hover {
  gap: 10px;
}

/* ─── WHY US ─── */
#why {
  background: var(--white);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.why-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 500px;
  box-shadow: var(--shadow-lg);
}
.why-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.why-image-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 20px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
}
.why-image-badge i {
  color: var(--accent);
  font-size: 1.5rem;
}
.why-image-badge p {
  font-size: 0.8rem;
  color: var(--text-light);
}
.why-image-badge strong {
  display: block;
  font-size: 0.95rem;
  color: var(--primary-dark);
}
.why-points {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.why-point {
  display: flex;
  gap: 1.25rem;
  padding: 1.25rem;
  border-radius: var(--radius);
  transition: background 0.2s;
}
.why-point:hover {
  background: var(--cream);
}
.why-point-num {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
}
.why-point h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.why-point p {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ─── TESTIMONIALS ─── */
#testimonials {
  background: var(--cream);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testi-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}
.testi-stars {
  color: var(--accent);
  margin-bottom: 1rem;
  font-size: 0.875rem;
}
.testi-text {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 1.25rem;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-light);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
}
.testi-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testi-name {
  font-weight: 600;
  font-size: 0.9rem;
}
.testi-loc {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ─── FAQ ─── */
#faq {
  background: var(--white);
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 960px;
  margin: 0 auto;
}
.faq-item {
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-question {
  padding: 1.1rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.9rem;
  background: var(--white);
  transition: background 0.2s;
  gap: 1rem;
}
.faq-question:hover {
  background: var(--cream);
}
.faq-question i {
  color: var(--primary);
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item.open .faq-question i {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.3s;
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.7;
  padding: 0 1.25rem;
}
.faq-item.open .faq-answer {
  max-height: 200px;
  padding: 0 1.25rem 1.1rem;
}

/* ─── CTA BANNER ─── */
#cta {
  background: linear-gradient(
    135deg,
    var(--primary-dark) 0%,
    var(--primary) 100%
  );
  text-align: center;
  padding: 90px 5%;
}
#cta h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 1rem;
}
#cta p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: var(--white);
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: opacity 0.2s;
}
.btn-whatsapp:hover {
  opacity: 0.88;
}
.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.4);
  transition: background 0.2s;
}
.btn-call:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* ─── FOOTER ─── */
footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 5% 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  display: block;
}
.footer-brand .logo span {
  color: var(--accent);
}
.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.footer-socials {
  display: flex;
  gap: 12px;
}
.footer-socials a {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  text-decoration: none;
  transition:
    background 0.2s,
    color 0.2s;
}
.footer-socials a:hover {
  background: var(--accent);
  color: var(--dark);
}
.footer-col h4 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul a:hover {
  color: var(--accent);
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  margin-bottom: 12px;
}
.footer-contact-item i {
  color: var(--accent);
  margin-top: 2px;
  flex-shrink: 0;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}
.footer-approved {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-approved span {
  background: rgba(201, 169, 110, 0.15);
  border: 1px solid rgba(201, 169, 110, 0.3);
  color: var(--accent);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 500;
}

/* ─── WHATSAPP FLOAT ─── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  background: #25d366;
  color: var(--white);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  animation: pulse 2.5s infinite;
}


.mobile{
  display: none;
}
/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(36px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}
@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 32px rgba(37, 211, 102, 0.7);
  }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .dest-card:first-child,
  .dest-card:nth-child(5) {
    grid-column: span 2;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 880px) {
  .nav-links,
  .nav-contact {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .about-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }
  .about-images {
    height: 300px;
  }
  .services-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .enquiry-strip {
    flex-direction: column;
    text-align: center;
  }
  .why-grid {
    gap: 2rem;
  }
  .why-image {
    height: 300px;
  }

  .enquiry-form-div {
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width : 768px){
  .desktop{
    display: none;
  }
  .mobile{
    display: block;
  }
}

@media (max-width: 550px) {
  .hero-scroll {
    display: none;
  }
}

@media (max-width: 420px) {
  .nav-logo > img{
    width: 120px;
  }
  html {
    scroll-behavior: auto;
  }
  .hero-bg,
  #services {
    background-attachment: scroll;
    background-size: cover;
  }
  .enquiry-form-div {
    grid-template-columns: 1fr;
  }
  #about {
    margin-top: 220px;
  }
  .enquiry-strip {
    bottom: -260px;
    backdrop-filter: none;
  }
  .enquiry-strip p:first-child {
    display: flex;
    flex-direction: column;
  }
}
