:root {
  --cyan: #06b6d4;
  --cyan-dark: #0891b2;
  --cyan-light: #cffafe;
  --cyan-xlight: #ecfeff;
  --dark: #0f1a20;
  --text: #1e3a42;
  --muted: #6b8f99;
  --border: #e0f2f7;
  --white: #ffffff;
  --card-bg: #f8fdfe;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: "DM Sans", sans-serif;
  background: #f0fafc;
  color: var(--text);
}

/* 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;
  align-items: center;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--cyan);
}
.nav-book {
  background: var(--cyan);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 50px;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.2s,
    box-shadow 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: 60px 6% 48px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 70% 50%,
    rgba(6, 182, 212, 0.18) 0%,
    transparent 65%
  );
  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: 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, 48px);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.hero h1 em {
  color: var(--cyan);
  font-style: italic;
}
.hero p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  max-width: 460px;
}

/* MAIN LAYOUT */
.page-wrap {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 28px;
  padding: 36px 6%;
  max-width: 1400px;
  margin: 0 auto;
}

/* SIDEBAR */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 80px;
  height: fit-content;
}
.sidebar-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(6, 182, 212, 0.06);
}
.sidebar-head {
  background: var(--cyan);
  color: #fff;
  padding: 14px 20px;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sidebar-body {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Filter inputs */
.filter-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
  display: block;
}
.filter-input {
  width: 100%;
  padding: 9px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 13px;
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  outline: none;
  background: #f8fdfe;
  transition: border-color 0.2s;
}
.filter-input:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}
.filter-select {
  width: 100%;
  padding: 9px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 13px;
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  outline: none;
  background: #f8fdfe;
  cursor: pointer;
  transition: border-color 0.2s;
}
.filter-select:focus {
  border-color: var(--cyan);
}

/* Price range */
.price-range-row {
  display: flex;
  gap: 8px;
  align-items: center;
}
.price-range-row input {
  width: calc(50% - 12px);
  padding: 8px 10px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 13px;
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  outline: none;
  background: #f8fdfe;
  transition: border-color 0.2s;
}
.price-range-row input:focus {
  border-color: var(--cyan);
}
.price-range-row span {
  color: var(--muted);
  font-size: 13px;
  flex-shrink: 0;
}

/* Category chips in sidebar */
.cat-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.cat-chip {
  padding: 6px 14px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  background: #fff;
  font-size: 12px;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  transition: all 0.2s;
  font-family: "DM Sans", sans-serif;
}
.cat-chip:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}
.cat-chip.active {
  background: var(--cyan);
  border-color: var(--cyan);
  color: #fff;
}

.apply-btn {
  width: 100%;
  background: var(--cyan);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 12px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
  transition:
    background 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
}
.apply-btn:hover {
  background: var(--cyan-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(6, 182, 212, 0.35);
}
.reset-btn {
  width: 100%;
  background: transparent;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  padding: 10px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
  transition: all 0.2s;
}
.reset-btn:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}

/* TOURS CONTENT */
.tours-content {
}
.content-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 10px;
}
.results-count {
  font-size: 14px;
  color: var(--muted);
}
.results-count strong {
  color: var(--cyan);
}
.sort-select {
  padding: 9px 16px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  background: #fff;
  font-size: 13px;
  color: var(--text);
  cursor: pointer;
  outline: none;
  font-family: "DM Sans", sans-serif;
  transition: border-color 0.2s;
}
.sort-select:focus {
  border-color: var(--cyan);
}

/* TOUR CARDS GRID */
.tour-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
}

/* TOUR CARD */
.tour-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(6, 182, 212, 0.06);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.tour-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(6, 182, 212, 0.15);
}

.card-img {
  position: relative;
  height: 190px;
  overflow: hidden;
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.tour-card:hover .card-img img {
  transform: scale(1.07);
}
.img-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 11px;
  border-radius: 50px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
}
.badge-pop {
  background: rgba(239, 68, 68, 0.9);
}
.badge-new {
  background: rgba(16, 185, 129, 0.9);
}
.badge-pre {
  background: rgba(6, 182, 212, 0.9);
}
.wish-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  transition:
    background 0.2s,
    transform 0.2s;
  font-size: 14px;
  color: #e11d48;
}
.wish-btn:hover {
  background: #fff;
  transform: scale(1.15);
}
.duration-pill {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(15, 26, 32, 0.75);
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 50px;
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  gap: 4px;
}
.duration-pill i {
  color: var(--cyan);
  font-size: 10px;
}

.card-body {
  padding: 16px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.meta-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan);
  background: var(--cyan-xlight);
  padding: 3px 9px;
  border-radius: 50px;
}
.rating {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 12px;
  color: var(--muted);
  margin-left: auto;
}
.rating i {
  color: #f59e0b;
  font-size: 10px;
}
.rating strong {
  color: var(--text);
  font-size: 12px;
}
.card-title {
  font-family: "Playfair Display", serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 6px;
}
.card-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 12px;
  flex: 1;
}
.highlights {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.hl {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: var(--muted);
}
.hl i {
  color: var(--cyan);
  font-size: 10px;
}

/* CARD FOOTER with price */
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  border-top: 1px solid var(--border);
  background: var(--card-bg);
}
.price-wrap {
}
.price-label {
  font-size: 10px;
  color: var(--muted);
  margin-bottom: 1px;
}
.price {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
}
.price span {
  font-size: 12px;
  font-weight: 400;
  color: var(--muted);
  font-family: "DM Sans", sans-serif;
}
.old-price {
  font-size: 12px;
  color: #ef4444;
  text-decoration: line-through;
  margin-left: 4px;
}
.book-btn {
  background: var(--cyan);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 9px 16px;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
  transition:
    background 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
  white-space: nowrap;
}
.book-btn:hover {
  background: var(--cyan-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(6, 182, 212, 0.35);
}

/* PAGINATION */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.page-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border: 1.5px solid var(--border);
  background: #fff;
  color: var(--text);
  transition: all 0.2s;
  font-family: "DM Sans", sans-serif;
}
.page-btn:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}
.page-btn.active {
  background: var(--cyan);
  border-color: var(--cyan);
  color: #fff;
}
.page-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

/* BOOKING MODAL */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 26, 32, 0.6);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
}
.modal-overlay.open {
  display: flex;
}
.modal {
  background: #fff;
  border-radius: 22px;
  width: 100%;
  max-width: 520px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.2);
  animation: modalIn 0.35s ease;
}
@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.modal-head {
  background: linear-gradient(135deg, var(--cyan-dark), var(--cyan));
  padding: 24px 28px;
  position: relative;
}
.modal-head h3 {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  color: #fff;
  font-weight: 700;
}
.modal-head p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 4px;
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.modal-close:hover {
  background: rgba(255, 255, 255, 0.35);
}
.modal-body {
  padding: 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group.full {
  grid-column: 1/-1;
}
.form-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-input {
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 14px;
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  outline: none;
  background: #f8fdfe;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.form-input:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}
.form-select {
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 14px;
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  outline: none;
  background: #f8fdfe;
  cursor: pointer;
  transition: border-color 0.2s;
}
.form-select:focus {
  border-color: var(--cyan);
}

/* Price summary in modal */
.price-summary {
  background: var(--cyan-xlight);
  border: 1px solid var(--cyan-light);
  border-radius: 12px;
  padding: 14px 16px;
}
.price-sum-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text);
}
.price-sum-row + .price-sum-row {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--cyan-light);
}
.price-sum-row.total {
  font-weight: 700;
  font-size: 16px;
  color: var(--dark);
}
.price-sum-row.total span:last-child {
  color: var(--cyan);
  font-family: "Playfair Display", serif;
  font-size: 20px;
}

.submit-btn {
  background: var(--cyan);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 14px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
  transition:
    background 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
  width: 100%;
}
.submit-btn:hover {
  background: var(--cyan-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(6, 182, 212, 0.4);
}

/* SUCCESS */
.success-msg {
  display: none;
  text-align: center;
  padding: 36px 28px;
}
.success-msg i {
  font-size: 52px;
  color: var(--cyan);
  margin-bottom: 14px;
}
.success-msg h4 {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  color: var(--dark);
  margin-bottom: 8px;
}
.success-msg p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* 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,
    box-shadow 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;
  font-weight: 500;
  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);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.55);
}
.wa-float:hover .wa-tip {
  opacity: 1;
  transform: translateY(50%) translateX(0);
}

/* EMPTY */
.empty-state {
  text-align: center;
  padding: 60px 20px;
  display: none;
}
.empty-state i {
  font-size: 48px;
  color: var(--cyan-light);
  margin-bottom: 14px;
}
.empty-state h3 {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  color: var(--text);
  margin-bottom: 6px;
}
.empty-state p {
  color: var(--muted);
  font-size: 13px;
}

/* ANIMATIONS */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.tour-card {
  animation: fadeUp 0.5s ease both;
}
.tour-card:nth-child(1) {
  animation-delay: 0.05s;
}
.tour-card:nth-child(2) {
  animation-delay: 0.1s;
}
.tour-card:nth-child(3) {
  animation-delay: 0.15s;
}
.tour-card:nth-child(4) {
  animation-delay: 0.2s;
}
.tour-card:nth-child(5) {
  animation-delay: 0.25s;
}
.tour-card:nth-child(6) {
  animation-delay: 0.3s;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .page-wrap {
    grid-template-columns: 1fr;
  }
  .sidebar {
    position: static;
  }
  .nav-links {
    display: none;
  }
}
@media (max-width: 500px) {
  .tour-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ── 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;
  }
}
