/* Base styles */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  color: #0f172a;
  background-color: #ffffff;
}

body[dir="rtl"] {
  font-family: "Cairo", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

img {
  max-width: 100%;
  display: block;
}

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  scroll-margin-top: 90px;
}

/* Colors - Harmonized with Jawaz Travel logo */
:root {
  --color-primary: #0f5fa6; /* Deep blue - adjust if needed to match logo */
  --color-primary-light: #1b75d1;
  --color-primary-dark: #0a4d8a;
  --color-gold: #c7943e; /* Gold - adjust if needed to match logo */
  --color-gold-light: #d4a556;
  --color-gold-dark: #b0852f;
  --color-bg-alt: #f5f7fb;
  --color-text: #0f172a;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.18);
  --radius-lg: 18px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #ffffff;
  color: #0f172a;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Top Section */
.header-top {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
}

.header-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 1.5rem;
  min-height: 40px;
}

.header-top-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header-phone-top {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #0f172a;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

.header-phone-top svg {
  width: 16px;
  height: 16px;
  stroke: #0f172a;
}

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

.header-phone-top:hover svg {
  stroke: var(--color-primary);
}

.header-top-right {
  display: flex;
  align-items: center;
}

.header-language {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
}

.header-language svg {
  width: 16px;
  height: 16px;
  stroke: #0f172a;
}

.lang-link {
  color: #0f172a;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

.lang-link:hover,
.lang-link.active {
  color: var(--color-primary);
}

/* Language Selector Dropdown */
.language-selector {
  position: relative;
}

.language-selector-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: none;
  color: #0f172a;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.language-selector-btn:hover {
  background: #f3f4f6;
  color: var(--color-primary);
}

.language-selector-btn svg {
  width: 12px;
  height: 12px;
  transition: transform 0.2s ease;
}

.language-selector-btn[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.current-lang {
  min-width: 60px;
  text-align: left;
}

.language-dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  min-width: 280px;
  max-height: 500px;
  overflow-y: auto;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.language-selector-btn[aria-expanded="true"] + .language-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-group {
  padding: 0.5rem 0;
}

.language-group-title {
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #6b7280;
  background: #f9fafb;
  border-bottom: 1px solid #e5e7eb;
}

.language-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  color: #374151;
  text-decoration: none;
  transition: all 0.2s ease;
  border-bottom: 1px solid #f3f4f6;
}

.language-option:last-child {
  border-bottom: none;
}

.language-option:hover {
  background: #f9fafb;
  color: var(--color-primary);
}

.language-option.active {
  background: #eff6ff;
  color: var(--color-primary);
  font-weight: 600;
}

.lang-native {
  font-weight: 500;
  flex: 1;
}

.lang-name {
  font-size: 0.85rem;
  color: #6b7280;
  margin-left: 0.5rem;
}

.language-option:hover .lang-name,
.language-option.active .lang-name {
  color: #9ca3af;
}

.lang-badge {
  margin-left: 0.5rem;
  color: #10b981;
  font-weight: 600;
  font-size: 0.9rem;
}

/* Scrollbar styling for dropdown */
.language-dropdown::-webkit-scrollbar {
  width: 6px;
}

.language-dropdown::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 12px;
}

.language-dropdown::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 12px;
}

.language-dropdown::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* Google Translate Widget */
#google_translate_element {
  display: none;
}

/* Auto-translate notice */
.auto-translate-notice {
  background: #fef3c7;
  border: 1px solid #fbbf24;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  margin: 1rem 0;
  font-size: 0.85rem;
  color: #92400e;
  text-align: center;
}

.auto-translate-notice strong {
  display: block;
  margin-bottom: 0.25rem;
}

/* Separator Line */
.header-separator {
  height: 1px;
  background: #e5e7eb;
  width: 100%;
}

/* Bottom Section */
.header-bottom {
  background: #ffffff;
}

.header-bottom-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  gap: 2rem;
  min-height: 100px;
}

.logo {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  transition: opacity 0.2s ease;
  flex-shrink: 0;
}

.logo:hover {
  opacity: 0.9;
}

.logo-img {
  height: 100px;
  width: auto;
  max-width: 350px;
  object-fit: contain;
  display: block;
  filter: brightness(1.05) contrast(1.05);
  transition: filter 0.2s ease;
}

.logo:hover .logo-img {
  filter: brightness(1.1) contrast(1.1);
}

/* Responsive logo sizing */
/* Responsive improvements */
@media (max-width: 1024px) {
  .container {
    padding: 0 1.25rem;
  }

  .section {
    padding: 3.5rem 0;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .section-header .section-title {
    font-size: 2rem;
  }

  .hero-arrow {
    width: 44px;
    height: 44px;
  }

  .hero-arrow svg {
    width: 20px;
    height: 20px;
  }

  .hero-arrow-prev {
    left: 1rem;
  }

  .hero-arrow-next {
    right: 1rem;
  }

  .two-cols {
    gap: 2rem;
  }

  .page-hero {
    min-height: 45vh;
    height: 45vh;
  }

  .page-hero-title {
    font-size: 2.25rem;
  }

  .page-hero-subtitle {
    font-size: 1rem;
  }

  /* Tour detail pages */
  .tour-detail-content {
    grid-template-columns: 1fr;
  }

  .tour-detail-sidebar {
    position: static;
    order: -1;
  }

  .tour-detail-images {
    grid-template-columns: 1fr;
    height: 300px;
  }

  /* Tables responsive */
  .table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }

  .logo-img {
    height: 120px;
    width: auto;
    max-width: 450px;
  }
  
  .logo-text {
    display: none; /* Hide text on mobile, show only logo */
  }

  .mobile-menu-fab {
    display: flex !important;
    position: fixed;
    top: 1rem;
    right: 1.25rem;
    z-index: 140;
  }

  .section {
    padding: 3rem 0;
  }

  .section-title {
    font-size: 1.4rem;
  }

  .section-subtitle {
    font-size: 0.9rem;
    padding: 0 1rem;
  }

  .section-header .section-title {
    font-size: 1.8rem;
  }
}

.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #fef9c3, var(--color-gold));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #0b1120;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: -0.02em;
  color: var(--color-primary);
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.logo-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light));
  border-radius: 2px;
}

.logo-subtitle {
  font-size: 0.8rem;
  opacity: 0.85;
  font-weight: 400;
}

.main-nav {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  font-size: 0.95rem;
  font-weight: 500;
}

.nav-links a {
  position: relative;
  padding: 0.4rem 0.5rem;
  color: #374151;
  font-weight: 500;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--color-primary);
}

.nav-links a.active {
  color: var(--color-primary);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width 0.25s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.6rem 1.4rem;
  font-size: 0.9rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease, color 0.2s ease;
}

.btn-sm {
  padding: 0.35rem 0.9rem;
  font-size: 0.8rem;
}

.btn-primary {
  position: relative;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  color: #ffffff;
  box-shadow: 0 12px 25px rgba(15, 95, 166, 0.4);
  border: 1px solid rgba(199, 148, 62, 0.2);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 999px;
  padding: 1px;
  background: linear-gradient(135deg, var(--color-gold), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.btn-primary:hover::before {
  opacity: 0.3;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 35px rgba(15, 95, 166, 0.5);
}

.btn-secondary {
  background: #ffffff;
  color: var(--color-primary);
  border: 1px solid rgba(148, 163, 184, 0.7);
}

.btn-secondary:hover {
  background: #eff6ff;
}

.btn-outline {
  border: 1px solid rgba(209, 213, 219, 0.8);
  background: transparent;
  color: #f9fafb;
  white-space: nowrap;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-text {
  background: transparent;
  color: #e5e7eb;
  padding: 0.4rem 0.2rem;
}

.btn-text:hover {
  text-decoration: underline;
}

/* Mobile Language Button - Hidden on desktop */
.mobile-lang-btn {
  display: none;
}

/* Nav-toggle supprimé - menu desktop utilisé partout */

/* Floating menu button for mobile */
.mobile-menu-fab {
  display: none !important;
}

.mobile-menu-fab span {
  display: block;
  width: 24px;
  height: 3px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.mobile-menu-fab:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.2);
}

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

.mobile-menu-fab.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

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

/* Hide the floating menu button on desktop */
@media (min-width: 769px) {
  .mobile-menu-fab {
    display: none !important;
  }
}

/* Desktop: Ensure mobile elements are hidden and desktop layout is preserved */
@media (min-width: 1025px) {
  .mobile-menu-toggle {
    display: none !important;
  }
  
  .mobile-menu-overlay {
    display: none !important;
  }

  .mobile-menu-brand {
    display: none !important;
  }
  
  .main-nav {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    width: auto !important;
    height: auto !important;
    background: transparent !important;
    box-shadow: none !important;
    z-index: auto !important;
    transition: none !important;
    overflow: visible !important;
    display: flex !important;
    flex-direction: row !important;
  }

  .main-nav::before {
    display: none !important;
  }
  
  .main-nav.menu-open {
    right: auto !important;
  }

  .nav-links {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 1.75rem !important;
    padding: 0 !important;
    margin-top: 0 !important;
  }

  .nav-links li {
    width: auto !important;
  }

  .nav-links a {
    display: inline-block !important;
    padding: 0.4rem 0.5rem !important;
    border-left: none !important;
    transform: none !important;
  }
  
  .nav-links a::before {
    display: none !important;
  }

  .nav-links a:hover {
    padding-left: 0.5rem !important;
    transform: none !important;
  }

  .nav-links a.active {
    background: transparent !important;
    border-left: none !important;
  }

  .nav-links a::after {
    display: block !important;
  }

  body.menu-open {
    overflow: auto !important;
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: 85vh;
  color: #ffffff;
  overflow: hidden;
}

/* Page Hero - For individual page hero sections */
.page-hero {
  position: relative;
  min-height: 60vh;
  height: 60vh;
  color: #ffffff;
  overflow: hidden;
  margin-top: 110px;
}

.page-hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  min-height: 100%;
}

.page-hero-image img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  animation: zoomIn 20s ease-in-out infinite alternate;
  will-change: transform;
}

.page-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.75),
    rgba(15, 23, 42, 0.55)
  );
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 0;
}

.page-hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
  text-align: center;
}

.page-hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.3rem);
  max-width: 700px;
  margin: 0 auto;
  color: #f9fafb;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
  line-height: 1.6;
  text-align: center;
}

/* Hero Carousel */
.hero-carousel {
  position: relative;
  width: 100%;
  height: 85vh;
  min-height: 600px;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 1;
}

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

.hero-slide-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-slide-content {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.7),
    rgba(15, 23, 42, 0.5)
  );
  padding: 2rem 0;
}

.hero-slide-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}

.hero-slide-description {
  font-size: clamp(1rem, 2vw, 1.3rem);
  max-width: 700px;
  margin-bottom: 2rem;
  color: #f9fafb;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
  line-height: 1.6;
}

.hero-slide-btn {
  font-size: 1.1rem;
  padding: 0.9rem 2rem;
  box-shadow: 0 8px 20px rgba(15, 95, 166, 0.5);
}

.hero-slide-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(15, 95, 166, 0.6);
}

/* Carousel Navigation Arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  color: var(--color-primary);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-arrow:hover {
  background: #ffffff;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.hero-arrow:active {
  transform: translateY(-50%) scale(0.95);
}

.hero-arrow svg {
  width: 24px;
  height: 24px;
}

.hero-arrow-prev {
  left: 2rem;
}

.hero-arrow-next {
  right: 2rem;
}

/* Carousel Indicators */
.hero-indicators {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
  z-index: 10;
}

.hero-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.8);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.hero-indicator:hover {
  background: rgba(255, 255, 255, 0.5);
  transform: scale(1.2);
}

.hero-indicator.active {
  background: #ffffff;
  border-color: #ffffff;
  width: 32px;
  border-radius: 6px;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.1fr);
  gap: 3rem;
  padding: 4rem 1.5rem 4.5rem;
}

.hero-text h1 {
  font-size: clamp(2rem, 3vw, 2.7rem);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.hero-subtitle {
  font-size: 1rem;
  max-width: 32rem;
  margin-bottom: 1.4rem;
  opacity: 0.95;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.6rem;
}

.hero-tags span {
  font-size: 0.78rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(248, 250, 252, 0.35);
  background: rgba(15, 23, 42, 0.65);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1.2rem;
}

.hero-contact {
  font-size: 0.8rem;
  max-width: 33rem;
  opacity: 0.9;
}

.hero-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.service-card {
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 1.1rem 1.2rem;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.45);
  border: 1px solid rgba(248, 250, 252, 0.1);
}

.service-card h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.service-card p {
  font-size: 0.85rem;
  opacity: 0.95;
}

/* Generic sections */
.section {
  padding: 4.5rem 0;
}

.section-alt {
  background: var(--color-bg-alt);
}

.section-title {
  text-align: center;
  font-size: 1.7rem;
  margin-bottom: 0.7rem;
}

.section-subtitle {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 2rem;
  color: #4b5563;
}

/* Destinations Section */
.destinations-section {
  background: #ffffff;
  position: relative;
  overflow: hidden;
  padding: 3rem 0;
}

.destinations-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(15, 95, 166, 0.03), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(199, 148, 62, 0.03), transparent 50%);
  pointer-events: none;
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header .section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.section-header .section-subtitle {
  font-size: 1rem;
  color: #64748b;
  margin-bottom: 0;
}

/* Destinations Carousel - Circular 3D */
.destinations-carousel-3d {
  position: relative;
  height: 450px;
  margin: 0 auto;
  max-width: 1200px;
  overflow: hidden;
  perspective: 1500px;
}

.destinations-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

.destination-card {
  position: absolute;
  width: 280px;
  height: 380px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transform-style: preserve-3d;
  left: 50%;
  top: 50%;
  margin-left: -140px;
  margin-top: -190px;
}

.destination-card.active {
  width: 320px;
  height: 420px;
  margin-left: -160px;
  margin-top: -210px;
  transform: translateZ(0) scale(1);
  opacity: 1;
  z-index: 10;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
}

.destination-card.prev {
  transform: translateX(-350px) translateZ(-200px) rotateY(45deg) scale(0.85);
  opacity: 0.7;
  z-index: 2;
}

.destination-card.next {
  transform: translateX(350px) translateZ(-200px) rotateY(-45deg) scale(0.85);
  opacity: 0.7;
  z-index: 2;
}

.destination-card.hidden {
  transform: translateX(0) translateZ(-400px) rotateY(0deg) scale(0.6);
  opacity: 0;
  z-index: 1;
  pointer-events: none;
}

.destination-card:hover:not(.hidden) {
  transform: translateY(-5px);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.18);
}

.destination-card.active:hover {
  transform: translateY(-8px) translateZ(0) scale(1.02);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.3);
}

.destination-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.destination-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.destination-card:hover .destination-image img {
  transform: scale(1.1);
}

.destination-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.3) 50%,
    rgba(0, 0, 0, 0.7) 100%
  );
  z-index: 1;
}

.destination-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 1.25rem;
  z-index: 2;
  color: #ffffff;
}

.destination-card.active .destination-content {
  padding: 2rem 1.5rem;
}

.destination-name {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  transition: font-size 0.5s ease;
}

.destination-card.active .destination-name {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.destination-offers {
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
  opacity: 0.9;
  font-weight: 500;
  transition: font-size 0.5s ease;
}

.destination-card.active .destination-offers {
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.destination-btn {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  background: rgba(55, 65, 81, 0.9);
  border: none;
  border-radius: 8px;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.destination-card.active .destination-btn {
  padding: 0.7rem 1.75rem;
  font-size: 1rem;
}

.destination-btn:hover {
  background: rgba(55, 65, 81, 1);
  transform: translateX(3px);
}

/* Omra Programs Section */
.omra-programs-section {
  background: #fafbfc;
  background-image: 
    linear-gradient(90deg, rgba(0,0,0,0.02) 1px, transparent 1px),
    linear-gradient(rgba(0,0,0,0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  padding: 6rem 0;
  position: relative;
}

.omra-programs-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.08), transparent);
}

.omra-programs-section .section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.omra-programs-section .grid {
  margin-top: 3rem;
}

.omra-programs-section .section-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  font-family: 'Georgia', 'Times New Roman', serif;
}

.omra-programs-section .section-subtitle {
  font-size: 0.9rem;
  color: #475569;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.5;
}

.omra-carousel-wrapper {
  position: relative;
  max-width: 1400px;
  margin: 4rem auto 0;
  padding: 0 2rem;
  overflow: hidden;
  width: 100%;
}

.omra-programs-grid {
  display: flex;
  gap: 2rem;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  width: fit-content;
}

.omra-program-card {
  flex: 0 0 calc((100% - 3.75rem) / 4);
  min-width: 0;
  max-width: calc((100% - 3.75rem) / 4);
  width: calc((100% - 3.75rem) / 4);
}

.omra-programs-grid.slide-1 {
  transform: translateX(calc(-100% / 2 - 1rem));
}

.omra-program-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.1);
  position: relative;
}

.omra-program-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0ea5e9, #06b6d4, #0ea5e9);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.omra-program-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12), 0 8px 16px rgba(0, 0, 0, 0.08);
  border-color: #cbd5e1;
}

.omra-program-card:hover::before {
  opacity: 1;
}

.omra-card-image {
  position: relative;
  width: 100%;
  height: 160px;
  overflow: hidden;
  background: #1e293b;
}

.omra-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.omra-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(0, 0, 0, 0.6) 100%
  );
  padding: 2rem;
}

.omra-arabic-text {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fbbf24;
  text-shadow: 
    0 0 20px rgba(251, 191, 36, 0.5),
    2px 2px 8px rgba(0, 0, 0, 0.7),
    0 4px 12px rgba(0, 0, 0, 0.5);
  font-family: 'Arial', 'Tahoma', sans-serif;
  line-height: 1;
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

.omra-month {
  font-size: 0.85rem;
  color: #ffffff;
  font-weight: 600;
  text-shadow: 
    0 2px 8px rgba(0, 0, 0, 0.6),
    0 1px 3px rgba(0, 0, 0, 0.4);
  font-family: 'Arial', 'Tahoma', sans-serif;
  letter-spacing: 0.03em;
}

.omra-card-content {
  padding: 0.9rem 1rem;
  background: #e0f2fe;
}

.omra-card-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
  line-height: 1.3;
  font-family: 'Arial', sans-serif;
  letter-spacing: -0.01em;
}

.omra-card-location {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.5rem;
  color: #475569;
  font-size: 0.75rem;
  font-weight: 500;
}

.omra-card-location svg {
  color: #0ea5e9;
  flex-shrink: 0;
  width: 14px;
  height: 14px;
}

.omra-card-price {
  font-size: 0.8rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
  letter-spacing: 0.01em;
}

.omra-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.5rem;
  padding-top: 0;
  border-top: none;
}

.omra-card-duration {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: #475569;
  font-size: 0.7rem;
  font-weight: 500;
}

.omra-card-duration svg {
  color: #0ea5e9;
  flex-shrink: 0;
  width: 14px;
  height: 14px;
}

.omra-card-btn {
  padding: 0.45rem 1.1rem;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  color: #0f172a;
  font-weight: 600;
  font-size: 0.75rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.omra-card-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.omra-card-btn:hover::before {
  left: 100%;
}

.omra-card-btn:hover {
  background: #f8fafc;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  color: #0f172a;
  border-color: #94a3b8;
}

.omra-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  margin-top: 3rem;
}

.omra-pagination-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e1;
  cursor: pointer;
  transition: all 0.3s ease;
}

.omra-pagination-dot.active {
  background: #0ea5e9;
  width: 24px;
  border-radius: 5px;
}

/* Omra Programs Grid Cards */
.omra-programs-section .grid .omra-program-card {
  flex: none;
  min-width: auto;
  max-width: none;
  width: auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.omra-programs-section .grid .omra-program-card .omra-card-image {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #1e293b;
}

.omra-programs-section .grid .omra-program-card .omra-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.omra-programs-section .grid .omra-program-card:hover .omra-card-image img {
  transform: scale(1.1);
}

.omra-programs-section .grid .omra-program-card .omra-card-content-wrapper {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.omra-programs-section .grid .omra-program-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.omra-programs-section .grid .omra-program-card .bullet-list {
  margin-bottom: 1.5rem;
  flex: 1;
}

.omra-programs-section .grid .omra-program-card .btn {
  width: 100%;
  text-align: center;
  display: block;
  margin-top: auto;
}

.omra-programs-section .grid .omra-program-card.omra-program-highlight {
  background: linear-gradient(135deg, #0f5fa6 0%, #0a4d8a 100%);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(15,95,166,0.3);
}

.omra-programs-section .grid .omra-program-card.omra-program-highlight .omra-card-content-wrapper {
  background: linear-gradient(135deg, #0f5fa6 0%, #0a4d8a 100%);
}

.omra-programs-section .grid .omra-program-card.omra-program-highlight h3 {
  color: #ffffff;
}

.omra-programs-section .grid .omra-program-card.omra-program-highlight .highlight {
  background: rgba(255,255,255,0.15);
  border-left: 3px solid #c7943e;
  color: #ffffff;
  margin: 0.7rem 0 1rem;
}

.omra-programs-section .grid .omra-program-card.omra-program-highlight .btn {
  background: #ffffff;
  color: #0f5fa6;
}

.omra-programs-section .grid .omra-program-card.omra-program-highlight .btn:hover {
  background: #f8fafc;
}

/* Tours Programs Section */
.tours-programs-section {
  background: #ffffff;
  padding: 6rem 0;
}

.tours-programs-section .section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.tours-programs-section .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.tours-programs-section .section-subtitle {
  font-size: 1.1rem;
  color: #64748b;
  max-width: 700px;
  margin: 0 auto;
}

.tours-programs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto;
}

.tour-program-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  border: 1px solid #e2e8f0;
}

.tour-program-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.tour-program-images {
  position: relative;
  width: 100%;
  height: 320px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 0.5rem;
  overflow: hidden;
}

.tour-program-images.tour-program-images--single {
  grid-template-columns: 1fr;
  gap: 0;
}

.tour-program-image-main {
  position: relative;
  overflow: hidden;
}

.tour-program-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.tour-program-card:hover .tour-program-image-main img {
  transform: scale(1.1);
}

.tour-program-image-secondary {
  position: relative;
  overflow: hidden;
}

.tour-program-image-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.tour-program-card:hover .tour-program-image-secondary img {
  transform: scale(1.1);
}

.tour-program-content {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.tour-program-header {
  margin-bottom: 1.5rem;
}

.tour-program-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.tour-program-subtitle {
  font-size: 1rem;
  color: #64748b;
  font-weight: 500;
}

.tour-program-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

.tour-program-duration {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #475569;
  font-weight: 600;
  font-size: 0.95rem;
}

.tour-program-duration svg {
  color: var(--color-primary);
  flex-shrink: 0;
}

.tour-program-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

.tour-price-label {
  font-size: 0.75rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.tour-price-amount {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}

.tour-price-note {
  font-size: 0.85rem;
  color: #64748b;
  margin-top: 0.25rem;
}

.tour-program-highlights {
  margin-bottom: 2rem;
  flex: 1;
}

.tour-program-highlights h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

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

.tour-highlights-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.5;
}

.tour-highlights-list li svg {
  color: #10b981;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

  .tour-program-btn {
    width: 100%;
    text-align: center;
    padding: 1rem 2rem;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 12px;
  }

/* Tour Detail Pages */
.tour-detail-hero {
  position: relative;
  height: 500px;
  overflow: hidden;
  margin-top: 90px;
}

.tour-detail-hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.tour-detail-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.tour-detail-hero-content {
  color: #ffffff;
  max-width: 800px;
}

.tour-detail-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.tour-detail-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.tour-detail-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.tour-detail-hero-actions .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 1.05rem;
  font-weight: 600;
}

.tour-detail-section {
  padding: 4rem 0;
}

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

.tour-detail-images {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1rem;
  margin-bottom: 3rem;
  height: 400px;
}

.tour-detail-image-main,
.tour-detail-image-secondary {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.tour-detail-image-main img,
.tour-detail-image-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tour-detail-info-box {
  background: #f8fafc;
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.tour-detail-info-box h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
}

.tour-detail-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.tour-detail-info-item {
  display: flex;
  flex-direction: column;
}

.tour-detail-info-label {
  font-size: 0.9rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.tour-detail-info-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
}

.tour-detail-info-value.tour-detail-price {
  color: var(--color-primary);
  font-size: 2rem;
}

.tour-detail-info-note {
  font-size: 0.9rem;
  color: #64748b;
  margin-top: 0.25rem;
}

.tour-detail-includes {
  margin-bottom: 3rem;
}

.tour-detail-includes h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
}

.tour-detail-highlights-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}

.tour-detail-highlights-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: #f8fafc;
  border-radius: 12px;
  color: #475569;
  font-size: 1rem;
  line-height: 1.6;
}

.tour-detail-highlights-list li svg {
  color: #10b981;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.tour-detail-description {
  margin-bottom: 3rem;
}

.tour-detail-description h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
}

.tour-detail-description p {
  font-size: 1.1rem;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.tour-detail-sidebar {
  position: sticky;
  top: 110px;
}

.tour-detail-booking-box {
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.tour-detail-booking-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid #e2e8f0;
}

.booking-price-label {
  font-size: 0.85rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.booking-price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.booking-price-note {
  font-size: 0.9rem;
  color: #64748b;
}

.tour-detail-booking-duration {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  color: #475569;
  font-weight: 600;
  font-size: 1rem;
}

.tour-detail-booking-duration svg {
  color: var(--color-primary);
  flex-shrink: 0;
}

.tour-detail-booking-btn,
.tour-detail-download-btn {
  width: 100%;
  text-align: center;
  padding: 1rem 2rem;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 12px;
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.tour-detail-download-btn {
  background: #f8fafc;
  color: #0f172a;
  border: 2px solid #e2e8f0;
}

.tour-detail-download-btn:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
}

@media (max-width: 1024px) {
  .tour-detail-content {
    grid-template-columns: 1fr;
  }
  
  .tour-detail-sidebar {
    position: static;
  }
  
  .tour-detail-images {
    height: 300px;
  }
  
  .tour-detail-title {
    font-size: 2.5rem;
  }
  
  .tour-detail-hero {
    height: 400px;
  }
}

@media (max-width: 1024px) {
  .tours-programs-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .tours-programs-section {
    padding: 4rem 0;
  }
  
  .tours-programs-section .section-title {
    font-size: 2rem;
  }
  
  .tour-program-images {
    height: 240px;
  }
  
  .tour-program-content {
    padding: 2rem;
  }
  
  .tour-program-title {
    font-size: 1.5rem;
  }
  
  .tour-program-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .tour-program-price {
    align-items: flex-start;
    width: 100%;
  }
  
  .tour-detail-hero {
    height: 350px;
    margin-top: 80px;
  }
  
  .tour-detail-title {
    font-size: 2rem;
  }
  
  .tour-detail-subtitle {
    font-size: 1.2rem;
  }
  
  /* Prevent horizontal scroll on mobile - only allow for tables */
  body {
    overflow-x: hidden !important;
    max-width: 100vw;
    position: relative;
    width: 100%;
  }

  html {
    overflow-x: hidden !important;
    max-width: 100vw;
    width: 100%;
  }

  main {
    overflow-x: hidden;
    max-width: 100%;
    width: 100%;
  }

  .container {
    max-width: 100%;
    overflow-x: hidden;
    width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
  }

  /* Center all content */
  .tour-detail-content {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
  }

  .tour-detail-main {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
  }

  .tour-detail-main > * {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: auto;
    margin-right: auto;
  }

  .tour-detail-sidebar {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto 2rem;
    order: -1;
  }

  .tour-detail-booking-box {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto;
    padding: 1.5rem 1rem;
    text-align: center;
    box-sizing: border-box;
  }

  .tour-detail-booking-duration {
    justify-content: center;
    margin-bottom: 1rem;
    text-align: center;
  }

  .tour-detail-booking-btn,
  .tour-detail-download-btn {
    width: 100% !important;
    margin-bottom: 0.75rem;
    display: flex;
    justify-content: center;
  }

  .omra-program-overview,
  .omra-stay-details,
  .omra-prices-section,
  .omra-includes,
  .omra-important-note {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto 2rem;
    text-align: center;
    padding: 1.5rem 1rem;
    box-sizing: border-box;
  }

  /* Reduce sizes on mobile */
  .tour-detail-title {
    font-size: 1.75rem !important;
    text-align: center;
  }

  .tour-detail-subtitle {
    font-size: 1rem !important;
    text-align: center;
  }

  .omra-program-overview h2,
  .omra-stay-details h2,
  .omra-prices-section h2,
  .omra-includes h2 {
    font-size: 1.3rem !important;
    text-align: center;
    margin-bottom: 1rem;
  }

  .program-info-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem;
    justify-items: center;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }

  .program-info-card {
    width: 100%;
    max-width: 100%;
    text-align: center;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    margin: 0 auto;
  }

  .program-info-card > div {
    text-align: center;
    width: 100%;
  }

  .stay-details-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }

  .stay-detail-card {
    text-align: center;
    width: 100%;
    max-width: 100%;
    flex-direction: column;
    padding: 1.25rem;
    margin: 0 auto;
    align-items: center;
  }

  .stay-detail-card > div:last-child {
    text-align: center;
    width: 100%;
  }

  .stay-icon {
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    margin: 0 auto 0.75rem;
  }

  .stay-detail-card strong,
  .stay-detail-card p {
    text-align: center;
    font-size: 0.9rem;
  }

  /* Reduce font sizes */
  .program-info-card {
    padding: 1rem;
    font-size: 0.9rem;
  }

  .program-info-card svg {
    width: 20px;
    height: 20px;
  }

  .program-info-card strong {
    font-size: 0.85rem;
  }

  .program-info-card p {
    font-size: 0.9rem;
  }

  .prices-subtitle {
    font-size: 0.85rem;
    text-align: center;
    margin-bottom: 1rem;
  }

  /* Table scroll - only table can scroll horizontally */
  .table-responsive {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .omra-prices-table,
  .program-prices-table {
    width: 100%;
    min-width: 700px; /* Force horizontal scroll for table */
    margin: 0;
    font-size: 0.75rem;
  }

  .omra-prices-table th,
  .omra-prices-table td {
    padding: 0.75rem 0.5rem;
    font-size: 0.75rem;
  }

  .omra-prices-table th {
    font-size: 0.7rem;
    padding: 0.75rem 0.4rem;
  }

  .omra-prices-table td:first-child {
    text-align: center;
    font-size: 0.8rem;
  }

  /* All other elements should not overflow */
  .tour-detail-main > *:not(.table-responsive):not(.omra-prices-section) {
    max-width: 100%;
    overflow-x: hidden;
    width: 100%;
  }

  .omra-prices-section {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .omra-prices-section > *:not(.table-responsive) {
    max-width: 100%;
    overflow-x: hidden;
  }

  /* Ensure sections don't overflow and are centered */
  .omra-program-overview,
  .omra-stay-details,
  .omra-includes {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
    text-align: center;
    padding: 1.5rem 1rem;
  }

  .omra-includes-list {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }

  .omra-includes-list li {
    text-align: center;
    justify-content: center;
    padding: 1rem;
  }

  .omra-includes-list li span {
    text-align: center;
  }

  .omra-important-note {
    width: 100%;
    max-width: 100%;
    margin: 0 auto 2rem;
    padding: 1.5rem 1rem;
    text-align: center;
  }

  .omra-important-note h3 {
    font-size: 1.2rem;
    text-align: center;
  }

  .omra-important-note p {
    font-size: 0.9rem;
    text-align: center;
  }

  .omra-program-overview h2,
  .omra-stay-details h2,
  .omra-prices-section h2,
  .omra-includes h2 {
    text-align: center;
    width: 100%;
  }

  /* Center images */
  .tour-detail-images {
    width: 100%;
    max-width: 100%;
    margin: 0 auto 2rem;
  }

  .tour-detail-image-main {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }

  .tour-detail-image-main img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    margin: 0 auto;
  }

  /* Center reservation form */
  .tour-reservation-form-wrapper {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 1.5rem 1rem;
  }

  .tour-reservation-form {
    width: 100%;
    max-width: 100%;
  }

  .tour-reservation-form .form-group {
    width: 100%;
  }

  .tour-reservation-form input,
  .tour-reservation-form select,
  .tour-reservation-form textarea {
    width: 100%;
    max-width: 100%;
  }

  /* Move buttons outside hero on mobile */
  .tour-detail-hero {
    position: relative;
    margin-bottom: 0;
  }

  .tour-detail-hero-overlay {
    align-items: flex-end;
    padding-bottom: 1.5rem;
  }

  .tour-detail-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
  }

  /* Hide buttons inside hero on mobile */
  .tour-detail-hero-content .tour-detail-hero-actions {
    display: none !important;
  }

  /* Mobile buttons section - visible only on mobile */
  .tour-detail-mobile-actions {
    display: block;
    background: #ffffff;
    padding: 1.5rem 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10;
  }

  .tour-detail-mobile-actions .container {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .tour-detail-mobile-actions .btn {
    width: 100%;
    justify-content: center;
    margin: 0;
  }

  /* Add padding to section after hero */
  .tour-detail-section {
    padding-top: 0;
  }
  
  .tour-detail-images {
    grid-template-columns: 1fr;
    height: 250px;
  }
  
  .tour-detail-info-grid {
    grid-template-columns: 1fr;
  }
  
  .tour-detail-section {
    padding: 2rem 0;
  }
}

/* Hide mobile buttons on desktop */
@media (min-width: 768px) {
  .tour-detail-mobile-actions {
    display: none !important;
  }
}

/* Tour Detail Tables */
.tour-detail-prices-table {
  margin-bottom: 3rem;
}

.tour-detail-prices-table h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
}

.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.tour-prices-table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.tour-prices-table thead {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: #ffffff;
}

.tour-prices-table th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tour-prices-table tbody tr {
  border-bottom: 1px solid #e2e8f0;
  transition: background-color 0.2s ease;
}

.tour-prices-table tbody tr:hover {
  background-color: #f8fafc;
}

.tour-prices-table tbody tr:last-child {
  border-bottom: none;
}

.tour-prices-table td {
  padding: 1rem;
  color: #475569;
  font-size: 0.95rem;
}

.tour-prices-table td:first-child {
  font-weight: 600;
  color: #0f172a;
}

.table-note {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: #64748b;
  font-style: italic;
}

/* Flight Schedule */
.tour-detail-flight-schedule {
  margin-bottom: 3rem;
}

.tour-detail-flight-schedule h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
}

.flight-schedule-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.flight-schedule-item {
  background: #f8fafc;
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid #e2e8f0;
}

.flight-schedule-item h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.flight-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.flight-number {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
  padding: 0.5rem 1rem;
  background: #ffffff;
  border-radius: 8px;
  display: inline-block;
  width: fit-content;
}

.flight-route {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.flight-city {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
}

.flight-city strong {
  font-size: 1.1rem;
  color: #0f172a;
  font-weight: 700;
}

.flight-city span {
  font-size: 0.9rem;
  color: #64748b;
}

.flight-date {
  font-size: 0.85rem;
  color: #94a3b8;
}

.flight-arrow {
  font-size: 1.5rem;
  color: var(--color-primary);
  font-weight: 700;
  flex-shrink: 0;
}

/* Itinerary */
.tour-detail-itinerary {
  margin-bottom: 3rem;
}

.tour-detail-itinerary h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 2rem;
}

.itinerary-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.itinerary-day {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.itinerary-day:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-color: var(--color-primary);
}

.itinerary-day-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #e2e8f0;
}

.itinerary-day-number {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  min-width: 80px;
  text-align: center;
}

.itinerary-day-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}

.itinerary-activities {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.itinerary-activities li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: #475569;
  font-size: 0.95rem;
  padding-left: 1.5rem;
  position: relative;
}

.itinerary-activities li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1.2rem;
}

/* Tour Excludes List */
.tour-excludes-list li svg {
  color: #ef4444;
}

/* Reservation Form */
.tour-reservation-section {
  background: #f8fafc;
  padding: 4rem 0;
}

.tour-reservation-header {
  text-align: center;
  margin-bottom: 3rem;
}

.tour-reservation-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.tour-reservation-header p {
  font-size: 1.1rem;
  color: #64748b;
}

.tour-reservation-form-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.tour-reservation-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form-section {
  padding-bottom: 2rem;
  border-bottom: 1px solid #e2e8f0;
}

.form-section:last-of-type {
  border-bottom: none;
}

.form-section h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
}

.tour-reservation-form .form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.tour-reservation-form .form-group {
  display: flex;
  flex-direction: column;
}

.tour-reservation-form label {
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.tour-reservation-form .required {
  color: #ef4444;
}

.tour-reservation-form input[type="text"],
.tour-reservation-form input[type="tel"],
.tour-reservation-form input[type="email"],
.tour-reservation-form input[type="number"],
.tour-reservation-form input[type="date"],
.tour-reservation-form select,
.tour-reservation-form textarea {
  padding: 0.75rem 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
  color: #0f172a;
  background: #ffffff;
  transition: all 0.3s ease;
  font-family: inherit;
}

.tour-reservation-form input:focus,
.tour-reservation-form select:focus,
.tour-reservation-form textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(15, 95, 166, 0.1);
}

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

.tour-reservation-form .form-footer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.form-success {
  padding: 1rem;
  background: #d1fae5;
  color: #065f46;
  border-radius: 8px;
  border: 1px solid #10b981;
  font-weight: 500;
}

.form-error {
  padding: 1rem;
  background: #fee2e2;
  color: #991b1b;
  border-radius: 8px;
  border: 1px solid #ef4444;
  font-weight: 500;
}

/* Omra Program Professional Styles */
.omra-program-overview {
  margin-bottom: 3rem;
}

.omra-program-overview h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 2rem;
  text-align: center;
  padding-bottom: 1rem;
  border-bottom: 3px solid var(--color-primary);
}

.program-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.program-info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 16px;
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.program-info-card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 8px 24px rgba(15, 95, 166, 0.15);
  transform: translateY(-2px);
}

.program-info-card svg {
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.program-info-card strong {
  display: block;
  font-size: 0.85rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.program-info-card p {
  font-size: 1.1rem;
  color: #0f172a;
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
}

.omra-stay-details {
  margin-bottom: 3rem;
  padding: 2rem;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  border-radius: 20px;
  border: 2px solid #e2e8f0;
}

.omra-stay-details h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 2rem;
  text-align: center;
}

.stay-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.stay-detail-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
}

.stay-detail-card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 4px 12px rgba(15, 95, 166, 0.1);
}

.stay-icon {
  font-size: 3rem;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  flex-shrink: 0;
}

.stay-icon.mecca {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.stay-icon.medina {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
}

.stay-detail-card strong {
  display: block;
  font-size: 1rem;
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stay-detail-card p {
  font-size: 0.95rem;
  color: #475569;
  margin: 0;
  line-height: 1.5;
}

.omra-prices-section {
  margin-bottom: 3rem;
}

.omra-prices-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
  text-align: center;
}

.prices-subtitle {
  text-align: center;
  color: #64748b;
  font-size: 1rem;
  margin-bottom: 2rem;
}

.omra-prices-table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 1rem;
}

.omra-prices-table thead {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: #ffffff;
}

.omra-prices-table th {
  padding: 1.25rem 1rem;
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.omra-prices-table th:last-child {
  border-right: none;
}

.omra-prices-table tbody tr {
  border-bottom: 1px solid #e2e8f0;
  transition: background-color 0.2s ease;
}

.omra-prices-table tbody tr:hover {
  background-color: #f8fafc;
}

.omra-prices-table tbody tr:last-child {
  border-bottom: none;
}

.omra-prices-table td {
  padding: 1.25rem 1rem;
  color: #475569;
  font-size: 0.95rem;
  text-align: center;
  border-right: 1px solid #e2e8f0;
}

.omra-prices-table td:last-child {
  border-right: none;
}

.omra-prices-table td:first-child {
  font-weight: 600;
  color: #0f172a;
  text-align: right;
  background: #f8fafc;
}

.omra-prices-table td strong {
  color: var(--color-primary);
  font-size: 1rem;
}

.prices-note {
  text-align: center;
  font-size: 0.9rem;
  color: #64748b;
  font-style: italic;
  margin-top: 1rem;
}

.omra-includes {
  margin-bottom: 3rem;
  padding: 2rem;
  background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
  border-radius: 20px;
  border: 2px solid #d1fae5;
}

.omra-includes h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 2rem;
  text-align: center;
}

.omra-includes-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}

.omra-includes-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #d1fae5;
  color: #475569;
  font-size: 1rem;
  line-height: 1.6;
}

.omra-includes-list li svg {
  color: #10b981;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.omra-important-note {
  padding: 2rem;
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border-radius: 16px;
  border: 2px solid #fbbf24;
  margin-bottom: 2rem;
}

.omra-important-note h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #92400e;
  margin-bottom: 1rem;
  text-align: center;
}

.omra-important-note p {
  color: #78350f;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 0.75rem;
  text-align: center;
}

.omra-important-note p:last-child {
  margin-bottom: 0;
}

.form-hint {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: #64748b;
  font-style: italic;
}

@media (max-width: 1024px) {
  .program-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stay-details-grid {
    grid-template-columns: 1fr;
  }
  
  .omra-prices-table {
    font-size: 0.85rem;
  }
  
  .omra-prices-table th,
  .omra-prices-table td {
    padding: 0.75rem 0.5rem;
  }
}

@media (max-width: 768px) {
  .program-info-grid {
    grid-template-columns: 1fr;
  }
  
  .omra-program-overview h2,
  .omra-stay-details h2,
  .omra-prices-section h2,
  .omra-includes h2 {
    font-size: 1.5rem;
  }
  
  .stay-detail-card {
    flex-direction: column;
    text-align: center;
  }
  
  .omra-prices-table {
    font-size: 0.75rem;
  }
  
  .omra-prices-table th,
  .omra-prices-table td {
    padding: 0.5rem 0.25rem;
  }
  
  .omra-prices-table td:first-child {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .flight-schedule-grid {
    grid-template-columns: 1fr;
  }
  
  .tour-prices-table {
    font-size: 0.85rem;
  }
  
  .tour-prices-table th,
  .tour-prices-table td {
    padding: 0.75rem 0.5rem;
  }
  
  .tour-reservation-form-wrapper {
    padding: 2rem 1.5rem;
  }
  
  .tour-reservation-form .form-row {
    grid-template-columns: 1fr;
  }
  
  .itinerary-day-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .flight-route {
    flex-direction: column;
    gap: 1rem;
  }
  
  .flight-arrow {
    transform: rotate(90deg);
  }
}

.two-cols {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.text-col h2 {
  font-size: 1.7rem;
  margin-bottom: 0.9rem;
}

.text-col p {
  margin-bottom: 0.75rem;
  color: #4b5563;
}

.highlight {
  background: linear-gradient(90deg, rgba(15, 95, 166, 0.08), rgba(199, 148, 62, 0.05));
  border-left: 3px solid var(--color-gold);
  padding: 0.7rem 0.9rem;
  border-radius: 0.75rem;
  margin: 0.7rem 0 1rem;
  color: #1f2937;
}

.checklist {
  margin: 0.75rem 0 1.2rem;
}

.checklist li::before {
  content: "✓";
  color: var(--color-gold);
  margin-right: 0.4rem;
}

.checklist li {
  margin-bottom: 0.35rem;
  color: #1f2937;
}

.bullet-list li {
  position: relative;
  padding-left: 0.8rem;
  margin-bottom: 0.35rem;
  color: #4b5563;
}

.bullet-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-primary);
}

.grid {
  display: grid;
  gap: 1.75rem;
}

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

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 768px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
  
  .omra-programs-section .grid .omra-program-card .omra-card-image {
    height: 200px;
  }
  
  .omra-programs-section .grid .omra-program-card .omra-card-content-wrapper {
    padding: 1.5rem;
  }
}

.image-card {
  border-radius: var(--radius-lg);
  min-height: 250px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
  position: relative;
  display: block;
}

.image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.2), rgba(15, 95, 166, 0.2));
  pointer-events: none;
}

.image-about {
  background-image: url("https://images.pexels.com/photos/8867435/pexels-photo-8867435.jpeg?auto=compress&cs=tinysrgb&w=1600");
}

.logo-about {
  width: 100%;
  max-width: 400px;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  transition: transform 0.3s ease;
}

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

/* About Page Styles */
.about-hero {
  padding: 5rem 0;
  background: linear-gradient(135deg, rgba(15, 95, 166, 0.05), rgba(199, 148, 62, 0.05));
}

.about-hero-content {
  text-align: center;
  animation: fadeInUp 0.8s ease;
}

.about-hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.about-hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #64748b;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.about-main-title {
  font-size: clamp(1.75rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.about-text-content {
  margin-bottom: 1.5rem;
}

.about-text-content p {
  margin-bottom: 1rem;
  color: #475569;
  line-height: 1.8;
  font-size: 1.05rem;
}

.about-features {
  margin: 2rem 0;
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 12px;
  border-left: 4px solid var(--color-primary);
}

.about-cta-btn {
  margin-top: 1.5rem;
  font-size: 1.05rem;
  padding: 0.75rem 2rem;
}

.about-logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(15, 95, 166, 0.05), rgba(199, 148, 62, 0.05));
  border-radius: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-logo-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(15, 95, 166, 0.15);
}

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

/* Smooth scroll behavior for page sections */
@keyframes zoomIn {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

/* Enhanced text-col and image-col animations */
.text-col {
  animation: fadeInLeft 0.8s ease;
}

.image-col {
  animation: fadeInRight 0.8s ease;
}

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

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* IATA Certification */
.iata-section {
  text-align: center;
  padding: 4rem 0;
}

.iata-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
  padding-left: 2rem;
}

.iata-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.5rem;
  height: 3px;
  background: var(--color-primary);
}

.iata-text {
  font-size: 1.1rem;
  color: #6b7280;
  max-width: 800px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

.iata-logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}

.iata-logo {
  background: #f3f4f6;
  border-radius: 16px;
  padding: 2.5rem 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}

.iata-logo-img {
  width: 200px;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

.image-omra {
  background-image: url("../image/heroomra.jpeg");
  background-size: cover;
  background-position: center;
}

.image-flight {
  background-image: url("../image/herobilleterie.jpg");
  background-size: cover;
  background-position: center;
}

.image-tours {
  background-image: url("../image/herovoyageorganise.jpg");
  background-size: cover;
  background-position: center;
}

.image-hotels {
  background-image: url("../image/hero5.webp");
  background-size: cover;
  background-position: center;
}

/* Why Choose */
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.why-choose-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.why-choose-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
}

.why-choose-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: #ffffff;
  flex-shrink: 0;
}

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

.why-choose-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.why-choose-text {
  font-size: 0.95rem;
  color: #374151;
  line-height: 1.6;
  margin: 0;
}

/* Contact */
.contact-section {
  background: radial-gradient(circle at 10% 0, rgba(199, 148, 62, 0.1), transparent 55%),
    radial-gradient(circle at 85% 100%, rgba(15, 95, 166, 0.18), transparent 50%);
}

/* Make contact form column match the height of the info+map column */
.contact-section .two-cols {
  align-items: stretch;
}

.contact-section .form-col {
  display: flex;
}

.contact-section .contact-form {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 2.25rem 2rem;
}

.contact-section .contact-form .form-footer {
  margin-top: auto;
}

.contact-section .contact-form .form-group {
  margin-bottom: 1.4rem;
}

.contact-section .contact-form textarea {
  min-height: 160px;
}

.contact-details {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: #1f2937;
}

.contact-form {
  background: #ffffff;
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid #e5e7eb;
}

/* Ticketing Form Section */
.ticketing-form-section {
  background: #ffffff;
  position: relative;
}

.ticketing-form-section .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.ticketing-form-section .section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.ticketing-form-section .section-subtitle {
  font-size: 1.05rem;
  color: #64748b;
  max-width: 700px;
  margin: 0 auto;
}

.ticketing-form-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.ticketing-form {
  background: #ffffff;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
}

.ticketing-form .form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.ticketing-form .form-group {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
}

.ticketing-form .form-group label {
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.ticketing-form .form-group .required {
  color: #ef4444;
}

.ticketing-form input[type="text"],
.ticketing-form input[type="tel"],
.ticketing-form input[type="email"],
.ticketing-form input[type="date"],
.ticketing-form input[type="number"],
.ticketing-form select,
.ticketing-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
  color: #0f172a;
  background: #ffffff;
  transition: all 0.3s ease;
  font-family: inherit;
}

.ticketing-form input:focus,
.ticketing-form select:focus,
.ticketing-form textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(15, 95, 166, 0.1);
}

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

.passengers-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.passenger-input {
  display: flex;
  flex-direction: column;
}

.passenger-input label {
  font-size: 0.85rem;
  font-weight: 500;
  color: #475569;
  margin-bottom: 0.4rem;
}

.passenger-input input {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 0.95rem;
}

.ticketing-form .form-footer {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #e2e8f0;
}

.ticketing-form .form-note {
  font-size: 0.85rem;
  color: #64748b;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.ticketing-form .form-success {
  margin-top: 1rem;
  padding: 1rem;
  background: #d1fae5;
  color: #065f46;
  border-radius: 8px;
  border: 1px solid #10b981;
  font-weight: 500;
}

.ticketing-form .form-error {
  margin-top: 1rem;
  padding: 1rem;
  background: #fee2e2;
  color: #991b1b;
  border-radius: 8px;
  border: 1px solid #ef4444;
  font-weight: 500;
}

/* Trip Type Selector */
.trip-type-selector-wrapper {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid #e2e8f0;
}

.trip-type-label {
  display: block;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.trip-type-selector {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

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

.trip-type-option {
  flex: 1;
  min-width: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.25rem;
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  color: #64748b;
  font-size: 0.95rem;
}

.trip-type-option svg {
  flex-shrink: 0;
  stroke: currentColor;
}

.trip-type-option:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: #f0f9ff;
}

.trip-type-selector input[type="radio"]:checked + .trip-type-option {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(15, 95, 166, 0.25);
}

.trip-type-selector input[type="radio"]:checked + .trip-type-option svg {
  stroke: #ffffff;
}

.trip-type-selector input[type="radio"]:focus + .trip-type-option {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* Trip Form Animation */
.trip-form {
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Multi-destinations form */
.multi-destinations {
  margin-bottom: 1.5rem;
}

.destination-leg {
  background: #f8fafc;
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  border: 1px solid #e2e8f0;
}

.destination-leg h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.add-destination-btn {
  width: 100%;
  margin-bottom: 1.5rem;
}

.remove-destination-btn {
  margin-top: 0.5rem;
}

/* Hotel Form Section */
.hotel-form-section {
  background: #ffffff;
  position: relative;
}

.hotel-form-section .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.hotel-form-section .section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.hotel-form-section .section-subtitle {
  font-size: 1.05rem;
  color: #64748b;
  max-width: 700px;
  margin: 0 auto;
}

.hotel-form-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.hotel-form {
  background: #ffffff;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
}

.hotel-form .form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.hotel-form .form-group {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
}

.hotel-form .form-group label {
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.hotel-form .form-group .required {
  color: #ef4444;
}

.hotel-form input[type="text"],
.hotel-form input[type="tel"],
.hotel-form input[type="email"],
.hotel-form input[type="date"],
.hotel-form input[type="number"],
.hotel-form select,
.hotel-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
  color: #0f172a;
  background: #ffffff;
  transition: all 0.3s ease;
  font-family: inherit;
}

.hotel-form input:focus,
.hotel-form select:focus,
.hotel-form textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(15, 95, 166, 0.1);
}

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

.hotel-form .form-footer {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #e2e8f0;
}

.hotel-form .form-note {
  font-size: 0.85rem;
  color: #64748b;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.hotel-form .form-success {
  margin-top: 1rem;
  padding: 1rem;
  background: #d1fae5;
  color: #065f46;
  border-radius: 8px;
  border: 1px solid #10b981;
  font-weight: 500;
}

.hotel-form .form-error {
  margin-top: 1rem;
  padding: 1rem;
  background: #fee2e2;
  color: #991b1b;
  border-radius: 8px;
  border: 1px solid #ef4444;
  font-weight: 500;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-group {
  margin-bottom: 0.9rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 0.25rem;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.55rem 0.7rem;
  border-radius: 0.6rem;
  border: 1px solid #d1d5db;
  font-size: 0.9rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 1px rgba(15, 95, 166, 0.25);
}

.form-footer {
  margin-top: 0.4rem;
}

.form-note {
  font-size: 0.8rem;
  color: #6b7280;
  margin-bottom: 0.6rem;
}

.form-success {
  margin-top: 0.6rem;
  font-size: 0.85rem;
  color: #15803d;
}

.form-error {
  margin-top: 0.6rem;
  font-size: 0.85rem;
  color: #b91c1c;
}

.map-placeholder {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: #4b5563;
}

.map-container {
  margin-top: 2rem;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  background: #f3f4f6;
}

.map-container iframe {
  width: 100%;
  height: 400px;
  display: block;
  border: none;
  border-radius: 12px;
}

@media (max-width: 768px) {
  .map-container iframe {
    height: 300px;
  }
}

/* WhatsApp floating button */
.whatsapp-float {
  position: fixed;
  right: 1.3rem;
  bottom: 1.4rem;
  z-index: 40;
  background: #22c55e;
  color: #ffffff;
  border-radius: 999px;
  padding: 0.6rem 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  box-shadow: 0 18px 40px rgba(22, 163, 74, 0.5);
  font-size: 0.9rem;
}

.whatsapp-float::before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 999px;
  border: 2px solid #bbf7d0;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.4);
}

.whatsapp-float:hover {
  transform: translateY(-1px);
}

/* Footer */
.site-footer {
  background: #020617;
  color: #e5e7eb;
  padding-top: 2.8rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: 2rem;
  font-size: 0.9rem;
}

.site-footer h3,
.site-footer h4 {
  margin-bottom: 0.8rem;
}

.site-footer ul li {
  margin-bottom: 0.3rem;
}

.footer-bottom {
  margin-top: 2rem;
  border-top: 1px solid rgba(75, 85, 99, 0.6);
  padding: 0.9rem 0;
  font-size: 0.8rem;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.footer-lang {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.footer-lang a {
  color: #9ca3af;
  font-size: 0.8rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-lang a:hover,
.footer-lang a.active {
  color: #f3f4f6;
}

.footer-lang button {
  background: transparent;
  border: none;
  color: #9ca3af;
  font-size: 0.8rem;
  cursor: pointer;
  margin-left: 0.2rem;
}

.footer-lang button:hover {
  color: #f3f4f6;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon svg {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.social-icon:hover {
  transform: translateY(-3px);
}

.social-icon:hover svg {
  transform: scale(1.1);
}

/* Facebook - Blue */
.social-facebook {
  background-color: rgba(24, 119, 242, 0.1);
  color: #1877f2;
}

.social-facebook:hover {
  background-color: #1877f2;
  color: #ffffff;
}

/* Instagram - Gradient (Pink to Orange) */
.social-instagram {
  background: linear-gradient(45deg, rgba(225, 48, 108, 0.1), rgba(255, 140, 0, 0.1));
  color: #e1306c;
}

.social-instagram:hover {
  background: linear-gradient(45deg, #e1306c, #ff8c00);
  color: #ffffff;
}

/* TikTok - White/Cyan (visible on dark blue background) */
.social-tiktok {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.social-tiktok:hover {
  background-color: #00f2ea;
  color: #000000;
}

/* WhatsApp - Green */
.social-whatsapp {
  background-color: rgba(37, 211, 102, 0.1);
  color: #25d366;
}

.social-whatsapp:hover {
  background-color: #25d366;
  color: #ffffff;
}

/* Desktop optimizations */
@media (min-width: 1024px) {
  .header-bottom-inner {
    padding: 1.1rem 2rem;
    gap: 2.5rem;
  }

  .nav-links {
    gap: 2rem;
    font-size: 1rem;
  }

  .logo-title {
    font-size: 1.2rem;
  }
}

/* Responsive - Tablettes */
@media (max-width: 1024px) and (min-width: 769px) {
  .header-bottom-inner {
    gap: 1.5rem;
    padding: 1rem 1.25rem;
  }

  .nav-links {
    gap: 1.25rem;
    font-size: 0.9rem;
  }

  /* Menu desktop reste visible sur tablette */
  .nav-links {
    gap: 1rem;
    font-size: 0.85rem;
  }
}

/* Responsive - Petits écrans */
@media (max-width: 960px) {
  .header-bottom-inner {
    gap: 1rem;
    min-height: 70px;
  }

  .nav-links {
    gap: 1rem;
    font-size: 0.85rem;
  }

  .logo-title {
    font-size: 1rem;
  }

  .logo-subtitle {
    font-size: 0.75rem;
  }
}

@media (max-width: 960px) {
  .hero-content {
    grid-template-columns: minmax(0, 1fr);
    padding-top: 5.2rem;
  }

  .hero-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .two-cols {
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
  }

  .image-col {
    order: -1;
  }

  .text-col h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .text-col p {
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
  }

  .image-card {
    min-height: 200px;
    border-radius: 12px;
  }

  .checklist,
  .bullet-list {
    font-size: 0.9rem;
  }

  .checklist li,
  .bullet-list li {
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
  }

  /* Disable animations on mobile for better performance */
  .text-col,
  .image-col,
  .page-hero-image img {
    animation: none;
  }

  .why-choose-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  /* Cacher le menu desktop sur mobile */
  .main-nav:not(.menu-open) {
    display: none;
  }
  
  /* Header fixe et au premier plan sur mobile */
  .site-header {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 9999 !important;
  }

  /* Ajouter un padding au body pour compenser le header fixe */
  body {
    padding-top: 80px;
  }

  .header-top-inner {
    padding: 0.5rem 1rem;
    min-height: 35px;
  }

  .header-phone-top {
    font-size: 0.8rem;
  }

  .header-phone-top svg {
    width: 14px;
    height: 14px;
  }

  .header-language svg {
    width: 14px;
    height: 14px;
  }

  .lang-link {
    font-size: 0.8rem;
  }
  
  .language-selector-btn {
    font-size: 0.8rem;
    padding: 0.2rem 0.4rem;
  }
  
  .current-lang {
    min-width: 50px;
    font-size: 0.8rem;
  }
  
  .language-dropdown {
    min-width: 250px;
    max-height: 400px;
    right: -1rem;
  }
  
  .language-option {
    padding: 0.6rem 0.75rem;
    font-size: 0.85rem;
  }
  
  .lang-name {
    font-size: 0.75rem;
  }
  
  /* Hide header top on mobile */
  .header-top {
    display: none !important;
  }

  .header-separator {
    display: none !important;
  }

  /* Header bottom - mobile style */
  .header-bottom {
    border-bottom: 1px solid #e5e7eb;
    background: #ffffff;
  }

  .header-bottom-inner {
    padding: 0.75rem 1rem;
    gap: 0;
    min-height: 80px;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    overflow: visible;
  }

  .logo {
    gap: 0.5rem;
    flex: 0 0 auto;
    order: 1;
    display: flex;
    align-items: flex-start;
    margin-top: -10px;
    margin-bottom: -10px;
  }

  .logo-img {
    height: 120px;
    width: auto;
    max-width: 450px;
    object-fit: contain;
  }
  
  .logo-text {
    display: none; /* Hide text on mobile, show only logo */
  }

  /* Mobile Language Button */
  .mobile-lang-btn {
    display: flex;
    align-items: center;
    order: 2;
    flex: 0 0 auto;
    margin-left: auto;
    margin-right: 0.5rem;
    margin-top: 15px;
    position: relative;
    z-index: 100;
  }

  .mobile-lang-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 1.5px solid var(--color-primary);
    border-radius: 10px;
    cursor: pointer;
    color: var(--color-primary);
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(15, 95, 166, 0.1);
    position: relative;
    overflow: hidden;
  }

  .mobile-lang-toggle::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
  }

  .mobile-lang-toggle:hover {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: #ffffff;
    border-color: var(--color-primary);
    box-shadow: 0 4px 16px rgba(15, 95, 166, 0.25);
    transform: translateY(-2px);
  }

  .mobile-lang-toggle:hover::before {
    left: 0;
  }

  .mobile-lang-toggle > * {
    position: relative;
    z-index: 1;
  }

  .mobile-lang-toggle svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    stroke-width: 2.5;
  }

  .mobile-lang-toggle[aria-expanded="true"] {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: #ffffff;
    border-color: var(--color-primary);
    box-shadow: 0 4px 16px rgba(15, 95, 166, 0.25);
  }

  .mobile-lang-toggle[aria-expanded="true"] svg {
    transform: rotate(180deg);
  }

  .mobile-lang-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 0;
    background: #ffffff;
    border: 1.5px solid rgba(15, 95, 166, 0.1);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(15, 95, 166, 0.15), 0 2px 8px rgba(0, 0, 0, 0.08);
    min-width: 300px;
    max-width: 90vw;
    max-height: 70vh;
    overflow-y: auto;
    z-index: 1000;
    padding: 0.75rem 0;
    animation: dropdownFadeIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

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

  .mobile-lang-toggle[aria-expanded="true"] + .mobile-lang-dropdown {
    display: block;
  }

  .mobile-lang-dropdown .language-group {
    padding: 0.25rem 0;
  }

  .mobile-lang-dropdown .language-group-title {
    padding: 0.75rem 1.25rem 0.5rem;
    font-size: 0.7rem;
    font-weight: 700;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .mobile-lang-dropdown .language-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1.25rem;
    color: #374151;
    text-decoration: none;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.9rem;
    font-weight: 500;
    border-left: 3px solid transparent;
  }

  .mobile-lang-dropdown .language-option:hover {
    background: linear-gradient(90deg, rgba(15, 95, 166, 0.05) 0%, rgba(15, 95, 166, 0.02) 100%);
    color: var(--color-primary);
    border-left-color: var(--color-primary);
    padding-left: 1.5rem;
  }

  .mobile-lang-dropdown .language-option.active {
    background: linear-gradient(90deg, rgba(15, 95, 166, 0.1) 0%, rgba(15, 95, 166, 0.05) 100%);
    color: var(--color-primary);
    font-weight: 600;
    border-left-color: var(--color-primary);
  }

  .mobile-lang-dropdown .lang-native {
    font-weight: 500;
    margin-right: 0.5rem;
  }

  .mobile-lang-dropdown .lang-name {
    font-size: 0.8rem;
    color: #6b7280;
    flex: 1;
  }

  .mobile-lang-dropdown .lang-badge {
    color: var(--color-primary);
    font-weight: 600;
    margin-left: 0.5rem;
  }

  /* ============================================
     MOBILE MENU - DESIGN PROFESSIONNEL
     ============================================ */
  
  /* Mobile Menu Toggle Button - Assorti avec le bouton de langue */
  .mobile-menu-toggle {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 1.5px solid var(--color-primary);
    border-radius: 10px;
    cursor: pointer;
    padding: 0;
    gap: 5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 10001;
    flex-shrink: 0;
    order: 3;
    margin-top: 15px;
    margin-left: 0;
    box-shadow: 0 2px 8px rgba(15, 95, 166, 0.1);
    overflow: hidden;
  }
  
  .mobile-menu-toggle::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
  }
  
  .mobile-menu-toggle:hover {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    border-color: var(--color-primary);
    box-shadow: 0 4px 16px rgba(15, 95, 166, 0.25);
    transform: translateY(-2px);
  }
  
  .mobile-menu-toggle:hover::before {
    left: 0;
  }
  
  .mobile-menu-toggle:active {
    transform: translateY(0);
  }
  
  .mobile-menu-toggle span {
    width: 22px;
    height: 2.5px;
    background: var(--color-primary);
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    position: relative;
    z-index: 1;
  }
  
  .mobile-menu-toggle:hover span {
    background: #ffffff;
  }
  
  .mobile-menu-toggle.active {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    border-color: var(--color-primary);
    box-shadow: 0 4px 16px rgba(15, 95, 166, 0.25);
  }
  
  .mobile-menu-toggle.active::before {
    left: 0;
  }
  
  .mobile-menu-toggle.active span {
    background: #ffffff;
  }
  
  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }
  
  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
  }
  
  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
  }
  
  /* Mobile Navigation Menu - Design Professionnel */
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 380px;
    height: 100vh;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
  }
  
  .main-nav.menu-open {
    right: 0;
  }
  
  /* Mobile menu brand (logo area) */
  .main-nav::before {
    /* replaced by real DOM element (.mobile-menu-brand) */
    display: none;
    content: none;
  }

  .mobile-menu-brand {
    position: sticky;
    top: 0;
    z-index: 20;
    height: 120px;
    padding: 0 1.25rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
  }

  .mobile-menu-brand-link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
  }

  .mobile-menu-brand-logo {
    height: 90%;
    width: auto;
    max-width: 260px;
    object-fit: contain;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.2));
  }
  
  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1.5rem 0;
    margin-top: 0;
  }
  
  .nav-links li {
    list-style: none;
    width: 100%;
    position: relative;
  }
  
  .nav-links a {
    display: flex;
    align-items: center;
    padding: 1.25rem 2rem;
    color: #1f2937;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 4px solid transparent;
    position: relative;
    overflow: hidden;
  }
  
  .nav-links a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: linear-gradient(90deg, rgba(15, 95, 166, 0.08) 0%, rgba(15, 95, 166, 0.03) 100%);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
  }
  
  .nav-links a:hover::before {
    width: 100%;
  }
  
  .nav-links a:hover {
    color: var(--color-primary);
    border-left-color: var(--color-primary);
    padding-left: 2.5rem;
    transform: translateX(4px);
  }
  
  .nav-links a.active {
    background: linear-gradient(90deg, rgba(15, 95, 166, 0.12) 0%, rgba(15, 95, 166, 0.05) 100%);
    color: var(--color-primary);
    border-left-color: var(--color-primary);
    font-weight: 700;
  }
  
  .nav-links a.active::before {
    width: 100%;
  }
  
  .nav-links a::after {
    display: none;
  }
  
  /* Mobile Menu Overlay - Blur Effect */
  .mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
  }
  
  .mobile-menu-overlay.active {
    display: block;
    opacity: 1;
    pointer-events: auto;
  }
  
  /* Body scroll lock when menu is open */
  body.menu-open {
    overflow: hidden;
  }
  
  /* Animation pour les liens du menu */
  .main-nav.menu-open .nav-links li {
    animation: slideInRight 0.4s cubic-bezier(0.4, 0, 0.2, 1) backwards;
  }
  
  .main-nav.menu-open .nav-links li:nth-child(1) { animation-delay: 0.05s; }
  .main-nav.menu-open .nav-links li:nth-child(2) { animation-delay: 0.1s; }
  .main-nav.menu-open .nav-links li:nth-child(3) { animation-delay: 0.15s; }
  .main-nav.menu-open .nav-links li:nth-child(4) { animation-delay: 0.2s; }
  .main-nav.menu-open .nav-links li:nth-child(5) { animation-delay: 0.25s; }
  .main-nav.menu-open .nav-links li:nth-child(6) { animation-delay: 0.3s; }
  .main-nav.menu-open .nav-links li:nth-child(7) { animation-delay: 0.35s; }
  .main-nav.menu-open .nav-links li:nth-child(8) { animation-delay: 0.4s; }
  
  @keyframes slideInRight {
    from {
      opacity: 0;
      transform: translateX(30px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  /* Scrollbar personnalisée pour le menu */
  .main-nav::-webkit-scrollbar {
    width: 6px;
  }
  
  .main-nav::-webkit-scrollbar-track {
    background: transparent;
  }
  
  .main-nav::-webkit-scrollbar-thumb {
    background: rgba(15, 95, 166, 0.3);
    border-radius: 3px;
  }
  
  .main-nav::-webkit-scrollbar-thumb:hover {
    background: rgba(15, 95, 166, 0.5);
  }

  body.menu-open {
    overflow: hidden;
  }

  .hero {
    min-height: 70vh;
  }

  .hero-carousel {
    min-height: 70vh;
    height: 70vh;
  }

  .hero-slide-content {
    padding: 1.5rem 1rem;
  }

  .hero-slide-title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .hero-slide-description {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .hero-slide-btn {
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
  }

  .hero-arrow {
    width: 40px;
    height: 40px;
  }

  .hero-arrow svg {
    width: 18px;
    height: 18px;
  }

  .hero-arrow-prev {
    left: 0.75rem;
  }

  .hero-arrow-next {
    right: 0.75rem;
  }

  .hero-indicators {
    bottom: 1rem;
    gap: 0.5rem;
  }

  .hero-indicator {
    width: 10px;
    height: 10px;
  }

  .hero-indicator.active {
    width: 24px;
  }

  .page-hero {
    min-height: 50vh;
    margin-top: 80px;
    height: 50vh;
  }

  .page-hero-content {
    padding: 2rem 0;
    min-height: 50vh;
  }

  .page-hero-title {
    font-size: 2rem !important;
    margin-bottom: 0.75rem;
  }

  .page-hero-subtitle {
    font-size: 0.95rem !important;
    padding: 0 1rem;
  }

  .about-hero {
    padding: 2.5rem 0;
  }

  .about-hero-title {
    font-size: 2rem;
  }

  .about-hero-subtitle {
    font-size: 0.95rem;
    padding: 0 1rem;
  }

  .about-main-title {
    font-size: 1.5rem;
  }

  .about-text-content p {
    font-size: 0.95rem;
  }

  .about-features {
    margin: 1.5rem 0;
  }

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

  .hero-slide-content {
    padding: 1.5rem 0;
  }

  .hero-slide-title {
    margin-bottom: 1rem;
  }

  .hero-slide-description {
    margin-bottom: 1.5rem;
  }

  .hero-indicators {
    bottom: 1.5rem;
  }

  .hero-arrow {
    width: 40px;
    height: 40px;
  }

  .hero-arrow svg {
    width: 20px;
    height: 20px;
  }

  .hero-arrow-prev {
    left: 1rem;
  }

  .hero-arrow-next {
    right: 1rem;
  }

  .hero-content {
    padding: 4.7rem 1.25rem 3.2rem;
  }

  .hero-cards {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 3.4rem 0;
  }

  .destinations-carousel-3d {
    height: 380px;
    perspective: 1000px;
  }

  .destination-card {
    width: 240px;
    height: 320px;
    margin-left: -120px;
    margin-top: -160px;
  }

  .destination-card.active {
    width: 280px;
    height: 360px;
    margin-left: -140px;
    margin-top: -180px;
  }

  .destination-card.prev {
    transform: translateX(-280px) translateZ(-150px) rotateY(40deg) scale(0.8);
  }

  .destination-card.next {
    transform: translateX(280px) translateZ(-150px) rotateY(-40deg) scale(0.8);
  }


  .grid-2 {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.5rem;
  }

  .form-row {
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
  }

  .ticketing-form {
    padding: 1.5rem 1rem;
  }

  .ticketing-form .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .contact-form {
    padding: 1.5rem 1rem !important;
  }

  .form-group {
    margin-bottom: 1rem;
  }

  .form-group label {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 0.95rem;
    padding: 0.75rem;
  }

  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    width: 100%;
    justify-content: center;
  }

  .btn-primary,
  .btn-secondary {
    margin-bottom: 0.75rem;
  }

  /* Cards and grids */
  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .omra-detailed-programs-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .tours-programs-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .destinations-carousel-3d {
    height: 350px;
  }

  .destination-card {
    width: 240px;
    height: 320px;
    margin-left: -120px;
    margin-top: -160px;
  }

  .destination-card.active {
    width: 260px;
    height: 340px;
    margin-left: -130px;
    margin-top: -170px;
  }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-col {
    padding: 0;
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  /* Header top - hide on mobile */
  .header-top {
    display: none;
  }

  .header-separator {
    display: none;
  }

  /* WhatsApp float button */
  .whatsapp-float {
    bottom: 1rem;
    right: 1rem;
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
  }

  /* Optimize images for mobile */
  img {
    height: auto;
    max-width: 100%;
  }

  .image-card,
  .hero-slide-image,
  .page-hero-image img {
    object-fit: cover;
    width: 100%;
  }

  /* Tables responsive */
  .table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  table {
    min-width: 600px;
  }
}

/* Extra small devices (phones, 480px and down) */
@media (max-width: 480px) {
  .container {
    padding: 0 0.75rem;
  }

  .section {
    padding: 2.5rem 0;
  }

  .section-title {
    font-size: 1.3rem;
  }

  .section-header .section-title {
    font-size: 1.5rem;
  }

  .hero {
    min-height: 60vh;
  }

  .hero-carousel {
    min-height: 60vh;
    height: 60vh;
  }

  .hero-slide-title {
    font-size: 1.75rem;
  }

  .hero-slide-description {
    font-size: 0.9rem;
  }

  .hero-arrow {
    width: 36px;
    height: 36px;
  }

  .hero-arrow svg {
    width: 16px;
    height: 16px;
  }

  .hero-arrow-prev {
    left: 0.5rem;
  }

  .hero-arrow-next {
    right: 0.5rem;
  }

  .text-col h2 {
    font-size: 1.3rem;
  }

  .text-col p {
    font-size: 0.9rem;
  }

  .btn {
    padding: 0.7rem 1.25rem;
    font-size: 0.85rem;
  }

  .main-nav {
    width: 90%;
    max-width: 280px;
  }

  .nav-links a {
    padding: 0.875rem 1.25rem;
    font-size: 0.95rem;
  }

  .header-bottom-inner {
    padding: 0.75rem 1rem;
    min-height: 60px;
    align-items: flex-start;
    overflow: visible;
  }

  .logo {
    margin-top: -10px;
    margin-bottom: -10px;
    align-items: flex-start;
  }

  .logo-img {
    height: 100px;
    width: auto;
    max-width: 420px;
  }

  /* Nav-toggle supprimé */

  .whatsapp-float {
    bottom: 0.75rem;
    right: 0.75rem;
    padding: 0.625rem 0.875rem;
    font-size: 0.8rem;
  }

  .whatsapp-float span {
    display: none;
  }

  .destinations-carousel-3d {
    height: 300px;
  }

  .destination-card {
    width: 200px;
    height: 280px;
    margin-left: -100px;
    margin-top: -140px;
  }

  .destination-card.active {
    width: 220px;
    height: 300px;
    margin-left: -110px;
    margin-top: -150px;
  }

  .footer-inner {
    gap: 1.5rem;
  }

  .footer-col h3,
  .footer-col h4 {
    font-size: 1.1rem;
  }

  .footer-col p,
  .footer-col ul {
    font-size: 0.9rem;
  }

  /* Page hero improvements for small screens */
  .page-hero {
    min-height: 40vh;
    height: 40vh;
    margin-top: 70px;
  }

  .page-hero-content {
    padding: 1.5rem 0;
  }

  .page-hero-title {
    font-size: 1.75rem !important;
  }

  .page-hero-subtitle {
    font-size: 0.9rem !important;
  }

  /* Videos section */
  .videos-section {
    padding: 2rem 0;
  }

  .videos-carousel-wrapper {
    margin-top: 1.5rem;
    padding: 0 0.5rem;
  }

  .video-play-btn {
    width: 48px;
    height: 48px;
  }

  .video-indicators {
    bottom: 0.75rem;
  }

  /* Tour program pages */
  .tour-detail-hero {
    height: 300px;
    margin-top: 70px;
  }

  .tour-detail-title {
    font-size: 1.75rem;
  }

  .tour-detail-subtitle {
    font-size: 1.1rem;
  }

  .tour-detail-images {
    height: 200px;
    grid-template-columns: 1fr;
  }

  .tour-detail-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .tour-detail-sidebar {
    position: static;
    order: -1;
  }

  .booking-card {
    padding: 1.5rem;
  }

  /* Omra program pages */
  .omra-program-hero {
    min-height: 40vh;
    margin-top: 70px;
  }

  .omra-program-content {
    padding: 2rem 0;
  }

  .program-details-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .program-prices-table {
    overflow-x: auto;
    width: 100%;
    max-width: 100%;
  }

  .program-prices-table table {
    min-width: 700px;
    font-size: 0.75rem;
  }

  .program-prices-table th,
  .program-prices-table td {
    padding: 0.6rem 0.4rem;
    font-size: 0.7rem;
  }

  /* Contact section */
  .contact-section .two-cols {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-details {
    order: -1;
  }

  .map-container {
    height: 300px;
    margin-top: 1.5rem;
  }

  /* Form sections */
  .ticketing-form-section,
  .hotels-form-section {
    padding: 2rem 0;
  }

  .form-section-title {
    font-size: 1.5rem;
  }

  .form-section-subtitle {
    font-size: 0.9rem;
  }

  /* Tour detail mobile buttons on very small screens */
  .tour-detail-mobile-actions {
    padding: 1.25rem 0;
  }

  .tour-detail-mobile-actions .container {
    padding: 0 0.75rem;
    gap: 0.625rem;
  }

  .tour-detail-mobile-actions .btn {
    padding: 0.875rem 1.25rem;
    font-size: 0.9rem;
  }

  /* IATA section */
  .iata-section {
    padding: 2.5rem 0;
  }

  .iata-title {
    font-size: 1.5rem;
  }

  .iata-text {
    font-size: 0.9rem;
    padding: 0 1rem;
  }

  .iata-logo-container {
    margin-top: 1.5rem;
  }

  .iata-logo-img {
    max-width: 200px;
  }

  /* Further reduce sizes and center content on very small screens */
  .tour-detail-title {
    font-size: 1.4rem !important;
  }

  .tour-detail-subtitle {
    font-size: 0.9rem !important;
  }

  .omra-program-overview h2,
  .omra-stay-details h2,
  .omra-prices-section h2,
  .omra-includes h2 {
    font-size: 1.1rem !important;
  }

  .program-info-card {
    padding: 0.75rem;
    font-size: 0.85rem;
  }

  .program-info-card svg {
    width: 18px;
    height: 18px;
  }

  .program-info-card strong {
    font-size: 0.8rem;
  }

  .program-info-card p {
    font-size: 0.85rem;
  }

  .stay-detail-card {
    padding: 0.875rem;
  }

  .stay-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
  }

  .stay-detail-card strong,
  .stay-detail-card p {
    font-size: 0.85rem;
  }

  .prices-subtitle {
    font-size: 0.8rem;
  }

  .omra-prices-table {
    font-size: 0.7rem;
    min-width: 650px;
  }

  .omra-prices-table th {
    font-size: 0.65rem;
    padding: 0.6rem 0.3rem;
  }

  .omra-prices-table td {
    font-size: 0.7rem;
    padding: 0.6rem 0.3rem;
  }

  .omra-prices-table td:first-child {
    font-size: 0.75rem;
  }

  /* Ensure all sections are centered and properly sized */
  .tour-detail-main,
  .tour-detail-sidebar,
  .omra-program-overview,
  .omra-stay-details,
  .omra-prices-section,
  .omra-includes,
  .omra-important-note {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    box-sizing: border-box;
  }

  .tour-detail-booking-box {
    width: 100% !important;
    max-width: 100% !important;
    padding: 1.25rem 0.75rem;
  }

  .program-info-grid,
  .stay-details-grid {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto;
  }

  .program-info-card,
  .stay-detail-card {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto;
  }

  .omra-includes-list {
    width: 100% !important;
    max-width: 100% !important;
  }

  .omra-includes-list li {
    width: 100% !important;
    max-width: 100% !important;
  }
}

  .passengers-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .ticketing-form-section .section-title {
    font-size: 1.75rem;
  }

  .ticketing-form-section .section-subtitle {
    font-size: 0.95rem;
  }

  .trip-type-selector {
    flex-direction: column;
  }

  .trip-type-option {
    width: 100%;
    min-width: auto;
  }

  .hotel-form {
    padding: 2rem 1.5rem;
  }

  .hotel-form .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .hotel-form-section .section-title {
    font-size: 1.75rem;
  }

  .hotel-form-section .section-subtitle {
    font-size: 0.95rem;
  }

  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }

@media (max-width: 520px) {
  .header-top-inner {
    padding: 0.4rem 0.85rem;
    min-height: 32px;
  }

  .header-phone-top {
    font-size: 0.75rem;
  }

  .header-phone-top span {
    display: none;
  }

  .header-bottom-inner {
    padding: 0.75rem 0.85rem;
    gap: 0.5rem;
    min-height: 60px;
    align-items: flex-start;
    overflow: visible;
  }

  .logo {
    margin-top: -10px;
    margin-bottom: -10px;
    align-items: flex-start;
  }

  .logo-img {
    height: 100px;
    width: auto;
    max-width: 420px;
  }

  .nav-links {
    padding: 0.85rem 1.25rem 1.25rem;
  }

  .nav-links a {
    font-size: 0.9rem;
    padding: 0.5rem 0;
  }

  .hero-carousel {
    min-height: 70vh;
    height: 70vh;
  }

  .page-hero {
    min-height: 45vh;
    margin-top: 75px;
  }

  .page-hero-content {
    padding: 2rem 0;
    min-height: 45vh;
  }

  .about-hero {
    padding: 2.5rem 0;
  }

  .about-text-content p {
    font-size: 1rem;
  }

  .hero-slide-content {
    padding: 1rem 0;
  }

  .hero-slide-title {
    margin-bottom: 0.75rem;
  }

  .hero-slide-description {
    margin-bottom: 1.25rem;
    max-width: 90%;
  }

  .destinations-carousel-3d {
    height: 280px;
  }

  .destinations-wrapper {
    gap: 0.75rem;
    padding: 0 0.5rem;
  }

  .destinations-carousel-3d {
    height: 320px;
    perspective: 800px;
  }

  .destination-card {
    width: 200px;
    height: 280px;
    margin-left: -100px;
    margin-top: -140px;
  }

  .destination-card.active {
    width: 240px;
    height: 320px;
    margin-left: -120px;
    margin-top: -160px;
  }

  .destination-card.prev {
    transform: translateX(-220px) translateZ(-120px) rotateY(35deg) scale(0.75);
  }

  .destination-card.next {
    transform: translateX(220px) translateZ(-120px) rotateY(-35deg) scale(0.75);
  }

  .destination-content {
    padding: 1.25rem 1rem;
  }

  .destination-name {
    font-size: 1.1rem;
  }

  .destination-card.active .destination-name {
    font-size: 1.3rem;
  }

  .destination-btn {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }

  .dest-nav-arrow {
    width: 36px;
    height: 36px;
  }

  .hero-slide-btn {
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
  }

  .hero-indicators {
    bottom: 1rem;
    gap: 0.5rem;
  }

  .hero-indicator {
    width: 10px;
    height: 10px;
  }

  .hero-indicator.active {
    width: 24px;
  }

  .hero-arrow {
    width: 36px;
    height: 36px;
  }

  .hero-arrow svg {
    width: 18px;
    height: 18px;
  }

  .hero-arrow-prev {
    left: 0.75rem;
  }

  .hero-arrow-next {
    right: 0.75rem;
  }

  .omra-programs-section {
    padding: 4rem 0;
  }

  .omra-programs-section .section-title {
    font-size: 2.5rem;
  }

  .omra-programs-section .section-subtitle {
    font-size: 0.95rem;
    padding: 0 1rem;
  }

  .omra-carousel-wrapper {
    padding: 0 1.5rem;
  }

  .omra-programs-grid {
    gap: 1.5rem;
  }

  .omra-program-card {
    flex: 0 0 calc((100% - 1.5rem) / 2);
    max-width: calc((100% - 1.5rem) / 2);
    min-width: calc((100% - 1.5rem) / 2);
  }

  .omra-programs-grid.slide-1 {
    transform: translateX(calc(-50% - 0.75rem));
  }

  .omra-card-image {
    height: 220px;
  }

  .omra-arabic-text {
    font-size: 3.2rem;
  }

  .omra-month {
    font-size: 1.05rem;
  }

  .omra-card-content {
    padding: 1.15rem;
  }

  .omra-card-title {
    font-size: 0.98rem;
  }

  .omra-card-location {
    font-size: 0.82rem;
  }

  .omra-card-price {
    font-size: 0.92rem;
  }

  .omra-card-duration {
    font-size: 0.78rem;
  }

  .omra-card-btn {
    padding: 0.6rem 1.4rem;
    font-size: 0.82rem;
  }
}

@media (max-width: 480px) {
  /* Header top is already hidden in 768px media query */
  
  .header-bottom-inner {
    padding: 0.65rem 0.75rem;
    min-height: 55px;
    align-items: flex-start;
    overflow: visible;
  }

  .logo {
    margin-top: -10px;
    margin-bottom: -10px;
    align-items: flex-start;
  }

  .logo-img {
    height: 90px;
    width: auto;
    max-width: 400px;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
    padding: 8px 6px;
  }

  /* Nav-toggle supprimé */

  .header-bottom-inner {
    padding: 0.65rem 0.75rem;
    min-height: 55px;
    align-items: flex-start;
    overflow: visible;
  }

  .logo-img {
    height: 90px;
    width: auto;
    max-width: 400px;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
    padding: 8px 6px;
  }

  /* Nav-toggle supprimé */

  .nav-links {
    padding: 0.75rem 1rem 1rem;
  }

  .nav-links a {
    font-size: 0.85rem;
  }

  .hero-content {
    padding-inline: 1rem;
  }

  .hero-tags span {
    font-size: 0.7rem;
  }

  .omra-programs-section {
    padding: 2rem 0;
  }

  .omra-programs-section .section-header {
    margin-bottom: 1.25rem;
  }

  .omra-programs-section .section-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }

  .omra-programs-section .section-subtitle {
    font-size: 0.75rem;
    padding: 0 1rem;
    line-height: 1.4;
  }

  .omra-carousel-wrapper {
    padding: 0 0.75rem;
    margin-top: 1.25rem;
  }

  .omra-programs-grid {
    gap: 0.75rem;
  }

  .omra-program-card {
    flex: 0 0 calc(100% - 0.5rem);
    min-width: calc(100% - 0.5rem);
    max-width: calc(100% - 0.5rem);
  }

  .omra-programs-grid.slide-1 {
    transform: translateX(calc(-100% - 0.75rem));
  }

  .omra-card-image {
    height: 140px;
  }

  .omra-arabic-text {
    font-size: 2rem;
    margin-bottom: 0.2rem;
  }

  .omra-month {
    font-size: 0.75rem;
  }

  .omra-card-content {
    padding: 0.7rem 0.85rem;
  }

  .omra-card-title {
    font-size: 0.8rem;
    margin-bottom: 0.4rem;
    line-height: 1.25;
  }

  .omra-card-location {
    font-size: 0.7rem;
    margin-bottom: 0.4rem;
    gap: 0.3rem;
  }

  .omra-card-location svg {
    width: 12px;
    height: 12px;
  }

  .omra-card-price {
    font-size: 0.75rem;
    margin-bottom: 0.4rem;
  }

  .omra-card-footer {
    margin-top: 0.4rem;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .omra-card-duration {
    font-size: 0.65rem;
    gap: 0.3rem;
  }

  .omra-card-duration svg {
    width: 12px;
    height: 12px;
  }

  .omra-card-btn {
    padding: 0.4rem 1rem;
    font-size: 0.7rem;
    width: 100%;
    text-align: center;
    justify-content: center;
    border-radius: 5px;
  }

  .omra-pagination {
    margin-top: 1.25rem;
    gap: 0.4rem;
  }

  .omra-pagination-dot {
    width: 6px;
    height: 6px;
  }

  .omra-pagination-dot.active {
    width: 16px;
  }

  .why-choose-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.5rem;
  }

  .why-choose-card {
    padding: 1.5rem 1.25rem;
  }

  .why-choose-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 1.25rem;
  }

  .why-choose-icon svg {
    width: 28px;
    height: 28px;
  }

  .why-choose-title {
    font-size: 1.1rem;
    margin-bottom: 0.875rem;
  }

  .why-choose-text {
    font-size: 0.9rem;
  }

  .iata-section {
    padding: 3rem 0;
  }

  .iata-title {
    font-size: 1.5rem;
    padding-left: 1.5rem;
  }

  .iata-title::before {
    width: 1rem;
  }

  .iata-text {
    font-size: 1rem;
    margin-bottom: 2rem;
    padding: 0 1rem;
  }

  .iata-logo {
    padding: 2rem 1.5rem;
  }

  .iata-logo-img {
    width: 150px;
  }

  .footer-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .whatsapp-float span {
    display: none;
  }

  .whatsapp-float {
    padding-inline: 0.7rem;
  }
}

/* RTL adjustments */
[dir="rtl"] .nav-links,
[dir="rtl"] .hero-tags,
[dir="rtl"] .hero-cta,
[dir="rtl"] .header-bottom-inner,
[dir="rtl"] .header-top-inner,
[dir="rtl"] .footer-bottom-inner {
  direction: rtl;
}

[dir="rtl"] .bullet-list li {
  padding-left: 0;
  padding-right: 0.8rem;
}

[dir="rtl"] .bullet-list li::before {
  left: auto;
  right: 0;
}

[dir="rtl"] .checklist li::before {
  margin-right: 0;
  margin-left: 0.4rem;
}

[dir="rtl"] .contact-form {
  direction: rtl;
}

/* Omra Detailed Programs Section */
.omra-detailed-programs-section {
  background: #f8fafc;
  padding: 4rem 0;
}

.omra-detailed-programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.omra-detailed-program-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.omra-detailed-program-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.omra-detailed-program-image {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  background: #e2e8f0;
}

.omra-detailed-program-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.omra-detailed-program-card:hover .omra-detailed-program-image img {
  transform: scale(1.05);
}

.omra-detailed-program-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.omra-detailed-program-card:hover .omra-detailed-program-overlay {
  opacity: 1;
}

.omra-view-program-btn {
  background: #ffffff;
  color: #0f172a;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.omra-view-program-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  color: #0f172a;
}

.omra-detailed-program-info {
  padding: 1.5rem;
}

.omra-detailed-program-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
  line-height: 1.3;
  text-align: right;
}

.program-subtitle {
  font-size: 1rem;
  color: #64748b;
  margin-bottom: 1rem;
  text-align: right;
}

.program-details {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.program-badge {
  background: #eff6ff;
  color: #0ea5e9;
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 600;
}

.program-meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #e2e8f0;
}

.program-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #475569;
  font-size: 0.9rem;
}

.program-meta-item svg {
  color: #0ea5e9;
  flex-shrink: 0;
}

.program-stay-details {
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid #e2e8f0;
}

.program-stay-details span {
  font-size: 0.875rem;
  line-height: 1.5;
}

/* Section Footer with See More Button */
.section-footer {
  margin-top: 3rem;
  text-align: center;
  padding-top: 2rem;
  border-top: 2px solid #e2e8f0;
}

.btn-see-more {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: #ffffff;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(15, 95, 166, 0.2);
  text-decoration: none;
}

.btn-see-more:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15, 95, 166, 0.3);
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
}

.btn-see-more:active {
  transform: translateY(0);
}

.btn-see-more svg {
  transition: transform 0.3s ease;
}

.btn-see-more:hover svg {
  transform: translateX(4px);
}

.btn-see-more span {
  display: inline-block;
}

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

/* Omra Program Modal */
.omra-program-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.omra-program-modal.active {
  opacity: 1;
  visibility: visible;
}

.omra-program-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  cursor: pointer;
}

.omra-program-modal-content {
  position: relative;
  max-width: 90%;
  max-height: 90vh;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.omra-program-modal.active .omra-program-modal-content {
  transform: scale(1);
}

.omra-program-modal-content img {
  width: 100%;
  height: auto;
  max-height: 90vh;
  object-fit: contain;
  display: block;
}

.omra-program-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: transform 0.2s ease, background 0.2s ease;
}

.omra-program-modal-close:hover {
  transform: rotate(90deg);
  background: #ffffff;
}

/* Responsive adjustments for detailed programs */
@media (max-width: 768px) {
  .omra-detailed-programs-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .omra-detailed-program-image {
    height: 300px;
  }

  .omra-detailed-program-info h3 {
    font-size: 1.25rem;
  }

  .omra-program-modal-content {
    max-width: 95%;
  }
  
  .section-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
  }
  
  .btn-see-more {
    padding: 0.875rem 2rem;
    font-size: 1rem;
    width: 100%;
    justify-content: center;
  }
}

/* Testimonials Section */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.testimonial {
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  font-size: 0.9rem;
  font-weight: 600;
  color: #0f172a;
  text-align: right;
}

/* Video Testimonials Section */
.videos-section {
  background: #f8fafc;
  padding: 4rem 0;
}

.videos-carousel-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 3rem auto 0;
}

.videos-carousel {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  background: #000000;
}

.video-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(0.95) translateX(20px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.video-slide.active {
  opacity: 1;
  transform: scale(1) translateX(0);
  z-index: 2;
}

.video-slide.prev {
  transform: scale(0.95) translateX(-20px);
}

.video-slide.next {
  transform: scale(0.95) translateX(20px);
}

.testimonial-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  outline: none;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: background 0.3s ease;
  cursor: pointer;
}

.video-overlay:hover {
  background: rgba(15, 23, 42, 0.5);
}

.video-play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  color: #0f172a;
  padding-left: 6px; /* Offset play icon slightly right for visual balance */
}

.video-play-btn:hover {
  transform: scale(1.1);
  background: #ffffff;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.video-play-btn:active {
  transform: scale(0.95);
}

.video-play-btn svg {
  width: 32px;
  height: 32px;
}

.video-info {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 4;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 600;
}

.video-counter {
  display: inline-block;
}

.video-indicators {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
  z-index: 10;
  position: relative;
}

.video-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #cbd5e1;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
  outline: none;
}

.video-indicator:hover {
  border-color: #0ea5e9;
  transform: scale(1.2);
}

.video-indicator.active {
  background: #0ea5e9;
  border-color: #0ea5e9;
  width: 32px;
  border-radius: 6px;
}

.video-instructions {
  margin-top: 2rem;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 8px;
  border-left: 4px solid #0ea5e9;
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.6;
}

.video-instructions code {
  background: #f1f5f9;
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  font-size: 0.85em;
  color: #0f172a;
}

/* Responsive adjustments for videos */
@media (max-width: 768px) {
  .videos-carousel {
    border-radius: 12px;
  }

  .video-play-btn {
    width: 64px;
    height: 64px;
  }

  .video-play-btn svg {
    width: 28px;
    height: 28px;
  }

  .video-info {
    bottom: 1rem;
    right: 1rem;
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
  }

  .video-indicator {
    width: 10px;
    height: 10px;
  }

  .video-indicator.active {
    width: 24px;
  }

  .video-instructions {
    font-size: 0.85rem;
    padding: 1rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .videos-section {
    padding: 3rem 0;
  }

  .videos-carousel-wrapper {
    margin-top: 2rem;
  }

  .video-play-btn {
    width: 56px;
    height: 56px;
  }

  .video-play-btn svg {
    width: 24px;
    height: 24px;
  }
}

/* --- SEO CTA box (landing pages) --- */
.cta-box {
  background: #ffffff;
  border: 1px solid rgba(15, 95, 166, 0.14);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

.cta-box h2 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.cta-box p {
  color: rgba(15, 23, 42, 0.85);
  margin-bottom: 1rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.cta-note {
  font-size: 0.9rem;
  color: rgba(15, 23, 42, 0.7);
  margin: 0;
}


