/* ============================================================
   Found Travel — Main Stylesheet
   Brand: Blue #336699 | Orange #e46506 | Gray #dcdbdb | Dark #080808
   Font: Century Gothic (web fallback: Nunito)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;500;600;700;800;900&display=swap');

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --blue:       #336699;
  --blue-dark:  #264d73;
  --blue-light: #4a7db5;
  --orange:     #e46506;
  --orange-dark:#c55500;
  --gray:       #dcdbdb;
  --gray-light: #f5f5f5;
  --dark:       #080808;
  --white:      #ffffff;

  --font: 'Century Gothic', CenturyGothic, 'Nunito', AppleGothic, sans-serif;

  --radius:   12px;
  --radius-lg: 20px;
  --shadow:   0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.15);
  --transition: 0.3s ease;

  --container: 1200px;
  --section-pad: 90px 0;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
body.rtl { direction: rtl; text-align: right; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font);
  font-weight: 700;
  line-height: 1.2;
  color: var(--blue-dark);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
p  { font-size: 1rem; color: #333; }

/* ── Utility ─────────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--blue-dark);
  margin-bottom: 12px;
  position: relative;
}
.section-title span { color: var(--orange); }
.section-subtitle {
  color: #666;
  font-size: 1.05rem;
  max-width: 560px;
}
.section-header {
  margin-bottom: 56px;
}
.section-header.center { text-align: center; }
.section-header.center .section-subtitle { margin: 0 auto; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font);
  transition: var(--transition);
  letter-spacing: 0.3px;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(228,101,6,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--blue);
  transform: translateY(-2px);
}
.btn-blue {
  background: var(--blue);
  color: var(--white);
}
.btn-blue:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(51,102,153,0.35);
}

.tag {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.tag-orange { background: rgba(228,101,6,0.12); color: var(--orange); }
.tag-blue   { background: rgba(51,102,153,0.12); color: var(--blue); }

/* ── Header / Navbar ─────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
}
.site-header.scrolled {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.10);
}
.site-header.scrolled .nav-link { color: var(--dark); }
.site-header.scrolled .nav-link:hover { color: var(--orange); }
.site-header.scrolled .logo-text { color: var(--blue); }
.site-header.scrolled .hamburger-icon { color: var(--dark); }

.navbar {
  padding: 18px 0;
  transition: var(--transition);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
/* Logo image — square PNG gets white pill, horizontal PNG shows clean */
.nav-logo .site-logo-img,
.nav-logo img {
  width: auto;
  height: 56px;
  max-width: 200px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(255,255,255,0.95);
  padding: 5px 8px;
}
/* Scrolled: white header so no pill needed */
.site-header.scrolled .nav-logo .site-logo-img,
.site-header.scrolled .nav-logo img {
  border-radius: 6px;
  background: transparent;
  padding: 0;
}
.nav-logo .logo-placeholder {
  height: 48px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-placeholder .logo-icon {
  width: 44px;
  height: 44px;
  background: var(--orange);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.4rem;
  font-weight: 900;
}
.logo-placeholder .logo-text {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}
.logo-placeholder .logo-text span { color: var(--orange); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-link {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
  font-family: var(--font);
}
.nav-link:hover, .nav-link.active {
  color: var(--orange);
  background: rgba(255,255,255,0.1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-actions .btn-primary {
  padding: 10px 22px;
  font-size: 0.88rem;
  border-radius: 50px;
}
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,0.15);
  border-radius: 50px;
  padding: 4px 6px;
  backdrop-filter: blur(4px);
}
.lang-btn {
  color: rgba(255,255,255,0.8);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  transition: var(--transition);
  font-family: var(--font);
  letter-spacing: 0.5px;
}
.lang-btn.active,
.lang-btn:hover {
  background: var(--orange);
  color: var(--white);
}
.site-header.scrolled .lang-btn { color: #555; }
.site-header.scrolled .lang-btn.active,
.site-header.scrolled .lang-btn:hover { color: var(--white); }
.site-header.scrolled .lang-switcher { background: rgba(0,0,0,0.06); }

.hamburger-icon {
  display: none;
  color: var(--white);
  font-size: 1.6rem;
  padding: 6px;
}

/* ── Hero ──────────────────────────────────────────────────── */
#home {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0d2d4f 0%, #1a4a7a 40%, #264d73 70%, #336699 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 40%, rgba(228,101,6,0.18) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(51,102,153,0.3) 0%, transparent 50%);
}
.hero-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-shapes::before {
  content: '';
  position: absolute;
  top: -120px; right: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(228,101,6,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-shapes::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -60px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-plane {
  position: absolute;
  top: 20%;
  right: 5%;
  font-size: 180px;
  opacity: 0.06;
  transform: rotate(-20deg);
  user-select: none;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 720px;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(228,101,6,0.2);
  border: 1px solid rgba(228,101,6,0.4);
  color: #ffb07a;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-tag::before { content: '✈'; }
.hero-title {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  color: var(--white);
  margin-bottom: 12px;
  font-weight: 900;
  line-height: 1.1;
}
.hero-title .highlight { color: var(--orange); }
.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.75);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 20px;
}
.hero-desc {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
  max-width: 560px;
  line-height: 1.8;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce 2s infinite;
  z-index: 2;
}
.hero-scroll::after {
  content: '▼';
  font-size: 0.7rem;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ── Stats Bar ─────────────────────────────────────────────── */
.stats-bar {
  background: var(--blue);
  padding: 28px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 16px 24px;
  border-right: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* ── About ─────────────────────────────────────────────────── */
#about {
  padding: var(--section-pad);
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image {
  position: relative;
}
.about-image-main {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-image-placeholder {
  width: 100%;
  height: 480px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  position: relative;
  overflow: hidden;
}
.about-image-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 70%, rgba(228,101,6,0.25) 0%, transparent 60%);
}
.about-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--orange);
  color: var(--white);
  padding: 24px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.about-badge-num {
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
  color: var(--white);
}
.about-badge-text {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
.about-text .section-title { margin-bottom: 16px; }
.about-text p { margin-bottom: 18px; }

.about-features {
  margin: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.about-feature-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: rgba(228,101,6,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.about-feature-text strong {
  display: block;
  font-size: 0.95rem;
  color: var(--blue-dark);
  margin-bottom: 2px;
}
.about-feature-text span { font-size: 0.87rem; color: #666; }

.team-card {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--gray-light);
  border-radius: var(--radius);
  padding: 16px 20px;
  border-left: 4px solid var(--orange);
}
.team-avatar {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  overflow: hidden;
}
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-info strong { font-size: 1rem; color: var(--blue-dark); display: block; }
.team-info span { font-size: 0.85rem; color: var(--orange); font-weight: 600; }

/* ── Trips ─────────────────────────────────────────────────── */
#trips {
  padding: var(--section-pad);
  background: var(--gray-light);
}
.trips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.trip-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  cursor: pointer;
}
.trip-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.trip-card-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.trip-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.trip-card:hover .trip-card-img img { transform: scale(1.07); }
.trip-img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  transition: transform 0.5s ease;
}
.trip-card:hover .trip-img-placeholder { transform: scale(1.07); }
.trip-flag {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 2rem;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}
.trip-card-body { padding: 24px; }
.trip-card-tag { margin-bottom: 10px; }
.trip-card-title {
  font-size: 1.3rem;
  color: var(--blue-dark);
  font-weight: 800;
  margin-bottom: 10px;
}
.trip-card-desc {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 18px;
  line-height: 1.6;
}
.trip-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.trip-highlight {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  color: #555;
  background: var(--gray-light);
  padding: 4px 10px;
  border-radius: 50px;
}
.trip-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--gray);
}
.trip-price {
  font-size: 0.82rem;
  color: #888;
  font-weight: 600;
}
.trip-price span {
  display: block;
  font-size: 1.25rem;
  color: var(--orange);
  font-weight: 900;
}

/* ── Why Choose Us ─────────────────────────────────────────── */
#why {
  padding: var(--section-pad);
  background: var(--white);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.why-card {
  text-align: center;
  padding: 40px 24px;
  border-radius: var(--radius-lg);
  border: 2px solid var(--gray);
  transition: var(--transition);
  cursor: default;
}
.why-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.why-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(51,102,153,0.25);
}
.why-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--blue-dark);
  margin-bottom: 10px;
}
.why-desc {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.7;
}

/* ── Reviews ───────────────────────────────────────────────── */
#reviews {
  padding: var(--section-pad);
  background: var(--blue-dark);
}
#reviews .section-title { color: var(--white); }
#reviews .section-subtitle { color: rgba(255,255,255,0.7); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.review-card {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}
.review-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-4px);
}
.review-stars {
  color: #fbbf24;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.review-text {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
}
.review-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
}
.review-meta {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
}
.reviews-footer {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  padding: 12px 24px;
  border-radius: 50px;
  box-shadow: var(--shadow);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
}
.google-badge .g-logo {
  font-size: 1.3rem;
  font-weight: 900;
  background: linear-gradient(135deg, #4285f4, #34a853, #fbbc05, #ea4335);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.google-badge .rating { color: var(--orange); font-size: 1.05rem; }
.google-badge .stars { color: #fbbf24; }

/* ── Gallery ───────────────────────────────────────────────── */
#gallery {
  padding: var(--section-pad);
  background: var(--gray-light);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 220px 220px;
  gap: 12px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item:nth-child(1) {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}
.gallery-item:nth-child(2) { grid-column: 3; grid-row: 1; }
.gallery-item:nth-child(3) { grid-column: 4; grid-row: 1; }
.gallery-item:nth-child(4) { grid-column: 3; grid-row: 2; }
.gallery-item:nth-child(5) { grid-column: 4; grid-row: 2; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 2.5rem;
  transition: transform 0.5s ease;
  color: white;
  font-weight: 700;
}
.gallery-item:hover .gallery-placeholder { transform: scale(1.05); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(51,102,153,0.0);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item:hover .gallery-overlay {
  background: rgba(51,102,153,0.35);
}
.gallery-overlay span {
  color: white;
  font-size: 2rem;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-overlay span { opacity: 1; }

/* ── Booking Form ──────────────────────────────────────────── */
#booking {
  padding: var(--section-pad);
  background: var(--white);
}
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: center;
}
.booking-info .section-title { margin-bottom: 16px; }
.booking-info p { margin-bottom: 24px; }
.booking-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}
.booking-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: #444;
  font-weight: 500;
}
.booking-feature::before {
  content: '✓';
  width: 28px; height: 28px;
  min-width: 28px;
  background: var(--orange);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
}
.booking-form-card {
  background: var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray);
  border-radius: 10px;
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(228,101,6,0.12);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit { width: 100%; justify-content: center; font-size: 1.05rem; padding: 16px; }

/* ── Contact ───────────────────────────────────────────────── */
#contact {
  padding: var(--section-pad);
  background: var(--gray-light);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
}
.contact-info .section-title { margin-bottom: 32px; }
.contact-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 36px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-icon {
  width: 48px; height: 48px;
  min-width: 48px;
  background: var(--blue);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: white;
  box-shadow: 0 4px 12px rgba(51,102,153,0.3);
}
.contact-item-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 3px;
}
.contact-item-value {
  font-size: 0.97rem;
  color: var(--dark);
  font-weight: 500;
}
.contact-social {
  display: flex;
  gap: 12px;
}
.social-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: white;
  transition: var(--transition);
}
.social-btn:hover { transform: scale(1.15); }
.social-fb { background: #1877f2; }
.social-ig { background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4); }
.social-tt { background: #010101; }
.social-wa { background: #25d366; }
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 400px;
}
.map-container iframe {
  width: 100%; height: 100%;
  border: none;
}
.map-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  gap: 16px;
}
.map-placeholder span { font-size: 3rem; }
.map-placeholder p { font-size: 0.9rem; opacity: 0.8; text-align: center; max-width: 200px; }

/* ── Footer ────────────────────────────────────────────────── */
.site-footer {
  background: #0d1f33;
  color: rgba(255,255,255,0.8);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo-placeholder .logo-text { color: white; font-size: 1.6rem; }
/* Footer logo — white bg PNG on dark footer */
.footer-brand .site-logo-img,
.footer-brand img.site-logo-img {
  display: block !important;
  width: auto;
  height: 60px;
  max-width: 180px;
  object-fit: contain;
  border-radius: 10px;
  background: rgba(255,255,255,0.95);
  padding: 6px 10px;
}
.footer-brand .logo-placeholder { display: none !important; }
.footer-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  margin: 16px 0 24px;
  line-height: 1.8;
  max-width: 280px;
}
.footer-social { display: flex; gap: 10px; }
.footer-col h4 {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-link {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}
.footer-link:hover { color: var(--orange); padding-left: 4px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.87rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 12px;
  line-height: 1.5;
}
.footer-contact-item .icon { font-size: 1rem; margin-top: 1px; flex-shrink: 0; color: var(--orange); }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.35); }
.footer-bottom a { color: var(--orange); }

/* ── WhatsApp Float ────────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  width: 60px; height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  transition: var(--transition);
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,0.6);
  color: white;
}
.whatsapp-float .wa-tooltip {
  position: absolute;
  right: 72px;
  background: var(--dark);
  color: white;
  font-size: 0.82rem;
  padding: 6px 14px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; }

/* ── Mobile Menu ─────────────────────────────────────────────── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--blue-dark);
  z-index: 2000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu .nav-link {
  font-size: 1.5rem;
  color: white;
}
.mobile-menu .lang-switcher {
  margin-top: 8px;
}
.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  color: white;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
}

/* ── Animations ─────────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.4s; }

/* ── RTL overrides ──────────────────────────────────────────── */
body.rtl .about-badge { right: auto; left: -24px; }
body.rtl .team-card   { border-left: none; border-right: 4px solid var(--orange); }
body.rtl .footer-link:hover { padding-left: 0; padding-right: 4px; }
body.rtl .booking-feature::before { margin-right: 0; }
body.rtl .whatsapp-float { right: auto; left: 32px; }
body.rtl .whatsapp-float .wa-tooltip { right: auto; left: 72px; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .trips-grid     { grid-template-columns: repeat(2, 1fr); }
  .why-grid       { grid-template-columns: repeat(2, 1fr); }
  .footer-grid    { grid-template-columns: 1fr 1fr; }
  .about-grid     { gap: 48px; }
}
@media (max-width: 900px) {
  .about-grid     { grid-template-columns: 1fr; }
  .about-image    { order: -1; }
  .about-image-placeholder { height: 320px; }
  .booking-grid   { grid-template-columns: 1fr; }
  .contact-grid   { grid-template-columns: 1fr; }
  .stats-grid     { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid   { grid-template-columns: 1fr; gap: 16px; }
  .gallery-grid   {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(4, 180px);
  }
  .gallery-item:nth-child(1) { grid-column: 1 / 3; grid-row: 1 / 2; }
  .gallery-item:nth-child(2) { grid-column: 1; grid-row: 2; }
  .gallery-item:nth-child(3) { grid-column: 2; grid-row: 2; }
  .gallery-item:nth-child(4) { grid-column: 1; grid-row: 3; }
  .gallery-item:nth-child(5) { grid-column: 2; grid-row: 3; }
}
@media (max-width: 768px) {
  :root { --section-pad: 64px 0; }
  .nav-links, .nav-actions .btn-primary { display: none; }
  .hamburger-icon { display: flex; }
  .trips-grid     { grid-template-columns: 1fr; }
  .footer-grid    { grid-template-columns: 1fr; }
  .form-row       { grid-template-columns: 1fr; }
  .hero-ctas      { flex-direction: column; align-items: flex-start; }
  .stats-grid     { grid-template-columns: repeat(2, 1fr); }
  .about-badge    { bottom: -16px; right: -8px; }
  body.rtl .about-badge { left: -8px; }
  .why-grid       { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .why-grid  { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .booking-form-card { padding: 24px 20px; }
}
