/* ==========================================================================
   AL SHAN CLEANING SERVICES LLC - DESIGN SYSTEM & MASTER STYLESHEET
   Dubai & UAE Premium Standards
   ========================================================================== */

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

:root {
  /* Color Palette */
  --primary-navy: #0A192F;
  --primary-deep: #07111E;
  --primary-surface: #0F243E;
  --primary-card: #132D4E;
  
  --accent-cyan: #00D2B4;
  --accent-cyan-glow: rgba(0, 210, 180, 0.25);
  --accent-blue: #0284C7;
  --accent-amber: #F59E0B;
  --accent-emerald: #10B981;
  
  --text-white: #FFFFFF;
  --text-primary: #0F172A;
  --text-secondary: #475569;
  --text-muted: #64748B;
  --text-light: #E2E8F0;
  --text-dim: #94A3B8;

  --bg-body: #F8FAFC;
  --bg-card: #FFFFFF;
  --bg-subtle: #F1F5F9;
  --bg-dark-section: #0B1727;
  
  --border-light: #E2E8F0;
  --border-dark: #1E385B;
  
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.08), 0 2px 4px -1px rgba(0,0,0,0.04);
  --shadow-lg: 0 10px 25px -5px rgba(10,25,47,0.1), 0 8px 10px -6px rgba(10,25,47,0.06);
  --shadow-xl: 0 20px 35px -5px rgba(10,25,47,0.15), 0 10px 15px -5px rgba(10,25,47,0.08);
  --shadow-cyan: 0 8px 24px -4px rgba(0, 210, 180, 0.3);
  
  /* Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  /* Typography */
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Outfit', sans-serif;
  
  /* Transition */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   RESET & BASE
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-body);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

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

/* ==========================================================================
   LAYOUT UTILITIES
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.section-padding {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.text-center { text-align: center; }
.text-cyan { color: var(--accent-cyan); }
.text-amber { color: var(--accent-amber); }
.text-muted { color: var(--text-muted); }

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  background: rgba(0, 210, 180, 0.12);
  color: #008775;
  border: 1px solid rgba(0, 210, 180, 0.3);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.badge-dark {
  background: rgba(255, 255, 255, 0.08);
  color: var(--accent-cyan);
  border: 1px solid rgba(0, 210, 180, 0.3);
}

.section-header {
  margin-bottom: 3.5rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--primary-navy);
  margin-top: 0.75rem;
  margin-bottom: 1rem;
}

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

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 720px;
  margin: 0 auto;
}

.section-subtitle.light {
  color: var(--text-dim);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #00D2B4 0%, #009688 100%);
  color: #07192C;
  box-shadow: var(--shadow-cyan);
  font-weight: 700;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px -4px rgba(0, 210, 180, 0.45);
  background: linear-gradient(135deg, #0ce9c8 0%, #00a896 100%);
}

.btn-navy {
  background: var(--primary-navy);
  color: var(--text-white);
}

.btn-navy:hover {
  background: var(--primary-surface);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: transparent;
  color: var(--text-white);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
}

.btn-outline:hover {
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
  background: rgba(0, 210, 180, 0.08);
}

.btn-outline-dark {
  background: transparent;
  color: var(--primary-navy);
  border: 1.5px solid var(--border-light);
}

.btn-outline-dark:hover {
  border-color: var(--primary-navy);
  background: var(--bg-subtle);
}

.btn-whatsapp {
  background: #25D366;
  color: #FFFFFF;
}

.btn-whatsapp:hover {
  background: #20BD5A;
  box-shadow: 0 8px 20px -3px rgba(37, 211, 102, 0.4);
}

.btn-sm {
  padding: 0.55rem 1.1rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 1.05rem 2.2rem;
  font-size: 1.05rem;
}

/* ==========================================================================
   TOP BAR & HEADER
   ========================================================================== */
.top-bar {
  background: var(--primary-deep);
  color: var(--text-dim);
  font-size: 0.82rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.top-bar-item svg {
  color: var(--accent-cyan);
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 25, 47, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all var(--transition-fast);
}

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

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.logo-shield {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--accent-cyan) 0%, #0284C7 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #07192C;
  box-shadow: 0 4px 12px rgba(0, 210, 180, 0.3);
}

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

.logo-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--text-white);
  line-height: 1.1;
}

.logo-subtitle {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--accent-cyan);
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: var(--text-light);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 0.3rem 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--accent-cyan);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent-cyan);
  border-radius: 2px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-white);
  cursor: pointer;
  padding: 0.4rem;
}

/* ==========================================================================
   HERO SECTION (HOME PAGE SLIDER)
   ========================================================================== */
.hero-slider-wrapper {
  position: relative;
  background: var(--primary-deep);
  color: var(--text-white);
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-slider-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 30%, rgba(0, 210, 180, 0.12) 0%, transparent 60%),
              radial-gradient(circle at 20% 80%, rgba(2, 132, 199, 0.15) 0%, transparent 65%);
  pointer-events: none;
}

.slider-container {
  width: 100%;
  position: relative;
}

.hero-slide {
  display: none;
  animation: fadeInSlide 0.6s ease-out forwards;
  padding: 4.5rem 0;
}

.hero-slide.active {
  display: block;
}

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

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.3rem, 4.2vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-white);
  margin-top: 1rem;
  margin-bottom: 1.25rem;
}

.hero-subheading {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--accent-cyan);
  margin-bottom: 1.2rem;
  line-height: 1.35;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-card-glow {
  position: relative;
  width: 100%;
  max-width: 440px;
  background: rgba(19, 45, 78, 0.65);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 210, 180, 0.25);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.card-spec-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.card-spec-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.card-spec-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(0, 210, 180, 0.15);
  color: var(--accent-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card-spec-text h4 {
  color: var(--text-white);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.card-spec-text p {
  color: var(--text-dim);
  font-size: 0.82rem;
  line-height: 1.4;
}

/* Slider Controls */
.slider-controls {
  position: absolute;
  bottom: 2rem;
  left: 0;
  width: 100%;
  z-index: 10;
}

.slider-controls-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.slider-dots {
  display: flex;
  gap: 0.6rem;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.25);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.slider-dot.active {
  width: 32px;
  background: var(--accent-cyan);
}

.slider-arrows {
  display: flex;
  gap: 0.6rem;
}

.slider-arrow {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.slider-arrow:hover {
  background: var(--accent-cyan);
  color: var(--primary-deep);
  border-color: var(--accent-cyan);
}

/* ==========================================================================
   QUICK TRUST STRIP
   ========================================================================== */
.trust-strip {
  background: var(--primary-surface);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0;
  color: var(--text-light);
}

.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.trust-strip-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.trust-strip-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(0, 210, 180, 0.12);
  color: var(--accent-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-strip-text {
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text-white);
}

/* ==========================================================================
   CARDS & GRIDS (CORE CLEANING + 10 SPECIALIZED SERVICES)
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.75rem;
}

.service-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(0, 210, 180, 0.4);
}

.service-card-header {
  padding: 1.75rem 1.75rem 1rem;
  position: relative;
}

.service-number-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: rgba(10, 25, 47, 0.1);
}

.service-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(0, 210, 180, 0.15) 0%, rgba(2, 132, 199, 0.15) 100%);
  color: #008775;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: all var(--transition-fast);
}

.service-card:hover .service-icon-box {
  background: linear-gradient(135deg, var(--accent-cyan) 0%, #0284C7 100%);
  color: #07192C;
}

.service-card-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-navy);
  line-height: 1.25;
  margin-bottom: 0.4rem;
}

.service-card-tagline {
  font-size: 0.85rem;
  font-weight: 600;
  color: #0284C7;
  margin-bottom: 0.75rem;
}

.service-card-body {
  padding: 0 1.75rem 1.5rem;
  flex-grow: 1;
}

.service-card-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.scope-title {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary-navy);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.scope-list {
  margin-bottom: 1.25rem;
}

.scope-item {
  font-size: 0.85rem;
  color: var(--text-secondary);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
}

.scope-item svg {
  color: var(--accent-emerald);
  flex-shrink: 0;
  margin-top: 3px;
}

.ideal-for-box {
  background: var(--bg-subtle);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.ideal-for-box strong {
  color: var(--primary-navy);
}

.service-card-footer {
  padding: 1.25rem 1.75rem;
  background: #FAFBFD;
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Service Card Image Thumbnail */
.service-card-image {
  width: 100%;
  height: 190px;
  background: #EDF2F7;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid var(--border-light);
}

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

.service-card:hover .service-card-image img {
  transform: scale(1.04);
}

.image-tag-badge,
.image-sketch-badge {
  position: absolute;
  bottom: 0.65rem;
  right: 0.75rem;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(10, 25, 47, 0.85);
  color: var(--accent-cyan);
  padding: 3px 9px;
  border-radius: 4px;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(0, 210, 180, 0.35);
  pointer-events: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

/* Core Service Card & Image */
.core-service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.core-service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(0, 210, 180, 0.4);
}

.core-card-image {
  width: 100%;
  height: 180px;
  background: #EDF2F7;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid var(--border-light);
}

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

.core-service-card:hover .core-card-image img {
  transform: scale(1.04);
}

.core-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

/* Hero Visual Box */
.hero-visual-box,
.hero-sketch-box {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0, 210, 180, 0.35);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 25px rgba(0, 210, 180, 0.12);
  margin-bottom: 1.25rem;
  background: #0B1E36;
}

.hero-visual-box img,
.hero-sketch-box img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

/* Page Section Visual Boxes (About, Contact, Book) */
.page-visual-box,
.page-sketch-box {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--border-light);
  box-shadow: var(--shadow-md);
  background: #FFFFFF;
}

.page-visual-box img,
.page-sketch-box img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

/* ==========================================================================
   11 PILLARS SECTION
   ========================================================================== */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.pillar-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: all var(--transition-fast);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.pillar-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 210, 180, 0.4);
  transform: translateY(-3px);
}

.pillar-num {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(0, 210, 180, 0.15);
  color: var(--accent-cyan);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pillar-text h4 {
  color: var(--text-white);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.4;
}

/* ==========================================================================
   INTERACTIVE 6-STEP BOOKING ENGINE
   ========================================================================== */
.booking-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-light);
  overflow: hidden;
}

.booking-header {
  background: var(--primary-navy);
  color: var(--text-white);
  padding: 2.25rem 2rem;
  text-align: center;
}

.step-indicator-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  background: var(--bg-subtle);
  border-bottom: 1px solid var(--border-light);
  overflow-x: auto;
}

.step-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  opacity: 0.5;
  transition: all var(--transition-fast);
}

.step-item.active {
  opacity: 1;
  font-weight: 700;
}

.step-item.completed {
  opacity: 0.85;
}

.step-badge {
  width: 30px;
  height: 30px;
  border-radius: var(--radius-full);
  background: #CBD5E1;
  color: var(--primary-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
}

.step-item.active .step-badge {
  background: var(--accent-cyan);
  color: #07192C;
  box-shadow: 0 0 10px rgba(0, 210, 180, 0.5);
}

.step-item.completed .step-badge {
  background: var(--accent-emerald);
  color: #FFFFFF;
}

.step-label {
  font-size: 0.85rem;
  white-space: nowrap;
  color: var(--text-primary);
}

.booking-body {
  padding: 2.5rem 2.5rem;
}

.booking-step-content {
  display: none;
}

.booking-step-content.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

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

.form-grid-selectable {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.select-card-radio {
  display: block;
  position: relative;
  cursor: pointer;
}

.select-card-radio input {
  position: absolute;
  opacity: 0;
}

.select-card-box {
  border: 2px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  transition: all var(--transition-fast);
  background: #FFFFFF;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

.select-card-box:hover {
  border-color: #94A3B8;
  transform: translateY(-2px);
}

.select-card-radio input:checked + .select-card-box {
  border-color: var(--accent-cyan);
  background: rgba(0, 210, 180, 0.05);
  box-shadow: 0 4px 15px rgba(0, 210, 180, 0.15);
}

.select-card-box .icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--bg-subtle);
  color: var(--primary-navy);
  display: flex;
  align-items: center;
  justify-content: center;
}

.select-card-radio input:checked + .select-card-box .icon {
  background: var(--accent-cyan);
  color: #07192C;
}

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

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-navy);
  margin-bottom: 0.5rem;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  background: #FFFFFF;
  color: var(--text-primary);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
}

.booking-footer-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
}

/* ==========================================================================
   UAE COVERAGE MAP CONCEPT
   ========================================================================== */
.coverage-box {
  background: var(--primary-deep);
  border-radius: var(--radius-lg);
  padding: 3rem;
  color: var(--text-white);
  position: relative;
  overflow: hidden;
}

.coverage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.emirate-tabs {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.emirate-tab {
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-light);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.emirate-tab.active {
  background: var(--accent-cyan);
  color: var(--primary-deep);
  border-color: var(--accent-cyan);
}

.emirate-content-pane {
  display: none;
}

.emirate-content-pane.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

.coverage-map-visual {
  background: var(--primary-surface);
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 210, 180, 0.2);
  padding: 2rem;
  position: relative;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: var(--primary-deep);
  color: var(--text-dim);
  padding-top: 5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand p {
  font-size: 0.92rem;
  line-height: 1.7;
  margin: 1.25rem 0;
  color: var(--text-dim);
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 1.25rem;
  position: relative;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--accent-cyan);
}

.footer-links li {
  margin-bottom: 0.65rem;
}

.footer-links a {
  color: var(--text-dim);
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--accent-cyan);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  font-size: 0.9rem;
}

.footer-contact-item svg {
  color: var(--accent-cyan);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom {
  padding: 1.75rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
}

/* ==========================================================================
   FLOATING ACTION BUTTON (WHATSAPP & CALL)
   ========================================================================== */
.floating-actions {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 999;
}

.floating-btn {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  box-shadow: var(--shadow-xl);
  transition: all var(--transition-fast);
}

.floating-btn:hover {
  transform: scale(1.08);
}

.floating-whatsapp {
  background: #25D366;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.floating-call {
  background: var(--accent-blue);
  box-shadow: 0 8px 25px rgba(2, 132, 199, 0.4);
}

/* ==========================================================================
   MODAL DIALOG
   ========================================================================== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(7, 17, 30, 0.75);
  backdrop-filter: blur(8px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.modal-overlay.active {
  display: flex;
}

.modal-dialog {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  max-width: 580px;
  width: 100%;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  animation: modalPop 0.3s ease-out;
}

@keyframes modalPop {
  from { transform: scale(0.95); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.modal-header {
  background: var(--primary-navy);
  color: var(--text-white);
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-close {
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1.5rem;
  cursor: pointer;
}

.modal-body {
  padding: 2rem;
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid, .coverage-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .trust-strip-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .top-bar-right {
    display: none;
  }
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--primary-deep);
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .nav-menu.mobile-open {
    display: flex;
  }
  .mobile-toggle {
    display: block;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .trust-strip-grid {
    grid-template-columns: 1fr;
  }
  .step-label {
    display: none;
  }
  .booking-body {
    padding: 1.5rem 1.25rem;
  }
}

/* ==========================================================================
   ANIMATIONS & CAPTCHA VERIFICATION HELPERS
   ========================================================================== */
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.spinner {
  animation: spin 1s linear infinite;
  display: inline-block;
  vertical-align: middle;
}

.booking-turnstile-card, .booking-recaptcha-card {
  transition: all var(--transition-fast);
}

.booking-turnstile-card.has-error, .booking-recaptcha-card.has-error {
  border-color: #EF4444 !important;
  background: #FEF2F2 !important;
}
