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

:root {
  --gold: #c19e11;
  --gold-dark: #b7950f;
  --gold-light: #d4af37;
  --cream: #ECE0B5;
  --cream-light: #f5f0e0;
  --white: #ffffff;
  --dark: #000000;
  --text: #000000;
  --text-light: #575760;
  --border: #e0e0e0;
  --shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.15);
}

body {
  font-family: 'Roboto', 'Segoe UI', Arial, sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--gold-dark);
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* ==================== HEADER ==================== */
.header {
  background: var(--cream);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
}

.logo img {
  height: 52px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: scale(1.05);
}

.nav-menu {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-link {
  color: var(--dark);
  text-decoration: none;
  font-family: 'Oswald', 'Arial Narrow', sans-serif;
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 0;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--gold);
}

.nav-link:hover:after {
  width: 100%;
}

/* Language Selector */
.lang-selector {
  position: relative;
  margin-left: 10px;
}

.lang-dropdown {
  position: relative;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1px solid rgba(193, 158, 17, 0.3);
  border-radius: 20px;
  padding: 6px 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 13px;
  font-family: 'Oswald', 'Arial Narrow', sans-serif;
  font-weight: 500;
  color: var(--dark);
}

.lang-btn:hover {
  border-color: var(--gold);
  background: rgba(193, 158, 17, 0.1);
}

.lang-icon {
  font-size: 16px;
}

.lang-current {
  text-transform: uppercase;
}

.lang-arrow {
  font-size: 8px;
  transition: transform 0.3s ease;
}

.lang-dropdown.open .lang-arrow {
  transform: rotate(180deg);
}

.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.15);
  min-width: 160px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1001;
  overflow: hidden;
}

.lang-dropdown.open .lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  color: var(--dark);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
}

.lang-option:hover {
  background: rgba(193, 158, 17, 0.1);
  border-left-color: var(--gold);
}

.lang-option.active {
  background: rgba(193, 158, 17, 0.15);
  border-left-color: var(--gold);
  font-weight: 600;
}

.lang-option .flag {
  font-size: 18px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.mobile-menu-btn span {
  display: block;
  width: 100%;
  height: 2.5px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ==================== HERO ==================== */
.hero {
  min-height: 600px;
  background: 
    linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.55)),
    url('images/Merzouga.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero:after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 60px;
  background: #fff;
  clip-path: polygon(50% 100%, 0% 0%, 100% 0%);
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
  padding: 80px 15px;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 8px 22px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  letter-spacing: 0.5px;
  animation: fadeInDown 0.8s ease-out;
}

.hero h1 {
  font-family: 'Oswald', 'Arial Narrow', sans-serif;
  font-size: 50px;
  font-weight: 700;
  text-transform: uppercase;
  text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.4);
  margin-bottom: 18px;
  letter-spacing: 1px;
  animation: fadeInUp 0.8s ease-out;
}

.hero p {
  font-size: 19px;
  max-width: 700px;
  margin: 0 auto 30px;
  line-height: 1.7;
  opacity: 0.95;
  animation: fadeInUp 0.8s ease-out 0.1s both;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 10px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-scroll {
  position: absolute;
  bottom: 70px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  animation: bounce 2s infinite;
  z-index: 3;
}

.scroll-indicator {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  margin: 8px auto 0;
  position: relative;
}

.scroll-indicator::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: #fff;
  border-radius: 2px;
  animation: scroll 2s infinite;
}

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #55555e;
  color: #fff;
  padding: 14px 30px;
  border-radius: 40px;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  font-family: 'Oswald', 'Arial Narrow', sans-serif;
}

.btn.gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  box-shadow: 0 6px 20px rgba(193, 158, 17, 0.3);
}

.btn.white {
  background: #fff;
  color: var(--dark);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.btn.gold:hover {
  box-shadow: 0 12px 30px rgba(193, 158, 17, 0.4);
}

.btn-icon {
  font-size: 18px;
}

/* ==================== SECTIONS ==================== */
.section {
  padding: 80px 0;
}

.section.center {
  text-align: center;
}

.section-header {
  margin-bottom: 50px;
}

.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.section-badge.light {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.title {
  font-family: 'Oswald', 'Arial Narrow', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.2;
  text-transform: uppercase;
}

.subtitle {
  max-width: 750px;
  margin: 0 auto 35px;
  color: var(--text-light);
  font-size: 17px;
  line-height: 1.7;
}

/* Divider */
.divider {
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 15px auto 20px;
  border-radius: 2px;
}

/* ==================== SECTION DARK ==================== */
.dark {
  background: #1a1a1a;
  color: #fff;
}

.dark .title {
  color: #fff;
}

.dark .subtitle {
  color: rgba(255, 255, 255, 0.7);
}

/* ==================== SECTION CREAM ==================== */
.section-cream {
  background: var(--cream-light);
}

/* ==================== GRID ==================== */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

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

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

/* ==================== CARDS ==================== */
.card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.35s ease;
  border: 1px solid #f0f0f0;
}

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

.card-image-wrapper {
  position: relative;
  overflow: hidden;
}

.card-image-wrapper img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card:hover .card-image-wrapper img {
  transform: scale(1.08);
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(193, 158, 17, 0.3));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.card:hover .card-overlay {
  opacity: 1;
}

.card-icon {
  font-size: 48px;
  transform: translateY(15px);
  transition: transform 0.35s ease;
}

.card:hover .card-icon {
  transform: translateY(0);
}

.card .pad {
  padding: 22px;
}

.card h3 {
  font-family: 'Oswald', 'Arial Narrow', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}

.card h3 a {
  color: var(--dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

.card h3 a:hover {
  color: var(--gold);
}

.card p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  color: var(--gold);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  font-family: 'Oswald', 'Arial Narrow', sans-serif;
}

.card-link:hover {
  color: var(--gold-dark);
  gap: 10px;
}

.card-link:after {
  content: '→';
  transition: transform 0.3s ease;
}

.card-link:hover:after {
  transform: translateX(4px);
}

/* Card Meta (for tour cards) */
.card-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #f0f0f0;
}

.card-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-light);
}

.card-meta-icon {
  color: var(--gold);
  font-size: 14px;
}

.card-price {
  font-family: 'Oswald', 'Arial Narrow', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
  margin-left: auto;
}

.card-stars {
  display: flex;
  gap: 2px;
  color: var(--gold);
  font-size: 13px;
}

.card-reviews {
  font-size: 12px;
  color: var(--text-light);
}

/* ==================== TOUR CARDS (mouhoutours style) ==================== */
.tour-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.35s ease;
  border: 1px solid #f0f0f0;
}

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

.tour-card-img {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.tour-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.tour-card:hover .tour-card-img img {
  transform: scale(1.08);
}

.tour-card-body {
  padding: 20px;
}

.tour-card-body h3 {
  font-family: 'Oswald', 'Arial Narrow', sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.tour-card-body h3 a {
  color: var(--dark);
  text-decoration: none;
}

.tour-card-body h3 a:hover {
  color: var(--gold);
}

.tour-card-duration {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 10px;
}

.tour-card-duration i {
  color: var(--gold);
}

.tour-card-body p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.tour-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 15px;
  border-top: 1px solid #f0f0f0;
  flex-wrap: wrap;
  gap: 10px;
}

.tour-card-rating {
  display: flex;
  align-items: center;
  gap: 8px;
}

.tour-card-stars {
  color: var(--gold);
  font-size: 14px;
  display: flex;
  gap: 1px;
}

.tour-card-reviews {
  font-size: 13px;
  color: var(--text-light);
}

.tour-card-price {
  font-family: 'Oswald', 'Arial Narrow', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
}

.tour-card-price span {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-light);
}

/* ==================== FEATURES ==================== */
.feature {
  background: #fff;
  padding: 30px 25px;
  border-radius: 18px;
  text-align: center;
  transition: all 0.35s ease;
  box-shadow: var(--shadow);
  border: 1px solid #f0f0f0;
  position: relative;
  overflow: hidden;
}

.feature:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--gold);
}

.feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.feature:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  font-size: 44px;
  display: block;
  margin-bottom: 12px;
}

.feature h3 {
  font-family: 'Oswald', 'Arial Narrow', sans-serif;
  color: var(--dark);
  margin: 8px 0;
  font-size: 19px;
  font-weight: 600;
}

.feature p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.6;
}

/* Dark features */
.dark .feature {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.dark .feature h3 {
  color: var(--gold-light);
}

.dark .feature p {
  color: rgba(255, 255, 255, 0.7);
}

.dark .feature:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* ==================== IMAGE SHOWCASE ==================== */
.image-showcase {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-bottom: 40px;
}

.showcase-item {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.showcase-item img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.showcase-item:hover img {
  transform: scale(1.05);
}

.showcase-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
  color: #fff;
  padding: 25px 18px 18px;
  font-family: 'Oswald', 'Arial Narrow', sans-serif;
  font-weight: 600;
  font-size: 17px;
}

/* ==================== CTA ==================== */
.cta {
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
  color: #fff;
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(193, 158, 17, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta h2 {
  font-family: 'Oswald', 'Arial Narrow', sans-serif;
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.cta p {
  font-size: 16px;
  opacity: 0.85;
  max-width: 550px;
  margin: 0 auto 25px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 10px;
}

/* ==================== PAGE HERO (for inner pages) ==================== */
.page-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6)), url('images/Merzouga.png') center/cover;
  min-height: 320px;
  display: flex;
  align-items: center;
  text-align: center;
  color: #fff;
  position: relative;
}

.page-hero:after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 50px;
  background: #fff;
  clip-path: polygon(50% 100%, 0% 0%, 100% 0%);
  z-index: 2;
}

.page-hero .container {
  position: relative;
  z-index: 3;
}

.page-hero h1 {
  font-family: 'Oswald', 'Arial Narrow', sans-serif;
  font-size: 42px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.page-hero p {
  font-size: 17px;
  opacity: 0.9;
}

/* ==================== TWO COLUMN ==================== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.two-col img {
  width: 100%;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

/* ==================== LIST ==================== */
.list {
  margin-top: 20px;
  padding-left: 0;
  list-style: none;
}

.list li {
  margin: 10px 0;
  padding-left: 25px;
  position: relative;
  color: var(--text-light);
  font-size: 15px;
}

.list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: bold;
}

/* ==================== ICON BOX (Why book with us) ==================== */
.icon-box {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 25px;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  transition: all 0.35s ease;
}

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

.icon-box-icon {
  width: 55px;
  height: 55px;
  min-width: 55px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
}

.icon-box-content h4 {
  font-family: 'Oswald', 'Arial Narrow', sans-serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}

.icon-box-content p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.6;
}

/* ==================== TABLE ==================== */
.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  font-size: 15px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.data-table thead th {
  background: #1a1a1a;
  color: #fff;
  padding: 16px 20px;
  font-family: 'Oswald', 'Arial Narrow', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: 0.5px;
  text-align: left;
}

.data-table tbody td {
  padding: 14px 20px;
  border-bottom: 1px solid #f0f0f0;
  color: var(--text);
}

.data-table tbody tr:nth-child(even) {
  background: #fafafa;
}

.data-table tbody tr:hover {
  background: #f5f0e0;
}

.data-table tbody td:last-child {
  font-weight: 700;
  color: var(--gold);
  font-family: 'Oswald', 'Arial Narrow', sans-serif;
}

/* ==================== TESTIMONIALS ==================== */
.testimonial {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: var(--shadow);
  border: 1px solid #f0f0f0;
}

.testimonial h4 {
  font-family: 'Oswald', 'Arial Narrow', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 12px;
}

.testimonial p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 12px;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 16px;
  margin-bottom: 10px;
  display: flex;
  gap: 2px;
}

.testimonial-author {
  font-family: 'Oswald', 'Arial Narrow', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--dark);
}

.testimonial-source {
  font-size: 13px;
  color: var(--text-light);
}

/* ==================== REVIEW BADGE ==================== */
.review-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 16px;
  color: var(--text);
  margin: 15px 0;
}

.review-summary .stars {
  color: var(--gold);
  display: flex;
  gap: 2px;
}

.review-summary strong {
  color: var(--dark);
}

/* ==================== EXCURSION INFO ==================== */
.excursion-info {
  background: rgba(193, 158, 17, 0.05);
  border-radius: 20px;
  padding: 40px;
  margin: 30px 0;
  border: 1px solid rgba(193, 158, 17, 0.15);
}

.excursion-info h3 {
  font-family: 'Oswald', 'Arial Narrow', sans-serif;
  text-align: center;
  color: var(--gold);
  margin-bottom: 15px;
  font-size: 26px;
  text-transform: uppercase;
}

.excursion-info > p {
  text-align: center;
  margin-bottom: 25px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-light);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* ==================== GALLERY ==================== */
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 16px;
}

.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow);
  transition: transform 0.35s ease;
}

.gallery-grid img:hover {
  transform: scale(1.03);
}

.gallery-grid img:first-child {
  height: 460px;
  grid-row: span 2;
}

/* ==================== FORM ==================== */
.form input,
.form textarea,
.form select {
  width: 100%;
  padding: 14px 18px;
  margin-bottom: 15px;
  border: 2px solid var(--border);
  border-radius: 12px;
  font-size: 15px;
  transition: border-color 0.3s ease;
  font-family: inherit;
  background: #fafafa;
}

.form input:focus,
.form textarea:focus,
.form select:focus {
  outline: none;
  border-color: var(--gold);
  background: #fff;
}

.form textarea {
  height: 150px;
  resize: vertical;
}

.form button {
  border: 0;
  width: auto;
}

/* ==================== FOOTER ==================== */
.footer {
  background: var(--gold);
  color: var(--dark);
  padding: 60px 0 25px;
  margin-top: 60px;
}

.footer .container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.2fr;
  gap: 50px;
  margin-bottom: 40px;
}

.footer-logo img {
  width: 200px;
  margin-bottom: 18px;
  background: #fff;
  padding: 10px;
  border-radius: 10px;
}

.footer-about p {
  color: rgba(0, 0, 0, 0.75);
  font-size: 15px;
  line-height: 1.7;
  max-width: 350px;
}

.footer h3 {
  font-family: 'Oswald', 'Arial Narrow', sans-serif;
  color: var(--dark);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer h3:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--dark);
  border-radius: 2px;
}

.footer-contact .contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: rgba(0, 0, 0, 0.75);
  font-size: 15px;
}

.footer-contact .contact-icon {
  width: 38px;
  height: 38px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.footer-contact a {
  color: var(--dark);
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

.footer-contact a:hover {
  color: #fff;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(0, 0, 0, 0.75);
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
  display: inline-block;
  padding: 4px 0;
}

.footer-links a:hover {
  color: #fff;
  transform: translateX(5px);
}

.footer-links a:before {
  content: '→ ';
  opacity: 0;
  transition: opacity 0.3s ease;
}

.footer-links a:hover:before {
  opacity: 1;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-bottom p {
  color: rgba(0, 0, 0, 0.7);
  font-size: 14px;
  margin: 0;
}

.footer-bottom .designer {
  color: var(--dark);
  font-weight: 700;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 18px;
}

.social-links a:hover {
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  transform: translateY(-3px);
}

/* ==================== WHATSAPP BUTTON ==================== */
.whatsapp {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25D366;
  color: #fff;
  padding: 14px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 100;
  font-family: 'Oswald', 'Arial Narrow', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.whatsapp:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
  color: #fff;
}

.whatsapp-icon {
  font-size: 22px;
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

@keyframes scroll {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(12px);
  }
}

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

/* ==================== MOBILE NAVIGATION ==================== */
@media (max-width: 768px) {
  .mobile-menu-btn {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    justify-content: center;
    gap: 0;
    padding: 40px 30px;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    transition: right 0.4s ease;
    z-index: 999;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-link {
    font-size: 18px;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    width: 100%;
  }

  .nav-link:last-child {
    border-bottom: none;
  }

  .nav-link:after {
    display: none;
  }

  .lang-selector {
    margin: 15px 0 0 0;
    width: 100%;
  }

  .lang-btn {
    width: 100%;
    justify-content: center;
  }

  .lang-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    margin-top: 8px;
    display: none;
  }

  .lang-dropdown.open .lang-menu {
    display: block;
  }

  .nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 998;
  }

  .nav-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  .logo img {
    height: 42px;
  }
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 992px) {
  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-about {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .hero h1 {
    font-size: 36px;
  }

  .hero p {
    font-size: 16px;
  }

  .grid-3,
  .grid-4,
  .grid-2,
  .two-col,
  .footer-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid img:first-child {
    height: 220px;
  }

  .page-hero h1 {
    font-size: 32px;
  }

  .title {
    font-size: 28px;
  }

  .section {
    padding: 60px 0;
  }

  .dark {
    padding: 60px 0;
  }

  .cta {
    padding: 40px 25px;
  }

  .cta h2 {
    font-size: 26px;
  }

  .image-showcase {
    grid-template-columns: 1fr;
  }

  .showcase-item img {
    height: 260px;
  }
}

@media (max-width: 600px) {
  .hero {
    min-height: 480px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 13px;
  }

  .card .pad {
    padding: 18px;
  }

  .card h3,
  .tour-card-body h3 {
    font-size: 18px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-scroll {
    display: none;
  }

  .data-table {
    font-size: 13px;
  }

  .data-table thead th,
  .data-table tbody td {
    padding: 10px 12px;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 420px;
  }

  .hero h1 {
    font-size: 24px;
  }

  .whatsapp {
    padding: 14px;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    justify-content: center;
  }

  .whatsapp-text {
    display: none;
  }

  .whatsapp:hover {
    transform: scale(1.1);
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-logo img {
    width: 160px;
  }

  .navbar {
    padding: 10px 0;
  }

  .logo img {
    height: 38px;
  }
}