/* ============================================================
   WORDCRAFT PRO — Advanced Design System
   Dark Luxury Gold Theme | 2025
   ============================================================ */

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

/* ─── CSS VARIABLES ─── */
:root {
  --gold: #C9A84C;
  --gold-light: #E8C96A;
  --gold-pale: #F5E4B5;
  --gold-dark: #9A7A30;
  --navy: #0D1525;
  --navy-2: #0D1220;
  --navy-3: #111827;
  --navy-4: #1A2235;
  --navy-5: #243050;
  --white: #FFFFFF;
  --white-80: rgba(255,255,255,0.8);
  --white-60: rgba(255,255,255,0.6);
  --white-30: rgba(255,255,255,0.3);
  --white-10: rgba(255,255,255,0.1);
  --white-05: rgba(255,255,255,0.05);
  --gold-10: rgba(201,168,76,0.1);
  --gold-20: rgba(201,168,76,0.2);
  --gold-30: rgba(201,168,76,0.3);
  --text-primary: #F8F5EE;
  --text-secondary: #B8B3A8;
  --text-muted: #706B62;
  --border: rgba(201,168,76,0.2);
  --border-subtle: rgba(255,255,255,0.08);
  --shadow-gold: 0 0 40px rgba(201,168,76,0.15);
  --shadow-deep: 0 25px 80px rgba(0,0,0,0.6);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --font-display: 'Syne', sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.7;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: var(--font-body); border: none; background: none; }
ul { list-style: none; }

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* ─── SELECTION ─── */
::selection { background: var(--gold-30); color: var(--white); }

/* ─── NOISE TEXTURE OVERLAY ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.display-xl {
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.display-lg {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 400;
  line-height: 1;
}

.display-md {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 500;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.body-lg { font-size: 1.125rem; line-height: 1.8; }
.body-sm { font-size: 0.875rem; }

/* ─── GOLD GRADIENT TEXT ─── */
.gold-text {
  background: linear-gradient(135deg, var(--gold-pale) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── CONTAINER ─── */
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
}

.container-wide {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
}

/* ─── SECTIONS ─── */
section { position: relative; }

.section-pad { padding: clamp(5rem, 10vw, 9rem) 0; }
.section-pad-sm { padding: clamp(3rem, 6vw, 5rem) 0; }

/* ─── DIVIDER ─── */
.gold-divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 1.5rem 0;
}

.gold-divider.center { margin: 1.5rem auto; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.875rem 2rem;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s;
}

.btn:hover::before { opacity: 1; }

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--navy);
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(201,168,76,0.3);
}

.btn-gold::before { background: linear-gradient(135deg, var(--gold-light), var(--gold)); }

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.4);
}

.btn-outline {
  border: 1px solid var(--border);
  color: var(--gold);
  background: transparent;
}

.btn-outline::before { background: var(--gold-10); }

.btn-outline:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.btn-glass {
  background: var(--white-10);
  backdrop-filter: blur(10px);
  border: 1px solid var(--white-20);
  color: var(--white);
}

.btn-glass:hover {
  background: var(--white-20);
  transform: translateY(-2px);
}

.btn-lg { padding: 1.1rem 2.5rem; font-size: 1rem; }
.btn-sm { padding: 0.6rem 1.4rem; font-size: 0.8rem; }

.btn-icon {
  width: 40px;
  height: 40px;
  padding: 0;
  justify-content: center;
  border-radius: 50%;
}

/* ─── CARDS ─── */
.card {
  background: var(--navy-3);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-10) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}

.card:hover {
  border-color: var(--border);
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}

.card:hover::before { opacity: 1; }

.card-glass {
  background: rgba(13,18,32,0.7);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
}

/* ─── TAGS ─── */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.tag-gold {
  background: var(--gold-10);
  border: 1px solid var(--gold-30);
  color: var(--gold);
}

/* ─── NAVBAR ─── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
  padding: 0;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

.navbar.scrolled .navbar-inner {
  background: rgba(8,12,24,0.95);
  backdrop-filter: blur(20px);
  border-bottom-color: var(--border-subtle);
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.navbar-logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
}

.navbar-logo-text {
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 1;
}

.navbar-logo-text strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.01em;
}

.navbar-logo-text span {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  padding: 0.5rem 0.875rem;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--white-80);
  border-radius: 6px;
  transition: var(--transition);
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--gold);
  background: var(--gold-10);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 220px;
  background: var(--navy-3);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-deep);
  backdrop-filter: blur(20px);
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 0.875rem;
  border-radius: 8px;
  font-size: 0.85rem;
  color: var(--white-80);
  transition: background 0.2s, color 0.2s;
}

.nav-dropdown-link:hover {
  background: var(--gold-10);
  color: var(--gold);
}

.nav-dropdown-link svg {
  width: 16px;
  height: 16px;
  opacity: 0.6;
  flex-shrink: 0;
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.navbar-erp {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gold);
  transition: var(--transition);
}

.navbar-erp:hover {
  background: var(--gold-10);
  border-color: var(--gold);
}

.navbar-erp svg { width: 14px; height: 14px; }

.navbar-whatsapp {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.1rem;
  background: #25D366;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: white;
  transition: var(--transition);
}

.navbar-whatsapp:hover {
  background: #1da851;
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 72px 0 0 0;
  background: rgba(8,12,24,0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  padding: 2rem 1.5rem;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu.open { transform: translateX(0); }

.mobile-nav-link {
  display: block;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--white-80);
  transition: color 0.2s;
}

.mobile-nav-link:hover { color: var(--gold); }

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video-wrap iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 177.78vh;
  height: 100%;
  min-width: 100%;
  min-height: 56.25vw;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8,12,24,0.92) 0%,
    rgba(8,12,24,0.75) 50%,
    rgba(8,12,24,0.85) 100%
  );
  z-index: 1;
}

.hero-overlay-2 {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(201,168,76,0.08) 0%, transparent 60%);
  z-index: 1;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 120px;
  padding-bottom: 80px;
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.25rem;
  background: var(--gold-10);
  border: 1px solid var(--gold-30);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  margin-top: 0;
  clear: both;
  animation: fadeInDown 0.8s 0.2s both;
  position: relative;
  z-index: 3;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: var(--white);
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.9s 0.3s both;
}

.hero-title em {
  font-style: italic;
  font-weight: 400;
}

.hero-title .hero-rotate-word {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold-pale) 0%, var(--gold) 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--white-60);
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.9s 0.4s both;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 4rem;
  animation: fadeInUp 0.9s 0.5s both;
}

.hero-trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  animation: fadeInUp 0.9s 0.6s both;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.hero-trust-icon {
  width: 36px;
  height: 36px;
  background: var(--gold-10);
  border: 1px solid var(--gold-30);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.hero-trust-text strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  font-family: var(--font-display);
}

.hero-trust-text span {
  font-size: 0.7rem;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  animation: fadeIn 1s 1s both;
  z-index: 2;
}

.hero-scroll span {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-30);
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
  0% { transform: scaleY(0); transform-origin: top; }
  40% { transform: scaleY(1); transform-origin: top; }
  60% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ─── STATS STRIP ─── */
.stats-strip {
  background: linear-gradient(135deg, var(--navy-3) 0%, var(--navy-4) 100%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}

.stats-strip::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  padding: 1.5rem 2rem;
  text-align: center;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--border-subtle);
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ─── SERVICES ─── */
.services-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 5rem;
}

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

.service-card {
  background: var(--navy-3);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.4s;
}

.service-card:hover {
  border-color: var(--border);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), var(--shadow-gold);
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--gold-10), var(--gold-20));
  border: 1px solid var(--gold-30);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.75rem;
  color: var(--gold);
  font-size: 1.5rem;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  transform: scale(1.1);
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.service-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}

.service-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: gap 0.3s;
}

.service-link svg { width: 14px; height: 14px; transition: transform 0.3s; }
.service-card:hover .service-link { gap: 0.75rem; }
.service-card:hover .service-link svg { transform: translateX(3px); }

/* ─── EMIRATES ─── */
.emirates-section {
  background: var(--navy-2);
}

.emirates-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.emirates-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.emirate-tab {
  padding: 0.6rem 1.4rem;
  border: 1px solid var(--border-subtle);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition);
  background: transparent;
}

.emirate-tab:hover { border-color: var(--gold-30); color: var(--gold); }
.emirate-tab.active { background: var(--gold-10); border-color: var(--gold); color: var(--gold); }

.emirates-content { display: none; }
.emirates-content.active { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }

.emirate-info-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 1rem;
}

.emirate-info-desc {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.emirate-services-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.emirate-service-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--text-primary);
}

.emirate-service-item::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.emirate-visual {
  position: relative;
  height: 400px;
}

.emirate-card-stack {
  position: relative;
  height: 100%;
}

.emirate-main-card {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy-4) 0%, var(--navy-5) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.emirate-bg-number {
  position: absolute;
  top: -20px;
  right: -20px;
  font-family: var(--font-display);
  font-size: 12rem;
  font-weight: 700;
  color: var(--white-05);
  line-height: 1;
  pointer-events: none;
}

.emirate-card-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.emirate-card-sub { color: var(--text-secondary); font-size: 0.875rem; }

/* ─── WHY US ─── */
.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.why-us-left {}

.why-us-items { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 3rem; }

.why-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--navy-3);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: default;
}

.why-item:hover {
  border-color: var(--border);
  background: var(--navy-4);
  transform: translateX(6px);
}

.why-item-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold-30);
  line-height: 1;
  flex-shrink: 0;
  width: 40px;
}

.why-item-content {}

.why-item-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.why-item-desc { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.7; }

.why-us-right { position: relative; }

.why-visual {
  background: linear-gradient(135deg, var(--navy-3), var(--navy-4));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.why-visual-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.15) 0%, transparent 70%);
  top: -100px;
  right: -100px;
}

.why-certifications { display: flex; flex-direction: column; gap: 1rem; position: relative; }

.cert-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--white-05);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  transition: var(--transition);
}

.cert-item:hover { border-color: var(--gold-30); background: var(--gold-10); }

.cert-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.cert-name { font-weight: 600; font-size: 0.9rem; color: var(--white); }
.cert-desc { font-size: 0.775rem; color: var(--text-secondary); }

/* ─── PROCESS ─── */
.process-section { background: var(--navy-2); }

.process-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 5rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 44px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-30), transparent);
}

.process-step {
  text-align: center;
  padding: 0 1.5rem;
  position: relative;
}

.process-step-num {
  width: 88px;
  height: 88px;
  border: 1px solid var(--gold-30);
  border-radius: 50%;
  background: var(--navy-3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold);
  position: relative;
  transition: var(--transition);
  z-index: 1;
}

.process-step:hover .process-step-num {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  border-color: var(--gold);
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(201,168,76,0.3);
}

.process-step-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.process-step-desc { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.7; }

/* ─── PACKAGES ─── */
.packages-header { text-align: center; max-width: 650px; margin: 0 auto 5rem; }

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.package-card {
  background: var(--navy-3);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.package-card.featured {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(201,168,76,0.08) 0%, var(--navy-3) 100%);
  transform: scale(1.04);
}

.package-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem 1.5rem;
  border-radius: 0 var(--radius-lg) 0 var(--radius);
}

.package-type {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.package-name {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.package-tagline {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-subtle);
}

.package-features { display: flex; flex-direction: column; gap: 0.875rem; margin-bottom: 2rem; }

.package-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--text-primary);
}

.package-feature-icon {
  width: 20px;
  height: 20px;
  background: var(--gold-10);
  border: 1px solid var(--gold-30);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 0.65rem;
}

/* ─── CLIENTS ─── */
.clients-section { background: var(--navy-2); }

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

.clients-marquee-wrap { overflow: hidden; position: relative; }

.clients-marquee-wrap::before,
.clients-marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 15%;
  z-index: 2;
  pointer-events: none;
}

.clients-marquee-wrap::before { left: 0; background: linear-gradient(90deg, var(--navy-2), transparent); }
.clients-marquee-wrap::after { right: 0; background: linear-gradient(-90deg, var(--navy-2), transparent); }

.clients-marquee {
  display: flex;
  gap: 3rem;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.clients-marquee-2 {
  animation: marquee 30s linear infinite reverse;
  margin-top: 1.5rem;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  background: var(--navy-3);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  min-width: 150px;
  height: 60px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white-30);
  transition: var(--transition);
  white-space: nowrap;
}

.client-logo:hover { border-color: var(--gold-30); color: var(--gold); }

/* ─── TESTIMONIALS ─── */
.testimonials-header { text-align: center; max-width: 650px; margin: 0 auto 5rem; }

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

.testimonial-card {
  background: var(--navy-3);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  color: var(--gold);
  font-size: 0.875rem;
  margin-bottom: 1.25rem;
}

.testimonial-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.testimonial-name { font-weight: 600; font-size: 0.9rem; color: var(--white); }
.testimonial-role { font-size: 0.775rem; color: var(--text-muted); }

/* ─── CONTACT / CTA ─── */
.cta-section {
  background: linear-gradient(135deg, var(--navy-3) 0%, var(--navy-4) 100%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
  overflow: hidden;
}

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

.cta-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.1;
}

.cta-sub { color: var(--text-secondary); font-size: 1.1rem; margin-bottom: 2.5rem; }

.cta-form {
  display: flex;
  gap: 0.75rem;
  max-width: 480px;
  margin: 0 auto 2rem;
}

.cta-input {
  flex: 1;
  padding: 0.875rem 1.25rem;
  background: var(--white-05);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--white);
  font-family: var(--font-body);
  transition: border-color 0.3s;
}

.cta-input::placeholder { color: var(--text-muted); }
.cta-input:focus { outline: none; border-color: var(--gold-30); }

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

.contact-card {
  background: var(--white-05);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 1.75rem;
  text-align: center;
  transition: var(--transition);
}

.contact-card:hover {
  border-color: var(--gold-30);
  background: var(--gold-10);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--navy);
  font-size: 1.3rem;
}

.contact-card-title { font-weight: 600; color: var(--white); margin-bottom: 0.25rem; }
.contact-card-val { font-size: 0.875rem; color: var(--text-secondary); }

/* ─── FOOTER ─── */
.footer {
  background: var(--navy);
  border-top: 1px solid var(--border-subtle);
  padding: 5rem 0 2rem;
}

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

.footer-brand-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin: 1.25rem 0 1.5rem;
  max-width: 300px;
}

.footer-socials { display: flex; gap: 0.75rem; }

.social-btn {
  width: 38px;
  height: 38px;
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 0.875rem;
  transition: var(--transition);
}

.social-btn:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-10); }

.footer-col-title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.footer-links { display: flex; flex-direction: column; gap: 0.75rem; }

.footer-link {
  font-size: 0.875rem;
  color: var(--text-secondary);
  transition: color 0.2s;
}

.footer-link:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright { font-size: 0.8rem; color: var(--text-muted); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.8rem; color: var(--text-muted); transition: color 0.2s; }
.footer-legal a:hover { color: var(--gold); }

/* ─── WHATSAPP WIDGET ─── */
.wa-widget {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
}

.wa-chat-box {
  background: var(--navy-3);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  width: 300px;
  box-shadow: var(--shadow-deep);
  transform: scale(0.9) translateY(10px);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  transform-origin: bottom right;
}

.wa-chat-box.open {
  transform: scale(1) translateY(0);
  opacity: 1;
  visibility: visible;
}

.wa-chat-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-subtle);
}

.wa-avatar {
  width: 44px;
  height: 44px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.wa-name { font-weight: 600; font-size: 0.9rem; }
.wa-status {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: #25D366;
}

.wa-status::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #25D366;
  border-radius: 50%;
}

.wa-message {
  background: var(--navy-4);
  border-radius: 12px 12px 12px 4px;
  padding: 0.875rem 1rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.wa-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  padding: 0.875rem;
  background: #25D366;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.875rem;
  color: white;
  transition: background 0.2s;
}

.wa-cta-btn:hover { background: #1da851; }

.wa-btn {
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.6rem;
  box-shadow: 0 8px 25px rgba(37,211,102,0.4);
  transition: var(--transition);
  cursor: pointer;
  border: none;
  position: relative;
}

.wa-btn:hover { transform: scale(1.1); box-shadow: 0 12px 35px rgba(37,211,102,0.5); }

.wa-btn-ripple {
  position: absolute;
  inset: -8px;
  border: 2px solid rgba(37,211,102,0.3);
  border-radius: 50%;
  animation: ripple 2s ease-out infinite;
}

@keyframes ripple {
  0% { transform: scale(0.9); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}

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

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Scroll reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal="left"] { transform: translateX(-40px); }
[data-reveal="left"].revealed { transform: translateX(0); }

[data-reveal="right"] { transform: translateX(40px); }
[data-reveal="right"].revealed { transform: translateX(0); }

[data-reveal="scale"] { transform: scale(0.9); }
[data-reveal="scale"].revealed { transform: scale(1); }

[data-delay="1"] { transition-delay: 0.1s; }
[data-delay="2"] { transition-delay: 0.2s; }
[data-delay="3"] { transition-delay: 0.3s; }
[data-delay="4"] { transition-delay: 0.4s; }
[data-delay="5"] { transition-delay: 0.5s; }
[data-delay="6"] { transition-delay: 0.6s; }

/* ─── PAGE TRANSITIONS ─── */
.page-transition {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 99999;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.7, 0, 0.3, 1);
}

.page-transition.active { transform: translateY(0); }
.page-transition.exit { transform: translateY(-100%); }

/* ─── INNER PAGE HERO ─── */
.inner-hero {
  padding: 9rem 0 5rem;
  background: linear-gradient(180deg, var(--navy-3) 0%, var(--navy) 100%);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
  overflow: hidden;
}

.inner-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(201,168,76,0.07) 0%, transparent 60%);
  pointer-events: none;
}

.inner-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.1;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: var(--text-muted); }

/* ─── BLOG ─── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.blog-card {
  background: var(--navy-3);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
  display: block;
}

.blog-card:hover {
  border-color: var(--border);
  transform: translateY(-6px);
  box-shadow: var(--shadow-deep);
}

.blog-card-img {
  height: 200px;
  background: linear-gradient(135deg, var(--navy-4) 0%, var(--navy-5) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
  overflow: hidden;
}

.blog-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(201,168,76,0.1));
}

.blog-card-body { padding: 1.75rem; }

.blog-category {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.blog-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.blog-excerpt { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 1.25rem; }

.blog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.775rem;
  color: var(--text-muted);
}

/* ─── FAQ ─── */
.faq-grid { max-width: 800px; margin: 0 auto; }

.faq-item {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item:hover { border-color: var(--gold-30); }
.faq-item.open { border-color: var(--gold-30); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--white);
  background: transparent;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s;
}

.faq-q:hover { background: var(--white-05); }

.faq-icon {
  width: 28px;
  height: 28px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  font-size: 1rem;
  transition: transform 0.3s, background 0.3s;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--gold-10);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.open .faq-a { max-height: 400px; }

.faq-a-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ─── OFFICE CARDS ─── */
.office-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.office-card {
  background: var(--navy-3);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
}

.office-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
}

.office-flag { font-size: 1.5rem; margin-bottom: 1rem; }

.office-city {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.office-address { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.7; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1200px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1024px) {
  .packages-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .package-card.featured { transform: scale(1); }
  .why-us-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  .contact-cards { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .navbar-nav { display: none; }
  .navbar-actions .navbar-erp { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: block; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2)::after { display: none; }
  .emirate-content.active { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: clamp(2.8rem, 10vw, 4.5rem); }
  .office-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .emirates-content.active { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-trust { flex-direction: column; }
  .cta-form { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .wa-chat-box { width: 280px; }
}

/* ─── LOGO IMAGE ─── */
.navbar-logo-img {
  height: 48px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
  filter: brightness(1.05);
}

/* ─── OFFICE PHONE ─── */
.office-phone {
  font-size: 12px;
  color: var(--gold);
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ─── VIDEO FIX — pointer events & aspect ratio ─── */
.hero-video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.hero-video-wrap iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw; /* 16:9 */
  min-height: 100vh;
  min-width: 177.78vh; /* 16:9 */
  transform: translate(-50%, -50%);
  border: none;
  pointer-events: none;
}

/* ─── IMPROVE READABILITY — lighter cards ─── */
.service-card, .why-card, .package-card, .testimonial-card {
  background: rgba(22, 32, 64, 0.85) !important;
}

/* ─── FONT IMPROVEMENTS ─── */
h1, h2, h3, h4 {
  letter-spacing: -0.02em;
}
.stat-number {
  font-family: var(--font-display);
  font-weight: 700;
}

/* ─── MOBILE IMPROVEMENTS ─── */
@media (max-width: 768px) {
  .hero-title { font-size: clamp(2.2rem, 9vw, 3.5rem) !important; }
  .hero-badge { font-size: 11px; padding: 6px 14px; white-space: normal; text-align: center; }
  .hero-ctas { flex-direction: column; gap: 12px; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .hero-trust { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1px; }
  .stat-item { padding: 1.5rem 1rem; }
  .stat-number { font-size: clamp(2rem, 8vw, 3rem) !important; }
  .section-title { font-size: clamp(1.8rem, 7vw, 2.8rem) !important; }
  .services-grid { grid-template-columns: 1fr !important; }
  .navbar-nav { display: none; }
  .emirate-tabs { flex-wrap: wrap; gap: 8px; }
  .emirate-tab { font-size: 12px; padding: 8px 14px; }
  .package-grid, .packages-grid { grid-template-columns: 1fr !important; }
  .testimonials-grid { grid-template-columns: 1fr !important; }
  .footer-grid { grid-template-columns: 1fr !important; }
  .why-grid { grid-template-columns: 1fr !important; }
  .process-steps { grid-template-columns: 1fr !important; }
  .cta-form { flex-direction: column; }
  .contact-cards { grid-template-columns: 1fr !important; }
}

@media (max-width: 480px) {
  .hero { min-height: 100svh; }
  .hero-content { padding-top: 100px; padding-bottom: 60px; }
  .navbar { height: 60px; }
  .hero-trust { grid-template-columns: 1fr 1fr; }
  .hero-trust-item { padding: 10px; }
}

/* ─── STAT NUMBER FORMAT ─── */
.stat-item::after {
  content: '';
}

/* ─── FONT OVERRIDES — No italic headings ─── */
h1, h2, h3, h4, h5, h6,
.section-title, .hero-title, .display-md, .display-lg,
.inner-hero-title, .cta-title, .pkg-name, .stat-number {
  font-family: 'Syne', sans-serif !important;
  font-style: normal !important;
}

h1 em, h2 em, h3 em, h4 em,
.section-title em, .hero-title em, .cta-title em,
.inner-hero-title em, .display-md em {
  font-style: normal !important;
  color: var(--gold);
  font-weight: 700;
}

body, p, span, a, li, input, textarea, select, button {
  font-family: 'Inter', system-ui, sans-serif;
}

/* ─── SPEED: remove heavy animations on mobile ─── */
@media (max-width: 768px) {
  * { animation-duration: 0.2s !important; }
  .hero-video-wrap { display: none; }
  .hero { background: linear-gradient(135deg, #0D1525 0%, #162040 50%, #0D1525 100%); }
}

/* ─── BACK BUTTON FIX — don't cover page on load ─── */
.page-transition {
  pointer-events: none !important;
}
.page-transition.exit {
  display: none !important;
}

/* ─── HERO VIDEO FALLBACK (shows when video unavailable) ─── */
.hero-video-fallback {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(201,168,76,0.08) 0%, transparent 70%),
    linear-gradient(135deg, #0A1020 0%, #0D1830 30%, #0A1525 60%, #080E1A 100%);
  z-index: 0;
}


/* ─── PAGE TRANSITION — NEVER BLOCK CONTENT ─── */
.page-transition {
  display: none !important;
  pointer-events: none !important;
  opacity: 0 !important;
}

/* ─── COUNTER FIX — solid color so JS textContent works ─── */
.stats-bar-num,
[data-count],
[data-target] {
  color: var(--gold) !important;
  -webkit-text-fill-color: var(--gold) !important;
  background: none !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
}

/* ═══════════════════════════════════════
   CHROME FIX v6 — Critical overrides
   ═══════════════════════════════════════ */

/* Ensure ALL anchor tags are clickable */
a, a:link, a:visited, button {
  pointer-events: auto !important;
  cursor: pointer !important;
}

/* Hero layout fix — clear navbar overlap */
.hero-content {
  padding-top: 140px !important;
  max-width: 860px;
}

/* Badge: always on its own line, never next to navbar */
.hero-badge {
  display: table !important;
  margin-bottom: 1.5rem !important;
}

/* Title sizing — prevent overflow cut-off */
.hero-title {
  font-size: clamp(2.5rem, 5.5vw, 5rem) !important;
  line-height: 1.05 !important;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Nav dropdown — Chrome hover fix */
.nav-dropdown-menu {
  display: none !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  display: block !important;
}

/* Remove any accidental pointer-events blocks on links */
.navbar a, .navbar button, 
nav a, .hero-ctas a,
.btn, .service-card, .mobile-nav-link {
  pointer-events: auto !important;
}

/* ═══════════════════════════════════════
   ANIMATED HERO BACKGROUND (replaces video)
   ═══════════════════════════════════════ */
.hero-animated-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 120% 80% at 60% 30%, #0D1B3E 0%, #080C18 60%, #050810 100%);
  overflow: hidden;
}
.hero-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  animation: orbFloat 12s ease-in-out infinite;
}
.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.3) 0%, transparent 70%);
  top: -100px; right: -100px;
  animation-delay: 0s; animation-duration: 15s;
}
.orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(30,60,120,0.5) 0%, transparent 70%);
  bottom: -50px; left: 10%;
  animation-delay: -5s; animation-duration: 12s;
}
.orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(201,168,76,0.15) 0%, transparent 70%);
  top: 40%; left: 40%;
  animation-delay: -8s; animation-duration: 18s;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -40px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}
.hero-bg-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* ═══════════════════════════════════════
   CENTERED HERO
   ═══════════════════════════════════════ */
.hero-centered {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-centered .hero-badge {
  margin-left: auto;
  margin-right: auto;
}
.hero-centered .hero-title {
  text-align: center;
  max-width: 900px;
}
.hero-centered .hero-sub {
  text-align: center;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.hero-centered .hero-ctas {
  justify-content: center;
}
.hero-centered .hero-trust {
  justify-content: center;
}

/* ═══════════════════════════════════════
   EMIRATE CARD WITH REAL IMAGES
   ═══════════════════════════════════════ */
.emirate-main-card {
  position: relative;
  overflow: hidden;
  padding: 0;
}
.emirate-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: var(--radius-lg);
  transition: transform 0.6s ease;
}
.emirate-main-card:hover .emirate-card-img {
  transform: scale(1.05);
}
.emirate-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(8,12,24,0.95) 0%, rgba(8,12,24,0.6) 60%, transparent 100%);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}
.emirate-card-overlay .emirate-card-title {
  font-size: 1.6rem;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0.3rem;
}
.emirate-card-overlay .emirate-card-sub {
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
}

/* Mobile: hide video wrap on small screens */
@media (max-width: 768px) {
  .hero-video-wrap { display: block; }
  .hero-animated-bg { display: block; }
  .emirate-card-img { height: 250px; object-fit: cover; }
}

/* ═══════════════════════════════════════
   HERO SPLIT LAYOUT v8
   ═══════════════════════════════════════ */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: 100vh;
  padding: 120px 0 60px;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}
.hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero-left .hero-badge { margin-left: 0; }
.hero-left .hero-title { text-align: left; }
.hero-left .hero-sub { text-align: left; margin-left: 0; }
.hero-left .hero-ctas { justify-content: flex-start; }
.hero-left .hero-trust { justify-content: flex-start; }

/* RIGHT SIDE VISUAL PANEL */
.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-right-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 24px;
  padding: 1.5rem;
  width: 100%;
  max-width: 420px;
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  animation: floatCard 6s ease-in-out infinite;
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

/* Stats row */
.hero-stats-card {
  background: rgba(201,168,76,0.06);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.hero-stat-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding-bottom: 0.6rem;
}
.hero-stat-row:last-child { border-bottom: none; padding-bottom: 0; }
.hsr-num {
  font-family: 'Syne', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
}
.hsr-lbl {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Service pills */
.hero-service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.hsp {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  padding: 0.3rem 0.75rem;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  transition: all 0.2s;
}
.hsp:hover {
  background: rgba(201,168,76,0.12);
  border-color: rgba(201,168,76,0.3);
  color: var(--gold);
}

/* UAE map dots */
.hero-map-visual {
  position: relative;
  height: 120px;
  background: 
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(201,168,76,0.06) 0%, transparent 70%),
    rgba(255,255,255,0.02);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
}
.hero-map-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: mapPulse 2.5s ease-in-out infinite;
}
.hero-map-dot::after {
  content: attr(data-city);
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 9px;
  color: rgba(255,255,255,0.6);
  white-space: nowrap;
  font-weight: 500;
}
.hero-map-dot:nth-child(2) { animation-delay: 0.4s; }
.hero-map-dot:nth-child(3) { animation-delay: 0.8s; }
.hero-map-dot:nth-child(4) { animation-delay: 1.2s; }
.hero-map-dot:nth-child(5) { animation-delay: 1.6s; }
@keyframes mapPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,168,76,0.6); }
  50% { box-shadow: 0 0 0 8px rgba(201,168,76,0); }
}
.hero-uae-label {
  position: absolute;
  bottom: 8px;
  right: 12px;
  font-size: 9px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* Badge bottom of card */
.hero-right-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.45);
  padding: 0 0.25rem;
}

/* Mobile */
@media (max-width: 900px) {
  .hero-split {
    grid-template-columns: 1fr;
    padding: 110px 0 60px;
    gap: 2rem;
  }
  .hero-right { display: none; }
  .hero-left .hero-title { text-align: center; }
  .hero-left .hero-sub { text-align: center; margin: 0 auto; }
  .hero-left .hero-badge { margin: 0 auto; }
  .hero-left .hero-ctas { justify-content: center; }
  .hero-left .hero-trust { justify-content: center; }
  .hero-left { align-items: center; }
}

/* ═══════════════════════════════════════
   TEAM PHOTO CARDS
   ═══════════════════════════════════════ */
.team-avatar-photo {
  width: 100%;
  height: 180px !important;
  border-radius: 12px !important;
  overflow: hidden;
  margin-bottom: 1rem;
  background: var(--navy-4);
}
.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.4s ease;
}
.team-card:hover .team-photo {
  transform: scale(1.05);
}

/* ═══════════════════════════════════════
   CRITICAL FIX v9: Hero always visible
   Hero elements must never start hidden
   ═══════════════════════════════════════ */
.hero [data-reveal],
.hero-split [data-reveal],
.hero-left,
.hero-right,
.hero-title,
.hero-sub,
.hero-badge,
.hero-ctas,
.hero-trust,
.hero-content,
.hero-content * {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
  transition: none !important;
}

/* Keep animations only for non-hero sections */
.stats-strip [data-reveal],
.services-section [data-reveal],
.why-us-section [data-reveal],
section:not(.hero) [data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
section:not(.hero) [data-reveal].revealed {
  opacity: 1;
  transform: none;
}

/* Hero right card - fix overflow and position */
.hero-right {
  align-self: center;
  overflow: visible;
}
.hero-right-card {
  position: relative;
  z-index: 2;
}

/* Fix hero split layout - ensure right side shows */
.hero-split {
  position: relative;
  z-index: 2;
}

/* Hero text colors - ensure white not grey */
.hero-title {
  color: #FFFFFF !important;
  opacity: 1 !important;
}
.hero-sub {
  color: rgba(255,255,255,0.75) !important;
  opacity: 1 !important;
}

/* ═══════════════════════════════════════
   HERO v10 — Clean Split + City Image
   ═══════════════════════════════════════ */

/* Remove old overlay conflicts */
.hero-overlay, .hero-overlay-2, .hero-grid-bg { display: none; }

/* Animated BG sits as section background */
.hero { position: relative; overflow: hidden; background: #080C18; }
.hero-animated-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* Split layout */
.hero-split {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 3rem !important;
  align-items: center !important;
  min-height: 100vh !important;
  padding: 120px 0 60px !important;
  position: relative;
  z-index: 1;
}

/* Left side */
.hero-left {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  opacity: 1 !important;
  transform: none !important;
}
.hero-left .hero-title {
  text-align: left !important;
  opacity: 1 !important;
  color: #fff !important;
  font-size: clamp(2.5rem, 4.5vw, 5rem) !important;
  font-weight: 700 !important;
  line-height: 1.1 !important;
  margin-bottom: 1.5rem !important;
}
.hero-left .hero-badge { margin-left: 0 !important; }
.hero-left .hero-sub {
  text-align: left !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  opacity: 1 !important;
  color: rgba(255,255,255,0.72) !important;
}
.hero-left .hero-ctas { justify-content: flex-start !important; }
.hero-left .hero-trust { justify-content: flex-start !important; }

/* Right side */
.hero-right {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  opacity: 1 !important;
}
.hero-right-card {
  width: 100% !important;
  max-width: 420px !important;
  background: rgba(255,255,255,0.03) !important;
  border: 1px solid rgba(201,168,76,0.2) !important;
  border-radius: 20px !important;
  padding: 1.25rem !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 0.875rem !important;
  animation: floatCard 6s ease-in-out infinite !important;
}

/* City image */
.hero-img-wrap {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  height: 200px;
}
.hero-city-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  transition: transform 8s ease;
}
.hero-city-img:hover { transform: scale(1.05); }
.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,12,24,0.8) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}
.hero-img-badge {
  background: rgba(201,168,76,0.2);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
  letter-spacing: 0.05em;
}

/* Mobile */
@media (max-width: 900px) {
  .hero-split {
    grid-template-columns: 1fr !important;
    padding: 100px 0 50px !important;
    gap: 2rem !important;
  }
  .hero-right { display: none !important; }
  .hero-left { align-items: center !important; }
  .hero-left .hero-title { text-align: center !important; }
  .hero-left .hero-sub { text-align: center !important; margin: 0 auto !important; }
  .hero-left .hero-ctas { justify-content: center !important; }
  .hero-left .hero-trust { justify-content: center !important; }
}
