/* Official Egypt Tours - Professional Theme */

/* Reset WordPress defaults to ensure exact match */
body.home,
body.page,
body.single,
body.archive,
body.blog,
body.admin-bar {
  margin: 0;
  padding: 0;
}

/* Hide WordPress admin bar */
#wpadminbar {
  display: none !important;
}

:root {
  /* Refined professional color palette */
  --primary: #000000;
  --primary-dark: #000000;
  --primary-light: #1a1a1a;
  --accent: #ffc107;
  --accent-light: #ffecb3;
  --accent-dark: #ffb300;
  --text: #1a1a1a;
  --text-secondary: #4a4a4a;
  --text-muted: #6b6b6b;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --bg-cream: #fafafa;
  --border: #e5e5e5;
  --border-light: #f0f0f0;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
  --shadow: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.08);
  --radius: 4px;
  --radius-lg: 8px;
  --egypt-gold: var(--accent);
  --egypt-gold-dark: var(--accent-dark);
  --bg-papyrus: #f5f0e6;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  background: var(--bg-white);
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  opacity: 0;
  animation: pageLoad 0.5s ease-out forwards;
}

@keyframes pageLoad {
  to { opacity: 1; }
}

h1, h2, h3, h4, h5, h6, .section-title, .hero-title, .logo-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  color: var(--primary-dark);
  letter-spacing: -0.01em;
}

.container,
.ett-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Keyboard focus - professional accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}
.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.nav-item a:focus-visible,
.mega-menu-col a:focus-visible {
  outline: 2px solid var(--accent-light);
  outline-offset: 2px;
}

/* Promo Banner */
.promo-banner {
  background: var(--primary-dark);
  color: white;
  text-align: center;
  padding: 12px 24px;
  font-size: 14px;
  letter-spacing: 0.02em;
  animation: promoSlide 0.5s ease-out 0.2s both;
}

@keyframes promoSlide {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.promo-content strong,
.promo-content a {
  color: var(--accent-light);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid var(--accent-light);
  transition: all 0.2s;
}

.promo-content a:hover {
  color: white;
  border-color: white;
}

/* Main Header */
.main-header {
  background: var(--bg-white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  overflow: visible;
}

.header-top {
  border-bottom: 1px solid var(--border-light);
  overflow: visible;
}

.header-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.tours-nav-bar {
  background: var(--primary-dark);
  overflow: visible;
  position: relative;
  z-index: 1000;
}

.tours-nav-bar .main-nav {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.tours-nav-bar .nav-list {
  display: flex;
  list-style: none;
  gap: 0;
  justify-content: center;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.tours-nav-bar .nav-item a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.2s;
  letter-spacing: 0.02em;
}

.tours-nav-bar .nav-item.has-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  margin-left: 2px;
  opacity: 0.9;
}

.tours-nav-bar .nav-item a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.tours-nav-bar .nav-item.has-dropdown {
  position: static;
}

.tours-nav-bar .nav-item.has-dropdown .mega-menu {
  z-index: 1002;
  margin-top: 0;
}

/* Menu appears on hover */
.tours-nav-bar .nav-item.has-dropdown:hover .mega-menu,
.tours-nav-bar .nav-item.has-dropdown .mega-menu:hover {
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
  transform: translateY(0) !important;
  pointer-events: auto !important;
}


.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon svg {
  width: 44px;
  height: 44px;
}

.logo-text-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.logo-text {
  font-size: 26px;
  font-weight: 700;
  color: var(--primary-dark);
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.logo-tagline {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 4px;
}

.nav-item a {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius);
  transition: all 0.2s;
  letter-spacing: 0.01em;
}

.nav-item a:hover {
  background: var(--bg-light);
  color: var(--primary);
}

.nav-item.has-dropdown {
  position: relative;
}

.nav-item.has-dropdown:hover .mega-menu {
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  min-width: unset;
  max-width: none;
  background: #ffffff;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  padding: 36px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.2s ease-out, visibility 0.2s ease-out, transform 0.2s ease-out;
  z-index: 1002;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  display: block;
  pointer-events: none;
  margin-top: 0;
}


/* Ensure mega menu fits on smaller screens */
@media (max-width: 1200px) {
  .mega-menu-content {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.nav-item.has-dropdown:hover .mega-menu {
  transform: translateY(0);
}

.tours-nav-bar .nav-item.has-dropdown:hover .mega-menu {
  transform: translateY(0);
}

/* Invisible bridge so dropdown stays open when moving mouse from link to menu */
.mega-menu::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
  pointer-events: auto;
  background: transparent;
  z-index: 1003;
}

.mega-menu-content {
  display: flex;
  gap: 0;
  flex-wrap: nowrap;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.mega-menu-col {
  min-width: 260px;
  max-width: 300px;
  flex: 0 0 auto;
  padding: 0 16px;
}

.mega-menu-col:not(:last-child) {
  border-right: 1px solid rgba(0, 0, 0, 0.06);
  margin-right: 16px;
  padding-right: 24px;
}

.mega-menu-col:not(:first-child) {
  padding-left: 24px;
}

.mega-menu-col h4 {
  font-size: 11px !important;
  margin: 0 0 16px;
  color: var(--text-muted) !important;
  font-family: 'Inter', sans-serif;
  font-weight: 600 !important;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding-bottom: 12px;
  border-bottom: none !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.mega-menu-col a {
  display: block !important;
  padding: 10px 0;
  font-size: 14px !important;
  color: var(--primary-dark) !important;
  text-decoration: none;
  transition: color 0.15s ease, padding 0.15s ease;
  line-height: 1.5;
  margin-bottom: 0;
  opacity: 1 !important;
  visibility: visible !important;
  font-weight: 500 !important;
  border-radius: 4px;
}

.mega-menu-col a:hover {
  color: var(--primary-dark) !important;
  background: rgba(0, 0, 0, 0.04) !important;
  padding-left: 6px !important;
}

.mega-menu-col a.mega-menu-btn {
  text-align: center;
  border-radius: 0;
  background: var(--accent);
  color: #fff !important;
  margin-top: 8px;
  margin-bottom: 0;
  padding: 10px 16px !important;
  border: none;
}
.mega-menu-col a.mega-menu-btn:hover {
  background: var(--accent-dark) !important;
  color: #fff !important;
  padding-left: 16px !important;
}

.mega-menu-col p,
.mega-menu-col .mega-menu-subtitle {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  padding: 0 0 12px;
  margin: 0 0 8px;
}

.tours-menu-btn {
  display: none;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 0;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.15);
}

.tours-menu-btn:active {
  background: var(--border-light);
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}

.header-hours {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-secondary);
}

.header-hours-icon {
  flex-shrink: 0;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  transition: color 0.2s;
}

.header-phone-icon {
  flex-shrink: 0;
}

.header-phone:hover {
  color: var(--primary-dark);
}

.header-contact .whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1a9f4a;
  color: white !important;
  padding: 12px 24px;
  border-radius: 0;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 2px 8px rgba(26, 159, 74, 0.3);
}

.header-contact .whatsapp-btn:hover {
  background: #168f42;
  transform: translateY(-1px);
}

.header-translate {
  position: relative;
  z-index: 100;
}

.header-translate:focus-within,
.header-translate:has(.translate-btn[aria-expanded="true"]) {
  z-index: 1100;
}

.translate-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 600;
  color: white;
  background: var(--primary-dark);
  border: 1px solid var(--primary-dark);
  border-radius: 0;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.02em;
}

.translate-btn:hover {
  color: white;
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

.translate-icon {
  flex-shrink: 0;
}

.translate-chevron {
  flex-shrink: 0;
  opacity: 0.7;
}

.translate-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 4px;
  min-width: 160px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 0;
  box-shadow: var(--shadow-lg);
  padding: 6px 0;
  z-index: 1;
}

.translate-dropdown[hidden] {
  display: none;
}

.translate-option {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
  color: var(--text-secondary);
  transition: all 0.2s;
}

.translate-option:hover {
  background: var(--bg-light);
  color: var(--primary);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-cta .btn-primary {
  background: var(--accent);
  border-color: var(--accent);
}

.header-cta .btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.header-shop-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: white;
  border-radius: 0;
  transition: background 0.2s, transform 0.2s;
}

.header-shop-icon:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 10px;
  transition: all 0.2s;
  cursor: pointer;
  border: 1px solid transparent;
  letter-spacing: 0.02em;
}

.btn-primary {
  background: var(--accent);
  color: black;
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

/* Tour card button with arrow slide */
.tour-card .btn-primary,
.short-tour-card .btn-primary {
  transition: all 0.25s ease;
}

.short-tour-card .btn {
  padding: 8px 12px;
  font-size: 13px;
  width: fit-content;
}

.tour-card .btn-primary::after,
.short-tour-card .btn-primary::after {
  content: '\2713';
  display: none;
}

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

.btn-outline:hover {
  background: rgba(240, 192, 64, 0.08);
  border-color: var(--accent);
}

.btn-accent {
  background: var(--accent);
  color: black;
  border-color: var(--accent);
}

.btn-accent:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.btn-lg {
  padding: 14px 32px;
  font-size: 15px;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 15px;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: visible;
}

.hero.hero-compact {
  min-height: 360px;
  padding: 48px 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  animation: heroZoom 20s ease-out forwards;
}

.hero-videos {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  animation: heroVideoZoom 25s ease-out forwards;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-video.hero-video-loaded {
  opacity: 1;
}

.hero-video.hero-video-active {
  opacity: 1;
  z-index: 1;
}

.hero-video:not(.hero-video-active) {
  opacity: 0;
  z-index: 0;
}

@keyframes heroZoom {
  0% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

@keyframes heroVideoZoom {
  0% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.55) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 80px 24px;
  transform: translateY(-100px);
}

.animate-fade-up {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUpIn 0.8s ease-out forwards;
  animation-delay: var(--delay, 0s);
}

@keyframes fadeUpIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered reveal for grids */
.featured-tours .tour-card {
  opacity: 0;
  transform: translateY(24px);
}

.featured-tours.visible .tour-card {
  animation: fadeUpIn 0.5s ease-out forwards;
}

.featured-tours.visible .tour-card:nth-child(1) { animation-delay: 0.05s; }
.featured-tours.visible .tour-card:nth-child(2) { animation-delay: 0.1s; }
.featured-tours.visible .tour-card:nth-child(3) { animation-delay: 0.15s; }
.featured-tours.visible .tour-card:nth-child(4) { animation-delay: 0.2s; }
.featured-tours.visible .tour-card:nth-child(5) { animation-delay: 0.25s; }
.featured-tours.visible .tour-card:nth-child(6) { animation-delay: 0.3s; }
.featured-tours.visible .tour-card:nth-child(7) { animation-delay: 0.35s; }
.featured-tours.visible .tour-card:nth-child(8) { animation-delay: 0.4s; }
.featured-tours.visible .tour-card:nth-child(9) { animation-delay: 0.45s; }

.short-tours .short-tour-card {
  opacity: 0;
  transform: translateY(20px);
}

.short-tours.visible .short-tour-card {
  animation: fadeUpIn 0.5s ease-out forwards;
}

.short-tours.visible .short-tour-card:nth-child(1) { animation-delay: 0.05s; }
.short-tours.visible .short-tour-card:nth-child(2) { animation-delay: 0.1s; }
.short-tours.visible .short-tour-card:nth-child(3) { animation-delay: 0.15s; }
.short-tours.visible .short-tour-card:nth-child(4) { animation-delay: 0.2s; }
.short-tours.visible .short-tour-card:nth-child(5) { animation-delay: 0.25s; }
.short-tours.visible .short-tour-card:nth-child(6) { animation-delay: 0.3s; }

.destinations-section .destination-card {
  opacity: 0;
  transform: scale(0.95);
}

.destinations-section.visible .destination-card {
  animation: fadeScaleIn 0.5s ease-out forwards;
}

.destinations-section.visible .destination-card:nth-child(1) { animation-delay: 0.05s; }
.destinations-section.visible .destination-card:nth-child(2) { animation-delay: 0.1s; }
.destinations-section.visible .destination-card:nth-child(3) { animation-delay: 0.15s; }
.destinations-section.visible .destination-card:nth-child(4) { animation-delay: 0.2s; }
.destinations-section.visible .destination-card:nth-child(5) { animation-delay: 0.25s; }

@keyframes fadeScaleIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.gives-back-section .gives-back-card {
  opacity: 0;
  transform: translateY(16px);
}

.gives-back-section.visible .gives-back-card {
  animation: fadeUpIn 0.45s ease-out forwards;
}

.gives-back-section.visible .gives-back-card:nth-child(1) { animation-delay: 0.05s; }
.gives-back-section.visible .gives-back-card:nth-child(2) { animation-delay: 0.1s; }
.gives-back-section.visible .gives-back-card:nth-child(3) { animation-delay: 0.15s; }
.gives-back-section.visible .gives-back-card:nth-child(4) { animation-delay: 0.2s; }

.faq-section .faq-item {
  opacity: 0;
  transform: translateX(-12px);
}

.faq-section.visible .faq-item {
  animation: fadeSlideIn 0.45s ease-out forwards;
}

.faq-section.visible .faq-item:nth-child(1) { animation-delay: 0.05s; }
.faq-section.visible .faq-item:nth-child(2) { animation-delay: 0.1s; }
.faq-section.visible .faq-item:nth-child(3) { animation-delay: 0.15s; }
.faq-section.visible .faq-item:nth-child(4) { animation-delay: 0.2s; }

@keyframes fadeSlideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.reviews-section .review-card {
  opacity: 0;
  transform: translateY(16px);
}

.reviews-section.visible .review-card {
  animation: fadeUpIn 0.5s ease-out forwards;
}

.reviews-section.visible .review-card:nth-child(1) { animation-delay: 0.05s; }
.reviews-section.visible .review-card:nth-child(2) { animation-delay: 0.15s; }
.reviews-section.visible .review-card:nth-child(3) { animation-delay: 0.25s; }

.defines-section .defines-card {
  opacity: 0;
  transform: translateY(12px);
}

.defines-section.visible .defines-card {
  animation: fadeUpIn 0.45s ease-out forwards;
}

.defines-section.visible .defines-card:nth-child(1) { animation-delay: 0.05s; }
.defines-section.visible .defines-card:nth-child(2) { animation-delay: 0.1s; }
.defines-section.visible .defines-card:nth-child(3) { animation-delay: 0.15s; }
.defines-section.visible .defines-card:nth-child(4) { animation-delay: 0.2s; }
.defines-section.visible .defines-card:nth-child(5) { animation-delay: 0.25s; }

.trending-section .trending-card {
  opacity: 0;
  transform: translateY(20px);
}

.trending-section.visible .trending-card {
  animation: fadeUpIn 0.5s ease-out forwards;
}

.trending-section.visible .trending-card:nth-child(1) { animation-delay: 0.05s; }
.trending-section.visible .trending-card:nth-child(2) { animation-delay: 0.1s; }
.trending-section.visible .trending-card:nth-child(3) { animation-delay: 0.15s; }
.trending-section.visible .trending-card:nth-child(4) { animation-delay: 0.2s; }

.stats-section .stat-item {
  opacity: 0;
  transform: translateY(12px);
}

.stats-section.visible .stat-item {
  animation: fadeUpIn 0.5s ease-out forwards;
}

.stats-section.visible .stat-item:nth-child(1) { animation-delay: 0.05s; }
.stats-section.visible .stat-item:nth-child(2) { animation-delay: 0.15s; }
.stats-section.visible .stat-item:nth-child(3) { animation-delay: 0.25s; }
.stats-section.visible .stat-item:nth-child(4) { animation-delay: 0.35s; }

.hero-badges {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
}

.hero-badges .badge {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  color: white;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
  font-size: 96px;
  font-weight: 700;
  color: white;
  line-height: 1.1;
  margin-bottom: 24px;
  text-transform: none;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 22px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-buttons .btn-primary {
  background: var(--accent);
  color: black;
  border-color: var(--accent);
}

.hero-buttons .btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.hero-buttons .btn-outline {
  color: white;
  border-color: rgba(255,255,255,0.8);
  background: transparent;
}

.hero-buttons .btn-outline:hover {
  background: rgba(255,255,255,0.15);
  color: white;
  border-color: white;
}

/* Intro Section */
.intro-section {
  padding: 80px 0;
  background: var(--bg-white);
}

.hero-trust-badges {
  position: absolute;
  bottom: -8px;
  right: -8px;
  z-index: 2;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-guarantee-badge {
  position: relative;
  padding: 0;
  line-height: 0;
  margin-top: 40px;
  transform: translate(85px, 24px);
}

.hero-guarantee-badge-img {
  display: block;
  width: 160px;
  height: auto;
  opacity: 0.7;
  filter: url(#remove-white-bg);
}

.hero-badge-ribbon {
  padding: 5px 16px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-align: center;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.8);
  background: linear-gradient(180deg, rgba(184, 134, 11, 0.9) 0%, rgba(160, 120, 15, 0.85) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-badge-ribbon-green {
  background: linear-gradient(180deg, rgba(0, 175, 135, 0.95) 0%, rgba(0, 140, 108, 0.9) 100%);
}

.hero-badge-ribbon-orange {
  background: linear-gradient(180deg, rgba(255, 85, 51, 0.95) 0%, rgba(230, 65, 35, 0.9) 100%);
}

.hero-badge-ribbon-teal {
  background: linear-gradient(180deg, rgba(0, 128, 128, 0.95) 0%, rgba(0, 100, 100, 0.9) 100%);
}

.hero-badge-ribbon-silver {
  background: linear-gradient(180deg, rgba(192, 192, 192, 0.95) 0%, rgba(169, 169, 169, 0.9) 100%);
}

.hero-guarantee-badge-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 14px 20px 16px;
  background: rgba(12, 12, 12, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-left: 1px solid rgba(184, 134, 11, 0.2);
  border-right: 1px solid rgba(184, 134, 11, 0.2);
  border-bottom: 1px solid rgba(184, 134, 11, 0.2);
}

.hero-guarantee-badge-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 2px;
}

.hero-guarantee-badge-icon {
  color: rgba(255, 255, 255, 0.95);
  flex-shrink: 0;
  filter: drop-shadow(0 0 4px rgba(184, 134, 11, 0.3));
}

.hero-guarantee-badge-official {
  font-size: 9px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 1.8px;
}

.hero-badge-divider {
  width: 40px;
  height: 1px;
  margin: 4px 0;
  background: linear-gradient(90deg, transparent, rgba(184, 134, 11, 0.5), transparent);
}

.hero-safety-badge-inner .hero-badge-divider {
  background: linear-gradient(90deg, transparent, rgba(192, 192, 192, 0.45), transparent);
}

.hero-tripadvisor-badge-inner .hero-badge-divider,
.hero-getyourguide-badge-inner .hero-badge-divider {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.hero-guarantee-badge-main {
  font-size: 13px;
  font-weight: 700;
  color: white;
  text-align: center;
  letter-spacing: 0.03em;
  line-height: 1.35;
}

.hero-guarantee-badge-sub {
  font-size: 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  letter-spacing: 0.25px;
}

.hero-guarantee-badge-detail {
  font-size: 9px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
  letter-spacing: 0.5px;
}

.hero-safety-badge {
  position: relative;
  padding: 0;
  line-height: 0;
  margin-left: 32px;
  margin-top: 71px;
}

.hero-safety-badge-img {
  display: block;
  width: 140px;
  height: auto;
  opacity: 0.7;
}

.hero-safety-badge-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 14px 20px 16px;
  background: rgba(12, 12, 12, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-left: 1px solid rgba(192, 192, 192, 0.3);
  border-right: 1px solid rgba(192, 192, 192, 0.3);
  border-bottom: 1px solid rgba(192, 192, 192, 0.3);
}

.hero-safety-badge-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 2px;
}

.hero-safety-badge-icon {
  color: rgba(255, 255, 255, 0.95);
  flex-shrink: 0;
  filter: drop-shadow(0 0 4px rgba(192, 192, 192, 0.3));
}

.hero-safety-badge-official {
  font-size: 9px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 1.8px;
}

.hero-safety-badge-main {
  font-size: 13px;
  font-weight: 700;
  color: white;
  text-align: center;
  letter-spacing: 0.03em;
  line-height: 1.35;
}

.hero-safety-badge-sub {
  font-size: 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  letter-spacing: 0.25px;
}

.hero-safety-badge-detail {
  font-size: 9px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
  letter-spacing: 0.5px;
}

.hero-partner-badges {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 2;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-tripadvisor-badge {
  position: relative;
  display: block;
  padding: 0;
  line-height: 0;
  text-decoration: none;
  transition: transform 0.2s ease;
  margin-top: 12px;
}

.hero-tripadvisor-badge:hover {
  transform: translateY(-2px);
}

.hero-tripadvisor-badge-img {
  display: block;
  width: 88px;
  height: auto;
  opacity: 0.7;
}

.hero-tripadvisor-badge-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 14px 20px 16px;
  background: rgba(12, 12, 12, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-left: 1px solid rgba(0, 175, 135, 0.15);
  border-right: 1px solid rgba(0, 175, 135, 0.15);
  border-bottom: 1px solid rgba(0, 175, 135, 0.15);
}

.hero-tripadvisor-badge-logo-img {
  height: 18px;
  width: auto;
  max-width: 95px;
  object-fit: contain;
  display: block;
  filter: brightness(1.08);
}

.hero-tripadvisor-badge-main {
  font-size: 12px;
  font-weight: 700;
  color: white;
  letter-spacing: 0.06em;
}

.hero-tripadvisor-badge-sub {
  font-size: 9px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.4px;
}

.hero-tripadvisor-badge-year {
  font-size: 10px;
  font-weight: 700;
  color: rgba(0, 175, 135, 0.9);
  margin-top: 2px;
  letter-spacing: 0.8px;
}

.hero-getyourguide-badge {
  position: relative;
  display: block;
  padding: 0;
  line-height: 0;
  text-decoration: none;
  transition: transform 0.2s ease;
  transform: translateY(3px);
}

.hero-getyourguide-badge:hover {
  transform: translateY(1px);
}

.hero-getyourguide-badge-img {
  display: block;
  width: 120px;
  height: auto;
  opacity: 0.7;
}

.hero-getyourguide-badge-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 14px 20px 16px;
  background: rgba(12, 12, 12, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-left: 1px solid rgba(255, 85, 51, 0.15);
  border-right: 1px solid rgba(255, 85, 51, 0.15);
  border-bottom: 1px solid rgba(255, 85, 51, 0.15);
}

.hero-getyourguide-badge-logo {
  font-size: 13px;
  font-weight: 700;
  color: #FF5533;
  letter-spacing: -0.01em;
}

.hero-getyourguide-badge-main {
  font-size: 12px;
  font-weight: 700;
  color: white;
  letter-spacing: 0.06em;
}

.hero-getyourguide-badge-sub {
  font-size: 9px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.4px;
}

.hero-getyourguide-badge-year {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255, 85, 51, 0.9);
  margin-top: 2px;
  letter-spacing: 0.8px;
}

.section-title {
  font-size: 36px;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 8px;
  text-align: center;
  position: relative;
}

.scroll-reveal.visible .section-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  border-radius: 2px;
  animation: titleUnderline 0.6s ease-out forwards;
  animation-delay: 0.2s;
  animation-fill-mode: both;
}

@keyframes titleUnderline {
  to { width: 80px; }
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  text-align: center;
  max-width: 650px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

/* Tighter spacing around tour section titles */
.intro-section .section-title,
.page-content .section-title {
  margin-top: 24px !important;
}

/* Pyramids & Giza Tours title - reduce gap by 100px */
.page-content #pyramids.section-title {
  margin-top: -52px !important;
}

/* Giza Pyramids Full Day Tours title - move higher on pyramids-tours page */
.page-content #full-day.section-title {
  margin-top: 0 !important;
}

/* Scroll target offset for fixed header - ensures anchor links scroll section to top of viewport */
#full-day,
#half-day,
#sunrise-sunset,
#combination,
#special-experiences,
#pyramids,
#museum,
#islamic-coptic,
#multi-day,
#layover,
#night,
#desert,
#aswan,
#hurghada,
#sharm,
#marsa-alam,
#dahab,
#taba {
  scroll-margin-top: 140px;
}

body.page-pyramids-tours .intro-section {
  padding-top: 32px;
}

/* Alexandria City Tours title - move higher on alexandria-tours page */
.page-content #alexandria-city.section-title {
  margin-top: 0 !important;
}

body.page-alexandria-tours .intro-section {
  padding-top: 32px;
}

/* Luxor Full Day Tours title - move higher on luxor-tours page */
.page-content #luxor-full-day.section-title {
  margin-top: 0 !important;
}

body.page-luxor-tours .intro-section {
  padding-top: 32px;
}

/* Siwa Oasis Tours title - move higher on oasis-tours page */
.page-content #siwa.section-title {
  margin-top: 0 !important;
}

body.page-oasis-tours .intro-section {
  padding-top: 32px;
}

/* Aswan Full-Day Tours title - move higher on other-tours page */
.page-content #aswan.section-title {
  margin-top: 0 !important;
}

body.page-other-tours .intro-section {
  padding-top: 32px;
}

/* Airport Transfers title - move higher on transfers page */
.page-content #airport-transfers.section-title {
  margin-top: 0 !important;
}

body.page-transfers .intro-section {
  padding-top: 32px;
}

/* Popular Day Trips title - move higher on day-trips page */
.page-content #popular-day-trips.section-title {
  margin-top: 0 !important;
}

body.page-day-trips .intro-section {
  padding-top: 32px;
}

/* Budget Nile Cruise Trips title - move higher on nile-cruises page */
.page-content #budget-nile-cruise.section-title {
  margin-top: 0 !important;
}

body.page-nile-cruises .intro-section {
  padding-top: 32px;
}

/* About Us title - move higher on about-us page */
.page-content #about-us.section-title {
  margin-top: 0 !important;
}

body.page-about-us .intro-section {
  padding-top: 32px;
}

.short-tours-grid {
  margin-bottom: 40px !important;
}

/* Section banner with photo (e.g. Egyptian Museum) */
.section-banner {
  position: relative;
  min-height: 280px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.section-banner-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 48px 24px;
}

.section-banner-title {
  font-size: 36px;
  font-weight: 600;
  color: white;
  margin-bottom: 12px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.section-banner-subtitle {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.intro-content {
  max-width: 800px;
  margin: 0 auto;
}

.intro-content h3 {
  margin-top: 28px;
  margin-bottom: 12px;
  font-size: 20px;
  color: var(--primary-dark);
}

.intro-content h3:first-child {
  margin-top: 0;
}

.intro-content p {
  margin-bottom: 20px;
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
}

.intro-section .intro-content p {
  opacity: 0;
  transform: translateY(12px);
}

.intro-section.visible .intro-content p {
  animation: fadeUpIn 0.5s ease-out forwards;
}

.intro-section.visible .intro-content p:nth-of-type(1) { animation-delay: 0.15s; }
.intro-section.visible .intro-content p:nth-of-type(2) { animation-delay: 0.25s; }
.intro-section.visible .intro-content p:nth-of-type(3) { animation-delay: 0.35s; }
.intro-section.visible .intro-content p:nth-of-type(4) { animation-delay: 0.45s; }

/* Featured Tours */
.featured-tours {
  padding: 80px 0;
  background: var(--bg-light);
}

.tours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tour-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.25s ease;
  border: 1px solid var(--border-light);
}

.tour-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.tour-card-image {
  position: relative;
  height: 280px;
  background-color: #c9a962;
  background-image: url('https://images.unsplash.com/photo-1539650116574-8efeb43e2750?w=600');
  background-size: cover;
  background-position: center;
  overflow: hidden;
  transition: transform 0.5s ease;
}

.tour-card:hover .tour-card-image {
  transform: scale(1.05);
}

.tour-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--primary);
  color: white;
  padding: 3px 6px;
  font-size: 9px;
  font-weight: 600;
  border-radius: var(--radius);
  letter-spacing: 0.04em;
}

.tour-duration,
.tour-difficulty {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  color: white;
  padding: 3px 6px;
  font-size: 9px;
  border-radius: var(--radius);
}

.tour-duration {
  right: auto;
  left: 8px;
}

.tour-card-content {
  padding: 18px;
}

.tour-card-content h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--primary-dark);
  line-height: 1.25;
}

.tour-route {
  font-size: 10px;
  color: var(--accent);
  margin-bottom: 4px;
  font-weight: 500;
}

.tour-card-content p:not(.tour-route) {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 6px;
  line-height: 1.4;
}

.tour-card-content ul {
  list-style: disc;
  margin-bottom: 6px;
  padding-left: 18px;
}

.tour-card-content ul li {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 2px;
  line-height: 1.4;
}

.tour-meta {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.tour-price {
  font-size: 13px;
  margin-bottom: 8px;
}

.tour-price strong {
  color: var(--egypt-gold-dark);
}

/* Stats Section - Nile blue with gold accent */
.stats-section {
  padding: 48px 0;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: white;
  position: relative;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--egypt-gold), transparent);
  opacity: 0.6;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 14px;
  opacity: 0.9;
}

/* Short Tours */
.short-tours {
  padding: 60px 0;
  background: var(--bg-white);
}

.short-tours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.short-tour-card {
  display: flex;
  flex-direction: column;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow 0.3s;
}

.short-tour-card:hover {
  box-shadow: var(--shadow-lg);
}

.short-tour-image.camel-tour-image,
.tour-card-image.camel-tour-image,
.trending-image.camel-tour-image {
  background-position: center 35%;
}

.short-tour-image {
  height: 260px;
  background-color: #c9a962;
  background-image: url('https://images.unsplash.com/photo-1539650116574-8efeb43e2750?w=600');
  background-size: cover;
  background-position: center;
  overflow: hidden;
  transition: transform 0.5s ease;
}

.short-tour-card:hover .short-tour-image {
  transform: scale(1.06);
}

.short-tour-content {
  padding: 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.short-tour-price {
  font-size: 10px;
  font-weight: 700;
  color: var(--egypt-gold-dark);
  margin-bottom: 3px;
}

.short-tour-content h3 {
  font-size: 15px;
  margin-bottom: 4px;
  color: var(--primary-dark);
}

.short-tour-content ul {
  list-style: disc;
  margin-bottom: 6px;
  padding-left: 18px;
}

.short-tour-content li {
  font-size: 11px;
  margin-bottom: 1px;
  color: var(--text-muted);
}

.short-tour-rating {
  font-size: 11px;
  margin-bottom: 6px;
  color: var(--egypt-gold-dark);
}

.short-tour-content .btn {
  margin-top: auto;
}

.short-tour-content .btn-container,
.tour-card-content .btn-container {
  display: flex;
  gap: 6px;
  margin-top: 6px;
}

.short-tour-content .btn-container .btn,
.tour-card-content .btn-container .btn {
  flex: 1;
  margin-top: 0;
}

/* Safety Section */
.safety-section {
  padding: 60px 0;
  background: var(--bg-light);
  text-align: center;
  border-top: 3px solid var(--egypt-gold);
}

.safety-section p {
  max-width: 700px;
  margin: 0 auto 24px;
  font-size: 16px;
  color: var(--text-muted);
}

.safety-section .section-subtitle {
  margin-bottom: 16px;
}

/* Trending Section */
.trending-section {
  padding: 60px 0;
  background: var(--bg-white);
}

.trending-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 28px;
}

.trending-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow 0.3s;
}

.trending-card:hover {
  box-shadow: var(--shadow-lg);
}

.trending-image {
  height: 320px;
  background-color: #c9a962;
  background-image: url('https://images.unsplash.com/photo-1539650116574-8efeb43e2750?w=600');
  background-size: cover;
  background-position: center;
}

.trending-content {
  padding: 20px;
}

.trending-location {
  font-size: 12px;
  color: var(--primary-dark);
  font-weight: 600;
}

.trending-content h3 {
  font-size: 18px;
  margin: 8px 0;
}

.trending-duration {
  font-size: 14px;
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.trending-content p:last-of-type {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.trending-content a {
  font-weight: 600;
  color: var(--primary);
}

.trending-content a:hover {
  text-decoration: underline;
}

/* Destinations */
.destinations-section {
  padding: 60px 0;
  background: var(--bg-papyrus);
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.destination-card {
  position: relative;
  height: 240px;
  border-radius: 12px;
  overflow: hidden;
  background-color: #c9a962;
  background-image: url('https://images.unsplash.com/photo-1539650116574-8efeb43e2750?w=600');
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.destination-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 61, 82, 0.85), transparent 60%);
  transition: opacity 0.3s ease;
}

.destination-card:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}

.destination-name,
.destination-location {
  position: relative;
  z-index: 1;
  color: white;
}

.destination-name {
  font-size: 20px;
  font-weight: 700;
}

.destination-location {
  font-size: 14px;
  opacity: 0.9;
}

/* Gives Back */
.gives-back-section {
  padding: 60px 0;
  background: var(--bg-white);
  text-align: center;
}

.gives-back-section > .container > p {
  margin-bottom: 40px;
  color: var(--text-muted);
}

.gives-back-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}

.gives-back-card {
  padding: 24px;
  background: var(--bg-light);
  border-radius: 12px;
  transition: transform 0.3s;
}

.gives-back-card:hover {
  transform: translateY(-4px);
}

.gives-back-card:hover .gives-back-icon {
  transform: scale(1.1);
}

.gives-back-icon {
  font-size: 40px;
  margin-bottom: 16px;
  transition: transform 0.3s ease;
}

.gives-back-card h4 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--primary-dark);
  font-family: 'Cormorant Garamond', Georgia, serif;
}

.gives-back-card p {
  font-size: 14px;
  color: var(--text-muted);
}

/* Contact Page */
.contact-section {
  padding: 80px 0;
  background: var(--bg-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
  max-width: 900px;
  margin: 0 auto;
}

.contact-info h3 {
  margin-bottom: 20px;
  font-size: 22px;
}

.contact-info p {
  margin-bottom: 12px;
  color: var(--text-secondary);
}

.contact-info a {
  color: var(--primary);
  transition: color 0.2s;
}

.contact-info a:hover {
  color: var(--primary-dark);
}

.contact-form-wrap {
  background: var(--bg-light);
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
}

.contact-form label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  margin-bottom: 16px;
  font-size: 15px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.form-feedback {
  margin-bottom: 16px;
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 14px;
}

.form-feedback.form-feedback--success {
  background: #ecfdf5;
  color: #047857;
  border: 1px solid #a7f3d0;
}

.form-feedback.form-feedback--error {
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
}

.contact-form .btn[data-loading="true"] .btn-text {
  visibility: hidden;
}

.contact-form .btn[data-loading="true"] .btn-loading {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  position: absolute;
}

.contact-form .btn[data-loading="true"] {
  position: relative;
  pointer-events: none;
  opacity: 0.85;
}

.btn-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: btnSpin 0.8s linear infinite;
}

@keyframes btnSpin {
  to { transform: rotate(360deg); }
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* FAQ */
.faq-section {
  padding: 80px 0;
  background: var(--bg-white);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}

.faq-item {
  padding: 28px;
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
}

.faq-item h4 {
  font-size: 17px;
  margin-bottom: 12px;
  color: var(--primary-dark);
  font-family: 'Cormorant Garamond', Georgia, serif;
  line-height: 1.4;
}

.faq-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Reviews */
.reviews-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}

.review-card {
  padding: 28px;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
}

.review-header {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-light);
}

.review-header strong {
  display: block;
  font-size: 17px;
  margin-bottom: 4px;
  color: var(--primary-dark);
}

.review-body p {
  font-size: 14px;
  margin-bottom: 8px;
  line-height: 1.7;
}

.review-body p:first-child {
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
}

/* Defines Us */
.defines-section {
  padding: 60px 0;
  background: var(--bg-light);
}

.defines-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}

.defines-card {
  padding: 24px;
  background: white;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.defines-card h4 {
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--primary-dark);
}

.defines-card p {
  font-size: 14px;
  color: var(--text-muted);
}

/* Footer */
.main-footer {
  background: var(--primary-dark);
  color: white;
  padding: 72px 0 32px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 40px;
  margin-bottom: 48px;
}

.footer-col h4 {
  font-size: 16px;
  margin-bottom: 16px;
  font-weight: 600;
  color: white;
}

.footer-col a,
.footer-col p {
  display: block;
  font-size: 14px;
  color: white;
  margin-bottom: 8px;
}

.footer-col a:hover {
  color: white;
  opacity: 0.9;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p,
.footer-bottom a {
  font-size: 14px;
  color: white;
}

.footer-bottom a:hover {
  color: white;
  opacity: 0.9;
}

/* WhatsApp Float - Green with WhatsApp logo */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #1a9f4a;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(26, 159, 74, 0.5);
  z-index: 999;
  transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(26, 159, 74, 0.6);
}

/* Responsive */
@media (max-width: 1024px) {
  .tours-menu-btn {
    display: inline-block;
  }

  .header-contact,
  .header-translate {
    display: none;
  }

  .header-content .logo-tagline,
  .logo .logo-tagline {
    display: none !important;
  }

  /* Group Tours + Enquire Now + Cart together on the right */
  .tours-menu-btn {
    margin-left: auto;
  }

  .header-cta {
    gap: 8px;
  }

  .tours-nav-bar {
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    transition: max-height 0.35s ease-out, visibility 0.35s;
  }

  .tours-nav-bar.nav-open {
    max-height: 85vh;
    overflow-y: auto;
    visibility: visible;
    -webkit-overflow-scrolling: touch;
  }

  /* Tours button when menu is open - clear active state */
  .main-header:has(.tours-nav-bar.nav-open) .tours-menu-btn {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
  }

  /* Semi-transparent overlay behind menu */
  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 999;
    opacity: 0;
    animation: overlayFadeIn 0.2s ease-out forwards;
  }

  @keyframes overlayFadeIn {
    to { opacity: 1; }
  }

  .tours-nav-bar .nav-list {
    flex-direction: column;
  }

  .tours-nav-bar .nav-item a {
    padding: 14px 20px;
    min-height: 48px;
    display: flex;
    align-items: center;
  }

  .tours-nav-bar .nav-item.has-dropdown:hover .mega-menu,
  .tours-nav-bar.nav-open .mega-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    min-width: 100%;
    box-shadow: none;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tours-grid,
  .short-tours-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero {
    min-height: 80vh;
  }

  .hero-title {
    font-size: 56px;
  }

  .hero-subtitle {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  /* Streamlined mobile: tighter spacing, cleaner layout */
  .container,
  .ett-container {
    padding: 0 16px;
  }

  .promo-banner {
    padding: 8px 16px;
    font-size: 12px;
  }

  .header-content {
    padding: 12px 16px;
    gap: 12px;
  }

  .logo-icon svg {
    width: 32px;
    height: 32px;
  }

  .logo-text {
    font-size: 18px;
  }

  .header-cta .btn-primary {
    padding: 8px 14px;
    font-size: 13px;
  }

  .header-shop-icon {
    padding: 8px;
  }

  .tours-nav-bar .main-nav {
    padding: 0 16px;
  }

  .tours-nav-bar .nav-item a {
    padding: 14px 20px;
    font-size: 15px;
  }

  .mega-menu {
    padding: 12px 0;
  }

  .mega-menu-col {
    padding: 0 12px;
    min-width: 140px;
  }

  .mega-menu-col h4 {
    font-size: 13px;
  }

  .hero {
    min-height: 72vh;
  }

  .hero.hero-compact {
    min-height: 280px;
  }

  .hero-content {
    padding: 48px 16px;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .hero-buttons {
    gap: 10px;
    flex-wrap: wrap;
  }

  .hero-buttons .btn {
    padding: 10px 20px;
    font-size: 14px;
  }

  .intro-section,
  .featured-section,
  .destinations-section,
  .reviews-section,
  .defines-section {
    padding: 48px 0;
  }

  .section-banner {
    min-height: 200px;
    margin-bottom: 32px;
  }

  .section-banner-title {
    font-size: 28px;
  }

  .section-banner-subtitle {
    font-size: 15px;
  }

  .section-title {
    font-size: 28px;
  }

  .tours-grid,
  .short-tours-grid,
  .trending-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .tour-card,
  .short-tour-card,
  .trending-card {
    padding: 20px;
  }

  .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .destination-card {
    padding: 16px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .stat-item h3 {
    font-size: 28px;
  }

  .main-footer {
    padding: 40px 0 24px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 32px;
    text-align: center;
  }

  .footer-col h4 {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .footer-col a,
  .footer-col p {
    font-size: 13px;
    margin-bottom: 6px;
  }

  .footer-bottom {
    flex-direction: column;
    padding-top: 20px;
    gap: 12px;
    text-align: center;
  }

  .footer-bottom p,
  .footer-bottom a {
    font-size: 13px;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 16px;
    right: 16px;
  }

  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }

  .faq-section,
  .reviews-section {
    padding: 48px 0;
  }

  .faq-grid {
    gap: 12px;
  }

  .faq-item {
    padding: 20px;
  }

  .faq-item h4 {
    font-size: 15px;
  }

  .defines-grid {
    gap: 16px;
  }

  .defines-card {
    padding: 18px;
  }

  .defines-card h4 {
    font-size: 15px;
  }

  .section-subtitle {
    font-size: 15px;
    margin-bottom: 24px;
  }
}

/* Extra small phones - even more compact */
@media (max-width: 480px) {
  .container,
  .ett-container {
    padding: 0 12px;
  }

  .promo-banner {
    padding: 6px 12px;
    font-size: 11px;
  }

  .hero {
    min-height: 68vh;
  }

  .hero.hero-compact {
    min-height: 240px;
  }

  .hero-content {
    padding: 36px 12px;
  }

  .hero-title {
    font-size: 26px;
  }

  .hero-subtitle {
    font-size: 14px;
  }

  .intro-section,
  .featured-section,
  .destinations-section,
  .reviews-section,
  .defines-section,
  .faq-section {
    padding: 36px 0;
  }

  .section-title {
    font-size: 24px;
  }

  .destinations-grid {
    grid-template-columns: 1fr;
  }

  .tour-card,
  .short-tour-card,
  .trending-card {
    padding: 16px;
  }

  .main-footer {
    padding: 32px 0 20px;
  }

  .footer-content {
    gap: 20px;
    margin-bottom: 24px;
  }
}

/* Respect user preference for reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  body {
    animation: none;
    opacity: 1;
  }

  .promo-banner {
    animation: none;
  }

  .scroll-reveal.visible .section-title::after {
    animation: none;
    width: 80px;
  }

  .intro-section .intro-content p {
    opacity: 1;
    transform: none;
  }

  .intro-section.visible .intro-content p {
    animation: none;
  }

  .featured-tours .tour-card,
  .short-tours .short-tour-card,
  .destinations-section .destination-card,
  .gives-back-section .gives-back-card,
  .faq-section .faq-item,
  .reviews-section .review-card,
  .defines-section .defines-card,
  .trending-section .trending-card,
  .stats-section .stat-item {
    opacity: 1;
    transform: none;
  }

  .featured-tours.visible .tour-card,
  .short-tours.visible .short-tour-card,
  .destinations-section.visible .destination-card,
  .gives-back-card:hover .gives-back-icon {
    transform: none;
  }

  .gives-back-section.visible .gives-back-card,
  .faq-section.visible .faq-item,
  .reviews-section.visible .review-card,
  .defines-section.visible .defines-card,
  .trending-section.visible .trending-card,
  .stats-section.visible .stat-item {
    animation: none;
  }
}

/* Tour Detail Page Styles */
.tour-detail-hero {
  position: relative;
  height: 400px;
  overflow: hidden;
  margin-top: 0;
}

.tour-detail-hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #c9a962;
  background-image: url('https://images.unsplash.com/photo-1539650116574-8efeb43e2750?w=1200');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.tour-detail-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9));
}

.tour-detail-hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: white;
  padding: 80px 0 40px;
}

.tour-detail-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
  color: white;
  line-height: 1.2;
}

.tour-detail-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.tour-meta-item {
  font-size: 16px;
  opacity: 0.9;
  display: flex;
  align-items: center;
}

.tour-meta-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent) !important;
  opacity: 1;
}

.tour-detail-section {
  padding: 64px 0;
  background: var(--bg-white);
}

.tour-detail-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
  align-items: start;
}

.tour-detail-main {
  min-width: 0;
}

.tour-detail-block {
  margin-bottom: 48px;
}

.tour-detail-block h2 {
  font-size: 32px;
  margin-bottom: 24px;
  color: var(--primary-dark);
}

.tour-description {
  font-size: 16px;
  line-height: 1.8;
  color: var(--primary-dark);
}

.tour-description p {
  margin-bottom: 16px;
}

.tour-description p:last-child {
  margin-bottom: 0;
}

.tour-included-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tour-included-list li {
  padding: 12px 0;
  padding-left: 28px;
  position: relative;
  font-size: 16px;
  color: var(--primary-dark);
  border-bottom: 1px solid var(--border-light);
}

.tour-included-list li:last-child {
  border-bottom: none;
}

.tour-included-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 18px;
}

.tour-itinerary {
  margin-top: 24px;
}

.itinerary-item {
  padding: 16px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 16px;
  line-height: 1.7;
}

.itinerary-item:last-child {
  border-bottom: none;
}

.itinerary-item strong {
  color: var(--primary-dark);
  margin-right: 8px;
  display: inline-block;
  min-width: 80px;
}

.tour-booking-sidebar {
  position: sticky;
  top: 100px;
}

.tour-booking-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  margin-bottom: 24px;
}

.tour-detail-price {
  padding: 20px 0;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border-light);
  display: block;
}

.tour-detail-price-label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text);
  margin-bottom: 8px;
}

.tour-detail-price-amount {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-dark);
  display: block;
  visibility: visible;
}

.tour-price {
  text-align: center;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 24px;
}

.price-label {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.price-amount {
  display: block;
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.2;
}

.price-unit {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 4px;
}

.tour-booking-price {
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border-light);
  display: block;
}

.tour-booking-price .price-label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text);
  margin-bottom: 4px;
}

.tour-booking-price .price-amount {
  display: block !important;
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-dark) !important;
  visibility: visible !important;
}

.booking-actions {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.whatsapp-booking-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a9f4a !important;
  border-color: #1a9f4a !important;
  color: white !important;
}

.whatsapp-booking-btn:hover {
  background: #168f42 !important;
  border-color: #168f42 !important;
  color: white !important;
}

/* Calendar Booking Section */
.calendar-booking-section {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border-light);
}

.calendar-booking-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 8px;
  font-family: 'Cormorant Garamond', serif;
}

.calendar-booking-subtitle {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.6;
}

.calendar-booking-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.calendar-booking-calendar {
  width: 100%;
}

.calendar-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.calendar-booking-guests {
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
}

.calendar-booking-guests .form-group {
  margin-bottom: 0;
}

.calendar-booking-action {
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
}

#proceed-booking-btn {
  transition: all 0.3s ease;
  opacity: 0.6;
  cursor: not-allowed;
}

#proceed-booking-btn.btn-enabled {
  opacity: 1;
  cursor: pointer;
}

#proceed-booking-btn.btn-enabled:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.calendar-booking-note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-secondary);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.calendar-booking-note svg {
  color: var(--accent);
  flex-shrink: 0;
}

.price-label {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.price-amount {
  display: block;
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-dark);
  font-family: 'Cormorant Garamond', serif;
}

.tour-booking-form {
  margin-top: 24px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 15px;
  font-family: inherit;
  color: var(--primary-dark);
  background: var(--bg-white);
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.btn-block {
  width: 100%;
  display: block;
  text-align: center;
}

.booking-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 16px;
  line-height: 1.6;
}

.booking-note strong {
  color: var(--primary-dark);
  font-weight: 600;
}

.form-row {
  display: flex;
  gap: 16px;
}

.form-group-half {
  flex: 1;
  margin-bottom: 20px;
}

.form-help-text {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
  font-style: italic;
}

.form-checkbox {
  margin-bottom: 20px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--primary-dark);
  cursor: pointer;
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin: 0;
  margin-top: 2px;
  flex-shrink: 0;
  cursor: pointer;
}

.checkbox-label span {
  flex: 1;
}

.form-group input[readonly] {
  background: var(--bg-light);
  cursor: not-allowed;
  color: var(--text-secondary);
}

.contact-info-box {
  background: white;
  padding: 16px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  border: 1px solid var(--border-light);
}

.contact-info-box p {
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--primary-dark);
}

.contact-info-box p:last-child {
  margin-bottom: 0;
}

.contact-info-box a {
  color: var(--primary);
  text-decoration: none;
}

.contact-info-box a:hover {
  text-decoration: underline;
}

/* Booking Message Styles */
.booking-message {
  margin-bottom: 24px;
  padding: 20px;
  border-radius: var(--radius-lg);
  border: 2px solid;
}

.booking-message-success {
  background: #f0f9f4;
  border-color: #10b981;
  color: #065f46;
}

.booking-message-error {
  background: #fef2f2;
  border-color: #ef4444;
  color: #991b1b;
}

.booking-message-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.booking-message-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 8px;
}

.booking-message h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  color: inherit;
}

.booking-message p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

.booking-ref {
  background: rgba(255, 255, 255, 0.5);
  padding: 12px;
  border-radius: var(--radius);
  font-family: 'Courier New', monospace;
  font-size: 16px;
  font-weight: 600;
}

.booking-next-steps {
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 13px;
}

.tour-contact-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.tour-contact-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--primary-dark);
}

.tour-contact-card p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
  padding: 12px 24px;
  margin-bottom: 12px;
}

.btn-outline:hover {
  background: var(--accent);
  color: black;
}

.btn-outline:last-child {
  margin-bottom: 0;
}

@media (max-width: 968px) {
  .tour-detail-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .tour-booking-sidebar {
    position: static;
  }

  .tour-detail-title {
    font-size: 36px;
  }
}

@media (max-width: 640px) {
  .tour-detail-hero {
    height: 300px;
  }

  .tour-detail-title {
    font-size: 28px;
  }

  .tour-detail-meta {
    flex-direction: column;
    gap: 8px;
  }

  .tour-detail-block h2 {
    font-size: 24px;
  }

  .tour-booking-card {
    padding: 24px;
  }

  .form-row {
    flex-direction: column;
    gap: 0;
  }

  .form-group-half {
    margin-bottom: 20px;
  }

  .booking-actions {
    gap: 10px;
  }

  .calendar-booking-title {
    font-size: 24px;
  }

  .calendar-booking-subtitle {
    font-size: 14px;
  }

  .calendar-booking-wrapper {
    gap: 20px;
  }
}

/* Checkout Page Styles */
.checkout-section {
  padding: 64px 0;
  background: var(--bg-white);
  min-height: calc(100vh - 200px);
}

.checkout-header {
  text-align: center;
  margin-bottom: 48px;
}

.checkout-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 12px;
  font-family: 'Cormorant Garamond', serif;
}

.checkout-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.checkout-progress {
  margin-top: 24px;
  padding: 16px 24px;
  background: var(--bg-light);
  border-radius: var(--radius-lg);
}

.checkout-progress-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.checkout-progress-step {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-muted);
}

.checkout-progress-step--current {
  color: var(--primary);
  font-weight: 600;
}

.checkout-progress-step:not(:last-child)::after {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--border);
  margin-left: 8px;
}

.checkout-progress-step--current::after,
.checkout-progress-step--current + .checkout-progress-step::after {
  background: var(--primary);
  opacity: 0.3;
}

.checkout-progress-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--border);
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 600;
}

.checkout-progress-step--current .checkout-progress-num {
  background: var(--primary);
  color: white;
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: start;
}

.checkout-main {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.checkout-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.checkout-card-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  font-family: 'Cormorant Garamond', serif;
}

.booking-summary {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
}

.summary-item:last-child {
  border-bottom: none;
}

.summary-label {
  font-weight: 600;
  color: var(--text-secondary);
  font-size: 14px;
}

.summary-value {
  font-weight: 600;
  color: var(--primary-dark);
  font-size: 14px;
  text-align: right;
}

.checkout-form {
  margin-top: 8px;
}

.payment-options {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.payment-option {
  position: relative;
}

.payment-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.payment-label {
  display: block;
  padding: 20px;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all 0.2s ease;
  background: var(--bg-white);
}

.payment-option input[type="radio"]:checked + .payment-label {
  border-color: var(--primary);
  background: rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.payment-label:hover {
  border-color: var(--primary);
  background: rgba(0, 0, 0, 0.02);
}

.payment-option-title {
  display: block;
  font-weight: 600;
  font-size: 16px;
  color: var(--primary-dark);
  margin-bottom: 6px;
}

.payment-option-desc {
  display: block;
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.payment-option-amount {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-dark);
  font-family: 'Cormorant Garamond', serif;
}

.payment-methods {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border-light);
}

.payment-methods-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.payment-icons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.payment-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  background: var(--bg-light);
  transition: all 0.2s ease;
  min-width: 100px;
}

.payment-icon:hover {
  border-color: var(--primary);
  background: white;
  box-shadow: var(--shadow-sm);
}

.payment-icon svg {
  color: var(--primary-dark);
}

.payment-icon span {
  font-size: 12px;
  color: var(--text-secondary);
  font-weight: 500;
}

.payment-form {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
}

.stripe-checkout-info {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-top: 16px;
}

.stripe-checkout-info p {
  margin-bottom: 12px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.stripe-checkout-info p:first-child {
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.payment-security-badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.payment-security-badges span {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
}

.checkout-sidebar {
  position: sticky;
  top: 100px;
}

.order-summary-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  margin-bottom: 24px;
}

.order-summary-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 24px;
  font-family: 'Cormorant Garamond', serif;
}

.order-tour-info {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-light);
}

.order-tour-image {
  width: 100px;
  height: 100px;
  border-radius: var(--radius);
  background-color: #c9a962;
  background-image: url('https://images.unsplash.com/photo-1539650116574-8efeb43e2750?w=600');
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

.order-tour-details {
  flex: 1;
}

.order-tour-details h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 6px;
  line-height: 1.3;
}

.order-tour-meta {
  font-size: 13px;
  color: var(--text-secondary);
  margin: 0;
}

.order-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.order-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--primary-dark);
}

.order-row-subtotal {
  padding-top: 12px;
  border-top: 1px solid var(--border-light);
  font-weight: 600;
  font-size: 15px;
}

.order-row-discount {
  color: var(--accent);
}

.order-row-total {
  padding-top: 12px;
  border-top: 2px solid var(--primary-dark);
  font-weight: 700;
  font-size: 20px;
  color: var(--primary-dark);
}

.order-total-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
}

.order-deposit-info {
  background: var(--bg-light);
  padding: 16px;
  border-radius: var(--radius);
  margin-bottom: 24px;
}

.order-deposit-info p {
  margin: 0 0 8px;
  font-size: 14px;
  color: var(--primary-dark);
}

.order-deposit-info p:last-child {
  margin-bottom: 0;
}

.deposit-note {
  font-size: 13px;
  color: var(--text-secondary);
}

.order-security {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.security-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-secondary);
  padding: 8px 12px;
  background: var(--bg-light);
  border-radius: var(--radius);
}

.security-badge svg {
  color: var(--accent);
}

.checkout-submit-btn {
  position: relative;
  padding: 18px 24px;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.checkout-submit-btn .btn-text {
  flex: 1;
}

.checkout-submit-btn .btn-amount {
  font-size: 20px;
  font-weight: 700;
  font-family: 'Cormorant Garamond', serif;
}

.checkout-guarantee {
  margin-top: 16px;
  font-size: 12px;
  color: var(--text-secondary);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.checkout-guarantee svg {
  color: var(--accent);
}

.checkout-help-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.checkout-help-card h4 {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.checkout-help-card p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.checkout-error {
  background: #fef2f2;
  border: 2px solid #ef4444;
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #991b1b;
  font-size: 14px;
}

.checkout-error svg {
  flex-shrink: 0;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

@media (max-width: 968px) {
  .checkout-progress-steps {
    flex-wrap: wrap;
    gap: 12px;
  }

  .checkout-progress-step:not(:last-child)::after {
    display: none;
  }

  .checkout-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .checkout-sidebar {
    position: static;
  }

  .checkout-title {
    font-size: 32px;
  }

  .checkout-card {
    padding: 24px;
  }

  .order-summary-card {
    padding: 24px;
  }

  .payment-icons {
    justify-content: center;
  }
}

/* Confirmation Page Styles */
.confirmation-section {
  padding: 80px 0;
  background: var(--bg-white);
  min-height: calc(100vh - 200px);
}

.confirmation-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.confirmation-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 32px;
  background: #10b981;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.confirmation-title {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 12px;
  font-family: 'Cormorant Garamond', serif;
}

.confirmation-subtitle {
  font-size: 20px;
  color: var(--text-secondary);
  margin-bottom: 48px;
}

.confirmation-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 48px;
  text-align: left;
}

.confirmation-box {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.confirmation-box h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 16px;
}

.confirmation-box p {
  margin: 8px 0;
  font-size: 16px;
  color: var(--primary-dark);
}

.booking-ref-large {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-dark);
  font-family: 'Courier New', monospace;
  letter-spacing: 2px;
  margin: 16px 0;
}

.confirmation-steps {
  list-style: none;
  padding: 0;
  margin: 0;
}

.confirmation-steps li {
  padding: 12px 0;
  padding-left: 32px;
  position: relative;
  font-size: 16px;
  color: var(--primary-dark);
  line-height: 1.6;
}

.confirmation-steps li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: 700;
  font-size: 20px;
}

.confirmation-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .confirmation-title {
    font-size: 36px;
  }

  .confirmation-subtitle {
    font-size: 18px;
  }

  .booking-ref-large {
    font-size: 24px;
  }

  .confirmation-actions {
    flex-direction: column;
  }

  .confirmation-actions .btn {
    width: 100%;
  }
}

/* Calendar Picker Styles */
.calendar-wrapper {
  position: relative;
}

.calendar-picker {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 20px;
  z-index: 1000;
  min-width: 320px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  pointer-events: none;
}

.calendar-picker.calendar-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* Always open calendar for booking */
.calendar-booking-calendar .calendar-picker {
  position: static;
  opacity: 1;
  visibility: visible;
  transform: none;
  pointer-events: auto;
  box-shadow: none;
  border: 1px solid var(--border);
  margin-top: 12px;
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary-dark);
}

.calendar-nav-btn {
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: var(--primary-dark);
  border-radius: var(--radius);
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.calendar-nav-btn:hover {
  background: var(--bg-light);
  color: var(--primary);
}

.calendar-nav-btn:active {
  transform: scale(0.95);
}

.calendar-month-year {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-dark);
  font-family: 'Cormorant Garamond', serif;
  text-transform: capitalize;
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 12px;
}

.calendar-weekday {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 4px;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.calendar-day {
  aspect-ratio: 1;
  border: none;
  background: transparent;
  color: var(--primary-dark);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border-radius: var(--radius);
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0;
}

.calendar-day:hover:not(.calendar-day-disabled):not(.calendar-day-selected) {
  background: var(--bg-light);
  color: var(--primary-dark);
  transform: scale(1.1);
}

.calendar-day-empty {
  cursor: default;
  pointer-events: none;
}

.calendar-day-disabled {
  color: var(--text-muted);
  cursor: not-allowed;
  opacity: 0.4;
}

.calendar-day-today {
  font-weight: 700;
  color: var(--primary-dark);
}

.calendar-day-today::before {
  content: '';
  position: absolute;
  inset: 2px;
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  pointer-events: none;
}

.calendar-day-selected {
  background: var(--primary-dark);
  color: white;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.calendar-day-selected:hover {
  background: var(--primary);
  transform: scale(1.05);
}

.calendar-day-available::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: #10b981;
  border-radius: 50%;
}

.calendar-day-selected.calendar-day-available::after {
  background: white;
}

/* Calendar input styling */
input[type="date"][data-calendar],
input#booking-date,
input#checkout-date {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23000000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'%3E%3C/rect%3E%3Cline x1='16' y1='2' x2='16' y2='6'%3E%3C/line%3E%3Cline x1='8' y1='2' x2='8' y2='6'%3E%3C/line%3E%3Cline x1='3' y1='10' x2='21' y2='10'%3E%3C/line%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 20px 20px;
  padding-right: 40px;
}

input[type="date"][data-calendar]:focus,
input#booking-date:focus,
input#checkout-date:focus {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23000000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'%3E%3C/rect%3E%3Cline x1='16' y1='2' x2='16' y2='6'%3E%3C/line%3E%3Cline x1='8' y1='2' x2='8' y2='6'%3E%3C/line%3E%3Cline x1='3' y1='10' x2='21' y2='10'%3E%3C/line%3E%3C/svg%3E");
}

@media (max-width: 768px) {
  .calendar-picker {
    min-width: 100%;
    left: 0;
    right: 0;
  }

  .calendar-booking-calendar .calendar-picker {
    position: static;
    min-width: 100%;
  }

  .calendar-day {
    font-size: 13px;
  }

  .calendar-weekday {
    font-size: 11px;
    padding: 6px 2px;
  }

  .calendar-month-year {
    font-size: 16px;
  }
}

/* Hide logo tagline on mobile/tablet - placed last to override */
@media (max-width: 1024px) {
  .logo .logo-text-wrap .logo-tagline {
    display: none !important;
    visibility: hidden !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
    position: absolute !important;
    clip: rect(0, 0, 0, 0) !important;
    margin: -1px !important;
    padding: 0 !important;
    border: 0 !important;
  }
}
