:root {
  --cyan: #06b6d4;
  --cyan-dark: #0891b2;
  --cyan-light: #cffafe;
  --cyan-xlight: #ecfeff;
  --dark: #0f1a20;
  --text: #1e3a42;
  --muted: #6b8f99;
  --border: #e0f2f7;
  --white: #ffffff;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "DM Sans", sans-serif;
  background: #f0fafc;
  color: var(--text);
  overflow-x: hidden;
}

/* ── NAVBAR ── */
.navbar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 0 6%;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 16px rgba(6, 182, 212, 0.07);
}
.nav-logo {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-logo span {
  color: var(--cyan);
}
.nav-links {
  display: flex;
  gap: 28px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--cyan);
  transition: width 0.3s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--cyan);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}
.nav-book {
  background: var(--cyan);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.2s;
}
.nav-book:hover {
  background: var(--cyan-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(6, 182, 212, 0.35);
}

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, #0f1a20 0%, #0a2a35 50%, #0e3d4a 100%);
  padding: 64px 6% 56px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 70% 45%,
    rgba(6, 182, 212, 0.2),
    transparent 60%
  );
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    linear-gradient(var(--cyan) 1px, transparent 1px),
    linear-gradient(90deg, var(--cyan) 1px, transparent 1px);
  background-size: 40px 40px;
}
/* Orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  animation: orbf 8s ease-in-out infinite;
}
.orb1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.14), transparent 70%);
  top: -80px;
  right: -80px;
  animation-delay: 0s;
}
.orb2 {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.08), transparent 70%);
  bottom: -60px;
  left: 10%;
  animation-delay: -4s;
}
@keyframes orbf {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-20px) scale(1.05);
  }
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(6, 182, 212, 0.15);
  border: 1px solid rgba(6, 182, 212, 0.3);
  color: var(--cyan);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 18px;
}
.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 700;
  color: #fff;
  line-height: 1.12;
  margin-bottom: 14px;
}
.hero h1 em {
  color: var(--cyan);
  font-style: italic;
}
.hero p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
  max-width: 460px;
  margin-bottom: 24px;
}
.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cyan);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 50px;
  border-bottom: 3px solid var(--cyan-dark);
  transition: all 0.2s;
}
.back-btn:hover {
  background: var(--cyan-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(6, 182, 212, 0.4);
}

/* ── INFO CARDS ROW ── */
.info-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 40px 6%;
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.info-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 24px;
  border-radius: 16px;
  border: 1.5px solid var(--border);
  background: #f8fdfe;
  transition: all 0.3s;
  cursor: default;
}
.info-card:hover {
  border-color: var(--cyan);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(6, 182, 212, 0.1);
}
.info-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--cyan-xlight);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--cyan);
  flex-shrink: 0;
  transition: all 0.3s;
}
.info-card:hover .info-icon {
  background: var(--cyan);
  color: #fff;
}
.info-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.info-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
}
.info-sub {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

/* ── MAIN GRID ── */
.main-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 0;
  min-height: 600px;
}

/* ── LEFT PANEL ── */
.left-panel {
  background: linear-gradient(160deg, #0f1a20 0%, #0a2a35 60%, #0e3d4a 100%);
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
}
.left-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 80% 20%,
    rgba(6, 182, 212, 0.12),
    transparent 55%
  );
  pointer-events: none;
}
/* Big decorative circle */
.deco-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(6, 182, 212, 0.1);
}
.dc1 {
  width: 380px;
  height: 380px;
  bottom: -120px;
  left: -80px;
}
.dc2 {
  width: 240px;
  height: 240px;
  top: -60px;
  right: -40px;
}
.left-content {
  position: relative;
  z-index: 1;
}
.l-tag {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.l-tag::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--cyan);
}
.l-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 18px;
}
.l-title em {
  font-style: italic;
  color: var(--cyan);
}
.l-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 340px;
}

/* Contact items */
.contact-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}
.c-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(6, 182, 212, 0.1);
  transition: all 0.3s;
  cursor: default;
}
.c-item:hover {
  background: rgba(6, 182, 212, 0.08);
  border-color: rgba(6, 182, 212, 0.3);
  transform: translateX(4px);
}
.c-item-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(6, 182, 212, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  font-size: 17px;
  flex-shrink: 0;
  transition: all 0.3s;
}
.c-item:hover .c-item-icon {
  background: var(--cyan);
  color: #fff;
}
.c-item-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 4px;
}
.c-item-value {
  font-size: 14px;
  color: #fff;
  font-weight: 500;
}

/* Social buttons */
.social-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.soc-btn {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s;
}
.soc-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Available badge */
.available-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: 50px;
  padding: 8px 16px;
  margin-bottom: 28px;
}
.avail-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
  }
}
.avail-text {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
}

/* ── RIGHT PANEL (FORM) ── */
.right-panel {
  background: #fff;
  padding: 56px 52px;
}
.form-head {
  margin-bottom: 36px;
}
.form-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.form-title em {
  font-style: italic;
  color: var(--cyan);
}
.form-sub {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* Tabs */
.form-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 32px;
  border-radius: 10px;
  overflow: hidden;
  border: 1.5px solid var(--border);
}
.f-tab {
  flex: 1;
  padding: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  background: #fff;
  border: none;
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
  transition: all 0.2s;
}
.f-tab.active {
  background: var(--cyan);
  color: #fff;
}
.f-tab:hover:not(.active) {
  background: var(--cyan-xlight);
  color: var(--cyan);
}

/* Form fields */
.form-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.f-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.f-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.f-group.full {
  grid-column: 1/-1;
}
.f-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.f-input,
.f-select,
.f-textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font-size: 14px;
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  outline: none;
  background: #f8fdfe;
  transition: all 0.2s;
  width: 100%;
}
.f-input:focus,
.f-select:focus,
.f-textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
  background: #fff;
}
.f-input::placeholder,
.f-textarea::placeholder {
  color: rgba(107, 143, 153, 0.5);
}
.f-select {
  cursor: pointer;
}
.f-textarea {
  resize: vertical;
  min-height: 120px;
}

/* Character counter */
.f-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.char-count {
  font-size: 11px;
  color: var(--muted);
}

/* Submit */
.submit-btn {
  background: var(--cyan);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 15px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
  transition: all 0.2s;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
}
.submit-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--cyan-dark);
  transform: translateX(-100%);
  transition: transform 0.4s;
}
.submit-btn:hover::before {
  transform: translateX(0);
}
.submit-btn span {
  position: relative;
  z-index: 1;
}
.submit-btn i {
  position: relative;
  z-index: 1;
  transition: transform 0.3s;
}
.submit-btn:hover i {
  transform: translateX(4px);
}

/* Success */
.success-wrap {
  display: none;
  text-align: center;
  padding: 48px 20px;
}
.success-wrap i {
  font-size: 60px;
  color: var(--cyan);
  margin-bottom: 18px;
  display: block;
  animation: popIn 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes popIn {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}
.success-wrap h3 {
  font-family: "Playfair Display", serif;
  font-size: 26px;
  color: var(--dark);
  margin-bottom: 10px;
}
.success-wrap p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 24px;
}
.success-wrap .wa-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.2s;
}
.success-wrap .wa-link:hover {
  background: #1ea855;
  transform: translateY(-2px);
}

/* ── MAP STRIP ── */
.map-strip {
  background: var(--dark);
  padding: 56px 6%;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.map-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 20% 50%,
    rgba(6, 182, 212, 0.1),
    transparent 55%
  );
  pointer-events: none;
}
.map-text {
  position: relative;
  z-index: 1;
}
.map-label {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.map-label::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--cyan);
}
.map-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
}
.map-title em {
  font-style: italic;
  color: var(--cyan);
}
.map-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
  margin-bottom: 28px;
}
.map-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.map-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}
.map-detail i {
  color: var(--cyan);
  width: 16px;
  text-align: center;
}
/* Fake map card */
.map-card {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  height: 260px;
  background: var(--dark2);
  border: 1px solid rgba(6, 182, 212, 0.15);
}
.map-inner {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0d2535 0%, #0a3040 50%, #0f3a4a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
/* Grid map lines */
.map-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(6, 182, 212, 0.8) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 182, 212, 0.8) 1px, transparent 1px);
  background-size: 30px 30px;
}
.map-pin {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}
.map-pin-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow:
    0 0 0 6px rgba(6, 182, 212, 0.2),
    0 0 0 12px rgba(6, 182, 212, 0.1);
  animation: pinPulse 2s ease-in-out infinite;
}
@keyframes pinPulse {
  0%,
  100% {
    box-shadow:
      0 0 0 6px rgba(6, 182, 212, 0.2),
      0 0 0 12px rgba(6, 182, 212, 0.1);
  }
  50% {
    box-shadow:
      0 0 0 10px rgba(6, 182, 212, 0.15),
      0 0 0 20px rgba(6, 182, 212, 0.05);
  }
}
.map-pin-label {
  background: var(--cyan);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  margin-top: 12px;
  white-space: nowrap;
}
.map-pin-sub {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
  letter-spacing: 0.06em;
}
/* Decorative dots on map */
.m-dot {
  position: absolute;
  border-radius: 50%;
  background: rgba(6, 182, 212, 0.3);
  animation: mdot 3s ease-in-out infinite;
}
.md1 {
  width: 6px;
  height: 6px;
  top: 30%;
  left: 25%;
  animation-delay: 0.5s;
}
.md2 {
  width: 4px;
  height: 4px;
  top: 60%;
  right: 30%;
  animation-delay: 1.2s;
}
.md3 {
  width: 5px;
  height: 5px;
  bottom: 25%;
  left: 40%;
  animation-delay: 2s;
}
@keyframes mdot {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.5);
  }
}

/* ── FAQ ── */
.faq-section {
  padding: 60px 6%;
  background: #fff;
}
.faq-header {
  text-align: center;
  margin-bottom: 44px;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
}
.faq-item {
  border: 1.5px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item.open {
  border-color: var(--cyan);
}
.faq-q {
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  transition: background 0.2s;
}
.faq-q:hover {
  background: var(--cyan-xlight);
}
.faq-item.open .faq-q {
  background: var(--cyan-xlight);
  color: var(--cyan);
}
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--muted);
  transition: all 0.3s;
  flex-shrink: 0;
}
.faq-item.open .faq-icon {
  background: var(--cyan);
  color: #fff;
  transform: rotate(45deg);
}
.faq-a {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.3s;
}
.faq-a p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.75;
}
.faq-item.open .faq-a {
  max-height: 120px;
  padding: 0 20px 18px;
}

/* ── FOOTER ── */
.footer-main {
  width: 100%;
  background: #fff;
  padding: 48px 6% 0;
}
.footer-divider {
  border-top: 1px solid var(--border);
  margin: 28px 0 22px;
}
.footer-strip {
  background: var(--cyan);
  width: 100%;
  padding: 13px 6%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-strip a,
.footer-strip span {
  font-size: 12.5px;
  color: #fff;
  text-decoration: none;
  opacity: 0.88;
}
.footer-strip a:hover {
  opacity: 1;
  text-decoration: underline;
}
.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  transition: transform 0.3s;
}
.social-icon:hover {
  transform: translateY(-4px);
}
.tour-badge-sm {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  background: #fff;
  font-size: 12px;
  font-weight: 500;
  color: var(--text);
  cursor: default;
  transition: all 0.2s;
}
.tour-badge-sm:hover {
  border-color: var(--cyan);
  transform: translateY(-2px);
}

/* WA float */
.wa-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 999;
  text-decoration: none;
}
.wa-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  position: relative;
  z-index: 2;
  transition: transform 0.3s;
}
.wa-circle::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  animation: waPulse 2s ease-out infinite;
  z-index: -1;
}
@keyframes waPulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(2.1);
    opacity: 0;
  }
}
.wa-tip {
  position: absolute;
  bottom: 50%;
  right: 66px;
  transform: translateY(50%) translateX(8px);
  background: #fff;
  color: #1a1a1a;
  padding: 7px 12px;
  border-radius: 8px;
  font-size: 13px;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.3s,
    transform 0.3s;
}
.wa-tip::after {
  content: "";
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: #fff;
  border-right: none;
}
.wa-float:hover .wa-circle {
  transform: scale(1.1);
}
.wa-float:hover .wa-tip {
  opacity: 1;
  transform: translateY(50%) translateX(0);
}

/* ── SCROLL REVEAL ── */
.sr {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.sr.v {
  opacity: 1;
  transform: none;
}
.sl {
  opacity: 0;
  transform: translateX(-28px);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.sl.v {
  opacity: 1;
  transform: none;
}
.srr {
  opacity: 0;
  transform: translateX(28px);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.srr.v {
  opacity: 1;
  transform: none;
}
.d1 {
  transition-delay: 0.1s !important;
}
.d2 {
  transition-delay: 0.2s !important;
}
.d3 {
  transition-delay: 0.3s !important;
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .main-grid {
    grid-template-columns: 1fr;
  }
  .info-row {
    grid-template-columns: 1fr;
  }
  .map-strip {
    grid-template-columns: 1fr;
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .nav-links {
    display: none;
  }
  .left-panel {
    padding: 40px 28px;
  }
  .right-panel {
    padding: 40px 28px;
  }
}
@media (max-width: 580px) {
  .f-row {
    grid-template-columns: 1fr;
  }
  .hero h1 {
    font-size: 28px;
  }
}

/* ── Footer full width ── */
.footer-bg {
  width: 100%;
  background: #ffffff;
  padding: 40px 0 0 0;
}

/* ── Card: full width with inner padding ── */
.footer-card {
  background: #ffffff;
  width: 100%;
  padding: 48px 6% 36px;
  position: relative;
  overflow: hidden;
}
/* ornamental circles */
.footer-card::before,
.footer-card::after {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  border: 65px solid rgba(195, 148, 100, 0.1);
  top: 50%;
  pointer-events: none;
}
.footer-card::before {
  left: -130px;
  transform: translateY(-50%);
}
.footer-card::after {
  right: -130px;
  transform: translateY(-50%);
}

/* ── Logo ── */
.logo-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #2e1d0e;
}
.logo-sub {
  font-size: 10px;
  letter-spacing: 0.26em;
  color: #9a7458;
  text-transform: uppercase;
  margin-top: 3px;
}

/* ── Contact ── */
.contact-label {
  font-size: 11px;
  color: #9a7458;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 3px;
  text-transform: uppercase;
}
.contact-value {
  font-size: 14px;
  color: #2e1d0e;
  font-weight: 500;
}

/* ── CTA heading ── */
.cta-heading {
  font-family: "Playfair Display", serif;
  font-size: clamp(20px, 2.8vw, 28px);
  font-weight: 700;
  color: #2e1d0e;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

/* ── Buttons ── */
.btn-primary {
  background: #06b6d4;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  padding: 13px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition:
    transform 0.25s,
    box-shadow 0.25s,
    background 0.25s;
  white-space: nowrap;
}
.btn-primary:hover {
  background: #0891b2;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(6, 182, 212, 0.38);
}
.btn-secondary {
  background: #fff;
  color: #2e1d0e;
  font-weight: 500;
  font-size: 14px;
  padding: 13px 28px;
  border-radius: 50px;
  border: 1.5px solid #d6bfa4;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition:
    transform 0.25s,
    box-shadow 0.25s,
    border-color 0.25s;
  white-space: nowrap;
}
.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-color: #c49a6c;
}

/* ── Divider ── */
.divider {
  border: none;
  border-top: 1px solid #ddd0c0;
  margin: 28px 0 22px;
}

/* ── Available tag ── */
.available-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #6b5040;
  font-weight: 500;
}
.available-dot {
  width: 22px;
  height: 22px;
  background: #06b6d4;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.available-dot i {
  font-size: 10px;
  color: #fff;
}

/* ── Tour badges ── */
.tour-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border-radius: 50px;
  border: 1.5px solid #d6bfa4;
  background: #fff;
  font-size: 13px;
  font-weight: 500;
  color: #3a2a18;
  white-space: nowrap;
  transition:
    border-color 0.25s,
    box-shadow 0.25s,
    transform 0.25s;
  cursor: default;
}
.tour-badge:hover {
  border-color: #06b6d4;
  box-shadow: 0 4px 14px rgba(6, 182, 212, 0.22);
  transform: translateY(-2px);
}
.tour-badge i {
  color: #c49a6c;
  font-size: 13px;
}

/* ── Social icons ── */
.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  flex-shrink: 0;
}
.social-btn:hover {
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.fb {
  background: #1877f2;
}
.ig {
  background: linear-gradient(
    45deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  );
}
.tt {
  background: #010101;
}
.wa {
  background: #25d366;
}

/* ── Bottom strip full width ── */
.bottom-strip {
  background: #06b6d4;
  width: 100%;
  padding: 13px 6%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.bottom-strip span,
.bottom-strip a {
  font-size: 12.5px;
  color: #fff;
  text-decoration: none;
  opacity: 0.88;
  transition: opacity 0.2s;
}
.bottom-strip a:hover {
  opacity: 1;
  text-decoration: underline;
}

/* ── WhatsApp float ── */
.wa-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 999;
  text-decoration: none;
}
.wa-circle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  position: relative;
  z-index: 2;
}
.wa-circle::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  animation: pulse 2s ease-out infinite;
  z-index: -1;
}
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}
.wa-tip {
  position: absolute;
  bottom: 50%;
  right: 68px;
  transform: translateY(50%) translateX(8px);
  background: #fff;
  color: #1a1a1a;
  padding: 8px 13px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.14);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.3s,
    transform 0.3s;
}
.wa-tip::after {
  content: "";
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: #fff;
  border-right: none;
}
.wa-float:hover .wa-circle {
  transform: scale(1.12);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.6);
}
.wa-float:hover .wa-tip {
  opacity: 1;
  transform: translateY(50%) translateX(0);
}

/* ── Animations ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fu {
  animation: fadeUp 0.55s ease forwards;
  opacity: 0;
}
.d1 {
  animation-delay: 0.08s;
}
.d2 {
  animation-delay: 0.18s;
}
.d3 {
  animation-delay: 0.28s;
}
.d4 {
  animation-delay: 0.38s;
}
.d5 {
  animation-delay: 0.48s;
}

/* ══════════════════════════════
       RESPONSIVE LAYOUT
    ══════════════════════════════ */

/* TOP ROW */
.top-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
  position: relative;
  z-index: 1;
}
.left-col {
  flex: 1 1 320px;
}
.right-col {
  flex: 1 1 260px;
  text-align: right;
}

/* BOTTOM ROW */
.bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  position: relative;
  z-index: 1;
}
.badges-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* CONTACT ROW */
.contact-row {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}

/* SOCIALS ROW */
.socials-row {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  align-items: center;
  flex-wrap: wrap;
}

/* ── TABLET (max 768px) ── */
@media (max-width: 768px) {
  .footer-card {
    padding: 36px 5% 28px;
  }
  .right-col {
    text-align: left;
    flex: 1 1 100%;
  }
  .right-col .btn-wrap {
    justify-content: flex-start;
  }
  .cta-heading {
    font-size: 22px;
  }
  .bottom-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .bottom-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}

/* ── MOBILE (max 480px) ── */
@media (max-width: 480px) {
  .footer-card {
    padding: 28px 4% 24px;
  }
  .contact-row {
    flex-direction: column;
    gap: 14px;
  }
  .left-col {
    flex: 1 1 100%;
  }
  .logo-title {
    font-size: 20px;
  }
  .cta-heading {
    font-size: 20px;
  }
  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }
  .badges-wrap {
    gap: 6px;
  }
  .tour-badge {
    font-size: 12px;
    padding: 7px 12px;
  }
  .footer-card::before,
  .footer-card::after {
    display: none;
  }
}
