/* ==========================================================================
   ALMADAR TRAVEL (المدار السياحية) - DESIGN SYSTEM & STYLESHEET
   Brand Colors extracted from Official Logo (logo.png)
   Target: Saudi Tourism & Luxury Travel Market
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS VARIABLES (DESIGN TOKENS)
   -------------------------------------------------------------------------- */
:root {
  /* Core Brand Colors (Logo & Identity System) */
  --primary: #1A4EA7;              /* Royal Blue - Logo Letter 'A' & Orbit */
  --primary-hover: #153E85;        /* Deep Royal Blue for interactive hover */
  --primary-dark: #0F2469;         /* Deep Navy Blue - Brand Card Gradient */
  --primary-darker: #091742;       /* Ultra Deep Navy - Footer Background */
  --primary-light: #3D73D1;        /* Soft Royal Light */
  --primary-soft: rgba(26, 78, 167, 0.08); /* Transparent tint for badges/icons */

  --accent: #FAA025;               /* Sunburst Orange - Airplane & Orbital Dots */
  --accent-hover: #E08B1B;         /* Rich Warm Orange Hover */
  --accent-gold: #FADF8B;          /* Warm Gold Accent - Identity Sheet Code */
  --accent-soft: rgba(250, 160, 37, 0.12); /* Soft Orange tint */

  --brand-cream: #FFF5E3;          /* Ivory Silk Cream - Background Pattern */
  --brand-cream-light: #FFFDF9;    /* Ultra light cream */

  /* Neutral & Functional Surfaces */
  --bg-white: #FFFFFF;
  --bg-surface: #F8FAFC;           /* Clean Soft Slate Surface */
  --bg-surface-elevated: #FFFFFF;

  /* Typography Colors */
  --text-heading: #0F172A;         /* Slate Dark Navy - High Contrast */
  --text-body: #334155;            /* Slate Readable Body */
  --text-muted: #64748B;           /* Medium Neutral */
  --text-light: #94A3B8;           /* Light Neutral */
  --text-white: #FFFFFF;
  --text-white-muted: rgba(255, 255, 255, 0.82);

  /* Borders & Dividers */
  --border: #E2E8F0;
  --border-light: #F1F5F9;
  --border-focus: #1A4EA7;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.05);
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 16px 40px rgba(15, 23, 42, 0.12);
  --shadow-xl: 0 24px 60px rgba(15, 23, 42, 0.16);

  /* Border Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.16, 1, 0.3, 1);

  /* Font Family */
  --font-family: 'IBM Plex Sans Arabic', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* --------------------------------------------------------------------------
   2. RESET & BASE ELEMENTS
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  font-family: var(--font-family);
  direction: rtl;
  text-align: right;
  background-color: var(--bg-white);
  color: var(--text-body);
  line-height: 1.85;
  font-size: 1rem;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-base);
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

ul, ol {
  list-style: none;
}

::selection {
  background-color: var(--primary);
  color: var(--text-white);
}

/* --------------------------------------------------------------------------
   3. LAYOUT & CONTAINERS
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.text-center { text-align: center; }
.text-white { color: var(--text-white) !important; }
.text-white-muted { color: var(--text-white-muted) !important; }

/* Section Header Typography */
.section-tag {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary);
  background-color: var(--primary-soft);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.section-tag-light {
  color: var(--accent-gold);
  background-color: rgba(250, 223, 139, 0.15);
  border: 1px solid rgba(250, 223, 139, 0.3);
}

.section-title {
  font-size: clamp(1.85rem, 3.2vw, 2.75rem);
  font-weight: 700;
  color: var(--text-heading);
  line-height: 1.35;
  margin-bottom: 14px;
}

.section-desc {
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  color: var(--text-muted);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 20px;
}

/* --------------------------------------------------------------------------
   4. BUTTONS & CTAs
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition-base);
  text-align: center;
  white-space: nowrap;
}

.btn-lg {
  padding: 14px 30px;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
  color: var(--text-white);
  box-shadow: 0 4px 16px rgba(26, 78, 167, 0.28);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-hover) 0%, var(--primary-dark) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 78, 167, 0.38);
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent) 0%, #F59E0B 100%);
  color: #0F172A;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(250, 160, 37, 0.3);
}

.btn-accent:hover {
  background: linear-gradient(135deg, var(--accent-hover) 0%, var(--accent) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(250, 160, 37, 0.45);
}

.btn-whatsapp-nav {
  background-color: #25D366;
  color: #FFFFFF;
  border-radius: var(--radius-full);
  padding: 9px 18px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 3px 12px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp-nav:hover {
  background-color: #20BA5A;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
}

.btn-outline-white {
  background: transparent;
  color: var(--text-white);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-md);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--text-white);
  transform: translateY(-2px);
}

.btn-outline-brand {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
  border-radius: var(--radius-full);
  padding: 10px 22px;
}

.btn-outline-brand:hover {
  background-color: var(--primary);
  color: var(--text-white);
}

/* --------------------------------------------------------------------------
   5. HEADER & NAVBAR
   -------------------------------------------------------------------------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 84px;
  display: flex;
  align-items: center;
  transition: background-color 0.35s ease, box-shadow 0.35s ease, height 0.3s ease;
  background-color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.navbar.scrolled {
  height: 72px;
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
  border-bottom-color: var(--border);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
  transition: transform var(--transition-base);
}

.nav-brand:hover .brand-logo {
  transform: scale(1.04);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.2;
}

.brand-tagline {
  font-size: 0.725rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-heading);
  position: relative;
  padding: 6px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 2.5px;
  background-color: var(--accent);
  border-radius: var(--radius-full);
  transition: width var(--transition-base);
}

.nav-link:hover, .nav-link.active {
  color: var(--primary);
  font-weight: 600;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-social {
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  border: 1px solid var(--border);
  background-color: var(--bg-white);
  transition: var(--transition-fast);
  cursor: pointer;
}

.social-icon-btn:hover {
  color: var(--primary);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.tiktok-icon {
  cursor: default;
  opacity: 0.85;
}

.tiktok-icon:hover {
  color: var(--text-heading);
  border-color: var(--text-heading);
}

/* Hamburger button */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.hamburger-btn span {
  width: 100%;
  height: 2.5px;
  background-color: var(--text-heading);
  border-radius: 2px;
  transition: var(--transition-base);
}

.hamburger-btn.open span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}

.hamburger-btn.open span:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.open span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(85vw, 360px);
  height: 100vh;
  background-color: var(--bg-white);
  z-index: 1100;
  box-shadow: -8px 0 30px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  padding: 24px;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-drawer.open {
  right: 0;
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(4px);
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.drawer-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.drawer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--primary-dark);
}

.drawer-close {
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
}

.drawer-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
  flex: 1;
}

.drawer-link {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-heading);
  padding: 8px 0;
  display: block;
}

.drawer-footer {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.btn-whatsapp-drawer {
  background-color: #25D366;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px;
  border-radius: var(--radius-md);
  font-weight: 600;
}

.drawer-social {
  display: flex;
  justify-content: center;
  gap: 16px;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   6. HERO SECTION
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 120px;
  padding-bottom: 60px;
  background-image: 
    linear-gradient(135deg, rgba(15, 36, 105, 0.88) 0%, rgba(26, 78, 167, 0.78) 50%, rgba(15, 23, 42, 0.86) 100%),
    url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?w=1920&q=85');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* Subtle Fluid Orbital Pattern from Logo */
.hero-pattern-swash {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle at 85% 25%, rgba(250, 160, 37, 0.18) 0%, transparent 45%),
                    radial-gradient(circle at 15% 75%, rgba(26, 78, 167, 0.3) 0%, transparent 50%);
  opacity: 0.9;
}

.hero-glow {
  position: absolute;
  bottom: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 300px;
  background: radial-gradient(ellipse at center, rgba(250, 223, 139, 0.15) 0%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
}

.hero-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-content {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  color: var(--brand-cream);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 7px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent);
  box-shadow: 0 0 10px var(--accent);
}

.hero-title {
  font-size: clamp(2.35rem, 5vw, 4.2rem);
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.25;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.highlight-text {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--text-white-muted);
  line-height: 1.9;
  margin-bottom: 36px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  color: var(--text-white-muted);
  font-size: 0.95rem;
  font-weight: 500;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-item svg {
  color: var(--accent);
}

.trust-sep {
  color: rgba(255, 255, 255, 0.4);
}

/* Quick Action Search Bar */
.hero-search-wrapper {
  width: 100%;
  max-width: 1040px;
  margin-top: 48px;
}

.hero-search-bar {
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-xl);
  padding: 12px 16px;
  box-shadow: var(--shadow-xl);
  gap: 12px;
  text-align: right;
}

.search-field {
  flex: 1;
  padding: 8px 14px;
}

.search-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}

.search-select {
  width: 100%;
  border: none;
  background: transparent;
  color: var(--text-heading);
  font-weight: 600;
  font-size: 0.95rem;
  outline: none;
  cursor: pointer;
}

.search-divider {
  width: 1px;
  height: 48px;
  background-color: var(--border);
}

.btn-search {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--text-white);
  border: none;
  border-radius: var(--radius-lg);
  padding: 16px 28px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition-base);
  box-shadow: 0 4px 16px rgba(26, 78, 167, 0.3);
  white-space: nowrap;
}

.btn-search:hover {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  color: #0F172A;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(250, 160, 37, 0.35);
}

/* --------------------------------------------------------------------------
   7. TRUST / SOCIAL PROOF SECTION
   -------------------------------------------------------------------------- */
.trust-section {
  padding: 90px 0 70px;
  background-color: var(--bg-surface);
  position: relative;
}

.trust-header {
  margin-bottom: 50px;
}

.features-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.feature-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-xs);
  transition: var(--transition-base);
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(26, 78, 167, 0.25);
  box-shadow: var(--shadow-md);
}

.feature-icon-box {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background-color: var(--primary-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: var(--transition-base);
}

.feature-card:hover .feature-icon-box {
  background-color: var(--primary);
  color: var(--text-white);
  transform: scale(1.08);
}

.feature-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 10px;
}

.feature-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.stats-bar {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background-color: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 24px;
  box-shadow: var(--shadow-sm);
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background-color: var(--border);
}

/* --------------------------------------------------------------------------
   8. POPULAR DESTINATIONS SECTION
   -------------------------------------------------------------------------- */
.destinations-section {
  padding: 100px 0;
  background-color: var(--bg-white);
}

.filter-tabs {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 6px;
}

.filter-tab {
  border: none;
  background: transparent;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-base);
}

.filter-tab.active {
  background-color: var(--primary);
  color: var(--text-white);
  box-shadow: 0 2px 10px rgba(26, 78, 167, 0.25);
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.destination-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 420px;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: var(--transition-slow);
}

.destination-card.featured-card {
  grid-column: span 2;
}

.destination-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.destination-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 36, 105, 0.05) 0%, rgba(15, 36, 105, 0.45) 50%, rgba(15, 23, 42, 0.92) 100%);
  transition: background 0.4s ease;
}

.destination-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  color: var(--primary-dark);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
}

.destination-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px;
  color: var(--text-white);
  transform: translateY(8px);
  transition: transform var(--transition-base);
}

.destination-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-white);
}

.destination-country {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--accent-gold);
  font-weight: 600;
  margin-bottom: 10px;
}

.destination-desc {
  font-size: 0.9rem;
  color: var(--text-white-muted);
  line-height: 1.6;
  margin-bottom: 16px;
  opacity: 0.9;
}

.destination-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  transition: gap var(--transition-fast);
}

.destination-card:hover .destination-img {
  transform: scale(1.08);
}

.destination-card:hover .destination-info {
  transform: translateY(0);
}

.destination-card:hover .destination-cta {
  gap: 12px;
  color: var(--text-white);
}

/* --------------------------------------------------------------------------
   9. FEATURED OFFERS SECTION
   -------------------------------------------------------------------------- */
.offers-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary-dark) 60%, var(--primary) 100%);
  position: relative;
  overflow: hidden;
}

.offers-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle at 10% 20%, rgba(250, 160, 37, 0.15) 0%, transparent 40%),
                    radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 40%);
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.offer-card {
  background-color: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition-slow);
}

.offer-card:hover {
  transform: translateY(-8px);
  border-color: rgba(250, 223, 139, 0.4);
  background-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.offer-media {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.offer-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.offer-card:hover .offer-img {
  transform: scale(1.08);
}

.offer-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: linear-gradient(135deg, var(--accent) 0%, #D97706 100%);
  color: #0F172A;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
}

.offer-duration {
  position: absolute;
  bottom: 12px;
  left: 14px;
  background-color: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(4px);
  color: var(--text-white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
}

.offer-content {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.offer-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 12px;
  line-height: 1.4;
}

.offer-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  flex: 1;
}

.offer-feat-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-white-muted);
}

.offer-feat-item svg {
  color: var(--accent);
}

.offer-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: auto;
}

.offer-price-tag {
  display: flex;
  flex-direction: column;
}

.price-label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.6);
}

.price-value {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--accent-gold);
}

.btn-offer-cta {
  background: linear-gradient(135deg, var(--accent) 0%, #E08B1B 100%);
  color: #0F172A;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 8px 16px;
  border-radius: var(--radius-md);
  transition: var(--transition-base);
}

.btn-offer-cta:hover {
  background: var(--text-white);
  color: var(--primary-dark);
}

.offers-custom-cta {
  color: var(--text-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  font-size: 1.1rem;
}

/* --------------------------------------------------------------------------
   10. SERVICES SECTION
   -------------------------------------------------------------------------- */
.services-section {
  padding: 100px 0;
  background-color: var(--brand-cream-light);
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.service-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 24px;
  text-align: center;
  transition: var(--transition-base);
  box-shadow: var(--shadow-xs);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(26, 78, 167, 0.25);
  box-shadow: var(--shadow-md);
}

.service-icon {
  width: 68px;
  height: 68px;
  border-radius: var(--radius-lg);
  background-color: var(--primary-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  transition: var(--transition-base);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
  color: var(--text-white);
  transform: scale(1.08) rotate(3deg);
}

.service-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 12px;
}

.service-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   11. WHY ALMADAR SECTION
   -------------------------------------------------------------------------- */
.why-section {
  padding: 100px 0;
  background-color: var(--bg-white);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-media {
  position: relative;
}

.why-img-box {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.why-img {
  width: 100%;
  height: 540px;
  object-fit: cover;
}

.why-floating-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  padding: 16px 24px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-lg);
}

.badge-icon {
  font-size: 2rem;
}

.badge-title {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.badge-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.why-points {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}

.why-point {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.why-point-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background-color: var(--primary-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-point-text h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 4px;
}

.why-point-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   12. JOURNEY EXPERIENCE STEPS
   -------------------------------------------------------------------------- */
.journey-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary-dark) 100%);
  position: relative;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 60px;
}

.step-card {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 36px 24px;
  text-align: center;
  position: relative;
  transition: var(--transition-base);
}

.step-card:hover {
  transform: translateY(-8px);
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(250, 160, 37, 0.4);
}

.step-number {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 16px;
  opacity: 0.9;
}

.step-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 10px;
}

.step-desc {
  font-size: 0.9rem;
  color: var(--text-white-muted);
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   13. CUSTOMER REVIEWS (SLIDER)
   -------------------------------------------------------------------------- */
.reviews-section {
  padding: 100px 0;
  background-color: var(--bg-surface);
}

.testimonials-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.testimonials-slider {
  overflow: hidden;
  position: relative;
  border-radius: var(--radius-xl);
}

.testimonials-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-card {
  min-width: 100%;
  box-sizing: border-box;
  background-color: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 44px 36px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.testimonial-stars {
  color: #F59E0B;
  font-size: 1.2rem;
  letter-spacing: 4px;
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: 1.15rem;
  line-height: 1.9;
  color: var(--text-heading);
  font-weight: 500;
  margin-bottom: 28px;
  font-style: normal;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: var(--primary-soft);
  color: var(--primary);
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--primary);
}

.author-name {
  display: block;
  font-weight: 700;
  color: var(--text-heading);
  font-size: 1rem;
}

.author-loc {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.slider-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--bg-white);
  border: 1px solid var(--border);
  color: var(--text-heading);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-xs);
  transition: var(--transition-base);
}

.slider-btn:hover {
  background-color: var(--primary);
  color: var(--text-white);
  border-color: var(--primary);
}

.slider-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--border);
  border: none;
  cursor: pointer;
  transition: var(--transition-base);
}

.slider-dot.active {
  background-color: var(--primary);
  width: 26px;
  border-radius: var(--radius-full);
}

/* --------------------------------------------------------------------------
   14. INSTAGRAM SECTION
   -------------------------------------------------------------------------- */
.instagram-section {
  padding: 80px 0;
  background-color: var(--bg-white);
}

.instagram-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
  flex-wrap: wrap;
  gap: 16px;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.instagram-item {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
}

.instagram-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.instagram-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(15, 36, 105, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.instagram-item:hover .instagram-img {
  transform: scale(1.1);
}

.instagram-item:hover .instagram-overlay {
  opacity: 1;
}

/* --------------------------------------------------------------------------
   15. CTA BANNER
   -------------------------------------------------------------------------- */
.cta-banner {
  padding: 40px 0 90px;
  background-color: var(--bg-white);
}

.cta-box {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 70%, var(--primary-hover) 100%);
  border-radius: var(--radius-xl);
  padding: 60px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.cta-box::after {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(250, 160, 37, 0.25) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-content {
  max-width: 600px;
}

.cta-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-gold);
  background-color: rgba(250, 223, 139, 0.15);
  padding: 5px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.cta-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 10px;
}

.cta-desc {
  font-size: 1.05rem;
  color: var(--text-white-muted);
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-whatsapp-lg {
  background-color: #25D366;
  color: #FFFFFF;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 16px 28px;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-whatsapp-lg:hover {
  background-color: #20BA5A;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
}

.btn-outline-white-lg {
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  color: var(--text-white);
  font-size: 1.05rem;
  font-weight: 600;
  padding: 16px 28px;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-base);
}

.btn-outline-white-lg:hover {
  background-color: rgba(255, 255, 255, 0.12);
  border-color: var(--text-white);
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   16. FOOTER
   -------------------------------------------------------------------------- */
.footer {
  background-color: var(--primary-darker);
  color: var(--text-white);
  padding: 80px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.footer-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.footer-brand-name {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-white);
}

.footer-brand-tag {
  font-size: 0.72rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-about {
  color: var(--text-white-muted);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 360px;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: var(--transition-fast);
}

.footer-social-btn:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.footer-heading {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 30px;
  height: 2.5px;
  background-color: var(--accent);
  border-radius: var(--radius-full);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--text-white-muted);
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--accent);
  padding-right: 6px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-white-muted);
  font-size: 0.9rem;
}

.contact-item svg {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 4px;
}

.contact-label {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

.contact-value {
  color: var(--text-white);
  font-weight: 600;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 12px;
}

/* --------------------------------------------------------------------------
   17. FLOATING WHATSAPP BUTTON
   -------------------------------------------------------------------------- */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 999;
}

.whatsapp-float-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #25D366;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  position: relative;
  transition: transform var(--transition-base);
}

.whatsapp-float-btn:hover {
  transform: scale(1.1);
}

.whatsapp-pulse {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background-color: rgba(37, 211, 102, 0.4);
  animation: pulse-ring 2s cubic-bezier(0.25, 0, 0, 1) infinite;
  z-index: -1;
}

@keyframes pulse-ring {
  0% { transform: scale(0.9); opacity: 0.8; }
  100% { transform: scale(1.5); opacity: 0; }
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background-color: var(--primary-dark);
  color: var(--text-white);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transform: translateX(10px);
  transition: var(--transition-base);
}

.whatsapp-float-btn:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* --------------------------------------------------------------------------
   18. ANIMATIONS & SCROLL REVEAL
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --------------------------------------------------------------------------
   19. RESPONSIVE MEDIA QUERIES
   -------------------------------------------------------------------------- */
@media (max-width: 1200px) {
  .offers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .nav-menu {
    display: none;
  }

  .hamburger-btn {
    display: flex;
  }

  .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .destination-card.featured-card {
    grid-column: span 1;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-img {
    height: 400px;
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-box {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .hero-search-bar {
    flex-direction: column;
    border-radius: var(--radius-lg);
    padding: 18px;
  }

  .search-divider {
    width: 100%;
    height: 1px;
  }

  .btn-search {
    width: 100%;
    justify-content: center;
  }

  .features-row {
    grid-template-columns: 1fr;
  }

  .stats-bar {
    flex-direction: column;
    gap: 24px;
  }

  .stat-divider {
    width: 60px;
    height: 1px;
  }

  .destinations-grid {
    grid-template-columns: 1fr;
  }

  .offers-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .floating-whatsapp {
    bottom: 20px;
    left: 20px;
  }
}

@media (max-width: 480px) {
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta-group .btn {
    width: 100%;
  }

  .nav-actions .btn-whatsapp-nav span {
    display: none;
  }

  .nav-actions .btn-whatsapp-nav {
    padding: 9px;
    border-radius: 50%;
  }

  .nav-social {
    display: none;
  }
}
