/* ============================================================
   Trip Adventure Hurghada — Main CSS Design System
   Brand: #d89433 (gold) | #225455 (teal) | #54442c (brown)
   Font: Open Sans | Base: 16px
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,400&display=swap');

/* ─── CSS Variables ─── */
:root {
  --gold: #d89433;
  --gold-dark: #b87820;
  --gold-light: #f0b05a;
  --teal: #225455;
  --teal-dark: #163738;
  --teal-light: #2e7172;
  --brown: #54442c;
  --brown-dark: #3a2e1c;
  --white: #ffffff;
  --black: #000000;
  --grey-100: #f8f8f6;
  --grey-200: #efefec;
  --grey-400: #bbbab5;
  --grey-600: #787770;
  --grey-800: #3a3935;
  --text: #1a1a18;
  --text-muted: #6b6a65;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.16);
  --transition: 0.25s ease;
  --nav-h: 72px;
}

/* ─── Reset ─── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input,
select,
textarea {
  font-family: inherit;
}

/* ─── Typography ─── */
h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
}

h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
}

h3 {
  font-size: clamp(1.15rem, 2.5vw, 1.6rem);
  font-weight: 700;
  line-height: 1.3;
}

h4 {
  font-size: 1.1rem;
  font-weight: 600;
}

p {
  color: var(--text-muted);
  line-height: 1.8;
}

/* ─── Utilities ─── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.container--narrow {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

.section--lg {
  padding: 120px 0;
}

.section--sm {
  padding: 48px 0;
}

.text-center {
  text-align: center;
}

.text-gold {
  color: var(--gold);
}

.text-teal {
  color: var(--teal);
}

.text-white {
  color: var(--white);
}

.bg-teal {
  background: var(--teal);
}

.bg-gold {
  background: var(--gold);
}

.bg-grey {
  background: var(--grey-100);
}

.bg-dark {
  background: var(--teal-dark);
}

.flex {
  display: flex;
  align-items: center;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.gap-1 {
  gap: 8px;
}

.gap-2 {
  gap: 16px;
}

.gap-3 {
  gap: 24px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.mt-1 {
  margin-top: 8px;
}

.mt-2 {
  margin-top: 16px;
}

.mt-3 {
  margin-top: 24px;
}

.mt-4 {
  margin-top: 32px;
}

.mt-5 {
  margin-top: 48px;
}

.mt-6 {
  margin-top: 64px;
}

.mb-1 {
  margin-bottom: 8px;
}

.mb-2 {
  margin-bottom: 16px;
}

.mb-3 {
  margin-bottom: 24px;
}

/* ─── Section Header ─── */
.section-label {
  display: inline-block;
  background: rgba(216, 148, 51, 0.12);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.section-title {
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--gold);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(216, 148, 51, 0.35);
}

.btn--secondary {
  background: var(--teal);
  color: var(--white);
}

.btn--secondary:hover {
  background: var(--teal-light);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}

.btn--outline:hover {
  background: var(--gold);
  color: var(--white);
}

.btn--outline-white {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}

.btn--outline-white:hover {
  background: var(--white);
  color: var(--teal);
}

.btn--whatsapp {
  background: #25D366;
  color: var(--white);
}

.btn--whatsapp:hover {
  background: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
}

.btn--lg {
  padding: 18px 36px;
  font-size: 1rem;
  border-radius: var(--radius);
}

.btn--sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

/* ─── Navigation ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: all var(--transition);
}

.nav.scrolled {
  background: var(--teal-dark);
  box-shadow: var(--shadow);
}

.nav__inner {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav__logo-img {
  height: 62px;
  width: auto;
  margin: -8px 0;
}

.nav__logo-text {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.nav__logo-sub {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  margin-top: 2px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav__link {
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.nav__link:hover {
  color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
}

.nav__link.active {
  color: var(--gold);
  border-bottom: 2px solid var(--gold);
  border-radius: 0;
}

/* Dropdown */
.nav__item {
  position: relative;
  display: flex;
  align-items: center;
}

.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 220px;
  box-shadow: var(--shadow);
  border-radius: var(--radius-sm);
  padding: 12px 0;
  display: none;
  flex-direction: column;
  z-index: 1100;
  margin-top: 10px;
}

.nav__dropdown::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  width: 100%;
  height: 10px;
}

.nav__item:hover .nav__dropdown {
  display: flex;
}

.nav__dropdown-link {
  color: var(--text) !important;
  padding: 10px 20px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: all var(--transition);
  display: block;
}

.nav__dropdown-link:hover {
  background: var(--grey-100);
  color: var(--gold) !important;
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav__search {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  padding: 8px 16px;
  color: var(--white);
  font-size: 0.85rem;
  width: 180px;
  transition: all var(--transition);
}

.nav__search::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.nav__search:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.18);
  width: 220px;
}

.nav__lang {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  padding: 4px;
}

.nav__lang-btn {
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  transition: all var(--transition);
}

.nav__lang-btn.active {
  background: var(--gold);
  color: var(--white);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.nav__hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* Mobile nav */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--teal-dark);
  padding: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 999;
  flex-direction: column;
  gap: 4px;
}

.nav__mobile.open {
  display: flex;
}

.nav__mobile-link {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
  font-size: 1rem;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.nav__mobile-link:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--gold);
}

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--teal-dark);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.45;
  transform: scale(1.04);
  transition: transform 8s ease;
}

.hero:hover .hero__bg {
  transform: scale(1);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(22, 55, 56, 0.85) 0%, rgba(34, 84, 85, 0.65) 60%, rgba(216, 148, 51, 0.2) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-top: var(--nav-h);
  padding-bottom: 60px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(216, 148, 51, 0.2);
  border: 1px solid rgba(216, 148, 51, 0.4);
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero__title {
  color: var(--white);
  margin-bottom: 20px;
}

.hero__title span {
  color: var(--gold);
}

.hero__desc {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.1rem;
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero__search {
  margin-top: 48px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  max-width: 760px;
}

.hero__search-input {
  flex: 1;
  min-width: 180px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--white);
  font-size: 0.9rem;
}

.hero__search-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.hero__search-input:focus {
  outline: none;
  border-color: var(--gold);
}

.hero__stats {
  display: flex;
  gap: 36px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.hero__stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.hero__stat-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 2px;
}

/* ─── Cards ─── */
.tour-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.tour-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.tour-card__img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.tour-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.tour-card:hover .tour-card__img img {
  transform: scale(1.08);
}

.tour-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 100px;
}

.tour-card__price-tag {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(22, 55, 56, 0.9);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
}

.tour-card__price-tag span {
  color: var(--gold-light);
}

.tour-card__body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.tour-card__category {
  font-size: 0.73rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--gold);
  margin-bottom: 6px;
}

.tour-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.tour-card__meta {
  display: flex;
  gap: 14px;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.tour-card__meta i {
  color: var(--gold);
}

.tour-card__price-row {
  font-size: .79rem;
  color: var(--text-muted);
  padding: 2px 0 10px;
  line-height: 1.5;
}

.tour-card__footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--grey-200);
}

/* ─── Category Cards ─── */
.cat-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  transition: all var(--transition);
}

.cat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.cat-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.cat-card:hover .cat-card__img {
  transform: scale(1.08);
}

.cat-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(22, 55, 56, 0.88) 0%, rgba(22, 55, 56, 0.3) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

.cat-card__icon {
  font-size: 2.2rem;
  margin-bottom: 8px;
}

.cat-card__title {
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 700;
}

.cat-card__count {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  margin-top: 4px;
}

/* ─── USP / Why Book ─── */
.usp-card {
  text-align: center;
  padding: 36px 24px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--grey-200);
  transition: all var(--transition);
}

.usp-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.usp-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.5rem;
  color: var(--white);
}

.usp-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.usp-card__desc {
  font-size: 0.87rem;
  color: var(--text-muted);
}

/* ─── Review Widget ─── */
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey-200);
}

.review-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.review-text {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
}

.review-name {
  font-weight: 700;
  font-size: 0.9rem;
}

.review-source {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.review-platform-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 8px;
}

.review-platform-badge--google {
  background: #e8f0fe;
  color: #1a73e8;
}

.review-platform-badge--trip {
  background: #e8f5e9;
  color: #00aa6c;
  font-weight: 800;
}

/* ─── Booking Form ─── */
.booking-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--grey-200);
  position: sticky;
  top: calc(var(--nav-h) + 16px);
}

.booking-form__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.booking-form__price {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--teal);
  margin-bottom: 4px;
}

.booking-form__price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
}

.form-group {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-control {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  transition: all var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(216, 148, 51, 0.15);
}

.form-control:disabled {
  background: var(--grey-100);
  cursor: not-allowed;
}

.counter-group {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.counter-btn {
  width: 40px;
  height: 44px;
  background: var(--grey-100);
  border: none;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.counter-btn:hover {
  background: var(--gold);
  color: var(--white);
}

.counter-display {
  flex: 1;
  text-align: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  padding: 0 8px;
}

.price-summary {
  background: var(--grey-100);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-top: 16px;
}

.price-summary__row {
  display: flex;
  justify-content: space-between;
  font-size: 0.87rem;
  margin-bottom: 6px;
  color: var(--text-muted);
}

.price-summary__row--total {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--teal);
  border-top: 1px solid var(--grey-200);
  padding-top: 10px;
  margin-top: 6px;
}

.currency-result {
  background: rgba(216, 148, 51, 0.08);
  border: 1px solid rgba(216, 148, 51, 0.2);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 0.9rem;
  color: var(--brown);
  font-weight: 600;
  text-align: center;
  margin-top: 8px;
}

/* ─── Tour Detail Page ─── */
.tour-hero {
  height: 55vh;
  min-height: 380px;
  position: relative;
  overflow: hidden;
}

.tour-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tour-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(22, 55, 56, 0.8) 0%, rgba(22, 55, 56, 0.3) 50%, transparent 100%);
}

.tour-hero__content {
  position: absolute;
  bottom: 32px;
  left: 0;
  right: 0;
}

.tour-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}

.tour-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.tour-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--grey-100);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text);
}

.tour-pill i {
  color: var(--gold);
}

.inc-exc {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.inc-exc__section {
  background: var(--grey-100);
  border-radius: var(--radius);
  padding: 24px;
}

.inc-exc__title {
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.inc-exc__title--inc {
  color: var(--teal);
}

.inc-exc__title--exc {
  color: var(--brown);
}

.inc-exc__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.87rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.inc-exc__item i {
  margin-top: 2px;
  flex-shrink: 0;
}

/* ─── Gallery ─── */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.gallery__item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery__item--top img {
  object-position: top;
}

.gallery__item:hover img {
  transform: scale(1.05);
}

/* ─── FAQ ─── */
.faq-item {
  border-bottom: 1px solid var(--grey-200);
}

.faq-question {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  background: none;
  border: none;
  gap: 16px;
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--gold);
}

.faq-question__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--grey-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all var(--transition);
  flex-shrink: 0;
  color: var(--teal);
}

.faq-item.open .faq-question__icon {
  background: var(--gold);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding-bottom: 18px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.faq-item.open .faq-answer {
  display: block;
}

/* ─── Contact Section ─── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition);
}

.contact-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.contact-card__icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.6rem;
}

.contact-card__icon--wa {
  background: rgba(37, 211, 102, 0.12);
  color: #25D366;
}

.contact-card__icon--phone {
  background: rgba(34, 84, 85, 0.1);
  color: var(--teal);
}

.contact-card__icon--email {
  background: rgba(216, 148, 51, 0.1);
  color: var(--gold);
}

.contact-card__title {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 6px;
}

.contact-card__sub {
  font-size: 0.86rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* ─── Offers ─── */
.offer-card {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  border-radius: var(--radius);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 240px;
  position: relative;
  transition: all var(--transition);
}

.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.offer-card__content {
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.offer-card__discount {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: 1.6rem;
  font-weight: 800;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  width: fit-content;
}

.offer-card__title {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.offer-card__desc {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.87rem;
  margin-bottom: 20px;
}

.offer-card__img {
  overflow: hidden;
}

.offer-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ─── Footer ─── */
.footer {
  background: var(--teal-dark);
  color: rgba(255, 255, 255, 0.85);
}

.footer__top {
  padding: 64px 0 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer__brand {
  padding-right: 24px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer__logo-text {
  font-weight: 800;
  font-size: 1rem;
  color: var(--white);
  line-height: 1.15;
}

.footer__tagline {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer__socials {
  display: flex;
  gap: 10px;
}

.footer__social {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  transition: all var(--transition);
}

.footer__social:hover {
  background: var(--gold);
  color: var(--white);
}

.footer__heading {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 16px;
}

.footer__link {
  display: block;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  padding: 4px 0;
  transition: color var(--transition);
}

.footer__link:hover {
  color: var(--gold);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__copy {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer__bottom-links {
  display: flex;
  gap: 16px;
}

.footer__bottom-link {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition);
}

.footer__bottom-link:hover {
  color: var(--gold);
}

.footer__review-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer__review-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.8);
  transition: all var(--transition);
}

.footer__review-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

/* ─── Page Header (inner pages) ─── */
.page-header {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 60%, var(--brown-dark) 100%);
  padding: calc(var(--nav-h) + 48px) 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?w=1600') center/cover;
  opacity: 0.12;
}

.page-header__content {
  position: relative;
  z-index: 1;
}

.page-header__title {
  color: var(--white);
  margin-bottom: 12px;
}

.page-header__subtitle {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 0.82rem;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition);
}

.breadcrumb a:hover {
  color: var(--gold);
}

.breadcrumb span {
  color: rgba(255, 255, 255, 0.4);
}

.breadcrumb__current {
  color: var(--gold);
  font-weight: 600;
}

/* ─── Packages Page ─── */
.package-step {
  background: var(--white);
  border: 2px solid var(--grey-200);
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 24px;
  transition: all var(--transition);
}

.package-step.active {
  border-color: var(--gold);
}

.package-step__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.package-step__num {
  width: 40px;
  height: 40px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.package-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border: 2px solid var(--grey-200);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  margin-bottom: 10px;
}

.package-option:hover {
  border-color: var(--gold);
}

.package-option.selected {
  border-color: var(--gold);
  background: rgba(216, 148, 51, 0.06);
}

.package-option__discount {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold);
}

.package-option__label {
  font-weight: 600;
}

.package-option__desc {
  font-size: 0.84rem;
  color: var(--text-muted);
}

/* ─── Filter Bar ─── */
.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 32px;
}

.filter-chip {
  padding: 8px 18px;
  border-radius: 100px;
  border: 1.5px solid var(--grey-200);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
  background: var(--white);
}

.filter-chip:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.filter-chip.active {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
}

.search-bar-full {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.search-bar-full input {
  flex: 1;
  padding: 12px 18px;
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  transition: all var(--transition);
}

.search-bar-full input:focus {
  outline: none;
  border-color: var(--gold);
}

/* ─── Blog Card ─── */
.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.blog-card__img {
  height: 200px;
  overflow: hidden;
}

.blog-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.blog-card:hover .blog-card__img img {
  transform: scale(1.06);
}

.blog-card__body {
  padding: 20px;
}

.blog-card__tag {
  font-size: 0.73rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 8px;
}

.blog-card__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.blog-card__excerpt {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.blog-card__meta {
  display: flex;
  gap: 14px;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 12px;
}

/* ─── Scroll to top ─── */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
  z-index: 500;
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: all;
}

.scroll-top:hover {
  background: var(--gold-dark);
  transform: translateY(-4px);
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .tour-layout {
    grid-template-columns: 1fr;
  }

  .booking-form {
    position: static;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-h: 64px;
  }

  .nav__links,
  .nav__search,
  .nav__lang {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 56px 0;
  }

  .inc-exc {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .offer-card {
    grid-template-columns: 1fr;
  }

  .offer-card__img {
    height: 180px;
  }

  .footer__top {
    grid-template-columns: 1fr 1fr;
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero__stats {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .footer__top {
    grid-template-columns: 1fr;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .nav__actions .btn {
    display: none;
  }

  .gallery {
    grid-template-columns: 1fr;
  }
}

/* ─── Animations ─── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

.fade-in-up--delay-1 {
  animation-delay: 0.1s;
  opacity: 0;
}

.fade-in-up--delay-2 {
  animation-delay: 0.2s;
  opacity: 0;
}

.fade-in-up--delay-3 {
  animation-delay: 0.3s;
  opacity: 0;
}

@keyframes pulse-gold {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(216, 148, 51, 0.4);
  }

  50% {
    box-shadow: 0 0 0 12px rgba(216, 148, 51, 0);
  }
}

.pulse {
  animation: pulse-gold 2.5s infinite;
}

/* ─── WhatsApp Float (Rectangular) ─── */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #25D366;
  color: var(--white);
  padding: 12px 20px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  text-decoration: none;
  transition: all var(--transition);
  font-weight: 700;
  font-size: 0.95rem;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.02);
  background: #1da851;
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 16px;
    right: 16px;
    padding: 10px 16px;
    font-size: 0.85rem;
  }
}