/* =====================================================
   TOUR VALLARTA - MAIN STYLESHEET
   Accent: #cf4739
   ===================================================== */

:root {
  --accent: #cf4739;
  --accent-dark: #a83426;
  --accent-light: #e8745a;
  --orange-strong: #ff6b35;
  --orange-soft: #ffb088;
  --gradient-warm: linear-gradient(135deg, #ff6b35 0%, #cf4739 50%, #ffb088 100%);
  --gradient-orange: linear-gradient(135deg, #ff8a3d 0%, #ff6b35 50%, #cf4739 100%);
  --gradient-soft: linear-gradient(135deg, #ffb088 0%, #ff8a3d 100%);
  --dark: #1a1a1a;
  --gray-900: #222;
  --gray-700: #555;
  --gray-500: #888;
  --gray-300: #ddd;
  --gray-100: #f7f7f7;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 40px rgba(0,0,0,0.15);
  --radius: 14px;
  --radius-lg: 24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-900);
  background: #fff;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-orange);
  color: #fff;
  box-shadow: 0 8px 20px rgba(207,71,57,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(207,71,57,0.5);
  filter: brightness(1.05);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.btn-outline-white:hover {
  background: #fff;
  color: var(--accent);
}

.btn-white {
  background: #fff;
  color: var(--accent);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-sm { padding: 9px 18px; font-size: 13px; }
.btn-lg { padding: 18px 36px; font-size: 17px; }
.btn-block { width: 100%; }

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(14px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
}

.logo img {
  height: 56px;
  width: auto;
  transition: var(--transition);
}
.site-header.scrolled .logo img { height: 48px; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.main-nav ul {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}
.main-nav a {
  font-weight: 500;
  font-size: 15px;
  color: var(--gray-900);
  position: relative;
}
.main-nav ul a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--gradient-orange);
  transition: var(--transition);
}
.main-nav ul a:hover { color: var(--accent); }
.main-nav ul a:hover::after { width: 100%; }

.nav-cta { padding: 12px 24px; font-size: 14px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.hamburger span {
  width: 26px;
  height: 3px;
  background: var(--accent);
  border-radius: 3px;
  transition: var(--transition);
}

/* ===== Mobile Menu ===== */
.mobile-menu {
  position: fixed;
  top: 0; right: -100%;
  width: 85%;
  max-width: 380px;
  height: 100vh;
  background: var(--gradient-warm);
  z-index: 200;
  padding: 60px 30px 30px;
  transition: right 0.4s ease;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.mobile-menu.open { right: 0; }
.mobile-close {
  position: absolute;
  top: 20px; right: 20px;
  color: #fff;
  font-size: 28px;
}
.mobile-logo { height: 70px; width: auto; margin: 0 auto 30px; }
.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mobile-menu ul a {
  display: block;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}
.mobile-menu ul li:last-child a {
  border: none;
  background: #fff;
  color: var(--accent);
  text-align: center;
  border-radius: 50px;
  margin-top: 20px;
  padding: 14px 24px;
}
.mobile-menu-info {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.2);
}
.mobile-menu-info a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  padding: 10px 0;
  font-size: 14px;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  color: #fff;
}
.hero-video {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.hero-video iframe {
  position: absolute;
  top: 50%; left: 50%;
  width: 100vw;
  height: 56.25vw; /* 16:9 */
  min-height: 100vh;
  min-width: 177.77vh;
  transform: translate(-50%, -50%);
  border: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(20,15,10,0.55) 0%, rgba(207,71,57,0.4) 100%);
}
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding-top: 80px;
}
.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5.5vw, 4.8rem);
  font-weight: 700;
  line-height: 1.1;
  margin: 14px 0 18px;
  text-shadow: 0 2px 30px rgba(0,0,0,0.3);
}
.hero-content h1 .accent {
  background: linear-gradient(90deg, #ffb088, #ff6b35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-content p {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  max-width: 620px;
  margin: 0 auto 32px;
  opacity: 0.95;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.eyebrow, .eyebrow-light {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.eyebrow {
  color: var(--accent);
  position: relative;
  padding-left: 38px;
  margin-bottom: 16px;
}
.eyebrow::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 28px; height: 2px;
  background: var(--gradient-orange);
}
.eyebrow-light {
  color: var(--orange-soft);
  margin-bottom: 12px;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.hero-scroll span {
  width: 4px;
  height: 8px;
  background: #fff;
  border-radius: 4px;
  animation: scrollBounce 1.6s infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(12px); opacity: 0.3; }
}

/* ===== Sections ===== */
.section {
  padding: 100px 0;
}
.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
}
.section-head h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1.2;
  font-weight: 700;
  margin: 8px 0 18px;
  color: var(--dark);
}
.section-head .lead {
  font-size: 17px;
  color: var(--gray-700);
  margin-bottom: 28px;
}

/* ===== Transportation cards ===== */
.section-transportation {
  background: linear-gradient(180deg, #fff 0%, #fff7f3 100%);
}
.transfer-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}
.transfer-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(207,71,57,0.08);
}
.transfer-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.transfer-card-featured {
  background: var(--gradient-warm);
  color: #fff;
  transform: scale(1.04);
}
.transfer-card-featured:hover { transform: scale(1.04) translateY(-8px); }

.transfer-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  border-radius: 50%;
  background: var(--gradient-soft);
  color: #fff;
}
.transfer-card-featured .transfer-icon {
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
}
.transfer-card h3 {
  font-size: 22px;
  margin-bottom: 6px;
}
.transfer-sub {
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 14px;
  font-size: 14px;
  letter-spacing: 0.5px;
}
.transfer-card-featured .transfer-sub { color: rgba(255,255,255,0.95); }
.transfer-card p:last-child { color: var(--gray-700); font-size: 15px; }
.transfer-card-featured p:last-child { color: rgba(255,255,255,0.92); }

/* ===== Tours grid ===== */
.section-tours {
  background: var(--gray-100);
}
.tours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.tour-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.tour-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.tour-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.tour-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.tour-card:hover .tour-image img { transform: scale(1.08); }

.tour-discount {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--gradient-orange);
  color: #fff;
  padding: 6px 14px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 13px;
  box-shadow: 0 4px 12px rgba(207,71,57,0.4);
}
.tour-category {
  position: absolute;
  bottom: 16px; left: 16px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  color: #fff;
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.tour-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.tour-meta {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: 10px;
}
.tour-rating { color: #f4b400; font-weight: 600; }
.tour-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}
.tour-excerpt {
  font-size: 14px;
  color: var(--gray-700);
  margin-bottom: 18px;
  flex-grow: 1;
}
.tour-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--gray-300);
}
.tour-price { display: flex; flex-direction: column; line-height: 1.1; }
.price-old {
  text-decoration: line-through;
  color: var(--gray-500);
  font-size: 13px;
}
.price-now {
  font-size: 24px;
  font-weight: 800;
  background: var(--gradient-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.price-now small { font-size: 12px; font-weight: 500; color: var(--gray-500); -webkit-text-fill-color: var(--gray-500); }

/* ===== Reviews ===== */
.section-reviews {
  background: linear-gradient(180deg, #fff7f3 0%, #fff 100%);
}
.reviews-rating {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  padding: 14px 24px;
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
  margin-top: 16px;
}
.reviews-rating .stars { color: #f4b400; }
.reviews-rating strong { font-size: 20px; color: var(--accent); }
.reviews-rating span { color: var(--gray-700); font-size: 14px; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.review-card {
  background: #fff;
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border-top: 4px solid transparent;
  border-image: var(--gradient-orange) 1;
  position: relative;
}
.review-card .stars { color: #f4b400; margin-bottom: 14px; }
.review-card p {
  font-style: italic;
  color: var(--gray-700);
  margin-bottom: 22px;
  line-height: 1.7;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.avatar {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--gradient-orange);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
}
.review-author strong { display: block; font-size: 15px; }
.review-author span { font-size: 13px; color: var(--gray-500); }

/* ===== Footer CTA ===== */
.footer-cta {
  background: var(--gradient-warm);
  color: #fff;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.footer-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0, transparent 50%);
}
.footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
}
.footer-cta-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  margin: 6px 0 8px;
}
.footer-cta-text p { opacity: 0.92; }

/* ===== Footer ===== */
.site-footer {
  background: #1a1a1a;
  color: #ccc;
  padding: 80px 0 30px;
  background-image: linear-gradient(180deg, #1a1a1a 0%, #2a1810 100%);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-logo {
  height: 80px;
  width: auto;
  margin-bottom: 20px;
}
.footer-col p { font-size: 15px; line-height: 1.7; margin-bottom: 22px; color: #aaa; }
.footer-col h4 {
  color: #fff;
  font-size: 17px;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 40px; height: 2px;
  background: var(--gradient-orange);
}
.footer-list { list-style: none; }
.footer-list li {
  padding: 7px 0;
  font-size: 14px;
  color: #aaa;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.footer-list li i { color: var(--accent-light); margin-top: 4px; }
.footer-list a:hover { color: var(--accent-light); }

.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 16px;
}
.footer-social a:hover {
  background: var(--gradient-orange);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 25px;
  text-align: center;
  font-size: 14px;
  color: #888;
}

/* ===== Cart Drawer ===== */
.cart-fab {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--gradient-orange);
  color: #fff;
  font-size: 22px;
  z-index: 90;
  box-shadow: 0 10px 28px rgba(207,71,57,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.cart-fab:hover { transform: scale(1.08); }
.cart-fab-count {
  position: absolute;
  top: -4px; right: -4px;
  background: #1a1a1a;
  color: #fff;
  width: 22px; height: 22px;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid #fff;
}

.cart-overlay, .modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 300;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.cart-overlay.open, .modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0; right: -420px;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: #fff;
  z-index: 310;
  transition: right 0.4s ease;
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 40px rgba(0,0,0,0.2);
}
.cart-drawer.open { right: 0; }
.cart-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--gray-300);
  display: flex; align-items: center; justify-content: space-between;
}
.cart-header h3 {
  font-size: 18px;
  display: flex; align-items: center; gap: 10px;
}
.cart-header h3 i { color: var(--accent); }
#closeCart { font-size: 22px; color: var(--gray-700); }
.cart-items {
  flex-grow: 1;
  overflow-y: auto;
  padding: 20px 24px;
}
.cart-empty {
  color: var(--gray-500);
  text-align: center;
  padding: 60px 0;
}
.cart-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-300);
}
.cart-item img {
  width: 70px; height: 70px;
  border-radius: 10px;
  object-fit: cover;
}
.cart-item-info { flex-grow: 1; }
.cart-item-info h5 { font-size: 14px; margin-bottom: 4px; }
.cart-item-price { color: var(--accent); font-weight: 700; font-size: 14px; }
.cart-item-remove {
  color: var(--gray-500);
  font-size: 16px;
  align-self: flex-start;
}
.cart-item-remove:hover { color: var(--accent); }
.cart-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--gray-300);
  background: var(--gray-100);
}
.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-size: 16px;
}
.cart-total strong {
  font-size: 22px;
  background: var(--gradient-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== Tour Modal ===== */
.tour-modal {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 95%;
  max-width: 980px;
  max-height: 90vh;
  background: #fff;
  border-radius: var(--radius-lg);
  z-index: 320;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.tour-modal.open {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}
.modal-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(0,0,0,0.6);
  color: #fff;
  z-index: 5;
  font-size: 18px;
}
.modal-close:hover { background: var(--accent); }
.modal-body {
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.modal-gallery {
  background: #000;
  position: relative;
  min-height: 320px;
}
.modal-gallery-main {
  width: 100%;
  height: 360px;
  object-fit: cover;
}
.modal-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
  padding: 4px;
  background: #000;
}
.modal-gallery-thumbs img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  cursor: pointer;
  opacity: 0.6;
  transition: var(--transition);
}
.modal-gallery-thumbs img.active,
.modal-gallery-thumbs img:hover { opacity: 1; }

.modal-info { padding: 32px; }
.modal-info .tour-meta { margin-bottom: 14px; }
.modal-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  margin-bottom: 12px;
  color: var(--dark);
}
.modal-info .modal-cat {
  display: inline-block;
  background: rgba(207,71,57,0.1);
  color: var(--accent);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}
.modal-info p { color: var(--gray-700); line-height: 1.7; margin-bottom: 20px; }
.modal-price-box {
  background: var(--gray-100);
  padding: 18px 22px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modal-price-box .price-old { font-size: 14px; }
.modal-price-box .price-now { font-size: 32px; }
.modal-actions {
  display: flex;
  gap: 12px;
}
.modal-actions .btn { flex-grow: 1; }

/* =====================================================
   PAGE HERO (Transportation / Contact)
   ===================================================== */
.page-hero {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #fff;
  padding: 140px 0 80px;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(15,10,5,0.75) 0%, rgba(207,71,57,0.55) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
}
.page-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 14px 0 18px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.page-hero-content p {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  max-width: 700px;
  margin: 0 auto 30px;
  opacity: 0.95;
}
.accent-gradient {
  background: linear-gradient(90deg, #ffb088, #ff8a3d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Header active state */
.main-nav a.active {
  color: var(--accent);
}
.main-nav ul a.active::after {
  width: 100%;
}

/* =====================================================
   INTRO OVERLAP CARD
   ===================================================== */
.intro-overlap {
  margin-top: -100px;
  position: relative;
  z-index: 5;
  padding-bottom: 60px;
}
.intro-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 60px 70px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  max-width: 980px;
  margin: 0 auto;
}
.intro-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 8px 0 20px;
  color: var(--dark);
}
.intro-card p {
  color: var(--gray-700);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 18px;
}
.intro-card .btn { margin-top: 20px; }

/* =====================================================
   PROCESS STEPS (How it works)
   ===================================================== */
.section-process {
  background: linear-gradient(180deg, #fff 0%, #fff7f3 100%);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 70px; left: 16%; right: 16%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--accent) 0 8px, transparent 8px 16px);
  z-index: 1;
}
.process-step {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 2;
  transition: var(--transition);
}
.process-step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.process-number {
  position: absolute;
  top: -20px; left: 50%;
  transform: translateX(-50%);
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--gradient-orange);
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px rgba(207,71,57,0.4);
}
.process-icon {
  width: 70px; height: 70px;
  margin: 24px auto 18px;
  border-radius: 50%;
  background: rgba(207,71,57,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  color: var(--accent);
}
.process-step h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--dark);
}
.process-step p {
  color: var(--gray-700);
  font-size: 15px;
}

/* =====================================================
   FEATURES GRID (image cards with overlay)
   ===================================================== */
.section-features {
  background: var(--gray-100);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.feature-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.85) 100%);
  transition: var(--transition);
}
.feature-card:hover .feature-overlay {
  background: linear-gradient(180deg, rgba(207,71,57,0.4) 0%, rgba(0,0,0,0.9) 100%);
}
.feature-content {
  position: absolute;
  bottom: 24px; left: 24px; right: 24px;
  color: #fff;
  z-index: 2;
}
.feature-info {
  display: inline-block;
  background: var(--gradient-orange);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.feature-content h3 {
  font-size: 22px;
  font-weight: 700;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

/* =====================================================
   GALLERY MARQUEE (infinite scroll)
   ===================================================== */
.section-gallery {
  background: #fff;
  overflow: hidden;
  padding-bottom: 80px;
}
.gallery-marquee {
  overflow: hidden;
  position: relative;
  margin-top: 20px;
  padding: 20px 0;
}
.gallery-marquee::before,
.gallery-marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.gallery-marquee::before { left: 0; background: linear-gradient(90deg, #fff, transparent); }
.gallery-marquee::after  { right: 0; background: linear-gradient(-90deg, #fff, transparent); }

.gallery-track {
  display: flex;
  gap: 18px;
  animation: marquee 60s linear infinite;
  width: max-content;
}
.gallery-track:hover { animation-play-state: paused; }
.gallery-slide {
  width: 320px;
  height: 220px;
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}
.gallery-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-slide:hover img { transform: scale(1.08); }

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =====================================================
   SERVICES GRID (3 cards)
   ===================================================== */
.section-services {
  background: linear-gradient(180deg, #fff7f3 0%, #fff 100%);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.service-card-featured {
  transform: scale(1.04);
  border: 2px solid var(--accent);
}
.service-card-featured:hover { transform: scale(1.04) translateY(-8px); }

.service-image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.service-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover .service-image img { transform: scale(1.06); }

.service-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--gradient-orange);
  color: #fff;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(207,71,57,0.4);
}

.service-body {
  padding: 28px 26px 26px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.service-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  margin-bottom: 12px;
  color: var(--dark);
}
.service-body > p {
  color: var(--gray-700);
  font-size: 15px;
  margin-bottom: 18px;
  flex-grow: 1;
}
.service-features {
  list-style: none;
  margin-bottom: 22px;
  padding: 0;
}
.service-features li {
  padding: 6px 0;
  font-size: 14px;
  color: var(--gray-700);
  display: flex;
  align-items: center;
  gap: 10px;
}
.service-features li i { color: var(--accent); }

/* =====================================================
   DISCOUNT CALLOUT
   ===================================================== */
.discount-callout {
  background: var(--gradient-warm);
  padding: 60px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.discount-callout::before,
.discount-callout::after {
  content: '%';
  position: absolute;
  font-family: 'Playfair Display', serif;
  font-size: 280px;
  font-weight: 900;
  opacity: 0.07;
  line-height: 1;
}
.discount-callout::before { left: -20px; top: -50px; }
.discount-callout::after  { right: -20px; bottom: -100px; }

.discount-inner {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  text-align: left;
  position: relative;
  z-index: 2;
}
.discount-icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  font-size: 32px;
  flex-shrink: 0;
}
.discount-text { flex-grow: 1; }
.discount-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 6px;
}
.discount-text strong {
  background: rgba(255,255,255,0.2);
  padding: 2px 10px;
  border-radius: 6px;
  letter-spacing: 1px;
  font-family: 'Courier New', monospace;
}

/* =====================================================
   CONTACT PAGE
   ===================================================== */
.section-contact {
  padding: 80px 0;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.contact-info-col h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 8px 0 16px;
  color: var(--dark);
}
.contact-info-col .lead {
  color: var(--gray-700);
  margin-bottom: 30px;
}
.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 40px;
}
.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(207,71,57,0.08);
}
a.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}
.contact-card-icon {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--gradient-orange);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-card-whatsapp .contact-card-icon {
  background: linear-gradient(135deg, #25d366, #128c7e);
}
.contact-card span {
  display: block;
  font-size: 12px;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}
.contact-card strong {
  font-size: 14px;
  color: var(--dark);
  line-height: 1.4;
}

/* Contact gallery rotator */
.contact-gallery {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-md);
}
.contact-gallery-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.contact-gallery-slide.active { opacity: 1; }
.contact-gallery-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.contact-gallery-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}
.contact-gallery-dots button {
  width: 30px; height: 4px;
  border-radius: 4px;
  background: rgba(255,255,255,0.5);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.contact-gallery-dots button.active {
  background: #fff;
  width: 50px;
}

/* Contact form */
.contact-form-box {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border-top: 5px solid transparent;
  border-image: var(--gradient-orange) 1;
}
.contact-form-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--dark);
  margin-bottom: 6px;
}
.form-subtitle {
  color: var(--gray-700);
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-field {
  margin-bottom: 18px;
}
.form-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 6px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-300);
  border-radius: 10px;
  font-family: inherit;
  font-size: 15px;
  color: var(--gray-900);
  background: #fafafa;
  transition: var(--transition);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(207,71,57,0.1);
}
.form-field textarea { resize: vertical; min-height: 120px; }

.form-note {
  font-size: 12px;
  color: var(--gray-500);
  margin-top: 14px;
  text-align: center;
}

.form-error {
  background: #fff0ee;
  color: var(--accent-dark);
  padding: 12px 16px;
  border-radius: 10px;
  margin-bottom: 18px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-left: 4px solid var(--accent);
}

.form-success {
  text-align: center;
  padding: 40px 20px;
}
.form-success i {
  font-size: 64px;
  color: #4ade80;
  margin-bottom: 16px;
}
.form-success h4 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  margin-bottom: 10px;
  color: var(--dark);
}
.form-success p {
  color: var(--gray-700);
}

/* Map */
.section-map {
  height: 420px;
  position: relative;
}
.section-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.3) contrast(1.05);
}

/* =====================================================
   TOURS PAGE
   ===================================================== */

/* Discount strip */
.tours-discount-strip {
  background: var(--gradient-warm);
  padding: 18px 0;
  color: #fff;
}
.tours-discount-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  text-align: center;
}
.tours-discount-inner .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.2);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}
.tours-discount-inner p {
  margin: 0;
  font-size: 15px;
}

/* Section tours all */
.section-tours-all {
  background: var(--gray-100);
  padding-top: 80px;
}

/* Filter bar */
.tours-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 40px;
  padding: 16px;
  background: #fff;
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
}
.filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  color: var(--gray-700);
  background: transparent;
  transition: var(--transition);
  cursor: pointer;
}
.filter-btn:hover {
  background: rgba(207,71,57,0.08);
  color: var(--accent);
}
.filter-btn.active {
  background: var(--gradient-orange);
  color: #fff;
  box-shadow: 0 6px 16px rgba(207,71,57,0.35);
}
.filter-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 50px;
  background: rgba(0,0,0,0.08);
  font-size: 11px;
  font-weight: 700;
}
.filter-btn.active .filter-count {
  background: rgba(255,255,255,0.25);
  color: #fff;
}

.tours-sort {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}
.tours-sort label {
  font-size: 13px;
  color: var(--gray-700);
  font-weight: 500;
}
.tours-sort select {
  padding: 8px 32px 8px 14px;
  border: 1.5px solid var(--gray-300);
  border-radius: 50px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  background: #fff;
  color: var(--gray-900);
  cursor: pointer;
  transition: var(--transition);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23cf4739' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}
.tours-sort select:focus {
  outline: none;
  border-color: var(--accent);
}

/* Quick view button on tour card */
.tour-quick-view {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  color: var(--accent);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(-8px);
  transition: var(--transition);
  z-index: 3;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.tour-card:hover .tour-quick-view {
  opacity: 1;
  transform: translateY(0);
}
.tour-quick-view:hover {
  background: var(--accent);
  color: #fff;
  transform: scale(1.1);
}

/* Empty state */
.tours-empty {
  text-align: center;
  padding: 80px 20px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.tours-empty i {
  font-size: 64px;
  color: var(--gray-300);
  margin-bottom: 18px;
}
.tours-empty h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  margin-bottom: 10px;
  color: var(--dark);
}
.tours-empty p {
  color: var(--gray-700);
  margin-bottom: 24px;
}

/* Why book with us */
.section-why {
  background: linear-gradient(180deg, #fff 0%, #fff7f3 100%);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.why-item {
  text-align: center;
  padding: 30px 20px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-top: 3px solid transparent;
}
.why-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-image: var(--gradient-orange) 1;
}
.why-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--gradient-soft);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}
.why-item h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--dark);
}
.why-item p {
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.6;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .modal-body { grid-template-columns: 1fr; }
  .modal-gallery-main { height: 280px; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .intro-card { padding: 40px 30px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .tours-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .transfer-options { grid-template-columns: 1fr; gap: 20px; }
  .transfer-card-featured { transform: none; }
  .transfer-card-featured:hover { transform: translateY(-8px); }
  .tours-grid { grid-template-columns: 1fr; gap: 24px; }
  .reviews-grid { grid-template-columns: 1fr; gap: 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .footer-col h4::after { left: 50%; transform: translateX(-50%); }
  .footer-list li { justify-content: center; }
  .footer-social { justify-content: center; }
  .footer-cta-inner { flex-direction: column; text-align: center; }
  .hero-content h1 { font-size: 2.4rem; }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .hero-buttons .btn { width: 100%; }
  .modal-info { padding: 22px; }
  .cart-fab { bottom: 20px; right: 20px; }

  /* Page hero */
  .page-hero { background-attachment: scroll; min-height: 440px; padding: 110px 0 60px; }
  .page-hero-content h1 { font-size: 2rem; }

  /* Process */
  .process-grid { grid-template-columns: 1fr; gap: 40px; }
  .process-grid::before { display: none; }

  /* Features */
  .features-grid { grid-template-columns: 1fr; gap: 18px; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; gap: 24px; }
  .service-card-featured { transform: none; }
  .service-card-featured:hover { transform: translateY(-8px); }

  /* Contact */
  .contact-cards { grid-template-columns: 1fr; }
  .contact-form-box { padding: 28px 22px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }

  /* Discount */
  .discount-inner { text-align: center; }
  .discount-text { text-align: center; }

  /* Gallery marquee */
  .gallery-slide { width: 240px; height: 170px; }

  /* Intro overlap */
  .intro-overlap { margin-top: -60px; }

  /* Tours filter */
  .tours-filter { border-radius: var(--radius-lg); padding: 14px; }
  .tours-sort { margin-left: 0; width: 100%; justify-content: space-between; }
  .filter-btn { font-size: 13px; padding: 8px 14px; }

  /* Why grid */
  .why-grid { grid-template-columns: 1fr; }

  /* Quick view always visible on mobile */
  .tour-quick-view { opacity: 1; transform: none; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .logo img { height: 44px; }
  .section-head { margin-bottom: 40px; }
}
