/* ==========================================================================
   UNIVERSAL TRAVEL AND TOURISM - OFFICIAL STYLESHEET
   Domain: https://UniversalTravelDubai.com
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS VARIABLES & THEME CONFIGURATION
   -------------------------------------------------------------------------- */
:root {
  --primary-navy: #002B5C;
  --deep-navy: #001D3D;
  --royal-blue: #0057A8;
  --luxury-gold: #C99A3D;
  --light-gold: #E5C16C;
  --pale-gold: #FDF8ED;
  --gold-glow: rgba(201, 154, 61, 0.22);
  --gold-border: rgba(201, 154, 61, 0.35);
  
  --white: #FFFFFF;
  --soft-bg: #F7F8FA;
  --card-bg: #FFFFFF;
  --dark-text: #172033;
  --muted-text: #5A6A85;
  --light-text: #94A3B8;
  --border-light: #E2E8F0;
  
  --shadow-sm: 0 2px 8px rgba(0, 29, 61, 0.06);
  --shadow-md: 0 8px 24px rgba(0, 29, 61, 0.08);
  --shadow-lg: 0 16px 36px rgba(0, 29, 61, 0.12);
  --shadow-gold: 0 8px 25px rgba(201, 154, 61, 0.3);
  
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  
  --transition-fast: 0.2s ease;
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-accent: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  --container-max: 1240px;
}

/* --------------------------------------------------------------------------
   2. GLOBAL RESET & BASE STYLES
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--dark-text);
  background-color: var(--soft-bg);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* --------------------------------------------------------------------------
   3. TYPOGRAPHY & SECTION HEADERS
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--deep-navy);
  line-height: 1.25;
  font-weight: 700;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.75rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.75rem); }
h4 { font-size: 1.2rem; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.2px;
  color: var(--luxury-gold);
  margin-bottom: 12px;
}

.section-tag::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--light-gold), var(--luxury-gold));
}

.section-tag.light {
  color: var(--light-gold);
}

.section-title {
  margin-bottom: 16px;
  position: relative;
}

.section-title.light {
  color: var(--white);
}

.section-subtitle {
  color: var(--muted-text);
  font-size: 1.05rem;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.section-subtitle.light {
  color: #CBD5E1;
}

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

.section-header.text-left {
  text-align: left;
}
.section-header.text-left .section-subtitle {
  margin-left: 0;
}

.gold-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--luxury-gold), var(--light-gold));
  margin: 16px auto 20px;
  border-radius: 2px;
}

.text-left .gold-divider {
  margin-left: 0;
}

/* --------------------------------------------------------------------------
   4. BUTTONS & CTAS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 28px;
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-normal);
  text-align: center;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--luxury-gold) 0%, #B88628 100%);
  color: var(--deep-navy);
  box-shadow: 0 4px 16px rgba(201, 154, 61, 0.28);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #F0C76B 0%, var(--luxury-gold) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 154, 61, 0.4);
  color: var(--deep-navy);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(4px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-navy {
  background: var(--primary-navy);
  color: var(--white);
}
.btn-navy:hover {
  background: var(--deep-navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-whatsapp {
  background: #25D366;
  color: #FFFFFF;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.28);
}
.btn-whatsapp:hover {
  background: #20BA5A;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  color: #FFFFFF;
}

.btn-sm {
  padding: 9px 18px;
  font-size: 0.85rem;
}

.btn-outline-gold {
  background: transparent;
  color: var(--luxury-gold);
  border: 1.5px solid var(--luxury-gold);
}
.btn-outline-gold:hover {
  background: var(--luxury-gold);
  color: var(--deep-navy);
  transform: translateY(-2px);
}

.btn svg {
  width: 18px;
  height: 18px;
  transition: transform var(--transition-fast);
}
.btn:hover svg {
  transform: translateX(3px);
}

/* --------------------------------------------------------------------------
   5. HEADER & TOPBAR & NAVBAR
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all var(--transition-normal);
}

/* Top bar with quick contacts */
.top-bar {
  background: rgba(0, 29, 61, 0.95);
  color: #CBD5E1;
  font-size: 0.82rem;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all var(--transition-normal);
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-contacts {
  display: flex;
  align-items: center;
  gap: 24px;
  order: 2;
  margin-left: auto;
}
.top-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #CBD5E1;
}
.top-contact-item:hover {
  color: var(--light-gold);
}
.top-contact-item svg {
  width: 14px;
  height: 14px;
  color: var(--luxury-gold);
}
.top-tagline {
  order: 1;
  font-style: italic;
  color: var(--light-gold);
  letter-spacing: 0.5px;
  margin-right: 32px;
}

/* Main Navbar */
.navbar {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 5px 0;
  border-bottom: 1px solid rgba(201, 154, 61, 0.3);
  box-shadow: 0 6px 24px rgba(0, 29, 61, 0.1);
  transition: all var(--transition-normal);
}

.site-header.scrolled .navbar {
  background: #FFFFFF;
  padding: 3px 0;
  box-shadow: 0 4px 20px rgba(0, 29, 61, 0.1);
  border-bottom: 1px solid var(--border-light);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.navbar .brand-logo {
  margin-right: 18px;
  flex-shrink: 0;
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 158px;
  max-width: 42vw;
  transition: transform var(--transition-fast);
}
.brand-logo img {
  width: 100%;
  height: auto;
  max-height: 108px;
  object-fit: contain;
  filter: drop-shadow(0 2px 3px rgba(0, 29, 61, 0.16));
}
.brand-logo:hover {
  transform: translateY(-2px) scale(1.02);
}

/* Navigation Links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
  flex-shrink: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--dark-text);
  padding: 8px 0;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  position: relative;
  transition: color var(--transition-fast);
}

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

.nav-link:hover,
.nav-link.active {
  color: var(--royal-blue);
}

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

.site-header.scrolled .nav-link {
  color: var(--dark-text);
}
.site-header.scrolled .nav-link:hover,
.site-header.scrolled .nav-link.active {
  color: var(--royal-blue);
}

/* Dropdown Menu (Services) */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: -20px;
  min-width: 260px;
  background: #FFFFFF;
  border-radius: var(--radius-md);
  box-shadow: 0 16px 36px rgba(0, 29, 61, 0.16);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all var(--transition-normal);
  border: 1px solid var(--border-light);
  border-top: 3px solid var(--luxury-gold);
  z-index: 1010;
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  color: var(--dark-text);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all var(--transition-fast);
}

.dropdown-item svg {
  width: 16px;
  height: 16px;
  color: var(--luxury-gold);
  transition: transform var(--transition-fast);
}

.dropdown-item:hover {
  background: var(--pale-gold);
  color: var(--primary-navy);
  padding-left: 24px;
}
.dropdown-item:hover svg {
  transform: scale(1.15);
}

.nav-item.dropdown:hover .dropdown-menu,
.nav-item.dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-chevron {
  width: 12px;
  height: 12px;
  transition: transform var(--transition-fast);
}
.nav-item.dropdown:hover .dropdown-chevron {
  transform: rotate(180deg);
}

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

/* Hamburger Toggle Button */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1020;
}

.hamburger-btn span {
  display: block;
  width: 100%;
  height: 2.5px;
  background-color: var(--deep-navy);
  border-radius: 2px;
  transition: all var(--transition-normal);
}

.site-header.scrolled .hamburger-btn span {
  background-color: var(--deep-navy);
}

.hamburger-btn.is-active span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
  background-color: var(--luxury-gold);
}
.hamburger-btn.is-active span:nth-child(2) {
  opacity: 0;
}
.hamburger-btn.is-active span:nth-child(3) {
  transform: translateY(-9.5px) rotate(-45deg);
  background-color: var(--luxury-gold);
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 88%;
  max-width: 360px;
  height: 100vh;
  background: #FFFFFF;
  box-shadow: -8px 0 32px rgba(0, 29, 61, 0.2);
  z-index: 1015;
  display: flex;
  flex-direction: column;
  padding: 85px 24px 30px;
  overflow-y: auto;
  transition: right var(--transition-normal);
}

.mobile-drawer.open {
  right: 0;
}

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 29, 61, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1012;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.mobile-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 24px;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark-text);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  background: var(--pale-gold);
  color: var(--primary-navy);
}

.mobile-dropdown-toggle {
  width: 100%;
}

.mobile-submenu {
  display: none;
  padding-left: 14px;
  margin-top: 4px;
  border-left: 2px solid var(--luxury-gold);
}

.mobile-submenu.open {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-sublink {
  display: block;
  padding: 9px 12px;
  font-size: 0.9rem;
  color: var(--muted-text);
  font-weight: 500;
  border-radius: var(--radius-sm);
}

.mobile-sublink:hover {
  color: var(--primary-navy);
  background: #F1F5F9;
}

.mobile-drawer-contact {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-drawer-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--deep-navy);
}
.mobile-drawer-phone svg {
  width: 18px;
  height: 18px;
  color: var(--luxury-gold);
}

/* --------------------------------------------------------------------------
   6. FLOATING ACTIONS & SOCIAL STACK
   -------------------------------------------------------------------------- */
.floating-stack {
  position: fixed;
  right: 20px;
  bottom: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 990;
}

.floating-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  box-shadow: 0 4px 16px rgba(0, 29, 61, 0.22);
  transition: all var(--transition-normal);
  position: relative;
}

.floating-btn svg {
  width: 22px;
  height: 22px;
}

.floating-btn.float-whatsapp {
  background: #25D366;
  width: 56px;
  height: 56px;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}
.floating-btn.float-whatsapp svg {
  width: 28px;
  height: 28px;
}

.floating-btn.float-call {
  background: var(--primary-navy);
}

.floating-btn.float-fb {
  background: #1877F2;
}

.floating-btn.float-ig {
  background: linear-gradient(45deg, #F09433 0%, #E6683C 25%, #DC2743 50%, #CC2366 75%, #BC1888 100%);
}

.floating-btn:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 8px 24px rgba(0, 29, 61, 0.3);
}

.floating-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  background: var(--deep-navy);
  color: #FFFFFF;
  padding: 5px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(10px);
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.floating-tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--deep-navy);
}

.floating-btn:hover .floating-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* --------------------------------------------------------------------------
   7. HERO SECTIONS
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  min-height: 94vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 160px 0 100px;
  background-color: var(--deep-navy);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 24s infinite alternate ease-in-out;
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 29, 61, 0.78) 0%, rgba(0, 43, 92, 0.82) 60%, rgba(0, 29, 61, 0.95) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: rgba(201, 154, 61, 0.16);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-full);
  color: var(--light-gold);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  margin-bottom: 22px;
  backdrop-filter: blur(6px);
}

.hero-title {
  color: var(--white);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 20px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-title span {
  background: linear-gradient(90deg, #FFFFFF 0%, #F5DEB3 50%, var(--light-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: #E2E8F0;
  max-width: 780px;
  margin: 0 auto 34px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

/* Inner Page Hero */
.page-hero {
  position: relative;
  min-height: 520px;
  padding: 210px 0 100px;
  display: flex;
  align-items: center;
  background-color: var(--deep-navy);
  text-align: center;
  overflow: hidden;
}
.page-hero .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.page-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(110deg, rgba(0, 18, 41, 0.82) 0%, rgba(0, 43, 92, 0.62) 52%, rgba(0, 29, 61, 0.54) 100%);
  z-index: 2;
}
.page-hero .container {
  position: relative;
  z-index: 3;
}
.page-hero h1 {
  color: var(--white);
  margin-bottom: 14px;
}
.page-hero p {
  color: #CBD5E1;
  font-size: 1.12rem;
  max-width: 720px;
  margin: 0 auto;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--light-gold);
  margin-bottom: 16px;
}
.breadcrumbs a {
  color: #CBD5E1;
}
.breadcrumbs a:hover {
  color: var(--white);
}

/* --------------------------------------------------------------------------
   8. QUICK BOOKING / SEARCH PANEL
   -------------------------------------------------------------------------- */
.booking-search-panel {
  position: relative;
  z-index: 20;
  margin-top: -55px;
  margin-bottom: 70px;
}

.search-box-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 40px rgba(0, 29, 61, 0.12);
  border: 1px solid var(--border-light);
  padding: 26px 30px;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 16px;
  align-items: flex-end;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--primary-navy);
  display: flex;
  align-items: center;
  gap: 6px;
}

.form-group label svg {
  width: 14px;
  height: 14px;
  color: var(--luxury-gold);
}

.form-control {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  background: #FAFAFC;
  color: var(--dark-text);
  font-size: 0.92rem;
  transition: all var(--transition-fast);
  outline: none;
}

.form-control:focus {
  border-color: var(--luxury-gold);
  background: #FFFFFF;
  box-shadow: 0 0 0 3px var(--gold-glow);
}

/* --------------------------------------------------------------------------
   9. CATEGORIES & GRID SECTIONS
   -------------------------------------------------------------------------- */
.section-padding {
  padding: 90px 0;
}
.section-padding-sm {
  padding: 60px 0;
}
.bg-white {
  background-color: #FFFFFF;
}
.bg-navy {
  background-color: var(--deep-navy);
  color: #FFFFFF;
}
.bg-soft {
  background-color: var(--soft-bg);
}

/* Category Cards */
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.category-card {
  position: relative;
  height: 380px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  display: block;
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 29, 61, 0.15) 0%, rgba(0, 29, 61, 0.5) 45%, rgba(0, 29, 61, 0.95) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  color: var(--white);
  transition: all var(--transition-normal);
}

.category-card-badge {
  display: inline-block;
  align-self: flex-start;
  padding: 4px 12px;
  background: rgba(201, 154, 61, 0.25);
  border: 1px solid var(--luxury-gold);
  border-radius: var(--radius-full);
  color: var(--light-gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.category-card-title {
  color: var(--white);
  font-size: 1.45rem;
  margin-bottom: 8px;
}

.category-card-desc {
  font-size: 0.9rem;
  color: #CBD5E1;
  margin-bottom: 16px;
  line-height: 1.5;
}

.category-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--light-gold);
}

.category-card-link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-fast);
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.category-card:hover img {
  transform: scale(1.08);
}
.category-card:hover .category-card-link svg {
  transform: translateX(4px);
}

/* Experience / Tour Cards Grid */
.cards-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

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

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

/* Premium Experience Card */
.tour-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
}

.tour-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201, 154, 61, 0.4);
}

.tour-card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.tour-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.tour-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--deep-navy);
  color: var(--light-gold);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  border: 1px solid var(--gold-border);
}

.tour-location-badge {
  position: absolute;
  bottom: 12px;
  left: 14px;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  color: #FFFFFF;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.tour-location-badge svg {
  width: 12px;
  height: 12px;
  color: var(--light-gold);
}

.tour-card-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.tour-card-category {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--luxury-gold);
  margin-bottom: 6px;
}

.tour-card-title {
  font-size: 1.22rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--deep-navy);
  line-height: 1.35;
}

.tour-card-desc {
  font-size: 0.88rem;
  color: var(--muted-text);
  line-height: 1.55;
  margin-bottom: 16px;
  flex-grow: 1;
}

.tour-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-light);
}

.highlight-pill {
  font-size: 0.75rem;
  background: var(--soft-bg);
  color: var(--dark-text);
  padding: 3px 9px;
  border-radius: var(--radius-sm);
  font-weight: 500;
}

.tour-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.tour-duration {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted-text);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.tour-duration svg {
  width: 14px;
  height: 14px;
  color: var(--luxury-gold);
}

/* --------------------------------------------------------------------------
   10. EMIRATES TILES SECTION
   -------------------------------------------------------------------------- */
.emirates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.emirate-tile {
  position: relative;
  height: 300px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: block;
}

.emirate-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.emirate-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 29, 61, 0.1) 0%, rgba(0, 29, 61, 0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: var(--white);
}

.emirate-name {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.emirate-tagline {
  font-size: 0.86rem;
  color: var(--light-gold);
  font-weight: 500;
}

.emirate-tile:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.emirate-tile:hover img {
  transform: scale(1.06);
}

/* --------------------------------------------------------------------------
   11. WHY CHOOSE US
   -------------------------------------------------------------------------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-box {
  background: #FFFFFF;
  padding: 34px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  position: relative;
}

.feature-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 28px;
  width: 40px;
  height: 3px;
  background: var(--luxury-gold);
  border-radius: 0 0 4px 4px;
  transition: width var(--transition-normal);
}

.feature-box:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201, 154, 61, 0.4);
}
.feature-box:hover::before {
  width: 80px;
}

.feature-icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-md);
  background: var(--pale-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--luxury-gold);
  border: 1px solid var(--gold-border);
  transition: all var(--transition-fast);
}

.feature-box:hover .feature-icon-wrap {
  background: var(--primary-navy);
  color: var(--light-gold);
}

.feature-icon-wrap svg {
  width: 28px;
  height: 28px;
}

.feature-title {
  font-size: 1.22rem;
  margin-bottom: 10px;
}

.feature-desc {
  font-size: 0.9rem;
  color: var(--muted-text);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   12. DESERT EXPERIENCE SPLIT SECTION
   -------------------------------------------------------------------------- */
.split-feature-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.split-image-col {
  position: relative;
}

.split-main-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.split-main-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.floating-experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: #FFFFFF;
  padding: 18px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--luxury-gold);
  max-width: 260px;
}

.floating-badge-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--deep-navy);
  margin-bottom: 4px;
}

.floating-badge-desc {
  font-size: 0.8rem;
  color: var(--muted-text);
}

.split-content-col {
  padding-right: 20px;
}

.split-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 24px 0 32px;
}

.split-list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.94rem;
  color: var(--dark-text);
}

.split-list-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--pale-gold);
  color: var(--luxury-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.split-list-icon svg {
  width: 12px;
  height: 12px;
}

/* --------------------------------------------------------------------------
   13. ATTRACTIONS CAROUSEL
   -------------------------------------------------------------------------- */
.carousel-container {
  position: relative;
  overflow: hidden;
  padding: 10px 0 40px;
}

.carousel-track {
  display: flex;
  gap: 24px;
  transition: transform var(--transition-normal);
}

.carousel-card {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 280px;
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: all var(--transition-normal);
}

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

.carousel-card-img {
  height: 220px;
  position: relative;
}
.carousel-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}

.carousel-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  color: var(--deep-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.carousel-arrow:hover {
  background: var(--primary-navy);
  color: #FFFFFF;
  border-color: var(--primary-navy);
}
.carousel-arrow svg {
  width: 20px;
  height: 20px;
}

/* --------------------------------------------------------------------------
   14. FILTER TABS (FOR TOURS & ATTRACTIONS)
   -------------------------------------------------------------------------- */
.filter-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 10px 22px;
  border-radius: var(--radius-full);
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted-text);
  transition: all var(--transition-fast);
}

.filter-btn:hover {
  border-color: var(--luxury-gold);
  color: var(--primary-navy);
}

.filter-btn.active {
  background: var(--primary-navy);
  color: #FFFFFF;
  border-color: var(--primary-navy);
  box-shadow: 0 4px 14px rgba(0, 43, 92, 0.25);
}

/* --------------------------------------------------------------------------
   15. CUSTOM ITINERARY / EDITORIAL BANNER
   -------------------------------------------------------------------------- */
.custom-itinerary-box {
  background: linear-gradient(135deg, var(--deep-navy) 0%, #003773 100%);
  border-radius: var(--radius-xl);
  padding: 60px 50px;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gold-border);
}

.custom-itinerary-box::after {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 154, 61, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.custom-itinerary-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.itinerary-form-wrap {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  padding: 30px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.itinerary-form-wrap .form-control {
  background: rgba(255, 255, 255, 0.92);
}

/* --------------------------------------------------------------------------
   16. TESTIMONIALS (REVIEW PLACEHOLDER UI)
   -------------------------------------------------------------------------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: #FFFFFF;
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
}

.testimonial-badge {
  font-size: 0.72rem;
  color: var(--light-text);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 14px;
}

.star-rating {
  display: flex;
  gap: 4px;
  color: #F59E0B;
  margin-bottom: 14px;
}
.star-rating svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.testimonial-text {
  font-size: 0.94rem;
  color: var(--dark-text);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border-light);
  padding-top: 16px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--pale-gold);
  color: var(--primary-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  border: 1.5px solid var(--luxury-gold);
}

.author-info h4 {
  font-size: 0.95rem;
  font-family: var(--font-body);
  font-weight: 700;
  margin-bottom: 2px;
}

.author-info p {
  font-size: 0.8rem;
  color: var(--muted-text);
}

/* --------------------------------------------------------------------------
   17. FAQ ACCORDION
   -------------------------------------------------------------------------- */
.faq-accordion {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-item.active {
  border-color: var(--luxury-gold);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  padding: 18px 24px;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--deep-navy);
  background: transparent;
  cursor: pointer;
}

.faq-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--luxury-gold);
  transition: transform var(--transition-normal);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal);
  padding: 0 24px;
  color: var(--muted-text);
  font-size: 0.92rem;
  line-height: 1.65;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 20px;
}

/* --------------------------------------------------------------------------
   18. CTA BANNER
   -------------------------------------------------------------------------- */
.cta-banner-section {
  position: relative;
  padding: 100px 0;
  background: var(--deep-navy);
  text-align: center;
  color: #FFFFFF;
  overflow: hidden;
}

.cta-banner-section .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.cta-banner-section .hero-overlay {
  background: linear-gradient(180deg, rgba(0, 29, 61, 0.88) 0%, rgba(0, 43, 92, 0.9) 100%);
}

.cta-banner-content {
  position: relative;
  z-index: 3;
  max-width: 760px;
  margin: 0 auto;
}

.cta-banner-content h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-banner-content p {
  color: #CBD5E1;
  font-size: 1.1rem;
  margin-bottom: 32px;
}

/* --------------------------------------------------------------------------
   19. FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--deep-navy);
  color: #CBD5E1;
  padding: 80px 0 24px;
  border-top: 3px solid var(--luxury-gold);
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 1fr 1.3fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand p {
  margin-top: 16px;
  margin-bottom: 20px;
  line-height: 1.6;
  color: #94A3B8;
  max-width: 320px;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: all var(--transition-fast);
}

.footer-brand .brand-logo {
  width: 180px !important;
  max-width: 100%;
}

.footer-brand .brand-logo img {
  max-height: 132px;
  filter: brightness(0) invert(1) drop-shadow(0 0 5px rgba(255, 255, 255, 0.28));
}

.footer-social-link:hover {
  background: var(--luxury-gold);
  color: var(--deep-navy);
  transform: translateY(-3px);
}
.footer-social-link svg {
  width: 16px;
  height: 16px;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--luxury-gold);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: #94A3B8;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover {
  color: var(--light-gold);
  padding-left: 5px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #94A3B8;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--luxury-gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact-item a {
  color: #CBD5E1;
}
.footer-contact-item a:hover {
  color: var(--light-gold);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.82rem;
  color: #64748B;
}

.footer-bottom a {
  color: #94A3B8;
}
.footer-bottom a:hover {
  color: var(--white);
}

/* --------------------------------------------------------------------------
   20. INNER PAGE SPECIFIC STYLES (ABOUT, SERVICES, PACKAGES, CONTACT)
   -------------------------------------------------------------------------- */
/* Story / Mission Cards */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.story-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.story-image img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.mv-card {
  background: #FFFFFF;
  padding: 34px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--luxury-gold);
}

.mv-card h3 {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.mv-card h3 svg {
  width: 24px;
  height: 24px;
  color: var(--luxury-gold);
}

/* Services Detailed Cards */
.service-detail-row {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 40px;
  align-items: center;
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  margin-bottom: 40px;
}

.service-detail-row.reverse {
  grid-template-columns: 1.15fr 1fr;
}
.service-detail-row.reverse .service-detail-img {
  order: 2;
}
.service-detail-row.reverse .service-detail-content {
  order: 1;
}

.service-detail-img {
  height: 100%;
  min-height: 340px;
}
.service-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-detail-content {
  padding: 36px 40px;
}

.service-detail-content h3 {
  margin-bottom: 12px;
}

.service-detail-content p {
  color: var(--muted-text);
  margin-bottom: 18px;
  line-height: 1.65;
}

/* Package Cards */
.package-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  position: relative;
}

.package-card.featured {
  border: 2px solid var(--luxury-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.package-ribbon {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--luxury-gold);
  color: var(--deep-navy);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  z-index: 5;
}

.package-img {
  height: 220px;
  position: relative;
}
.package-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.package-body {
  padding: 26px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.package-duration {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--royal-blue);
  margin-bottom: 8px;
}

.package-title {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.package-inclusions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 16px 0 22px;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}

.inclusion-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--dark-text);
}
.inclusion-item svg {
  width: 15px;
  height: 15px;
  color: var(--luxury-gold);
  flex-shrink: 0;
}

.package-disclaimer {
  font-size: 0.76rem;
  color: var(--light-text);
  font-style: italic;
  margin-bottom: 18px;
}

/* Contact Page Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 40px;
}

.contact-info-card {
  background: var(--deep-navy);
  color: #FFFFFF;
  padding: 40px 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gold-border);
}

.contact-info-card h3 {
  color: var(--white);
  margin-bottom: 20px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 28px 0 34px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(201, 154, 61, 0.15);
  border: 1px solid var(--luxury-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-gold);
  flex-shrink: 0;
}
.contact-icon-wrap svg {
  width: 20px;
  height: 20px;
}

.contact-detail-text h5 {
  font-family: var(--font-body);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--light-gold);
  margin-bottom: 4px;
}

.contact-detail-text p,
.contact-detail-text a {
  color: #E2E8F0;
  font-size: 0.95rem;
}
.contact-detail-text a:hover {
  color: var(--light-gold);
}

.contact-form-card {
  background: #FFFFFF;
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
}

.contact-form-card h3 {
  margin-bottom: 8px;
}

.contact-form-card p {
  color: var(--muted-text);
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

.form-full {
  margin-bottom: 18px;
}

.map-card {
  margin-top: 48px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  height: 380px;
  background: #E2E8F0;
}
.map-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* --------------------------------------------------------------------------
   21. NOTICES & BADGES
   -------------------------------------------------------------------------- */
.visa-notice-box {
  background: var(--pale-gold);
  border-left: 4px solid var(--luxury-gold);
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  color: var(--dark-text);
  margin: 18px 0;
}

/* --------------------------------------------------------------------------
   22. ANIMATIONS & SCROLL REVEAL
   -------------------------------------------------------------------------- */
.reveal-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal-up {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* --------------------------------------------------------------------------
   23. RESPONSIVE BREAKPOINTS
   -------------------------------------------------------------------------- */
@media (max-width: 1100px) {
  .navbar .container {
    gap: 12px;
  }
  .navbar .brand-logo {
    width: 136px;
    margin-right: 8px;
  }
  .nav-menu {
    gap: 12px;
  }
  .nav-link {
    font-size: 0.84rem;
  }
  .nav-actions {
    gap: 10px;
  }
  .nav-actions .btn {
    padding: 10px 14px;
    font-size: 0.78rem;
  }
  .cards-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .category-grid,
  .emirates-grid,
  .features-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 1020px) {
  .nav-menu {
    display: none;
  }
  .hamburger-btn {
    display: flex;
  }
  .navbar .brand-logo {
    margin-right: auto;
  }
}

@media (max-width: 900px) {
  .top-bar {
    display: none;
  }
  .brand-logo {
    width: 142px;
  }
  
  .booking-form {
    grid-template-columns: 1fr 1fr;
  }
  .booking-form .btn {
    grid-column: span 2;
  }
  
  .split-feature-section,
  .custom-itinerary-grid,
  .story-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  
  .service-detail-row,
  .service-detail-row.reverse {
    grid-template-columns: 1fr;
  }
  .service-detail-row.reverse .service-detail-img {
    order: 1;
  }
  .service-detail-row.reverse .service-detail-content {
    order: 2;
  }
  .service-detail-img {
    min-height: 240px;
    max-height: 300px;
  }
  
  .carousel-card {
    flex: 0 0 calc(50% - 12px);
  }
}

@media (max-width: 640px) {
  .navbar {
    padding: 3px 0;
  }

  .brand-logo {
    width: 116px;
    max-width: 46vw;
  }

  .brand-logo img {
    max-height: 88px;
  }

  .nav-actions {
    gap: 9px;
  }

  .nav-actions .btn {
    padding: 9px 11px;
    font-size: 0.72rem;
    white-space: nowrap;
  }

  .nav-actions .btn svg {
    display: none;
  }

  .page-hero {
    min-height: 440px;
    padding: 135px 0 62px;
  }

  .page-hero h1 {
    font-size: clamp(2rem, 10vw, 2.75rem);
  }

  .page-hero p {
    font-size: 1rem;
    padding: 0 6px;
  }
  .category-grid,
  .emirates-grid,
  .features-grid,
  .testimonials-grid,
  .cards-grid-4,
  .cards-grid-3,
  .mission-vision-grid {
    grid-template-columns: 1fr;
  }
  
  .booking-form {
    grid-template-columns: 1fr;
  }
  .booking-form .btn {
    grid-column: span 1;
  }
  .search-box-card {
    padding: 20px;
  }
  
  .form-grid-2 {
    grid-template-columns: 1fr;
  }
  
  .carousel-card {
    flex: 0 0 100%;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .floating-stack {
    right: 14px;
    bottom: 20px;
  }
  .floating-btn {
    width: 44px;
    height: 44px;
  }
  .floating-btn.float-whatsapp {
    width: 50px;
    height: 50px;
  }
  
  .hero-section {
    padding: 130px 0 80px;
    min-height: 85vh;
  }
  .booking-search-panel {
    margin-top: -35px;
  }
  
  .contact-form-card {
    padding: 24px 20px;
  }

  .contact-grid {
    gap: 24px;
  }

  .contact-info-card {
    padding: 28px 20px;
  }

  .contact-info-item {
    gap: 12px;
  }

  .contact-detail-text,
  .contact-detail-text p,
  .contact-detail-text a {
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .contact-form-card input,
  .contact-form-card select,
  .contact-form-card textarea {
    width: 100%;
    min-width: 0;
    font-size: 16px;
  }

  .map-card {
    margin-top: 28px;
  }

  .map-card iframe {
    height: 300px;
  }
  .service-detail-content {
    padding: 24px 20px;
  }
  .custom-itinerary-box {
    padding: 36px 20px;
  }
}

/* Backend booking integration */
.backend-price{font-weight:800;color:#b78b2d;margin:10px 0}.backend-book-btn{margin-top:8px;text-decoration:none}.tour-card-footer .backend-book-btn{margin-left:8px}@media(max-width:600px){.tour-card-footer{flex-wrap:wrap}.tour-card-footer .backend-book-btn{margin-left:0}}
