/* ===================================
   ODEX Garage Management Software
   style.css — Logo-Driven Design System
   Colors derived from ODEX logo:
   o = Orange  #F5A623
   d = Teal    #00C9A7
   e = Blue    #3BBFEF
   x = Purple  #9B5FCF
   =================================== */

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

/* ===================================
   Color System from ODEX Logo
   =================================== */
:root {
  /* Logo Colors */
  --orange:        #F5A623;
  --orange-dark:   #d98e10;
  --orange-light:  #ffc654;
  --teal:          #00C9A7;
  --teal-dark:     #00a889;
  --teal-light:    #2ddec0;
  --blue:          #3BBFEF;
  --blue-dark:     #1ea3d9;
  --blue-light:    #6dd1f5;
  --purple:        #9B5FCF;
  --purple-dark:   #7d44b0;
  --purple-light:  #985183;

  /* Semantic */
  --primary:       #00C9A7;
  --primary-dark:  #009e84;
  --accent:        #F5A623;
  --accent-dark:   #d98e10;

  /* Neutrals */
  --bg:            #F4F6F9;
  --bg-white:      #ffffff;
  --bg-dark:       #0e1620;
  --bg-dark2:      #162130;
  --text-dark:     #0f1c2e;
  --text-body:     #334155;
  --text-muted:    #64748b;
  --text-light:    #94a3b8;
  --border:        #e1e7ef;
  --border-light:  #f1f5f9;

  /* Shadows */
  --shadow-sm:     0 2px 8px rgba(0,201,167,0.08);
  --shadow-md:     0 8px 32px rgba(0,0,0,0.1);
  --shadow-lg:     0 20px 64px rgba(0,0,0,0.13);
  --shadow-xl:     0 32px 80px rgba(0,0,0,0.18);

  /* Radii */
  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  22px;
  --radius-xl:  32px;

  /* Typography */
  --font-display: 'Manrope', sans-serif;
  --font-body:    'Plus Jakarta Sans', sans-serif;

  --transition:   all 0.26s cubic-bezier(0.4, 0, 0.2, 1);
  --nav-height:   76px;
}

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

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

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

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

/* ===================================
   Typography
   =================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--text-dark);
  line-height: 1.15;
  letter-spacing: -0.025em;
  font-weight: 800;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-dark);
  background: rgba(0,201,167,0.1);
  border: 1px solid rgba(0,201,167,0.22);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 14px;
  letter-spacing: -0.03em;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.8;
  font-weight: 400;
}

.section-header { margin-bottom: 56px; }
.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* ===================================
   Layout
   =================================== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.section-padding { padding: 96px 0; }

/* ===================================
   Buttons
   =================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 700;
  font-family: var(--font-body);
  transition: var(--transition);
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 4px 20px rgba(0,201,167,0.4);
}
.btn-primary:hover {
  background: var(--teal-dark);
  box-shadow: 0 8px 30px rgba(0,201,167,0.5);
  transform: translateY(-2px);
}

.btn-orange {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 4px 20px rgba(245,166,35,0.4);
}
.btn-orange:hover {
  background: var(--orange-dark);
  box-shadow: 0 8px 30px rgba(245,166,35,0.5);
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(12px);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.22);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--teal-dark);
  border: 2px solid var(--teal);
}
.btn-outline:hover {
  background: var(--teal);
  color: #fff;
  transform: translateY(-2px);
}

.btn-white {
  background: #fff;
  color: var(--teal-dark);
  box-shadow: var(--shadow-md);
  font-weight: 700;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

/* ===================================
   Navigation
   =================================== */
#navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  height: var(--nav-height);
  transition: var(--transition);
}

#navbar.transparent { background: transparent; }

#navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 40px rgba(0,0,0,0.08);
  border-bottom: 1px solid var(--border-light);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}

.nav-logo-img {
  height: 34px;
  width: auto;
  object-fit: contain;
  transition: filter 0.26s ease;
}

#navbar.transparent .nav-logo-img { filter: brightness(0) invert(1); }
#navbar.scrolled .nav-logo-img    { filter: none; }

.logo-subtitle {
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
  border-left: 2px solid var(--border);
  padding-left: 10px;
}

#navbar.transparent .logo-subtitle { color: rgba(255,255,255,0.55); border-color: rgba(255,255,255,0.25); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-body);
  padding: 8px 13px;
  border-radius: 8px;
  transition: var(--transition);
}

.nav-links a:hover { color: var(--teal-dark); background: rgba(0,201,167,0.07); }

#navbar.transparent .nav-links a { color: rgba(255,255,255,0.85); }
#navbar.transparent .nav-links a:hover { color: white; background: rgba(255,255,255,0.12); }

.nav-cta { display: flex; align-items: center; gap: 10px; }

.nav-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.84rem;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 8px;
  color: var(--text-dark);
  transition: var(--transition);
}

.nav-phone:hover { color: var(--teal-dark); background: rgba(0,201,167,0.07); }
#navbar.transparent .nav-phone { color: rgba(255,255,255,0.9); }
#navbar.transparent .nav-phone:hover { background: rgba(255,255,255,0.12); color: white; }

.nav-btn-demo {
  background: var(--orange) !important;
  color: white !important;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-weight: 700 !important;
  font-size: 0.84rem !important;
  box-shadow: 0 4px 14px rgba(245,166,35,0.4);
  transition: var(--transition) !important;
}

.nav-btn-demo:hover {
  background: var(--orange-dark) !important;
  box-shadow: 0 6px 22px rgba(245,166,35,0.5) !important;
  transform: translateY(-1px) !important;
  color: white !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px; height: 40px;
  background: none;
  border-radius: 8px;
  gap: 5px;
  transition: var(--transition);
  padding: 4px;
}

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

#navbar.transparent .hamburger span { background: white; }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-height); left: 0;
  width: 100%;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  padding: 20px 28px 28px;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  border-top: 1px solid var(--border);
  transform: translateY(-10px);
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}

.mobile-nav.open { display: block; transform: translateY(0); opacity: 1; pointer-events: all; }

.mobile-nav a {
  display: block;
  padding: 12px 0;
  font-size: 0.975rem;
  font-weight: 600;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border-light);
}

.mobile-nav a:last-of-type { border-bottom: none; }
.mobile-nav .btn { margin-top: 16px; width: 100%; justify-content: center; }

/* ===================================
   Hero Section
   =================================== */
#home {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-height);
  background: #0e1620;
}

/* Grid texture */
#home::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.028) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero-orb-1 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(0,201,167,0.2) 0%, transparent 70%);
  top: -120px; left: -120px;
}

.hero-orb-2 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(59,191,239,0.13) 0%, transparent 70%);
  top: 0; right: -180px;
}

.hero-orb-3 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(245,166,35,0.1) 0%, transparent 70%);
  bottom: -60px; left: 25%;
}

.hero-orb-4 {
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(155,95,207,0.1) 0%, transparent 70%);
  bottom: 60px; right: 8%;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
  padding: 60px 0 80px;
}

.hero-text { max-width: 570px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,201,167,0.1);
  border: 1px solid rgba(0,201,167,0.28);
  color: var(--teal-light);
  font-size: 0.76rem;
  font-weight: 700;
  padding: 6px 14px 6px 8px;
  border-radius: 100px;
  margin-bottom: 28px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-badge-dot {
  width: 7px; height: 7px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
  box-shadow: 0 0 8px var(--teal);
}

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

.hero-title {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.09;
  margin-bottom: 22px;
  letter-spacing: -0.035em;
}

.word-teal   { color: var(--teal); }
.word-orange { color: var(--orange); }
.word-blue   { color: var(--blue); }
.word-purple { color: var(--purple-light); }

.hero-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 38px;
  font-weight: 400;
}

.hero-subtitle strong { color: rgba(255,255,255,0.88); font-weight: 600; }

.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }

.hero-stats {
  display: flex;
  gap: 36px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat-item { display: flex; flex-direction: column; }

.hero-stat-number {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.04em;
}

.hero-stat-label {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.48);
  margin-top: 5px;
  font-weight: 500;
}

/* Hero Visual */
.hero-visual { position: relative; }

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.5), 0 0 0 1px rgba(0,201,167,0.2);
  transform: perspective(1200px) rotateY(-6deg) rotateX(2deg);
  transition: transform 0.6s ease;
}

.hero-image-wrapper:hover { transform: perspective(1200px) rotateY(0) rotateX(0); }
.hero-image-wrapper img { width: 100%; height: auto; display: block; }

.hero-float-card {
  position: absolute;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 4.5s ease-in-out infinite;
  border: 1px solid rgba(255,255,255,0.55);
}

.hero-float-card.card-1 { bottom: 28px; left: -28px; animation-delay: 0s; }
.hero-float-card.card-2 { top: 26px; right: -18px; animation-delay: 2.2s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-11px); }
}

.float-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.float-icon.teal   { background: rgba(0,201,167,0.12); }
.float-icon.orange { background: rgba(245,166,35,0.12); }

.float-text strong {
  display: block;
  font-size: 0.84rem;
  font-weight: 800;
  color: var(--text-dark);
  font-family: var(--font-display);
}

.float-text span { font-size: 0.74rem; color: var(--text-muted); font-weight: 500; }

/* Logo-color divider strip */
.color-strip {
  height: 4px;
  background: linear-gradient(90deg,
    var(--orange) 0%,   var(--orange) 25%,
    var(--teal)   25%,  var(--teal)   50%,
    var(--blue)   50%,  var(--blue)   75%,
    var(--purple) 75%,  var(--purple) 100%
  );
}

/* ===================================
   Features Section
   =================================== */
#features { background: var(--bg); }

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

.feature-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.feature-card.color-teal::before   { background: var(--teal); }
.feature-card.color-orange::before { background: var(--orange); }
.feature-card.color-blue::before   { background: var(--blue); }
.feature-card.color-purple::before { background: var(--purple); }

.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.feature-card:hover::before { transform: scaleX(1); }

.feature-icon {
  width: 50px; height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 18px;
  transition: var(--transition);
}

.feature-card.color-teal   .feature-icon { background: rgba(0,201,167,0.1); }
.feature-card.color-orange .feature-icon { background: rgba(245,166,35,0.1); }
.feature-card.color-blue   .feature-icon { background: rgba(59,191,239,0.1); }
.feature-card.color-purple .feature-icon { background: rgba(155,95,207,0.1); }

.feature-card.color-teal:hover   .feature-icon { background: var(--teal);   }
.feature-card.color-orange:hover .feature-icon { background: var(--orange); }
.feature-card.color-blue:hover   .feature-icon { background: var(--blue);   }
.feature-card.color-purple:hover .feature-icon { background: var(--purple); }

.feature-card h3 { font-size: 1rem; font-weight: 800; margin-bottom: 9px; }
.feature-card p  { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 16px; }

.feature-list { display: flex; flex-direction: column; gap: 6px; }

.feature-list li {
  font-size: 0.825rem;
  color: var(--text-body);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.feature-list li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.feature-card.color-teal   .feature-list li::before { background: var(--teal); }
.feature-card.color-orange .feature-list li::before { background: var(--orange); }
.feature-card.color-blue   .feature-list li::before { background: var(--blue); }
.feature-card.color-purple .feature-list li::before { background: var(--purple); }

/* Modules */
.modules-showcase {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.module-item {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.module-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.module-item img { width: 100%; height: 200px; object-fit: cover; }
.module-info { padding: 20px 24px; }
.module-info h3 { font-size: 1rem; font-weight: 800; margin-bottom: 6px; }
.module-info p  { font-size: 0.855rem; color: var(--text-muted); }

/* WhatsApp strip */
.whatsapp-strip {
  background: linear-gradient(135deg, #064e45 0%, #075E54 50%, #0a7a6a 100%);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 64px;
  box-shadow: var(--shadow-lg);
}

.wa-icon { font-size: 3rem; flex-shrink: 0; }
.wa-text h3 { font-size: 1.25rem; font-weight: 800; color: white; margin-bottom: 8px; }
.wa-text p  { color: rgba(255,255,255,0.75); font-size: 0.9rem; }
.wa-tags    { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }

.wa-tag {
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.22);
  color: white;
  font-size: 0.77rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 100px;
}

/* ===================================
   Benefits Section
   =================================== */
#benefits {
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

#benefits::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.024) 1px, transparent 1px);
  background-size: 52px 52px;
}

.benefits-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}

.benefits-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,201,167,0.14) 0%, transparent 70%);
  top: -80px; right: -80px;
}

.benefits-orb-2 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(245,166,35,0.1) 0%, transparent 70%);
  bottom: -60px; left: -40px;
}

.benefits-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.benefits-text .section-label {
  background: rgba(0,201,167,0.1);
  color: var(--teal-light);
  border-color: rgba(0,201,167,0.22);
}

.benefits-text .section-title { color: #fff; }
.benefits-text .section-subtitle { color: rgba(255,255,255,0.55); }

.benefits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.benefit-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 22px;
  transition: var(--transition);
}

.benefit-item:hover {
  background: rgba(255,255,255,0.07);
  transform: translateY(-3px);
}

.benefit-item:nth-child(1):hover { border-color: var(--teal); }
.benefit-item:nth-child(2):hover { border-color: var(--orange); }
.benefit-item:nth-child(3):hover { border-color: var(--blue); }
.benefit-item:nth-child(4):hover { border-color: var(--purple); }
.benefit-item:nth-child(5):hover { border-color: var(--teal); }
.benefit-item:nth-child(6):hover { border-color: var(--orange); }

.benefit-icon-wrap {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  margin-bottom: 14px;
}

.benefit-item h4 { font-size: 0.92rem; font-weight: 800; color: white; margin-bottom: 7px; }
.benefit-item p  { font-size: 0.82rem; color: rgba(255,255,255,0.52); line-height: 1.65; }

/* ===================================
   UAE Section
   =================================== */
#uae { background: var(--bg-white); }

.uae-content { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }

.uae-text p { color: var(--text-body); line-height: 1.82; margin-bottom: 16px; font-size: 0.96rem; }
.uae-text p strong { color: var(--teal-dark); font-weight: 700; }

.uae-cities { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 30px; }

.city-card {
  background: var(--bg);
  border-radius: var(--radius-md);
  padding: 20px;
  border: 1.5px solid var(--border-light);
  transition: var(--transition);
  text-align: center;
  cursor: default;
}

.city-card:nth-child(1):hover { border-color: var(--orange); box-shadow: 0 8px 24px rgba(245,166,35,0.15); transform: translateY(-3px); }
.city-card:nth-child(2):hover { border-color: var(--teal);   box-shadow: 0 8px 24px rgba(0,201,167,0.15);  transform: translateY(-3px); }
.city-card:nth-child(3):hover { border-color: var(--blue);   box-shadow: 0 8px 24px rgba(59,191,239,0.15); transform: translateY(-3px); }
.city-card:nth-child(4):hover { border-color: var(--purple); box-shadow: 0 8px 24px rgba(155,95,207,0.15); transform: translateY(-3px); }

.city-flag { font-size: 1.8rem; margin-bottom: 8px; }
.city-name { font-family: var(--font-display); font-weight: 800; font-size: 0.975rem; color: var(--text-dark); margin-bottom: 4px; }
.city-workshops { font-size: 0.78rem; color: var(--text-muted); font-weight: 500; }

.uae-seo-content {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--border-light);
}

.uae-seo-content h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 16px; color: var(--teal-dark); }
.uae-seo-content p  { font-size: 0.9rem; color: var(--text-body); line-height: 1.82; margin-bottom: 14px; }

/* ===================================
   Contact Section
   =================================== */
#contact { background: var(--bg); }

.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 24px; }

.company-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 30px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.company-logo-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-light);
}

.company-logo-img { height: 30px; width: auto; object-fit: contain; }

.company-name-block strong { display: block; font-family: var(--font-display); font-weight: 900; font-size: 1rem; color: var(--text-dark); }
.company-name-block span   { font-size: 0.78rem; color: var(--text-muted); font-weight: 500; }

.contact-detail-row { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 16px; }
.contact-detail-row:last-child { margin-bottom: 0; }

.contact-detail-icon {
  width: 36px; height: 36px;
  background: rgba(0,201,167,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.contact-detail-text strong { display: block; font-size: 0.78rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 2px; }
.contact-detail-text span,
.contact-detail-text a { font-size: 0.9rem; color: var(--text-dark); font-weight: 500; line-height: 1.55; }
.contact-detail-text a:hover { color: var(--teal-dark); }

.map-wrapper { border-radius: var(--radius-md); overflow: hidden; height: 220px; border: 1px solid var(--border-light); box-shadow: var(--shadow-sm); }
.map-wrapper iframe { width: 100%; height: 100%; border: none; }

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

.contact-form-card h3 { font-size: 1.4rem; font-weight: 900; margin-bottom: 6px; }
.contact-form-card > p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 28px; }

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

.form-group label { display: block; font-size: 0.82rem; font-weight: 700; color: var(--text-dark); margin-bottom: 7px; letter-spacing: 0.02em; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: var(--transition);
  outline: none;
  resize: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  background: white;
  box-shadow: 0 0 0 3px rgba(0,201,167,0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-light); font-weight: 400; }

.form-submit-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--blue) 100%);
  color: white;
  border-radius: var(--radius-sm);
  font-size: 0.975rem;
  font-weight: 800;
  font-family: var(--font-display);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  box-shadow: 0 4px 20px rgba(0,201,167,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.form-submit-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,201,167,0.45); filter: brightness(1.05); }

.form-success {
  display: none;
  background: #f0fdf9;
  border: 1px solid var(--teal);
  border-radius: var(--radius-md);
  padding: 18px;
  text-align: center;
  color: var(--teal-dark);
  font-weight: 700;
  margin-top: 16px;
  font-size: 0.9rem;
}

/* ===================================
   Footer
   =================================== */
footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.6);
  padding: 0;
}

.footer-color-strip {
  height: 4px;
  background: linear-gradient(90deg,
    var(--orange) 0%,   var(--orange) 25%,
    var(--teal)   25%,  var(--teal)   50%,
    var(--blue)   50%,  var(--blue)   75%,
    var(--purple) 75%,  var(--purple) 100%
  );
}

.footer-inner { padding: 64px 0 0; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand .logo-row { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo-img { height: 30px; width: auto; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 0.875rem; line-height: 1.75; margin-bottom: 24px; max-width: 280px; color: rgba(255,255,255,0.45); }

.social-links { display: flex; gap: 10px; }

.social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.08);
}

.social-link:hover { transform: translateY(-2px); }
.social-link:nth-child(1):hover { background: var(--blue);   color: white; border-color: var(--blue);   }
.social-link:nth-child(2):hover { background: var(--blue);   color: white; border-color: var(--blue);   }
.social-link:nth-child(3):hover { background: var(--blue);   color: white; border-color: var(--blue);   }
.social-link:nth-child(4):hover { background: var(--orange); color: white; border-color: var(--orange); }
.social-link:nth-child(5):hover { background: var(--teal);   color: white; border-color: var(--teal);   }

.footer-col h4 { font-family: var(--font-display); font-weight: 800; font-size: 0.875rem; color: white; margin-bottom: 18px; }

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.85rem; color: rgba(255,255,255,0.45); font-weight: 500; transition: var(--transition); }
.footer-links a:hover { color: var(--teal-light); padding-left: 4px; }

.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 0.85rem; }
.footer-contact-item .icon { font-size: 0.875rem; margin-top: 2px; flex-shrink: 0; color: var(--teal); }
.footer-contact-item a { color: rgba(255,255,255,0.45); font-weight: 500; }
.footer-contact-item a:hover { color: white; }

.footer-bottom { padding: 20px 0; text-align: center; font-size: 0.8rem; color: rgba(255,255,255,0.28); }
.footer-bottom a { color: rgba(255,255,255,0.4); }
.footer-bottom a:hover { color: var(--teal-light); }

/* ===================================
   Scroll To Top
   =================================== */
#scrollTop {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 44px; height: 44px;
  background: var(--teal);
  color: white;
  border-radius: 10px;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,201,167,0.5);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 900;
}

#scrollTop.visible { opacity: 1; visibility: visible; }
#scrollTop:hover { background: var(--teal-dark); transform: translateY(-3px); }

/* ===================================
   Animations
   =================================== */
.fade-in { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }
.fade-in-delay-5 { transition-delay: 0.5s; }

/* ===================================
   Responsive
   =================================== */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-content { gap: 40px; }
  .benefits-inner { gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .uae-content { gap: 48px; }
}

@media (max-width: 768px) {
  :root { --nav-height: 68px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero-content { grid-template-columns: 1fr; gap: 40px; padding: 40px 0 60px; text-align: center; }
  .hero-text { max-width: 100%; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }

  .section-padding { padding: 64px 0; }

  .features-grid { grid-template-columns: 1fr; }
  .modules-showcase { grid-template-columns: 1fr; }

  .benefits-inner { grid-template-columns: 1fr; gap: 40px; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }

  .uae-content { grid-template-columns: 1fr; gap: 40px; }
  .uae-cities { grid-template-columns: 1fr 1fr; }

  .contact-grid { grid-template-columns: 1fr; }

  .whatsapp-strip { flex-direction: column; text-align: center; gap: 20px; padding: 28px 24px; }
  .wa-tags { justify-content: center; }

  .form-row { grid-template-columns: 1fr; }
  .contact-form-card { padding: 28px 22px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-float-card { display: none; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .hero-title { font-size: 1.85rem; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; }
  .benefits-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
}

.wa-icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  object-fit: contain;
}
