:root {
  --cyan: #06b6d4;
  --cyan-dark: #0891b2;
  --cyan-light: #cffafe;
  --cyan-xlight: #ecfeff;
  --dark: #0f1a20;
  --dark2: #0a2a35;
  --dark3: #0e3d4a;
  --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% 52px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 65% 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;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 620px;
}
.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, 50px);
  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);
}

/* ─── HERO STATS ─── */
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.h-stat {
}
.h-stat-num {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--cyan);
}
.h-stat-lbl {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* ─── FEATURED SLIDER ─── */
.slider-section {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

/* Main slider */
.main-slider {
  position: relative;
  height: 70vh;
  min-height: 480px;
  overflow: hidden;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition:
    opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scale(1.04);
}
.slide.active {
  opacity: 1;
  transform: scale(1);
}
.slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(15, 26, 32, 0.85) 0%,
    rgba(15, 26, 32, 0.3) 50%,
    rgba(15, 26, 32, 0.1) 100%
  );
}
.slide-content {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 48px 6%;
  z-index: 2;
  max-width: 520px;
}
.slide-cat {
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.slide-cat::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--cyan);
}
.slide-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(22px, 3.5vw, 44px);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 12px;
}
.slide-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin-bottom: 24px;
}
.slide-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--cyan);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 11px 24px;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
  transition: all 0.3s;
}
.slide-btn:hover {
  background: var(--cyan-dark);
  gap: 14px;
}
.slide-btn i {
  font-size: 11px;
}

/* Slider controls */
.slider-controls {
  position: absolute;
  bottom: 40px;
  right: 6%;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 12px;
}
.sl-prev,
.sl-next {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(6, 182, 212, 0.2);
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.sl-prev:hover,
.sl-next:hover {
  background: var(--cyan);
  border-color: var(--cyan);
}
.sl-dots {
  display: flex;
  gap: 6px;
  align-items: center;
}
.sl-dot {
  width: 20px;
  height: 2px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.4s;
}
.sl-dot.active {
  background: var(--cyan);
  width: 36px;
}

/* Progress bar */
.slide-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--cyan);
  z-index: 10;
  width: 0;
  animation: progressAnim 5s linear infinite;
}
@keyframes progressAnim {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

/* Slide counter */
.slide-counter {
  position: absolute;
  top: 32px;
  right: 6%;
  z-index: 10;
  font-family: "Playfair Display", serif;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.3);
}
.slide-counter span {
  color: #fff;
  font-size: 28px;
}

/* ─── THUMBNAIL STRIP ─── */
.thumb-strip {
  background: var(--dark2);
  padding: 12px 6%;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}
.thumb-strip::-webkit-scrollbar {
  display: none;
}
.thumb {
  width: 90px;
  height: 56px;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  border: 2px solid transparent;
  transition: all 0.3s;
}
.thumb.active {
  border-color: var(--cyan);
  transform: translateY(-3px);
}
.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.thumb:hover img {
  transform: scale(1.08);
}
.thumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 26, 32, 0.4);
  transition: opacity 0.3s;
}
.thumb.active .thumb-overlay,
.thumb:hover .thumb-overlay {
  opacity: 0;
}

/* ─── CATEGORY FILTER ─── */
.filter-wrap {
  padding: 36px 6% 20px;
  background: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--border);
}
.filter-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  margin-right: 4px;
}
.f-chip {
  padding: 8px 18px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  background: #fff;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  transition: all 0.2s;
  font-family: "DM Sans", sans-serif;
}
.f-chip:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}
.f-chip.active {
  background: var(--cyan);
  border-color: var(--cyan);
  color: #fff;
}
.f-search {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--cyan-xlight);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 8px 16px;
}
.f-search input {
  border: none;
  background: transparent;
  outline: none;
  font-size: 13px;
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  width: 160px;
}
.f-search input::placeholder {
  color: var(--muted);
}
.f-search i {
  color: var(--muted);
  font-size: 12px;
}

/* ─── MASONRY GALLERY ─── */
.gallery-wrap {
  padding: 32px 6% 60px;
  background: #f0fafc;
}
.masonry {
  columns: 4;
  column-gap: 14px;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 14px;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(6, 182, 212, 0.07);
}
.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-item:hover img {
  transform: scale(1.06);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15, 26, 32, 0.85),
    rgba(15, 26, 32, 0.1) 50%,
    transparent
  );
  opacity: 0;
  transition: opacity 0.4s;
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 18px 16px;
  transform: translateY(8px);
  transition:
    transform 0.4s,
    opacity 0.4s;
  opacity: 0;
}
.gallery-item:hover .gallery-info {
  transform: translateY(0);
  opacity: 1;
}
.g-cat {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 4px;
}
.g-title {
  font-family: "Playfair Display", serif;
  font-size: 15px;
  color: #fff;
  font-weight: 600;
}
.gallery-item .g-like {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #fff;
  cursor: pointer;
  opacity: 0;
  transition: all 0.3s;
  border: none;
}
.gallery-item:hover .g-like {
  opacity: 1;
}
.g-like.liked {
  color: #ef4444;
  background: rgba(239, 68, 68, 0.15);
}
/* tall / wide items */
.tall img {
  height: 340px;
  object-fit: cover;
}
.wide {
  column-span: none;
}
.gallery-item.hidden {
  display: none;
}

/* ─── LIGHTBOX ─── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(10, 8, 6, 0.96);
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}
.lightbox.open {
  display: flex;
}
.lb-inner {
  position: relative;
  max-width: 1000px;
  width: 90%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lb-img-wrap {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
}
.lb-img {
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
  display: block;
  border-radius: 12px;
  animation: lbIn 0.4s ease;
}
@keyframes lbIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.lb-close {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(6, 182, 212, 0.2);
  border: 1px solid rgba(6, 182, 212, 0.3);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
  z-index: 2;
}
.lb-close:hover {
  background: var(--cyan);
}
.lb-info {
  width: 100%;
  padding: 18px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.lb-title {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}
.lb-cat {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-top: 3px;
}
.lb-actions {
  display: flex;
  gap: 10px;
}
.lb-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 12px;
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.lb-btn:hover {
  background: var(--cyan);
  border-color: var(--cyan);
}
.lb-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
}
.lb-prev,
.lb-next {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.lb-prev:hover,
.lb-next:hover {
  background: var(--cyan);
  border-color: var(--cyan);
}
.lb-counter {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  font-family: "Playfair Display", serif;
}

/* ─── FOOTER ─── */
.footer-main {
  width: 100%;
  background: #fff;
  padding: 48px 6% 0;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
  position: relative;
  z-index: 1;
}
.footer-divider {
  border-top: 1px solid var(--border);
  margin: 28px 0 22px;
}
.footer-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-bottom: 28px;
}
.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 {
  font-size: 12.5px;
  color: #fff;
  text-decoration: none;
  opacity: 0.88;
  transition: opacity 0.2s;
}
.footer-strip a:hover {
  opacity: 1;
}
.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:
    border-color 0.2s,
    transform 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);
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.gallery-item {
  animation: fadeUp 0.5s ease both;
}
.gallery-item:nth-child(1) {
  animation-delay: 0.05s;
}
.gallery-item:nth-child(2) {
  animation-delay: 0.1s;
}
.gallery-item:nth-child(3) {
  animation-delay: 0.15s;
}
.gallery-item:nth-child(4) {
  animation-delay: 0.2s;
}
.gallery-item:nth-child(5) {
  animation-delay: 0.25s;
}
.gallery-item:nth-child(6) {
  animation-delay: 0.3s;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .masonry {
    columns: 3;
  }
}
@media (max-width: 768px) {
  .masonry {
    columns: 2;
  }
  .nav-links {
    display: none;
  }
  .slider-section .slide-title {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .masonry {
    columns: 1;
  }
}

/* ── 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;
  }
}
