/* ============================================================
   AL NUKHBAH — DESIGN SYSTEM
   Typing Center · Printing · Stationery · Sharjah, UAE
   ============================================================ */

/* 1. CSS CUSTOM PROPERTIES */
:root {
  /* Brand Colors — extracted from logo */
  --primary:       #1B1E5C;   /* Deep Navy Blue  */
  --primary-dark:  #11143D;
  --primary-light: #2D3185;
  --gold:          #C9A84C;   /* Premium Gold    */
  --gold-light:    #E2C97A;
  --gold-dark:     #A8843A;
  --accent:        #4A6CF7;   /* Vivid Blue      */
  --accent-light:  #EEF2FF;

  /* Neutral Scale */
  --white:         #FFFFFF;
  --gray-50:       #F8F9FF;
  --gray-100:      #F1F3FF;
  --gray-200:      #E2E6F3;
  --gray-300:      #C8CEDE;
  --gray-400:      #9AA0B4;
  --gray-500:      #6B7280;
  --gray-600:      #4B5563;
  --gray-700:      #374151;
  --gray-800:      #1F2937;
  --gray-900:      #111827;

  /* Semantic */
  --bg:            #F8F9FF;
  --bg-card:       #FFFFFF;
  --text:          #1F2937;
  --text-muted:    #6B7280;
  --text-light:    #9AA0B4;
  --border:        #E2E6F3;
  --success:       #10B981;
  --warning:       #F59E0B;

  /* Typography */
  --font-en:       'Plus Jakarta Sans', sans-serif;
  --font-ar:       'Cairo', sans-serif;

  /* Spacing */
  --space-xs:      0.25rem;
  --space-sm:      0.5rem;
  --space-md:      1rem;
  --space-lg:      1.5rem;
  --space-xl:      2rem;
  --space-2xl:     3rem;
  --space-3xl:     4rem;
  --space-4xl:     6rem;

  /* Radius */
  --radius-sm:     0.5rem;
  --radius-md:     0.875rem;
  --radius-lg:     1.25rem;
  --radius-xl:     1.75rem;
  --radius-2xl:    2.5rem;
  --radius-full:   9999px;

  /* Shadows */
  --shadow-sm:     0 1px 3px rgba(27,30,92,.08), 0 1px 2px rgba(27,30,92,.06);
  --shadow-md:     0 4px 16px rgba(27,30,92,.10), 0 2px 6px rgba(27,30,92,.07);
  --shadow-lg:     0 10px 40px rgba(27,30,92,.14), 0 4px 12px rgba(27,30,92,.08);
  --shadow-xl:     0 20px 60px rgba(27,30,92,.18), 0 8px 20px rgba(27,30,92,.10);
  --shadow-gold:   0 8px 30px rgba(201,168,76,.30);
  --shadow-blue:   0 8px 30px rgba(27,30,92,.25);

  /* Transitions */
  --transition:    0.25s cubic-bezier(0.4,0,0.2,1);
  --transition-slow: 0.45s cubic-bezier(0.4,0,0.2,1);

  /* Container */
  --container:     1200px;
  --container-sm:  800px;
}

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

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

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

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* 3. UTILITIES */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}
.container-sm { max-width: var(--container-sm); }

.section {
  padding: var(--space-4xl) 0;
}
.section-sm { padding: var(--space-3xl) 0; }

.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }
.text-white { color: var(--white); }

.bg-primary { background: var(--primary); }
.bg-white   { background: var(--white); }
.bg-gray    { background: var(--gray-50); }

.hidden { display: none !important; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

/* 4. TYPOGRAPHY */
h1,h2,h3,h4,h5,h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--gray-900);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.65rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p { color: var(--text-muted); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,.12);
  border: 1px solid rgba(201,168,76,.25);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: var(--space-md);
}
.section-title span { color: var(--primary); }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto var(--space-3xl);
}

/* 5. BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-full);
  font-family: var(--font-en);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--transition);
  background: rgba(255,255,255,.15);
}
.btn:hover::before { opacity: 1; }

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-blue);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(27,30,92,.3);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--white);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(201,168,76,.4);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

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

.btn-ghost {
  background: rgba(255,255,255,.15);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.3);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.25);
  transform: translateY(-2px);
}

.btn-sm { padding: 0.625rem 1.25rem; font-size: 0.82rem; }
.btn-lg { padding: 1.1rem 2.25rem; font-size: 1rem; }
.btn-icon { width: 44px; height: 44px; padding: 0; justify-content: center; border-radius: var(--radius-full); }

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 8px 25px rgba(37,211,102,.35);
}
.btn-whatsapp:hover {
  background: #20BA5A;
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(37,211,102,.45);
}

/* 6. CARDS */
.card {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(27,30,92,.12);
}

.card-glass {
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.6);
  box-shadow: var(--shadow-lg);
}

/* 7. BADGES */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.2rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
}
.badge-primary { background: var(--accent-light); color: var(--primary); }
.badge-gold    { background: rgba(201,168,76,.12); color: var(--gold-dark); }
.badge-green   { background: #ECFDF5; color: var(--success); }

/* 8. NAVIGATION */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
  padding: 0.75rem 0;
  background: #ffffff;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}

.navbar.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-md);
  padding: 0.5rem 0;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.navbar-logo img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  transition: var(--transition);
}
.navbar.scrolled .navbar-logo img { width: 44px; height: 44px; }

.logo-text { line-height: 1.1; }
.logo-text .brand-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
  display: block;
}
.logo-text .brand-tagline {
  font-size: 0.68rem;
  color: var(--text-muted);
  display: block;
  letter-spacing: 0.04em;
}

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

.nav-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-700);
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}
.nav-link:hover, .nav-link.active {
  color: var(--primary);
  background: var(--accent-light);
}

.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  padding: var(--space-sm);
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 100;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-700);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-dropdown-menu a:hover {
  background: var(--accent-light);
  color: var(--primary);
}
.nav-dropdown-menu a svg { flex-shrink: 0; }

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

.navbar-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--primary);
  transition: var(--transition);
}
.navbar-phone:hover {
  background: var(--primary);
  color: var(--white);
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* 9. TOP BAR */
.topbar {
  background: #0e1138;
  color: rgba(255,255,255,.85);
  font-size: 0.8rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.topbar-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.topbar-item a { color: rgba(255,255,255,.9); transition: var(--transition); }
.topbar-item a:hover { color: var(--gold-light); }
.topbar-right { display: flex; gap: 1.5rem; }

/* 10. HERO */
.hero {
  min-height: 100svh;
  background: linear-gradient(135deg, var(--primary) 0%, #2D3185 45%, #1B1E5C 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 100px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 70% at 80% 30%, rgba(201,168,76,.15) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 20% 70%, rgba(74,108,247,.2) 0%, transparent 60%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content { color: var(--white); }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201,168,76,.2);
  border: 1px solid rgba(201,168,76,.4);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-lg);
}

.hero-rating {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: var(--space-md);
}
.stars { color: #FFD700; font-size: 1.1rem; letter-spacing: 2px; }
.rating-text { font-size: 0.85rem; color: rgba(255,255,255,.75); font-weight: 500; }

.hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: var(--space-lg);
}
.hero h1 .highlight {
  color: var(--gold-light);
  position: relative;
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,.78);
  margin-bottom: var(--space-xl);
  max-width: 500px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-bottom: var(--space-2xl);
}

.hero-stats {
  display: flex;
  gap: var(--space-xl);
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255,255,255,.15);
}
.hero-stat { text-align: left; }
.hero-stat-num {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--gold-light);
  display: block;
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,.6);
  margin-top: 0.25rem;
}

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo-wrap {
  width: 320px;
  height: 320px;
  position: relative;
  margin: auto;
}

.hero-logo-bg {
  position: absolute;
  inset: -30px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.08) 0%, transparent 70%);
  animation: pulse-ring 3s ease-in-out infinite;
}
.hero-logo-bg-2 {
  position: absolute;
  inset: -60px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,.06) 0%, transparent 70%);
  animation: pulse-ring 3s ease-in-out infinite 1s;
}

.hero-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,.3));
  animation: float 4s ease-in-out infinite;
}

/* Floating feature badges */
.hero-badge {
  position: absolute;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: 0.75rem 1rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  animation: float-badge 3s ease-in-out infinite;
  white-space: nowrap;
  z-index: 2;
}
.hero-badge:nth-child(2) { animation-delay: 0.5s; top: 10%; right: -15%; }
.hero-badge:nth-child(3) { animation-delay: 1s; top: 55%; left: -20%; }
.hero-badge:nth-child(4) { animation-delay: 1.5s; bottom: 10%; right: -10%; }

.hero-badge-icon {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}
.hero-badge-text .label { font-size: 0.72rem; color: var(--text-muted); display: block; }
.hero-badge-text .value { font-size: 0.88rem; font-weight: 700; color: var(--gray-900); display: block; }

/* 11. TRUST BAR */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
}
.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-xl);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-700);
}
.trust-icon {
  width: 32px; height: 32px;
  background: var(--accent-light);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
}
.trust-divider { width: 1px; height: 24px; background: var(--border); }

/* 12. SERVICES GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-lg);
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(27,30,92,.15);
}
.service-card:hover::after { transform: scaleX(1); }

.service-card-icon {
  width: 60px; height: 60px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem;
  margin-bottom: var(--space-lg);
  transition: var(--transition);
}
.service-card:hover .service-card-icon { transform: scale(1.1); }

.icon-blue   { background: var(--accent-light); }
.icon-gold   { background: rgba(201,168,76,.12); }
.icon-green  { background: #ECFDF5; }
.icon-purple { background: #F5F3FF; }
.icon-orange { background: #FFF7ED; }
.icon-pink   { background: #FDF2F8; }

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--gray-900);
}
.service-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}
.service-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: var(--transition);
}
.service-link:hover { gap: 0.6rem; }

/* 13. STATS SECTION */
.stats-section {
  background: linear-gradient(135deg, var(--primary) 0%, #2D3185 100%);
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 80% 50%, rgba(201,168,76,.15) 0%, transparent 60%);
  pointer-events: none;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  position: relative;
  z-index: 1;
}
.stat-item { text-align: center; color: var(--white); }
.stat-num {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--gold-light);
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,.7);
  font-weight: 500;
}

/* 14. GOOGLE REVIEWS */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.review-header {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: var(--space-md);
}
.reviewer-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.reviewer-name { font-weight: 700; color: var(--gray-900); font-size: 0.95rem; }
.reviewer-date { font-size: 0.78rem; color: var(--text-muted); }
.review-stars { color: #FFD700; font-size: 0.9rem; margin-bottom: 0.75rem; }
.review-text { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }
.google-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  color: var(--text-light);
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--border);
}

/* Overall Rating Card */
.rating-showcase {
  background: linear-gradient(135deg, var(--primary) 0%, #2D3185 100%);
  border-radius: var(--radius-2xl);
  padding: var(--space-3xl);
  text-align: center;
  color: var(--white);
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}
.rating-showcase::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(201,168,76,.15) 0%, transparent 70%);
  pointer-events: none;
}
.big-rating {
  font-size: 5rem;
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
}
.big-stars { font-size: 1.75rem; color: #FFD700; letter-spacing: 4px; margin: 0.5rem 0; }
.rating-count { font-size: 0.9rem; color: rgba(255,255,255,.7); }

/* 15. WHY CHOOSE US */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}
.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}
.why-feature {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.why-feature:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(27,30,92,.12);
}
.why-feature-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 0.875rem;
  background: var(--accent-light);
}
.why-feature h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.3rem; }
.why-feature p { font-size: 0.82rem; color: var(--text-muted); }

.why-image-stack { position: relative; }
.why-main-img {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/5;
  background: #ffffff;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  color: var(--gray-700);
  text-align: center;
  padding: 2.5rem;
  width: 100%;
}
.why-img-placeholder .logo-img-inside {
  width: 180px;
  filter: none;
  max-width: 80%;
}
.why-img-placeholder .about-badges {
  display: flex; flex-direction: column; gap: .75rem; width: 100%; margin-top: .5rem;
}
.why-img-placeholder .about-badge-row {
  display: flex; align-items: center; gap: .75rem;
  background: #f8f9ff; border-radius: 12px; padding: .75rem 1rem;
  border: 1px solid #e0e7ff; text-align: left;
}
.why-img-placeholder .about-badge-icon { font-size: 1.4rem; flex-shrink: 0; }
.why-img-placeholder .about-badge-text strong { display: block; font-size: .85rem; font-weight: 700; color: var(--primary); }
.why-img-placeholder .about-badge-text span { font-size: .75rem; color: var(--text-muted); }
[dir="rtl"] .why-img-placeholder .about-badge-row { flex-direction: row-reverse; text-align: right; }

.why-float-card {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 0.875rem;
  min-width: 220px;
}
.why-float-icon {
  width: 50px; height: 50px;
  border-radius: var(--radius-md);
  background: var(--accent-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

/* 16. HOW IT WORKS */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  z-index: 0;
}
.step-item {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--primary);
  margin: 0 auto var(--space-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}
.step-item:hover .step-num {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.1);
}
.step-icon { font-size: 2rem; margin-bottom: var(--space-md); }
.step-item h4 { font-weight: 700; margin-bottom: 0.4rem; }
.step-item p { font-size: 0.85rem; color: var(--text-muted); }

/* 17. FAQ SECTION */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  margin-bottom: 0.875rem;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.faq-item.open { border-color: rgba(27,30,92,.2); box-shadow: var(--shadow-md); }

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.25rem var(--space-xl);
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--gray-800);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  background: none;
  font-family: var(--font-en);
  transition: var(--transition);
}
.faq-question:hover { color: var(--primary); }
.faq-item.open .faq-question { color: var(--primary); }

.faq-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--accent-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  color: var(--primary);
  transition: var(--transition);
  font-weight: 700;
  line-height: 1;
}
.faq-item.open .faq-icon { background: var(--primary); color: var(--white); transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner {
  padding: 0 var(--space-xl) 1.25rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* 18. LOCATION */
.location-section { background: var(--gray-50); }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}
.location-info-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.location-detail {
  display: flex;
  gap: 1rem;
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--border);
}
.location-detail:last-child { border-bottom: none; }
.location-detail-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  background: var(--accent-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
  font-size: 1.1rem;
}
.location-detail-text .label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 0.2rem;
}
.location-detail-text .value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-800);
}
.location-detail-text a { color: var(--primary); transition: var(--transition); }
.location-detail-text a:hover { color: var(--gold-dark); }

.map-embed {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.map-embed iframe {
  width: 100%;
  height: 420px;
  display: block;
}

/* 19. CTA SECTION */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, #2D3185 60%, #1B1E5C 100%);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 20% 50%, rgba(201,168,76,.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 80% 30%, rgba(74,108,247,.15) 0%, transparent 60%);
  pointer-events: none;
}
.cta-inner {
  text-align: center;
  position: relative;
  z-index: 1;
  color: var(--white);
}
.cta-inner h2 { color: var(--white); margin-bottom: var(--space-md); }
.cta-inner p { color: rgba(255,255,255,.78); margin-bottom: var(--space-2xl); max-width: 550px; margin-left: auto; margin-right: auto; }
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* 20. BLOG */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-xl); }
.blog-thumb {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}
.blog-body { padding: var(--space-xl); }
.blog-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}
.blog-cat {
  background: var(--accent-light);
  color: var(--primary);
  padding: 0.2rem 0.625rem;
  border-radius: var(--radius-full);
  font-weight: 600;
}
.blog-card h3 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0.5rem;
  transition: var(--transition);
}
.blog-card:hover h3 { color: var(--primary); }
.blog-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }
.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  margin-top: 1rem;
  transition: var(--transition);
}
.blog-read-more:hover { gap: 0.6rem; }

/* 21. FOOTER */
.footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,.8);
  padding: var(--space-4xl) 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-2xl);
  padding-bottom: var(--space-3xl);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand { }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: var(--space-lg);
}
.footer-logo img { width: 52px; height: 52px; object-fit: contain; filter: brightness(0) invert(1); }
.footer-brand-name { font-size: 1.1rem; font-weight: 800; color: var(--white); display: block; }
.footer-brand-tagline { font-size: 0.72rem; color: rgba(255,255,255,.5); }
.footer-desc { font-size: 0.88rem; line-height: 1.7; color: rgba(255,255,255,.6); margin-bottom: var(--space-lg); }

.footer-social {
  display: flex;
  gap: 0.5rem;
}
.social-link {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,.7);
  transition: var(--transition);
}
.social-link:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-col h5 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}
.footer-links { display: flex; flex-direction: column; gap: 0.625rem; }
.footer-links a {
  font-size: 0.86rem;
  color: rgba(255,255,255,.6);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--gold-light); padding-left: 4px; }
.footer-links a::before {
  content: '›';
  font-size: 1rem;
  color: var(--gold);
}

.footer-contact { display: flex; flex-direction: column; gap: 0.875rem; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.86rem;
  color: rgba(255,255,255,.7);
}
.footer-contact-icon {
  width: 32px; height: 32px;
  background: rgba(255,255,255,.08);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light);
  flex-shrink: 0;
  font-size: 0.85rem;
}
.footer-contact-item a { color: var(--gold-light); transition: var(--transition); }
.footer-contact-item a:hover { color: var(--white); }

.footer-hours { font-size: 0.86rem; color: rgba(255,255,255,.65); }
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 0.3rem 0;
  gap: 1rem;
}
.hours-row .day { color: rgba(255,255,255,.5); }
.hours-row .time { color: var(--gold-light); font-weight: 600; }

.footer-bottom {
  padding: var(--space-lg) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,.45);
}
.footer-bottom-links { display: flex; gap: 1.25rem; }
.footer-bottom-links a {
  color: rgba(255,255,255,.45);
  transition: var(--transition);
}
.footer-bottom-links a:hover { color: rgba(255,255,255,.8); }

/* 22. FLOATING WIDGETS */
.float-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}

.float-whatsapp-btn {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 25px rgba(37,211,102,.5);
  cursor: pointer;
  transition: var(--transition);
  animation: bounce-wp 2s ease-in-out infinite 3s;
  text-decoration: none;
}
.float-whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 35px rgba(37,211,102,.6);
}
.float-whatsapp-btn svg { width: 32px; height: 32px; fill: white; }

.float-call-btn {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-blue);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.float-call-btn:hover { transform: scale(1.1); background: var(--primary-dark); }
.float-call-btn svg { width: 22px; height: 22px; fill: white; }

.float-whatsapp-tooltip {
  background: var(--white);
  color: var(--gray-900);
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  white-space: nowrap;
  animation: fadein 0.5s ease 1s both;
}

/* 23. STICKY MOBILE CTA */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 998;
  background: var(--white);
  padding: 0.875rem var(--space-lg);
  box-shadow: 0 -4px 20px rgba(27,30,92,.12);
  gap: 0.75rem;
  border-top: 1px solid var(--border);
}
.sticky-mobile-cta .btn { flex: 1; justify-content: center; padding: 0.875rem; font-size: 0.88rem; }

/* 24. PAGE HERO (inner pages) */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, #2D3185 100%);
  padding: 120px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 80% 50%, rgba(201,168,76,.12) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-hero p { color: rgba(255,255,255,.72); max-width: 600px; font-size: 1.05rem; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,.6);
  margin-top: var(--space-lg);
}
.breadcrumb a { color: var(--gold-light); transition: var(--transition); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb-sep { opacity: 0.4; }

/* 25. POPULAR SERVICES (pills) */
.popular-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  justify-content: center;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1.1rem;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-700);
  transition: var(--transition);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
}
.pill:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* 26. CUSTOMER TYPES SECTION */
.customer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}
.customer-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
}
.customer-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(27,30,92,.15);
}
.customer-icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  margin: 0 auto var(--space-lg);
}
.customer-card h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.customer-card p { font-size: 0.87rem; margin-bottom: var(--space-lg); }
.customer-services {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: center;
}

/* 27. ANIMATIONS */
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes float-badge {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes pulse-ring {
  0%,100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.05); opacity: 0.7; }
}
@keyframes bounce-wp {
  0%,20%,50%,80%,100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}
@keyframes fadein {
  from { opacity: 0; transform: translateX(10px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes counter { from { opacity: 0; } to { opacity: 1; } }

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.animate-on-scroll.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delay */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1100px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .navbar-menu, .navbar-cta { display: none; }
  .menu-toggle { display: flex; }

  .navbar-menu.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--white);
    z-index: 999;
    padding: 80px var(--space-xl) var(--space-xl);
    overflow-y: auto;
    gap: var(--space-sm);
    align-items: stretch;
  }
  .navbar-menu.open .navbar-cta {
    display: flex;
    flex-direction: column;
    margin-top: auto;
    padding-top: var(--space-xl);
    border-top: 1px solid var(--border);
  }
  .navbar-menu.open .nav-link {
    font-size: 1rem;
    padding: 0.875rem var(--space-md);
    border-radius: var(--radius-md);
  }
  .nav-dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    padding-left: 1.5rem;
    display: none;
  }
  .nav-dropdown.open .nav-dropdown-menu { display: block; }

  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-content { order: 2; }
  .hero-visual { order: 1; }
  .hero-desc { margin-left: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-badge { display: none; }
  .hero-logo-wrap { width: 220px; height: 220px; }

  .why-grid { grid-template-columns: 1fr; }
  .why-features { order: 2; }
  .why-image-stack { order: 1; }

  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }

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

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

  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-xl); }
  .footer-bottom { flex-direction: column; text-align: center; }

  .topbar-right .topbar-item:not(:first-child) { display: none; }
}

@media (max-width: 600px) {
  .container { padding: 0 var(--space-lg); }
  .section { padding: var(--space-3xl) 0; }

  .hero { padding-top: 80px; }
  .hero-stats { flex-wrap: wrap; gap: var(--space-lg); }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .why-features { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .topbar { display: none; }

  .sticky-mobile-cta { display: flex; }

  .float-whatsapp { bottom: 80px; }
  .float-whatsapp-tooltip { display: none; }

  .cta-actions { flex-direction: column; }
  .cta-actions .btn { width: 100%; justify-content: center; }

  .hero-actions .btn { width: 100%; justify-content: center; }
}

/* ============================================================
   DARK MODE TOGGLE SUPPORT
   ============================================================ */
@media (prefers-color-scheme: dark) {
  /* intentionally light-only for brand consistency */
}

/* ============================================================
   PRINT STYLES
   ============================================================ */
@media print {
  .navbar, .float-whatsapp, .sticky-mobile-cta, .topbar { display: none !important; }
}

/* ============================================================
   FOCUS STYLES (Accessibility)
   ============================================================ */
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}
