/* ============================================================
   ROYAL ELITE PEST CONTROL — MAIN STYLESHEET
   Design: Deep Navy + Gold / Premium UAE Aesthetic
   ============================================================ */

/* ─── CSS VARIABLES ─────────────────────────────────────────── */
:root {
  --navy:          #0c2e4e;
  --navy-dark:     #071d33;
  --navy-light:    #1a4a73;
  --gold:          #d4a843;
  --gold-light:    #e8c97a;
  --gold-dark:     #b5902e;
  --cta:           #e0521e;
  --cta-hover:     #c4441a;
  --white:         #ffffff;
  --off-white:     #f7f9fc;
  --light:         #eef2f7;
  --border:        #dce5f0;
  --text-dark:     #101826;
  --text-body:     #445566;
  --text-muted:    #7a8fa6;
  --whatsapp:      #25d366;
  --whatsapp-dark: #1aad52;

  --shadow-xs: 0 1px 4px rgba(0,0,0,0.06);
  --shadow-sm: 0 2px 10px rgba(0,0,0,0.08);
  --shadow-md: 0 6px 24px rgba(0,0,0,0.11);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.16);
  --shadow-gold: 0 4px 20px rgba(212,168,67,0.35);

  --radius-sm:  6px;
  --radius:     12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --trans:      all 0.28s ease;
  --trans-slow: all 0.5s ease;

  --font-head: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  --section-py: 96px;
  --container:  1200px;
}

/* ─── 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);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-body);
  background: var(--white);
  overflow-x: hidden;
}

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

/* ─── TYPOGRAPHY ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-dark);
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.15rem; }
h4 { font-size: 1rem; }

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

/* ─── CONTAINER ──────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── SECTION UTILITY ────────────────────────────────────────── */
.section { padding: var(--section-py) 0; }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p   { font-size: 1.05rem; color: var(--text-body); }

.section-tag {
  display: inline-block;
  background: rgba(212,168,67,0.12);
  color: var(--gold-dark);
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 14px;
}

/* ─── BUTTONS ────────────────────────────────────────────────── */
.btn-primary-nav {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold);
  color: var(--navy-dark);
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 6px;
  transition: var(--trans);
}
.btn-primary-nav:hover { background: var(--gold-dark); box-shadow: var(--shadow-gold); transform: translateY(-1px); }

.btn-wa-nav {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--whatsapp);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 6px;
  transition: var(--trans);
}
.btn-wa-nav:hover { background: var(--whatsapp-dark); transform: translateY(-1px); }
.btn-wa-nav i { font-size: 1.1rem; }

.btn-primary-lg {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy-dark);
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  padding: 14px 36px;
  border-radius: var(--radius-sm);
  transition: var(--trans);
}
.btn-primary-lg:hover { background: var(--gold-dark); box-shadow: var(--shadow-gold); transform: translateY(-2px); }

/* ─── TEXT GOLD ──────────────────────────────────────────────── */
.text-gold { color: var(--gold); }

/* ─── TOP BAR ────────────────────────────────────────────────── */
.top-bar {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.82);
  font-size: 0.8rem;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.top-bar-left .sep { opacity: 0.3; }
.top-bar-right a {
  color: rgba(255,255,255,0.82);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--trans);
}
.top-bar-right a:hover { color: var(--gold); }
.top-bar i { font-size: 0.75rem; }

/* ─── MAIN HEADER ────────────────────────────────────────────── */
.main-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--trans);
}
.main-header.scrolled {
  box-shadow: var(--shadow-md);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-brand-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(212,168,67,0.12);
  border: 1px solid rgba(212,168,67,0.3);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  text-decoration: none;
}
.nav-brand-badge span {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--navy);
}

.main-header:not(.scrolled) .nav-brand-badge {
  background: rgba(212,168,67,0.15);
  border-color: rgba(212,168,67,0.4);
}
.logo-img {
  height: 48px;
  width: 48px;
  object-fit: contain;
  display: block;
  border-radius: 8px;
  background: #fff;
  padding: 4px;
  flex-shrink: 0;
}
.logo-img-footer {
  height: 48px;
  filter: brightness(0) invert(1);
}
.logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.logo-sub {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-body);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: var(--trans);
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active { color: var(--navy); background: var(--light); }

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

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 4px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--trans);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Overlay */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 850;
  opacity: 0;
  transition: opacity 0.3s;
}
.mobile-overlay.visible { opacity: 1; }

/* ─── HERO SECTION ───────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1920&fit=crop&q=80');
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero:hover .hero-bg { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(7,29,51,0.93) 0%,
    rgba(12,46,78,0.88) 50%,
    rgba(26,74,115,0.80) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,168,67,0.18);
  border: 1px solid rgba(212,168,67,0.4);
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 8px 18px;
  border-radius: 30px;
  margin-bottom: 22px;
}
.hero-content h1 {
  color: var(--white);
  margin-bottom: 22px;
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.15;
}
.hero-content p {
  color: rgba(255,255,255,0.82);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 560px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--gold);
  color: var(--navy-dark);
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  padding: 15px 32px;
  border-radius: var(--radius-sm);
  transition: var(--trans);
  box-shadow: var(--shadow-gold);
}
.btn-hero-primary:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(212,168,67,0.45); }
.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  padding: 15px 28px;
  border-radius: var(--radius-sm);
  border: 2px solid rgba(255,255,255,0.55);
  transition: var(--trans);
}
.btn-hero-secondary:hover { background: rgba(255,255,255,0.12); border-color: var(--white); transform: translateY(-2px); }

.hero-trust {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 18px 28px;
  width: fit-content;
  flex-wrap: wrap;
  gap: 2px;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 6px 24px;
}
.trust-item strong {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1.1;
}
.trust-item span {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.72);
  text-align: center;
  line-height: 1.3;
  margin-top: 2px;
}
.trust-div {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.18);
  flex-shrink: 0;
}

.hero-scroll-cue {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll-cue a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  animation: scrollBounce 1.8s infinite ease;
  transition: var(--trans);
}
.hero-scroll-cue a:hover { border-color: var(--gold); color: var(--gold); }
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 0.6; }
  50%       { transform: translateY(6px); opacity: 1; }
}

/* ─── OFFER BANNER ───────────────────────────────────────────── */
.offer-banner {
  background: linear-gradient(90deg, var(--cta), #c4441a);
  padding: 14px 0;
  text-align: center;
}
.offer-banner p {
  color: var(--white);
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.offer-banner a {
  color: var(--white);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.offer-banner a:hover { opacity: 0.85; }

/* ─── SERVICES SECTION ───────────────────────────────────────── */
.services-section { background: var(--off-white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
  transition: var(--trans);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(212,168,67,0.3);
}

.service-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}
.ic-cockroach  { background: #fff5e6; color: #d97706; }
.ic-bedbug     { background: #fef2f2; color: #dc2626; }
.ic-termite    { background: #f0fdf4; color: #16a34a; }
.ic-rodent     { background: #faf5ff; color: #9333ea; }
.ic-mosquito   { background: #eff6ff; color: #2563eb; }
.ic-fly        { background: #f0fdfa; color: #0891b2; }
.ic-ant        { background: #fff7ed; color: #ea580c; }
.ic-spider     { background: #fdf4ff; color: #a21caf; }
.ic-disinfect  { background: #ecfdf5; color: #059669; }
.ic-general    { background: #eff6ff; color: var(--navy); }
.ic-commercial { background: #f8fafc; color: #475569; }
.ic-residential{ background: #fef9ee; color: #ca8a04; }

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}
.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  transition: var(--trans);
  margin-top: auto;
}
.svc-link i { font-size: 0.75rem; transition: var(--trans); }
.service-card:hover .svc-link { color: var(--gold-dark); }
.service-card:hover .svc-link i { transform: translateX(3px); }

/* ─── WHY CHOOSE US ──────────────────────────────────────────── */
.why-section { background: var(--white); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.why-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.why-img-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.why-img-wrap:hover img { transform: scale(1.03); }

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

.why-cert-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
  border: 3px solid var(--white);
}
.why-cert-badge i {
  font-size: 2rem;
  color: var(--gold);
  flex-shrink: 0;
}
.why-cert-badge span {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--white);
}

.why-content-col .section-tag { margin-bottom: 12px; }
.why-content-col h2 { margin-bottom: 16px; }
.why-lead {
  font-size: 1.05rem;
  color: var(--text-body);
  margin-bottom: 36px;
  line-height: 1.75;
}

.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 28px;
}
.why-feat {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.why-feat-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.why-feat-text h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.why-feat-text p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ─── PROCESS / HOW IT WORKS ─────────────────────────────────── */
.process-section { background: var(--off-white); }

.process-row {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.process-step {
  flex: 1;
  text-align: center;
  padding: 36px 28px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
  transition: var(--trans);
  position: relative;
}
.process-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.step-num {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  color: var(--gold);
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 3px 12px;
  border-radius: 30px;
}
.step-ico {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--gold);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 16px auto 18px;
  transition: var(--trans);
}
.process-step:hover .step-ico { transform: scale(1.08) rotate(-4deg); }
.process-step h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--text-dark);
}
.process-step p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }

.process-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  color: var(--gold);
  font-size: 1.25rem;
  margin-top: 72px;
  flex-shrink: 0;
}

/* ─── STATS BANNER ───────────────────────────────────────────── */
.stats-banner {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-light) 100%);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.stats-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}
.stat-item {
  text-align: center;
  padding: 16px 40px;
}
.stat-num {
  display: block;
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.stat-sfx {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold-light);
}
.stat-item p {
  color: rgba(255,255,255,0.72);
  font-size: 0.82rem;
  font-weight: 500;
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.stat-div {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* ─── REVIEWS / TESTIMONIALS ─────────────────────────────────── */
.reviews-section { background: var(--white); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 56px;
}

.review-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: var(--trans);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}
.review-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  right: 22px;
  font-size: 5rem;
  line-height: 1;
  color: var(--border);
  font-family: Georgia, serif;
  font-weight: 700;
}
.review-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--gold-light); }
.review-card-featured {
  border-color: var(--gold);
  background: linear-gradient(135deg, #fffdf5 0%, var(--off-white) 100%);
  grid-column: span 2;
}
@media (max-width: 900px) { .review-card-featured { grid-column: span 1; } }
.reviewer-av-org {
  background: linear-gradient(135deg, var(--gold), #b8860b);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.review-stars i { color: #f59e0b; font-size: 0.85rem; }
.review-card blockquote { font-style: normal; }
.review-card blockquote p {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
.reviewer-av {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--gold-light);
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.reviewer strong { display: block; font-size: 0.88rem; color: var(--text-dark); }
.reviewer span   { font-size: 0.78rem; color: var(--text-muted); }

.reviews-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 36px;
  background: linear-gradient(135deg, var(--off-white), var(--light));
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  flex-wrap: wrap;
}
.rating-summary { display: flex; align-items: center; gap: 16px; }
.rating-big {
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.rating-info .rating-stars i { color: #f59e0b; font-size: 1.1rem; }
.rating-info span { display: block; font-size: 0.82rem; color: var(--text-muted); margin-top: 4px; }

/* ─── SERVICE AREAS ──────────────────────────────────────────── */
.areas-section { background: var(--off-white); }

.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 32px;
}
.area-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--text-body);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 9px 16px;
  border-radius: 30px;
  cursor: default;
  transition: var(--trans);
}
.area-chip:hover { border-color: var(--navy); color: var(--navy); background: var(--light); }
.area-chip i { color: var(--cta); font-size: 0.75rem; }
.area-chip-uae { background: rgba(212,168,67,0.07); border-color: rgba(212,168,67,0.35); color: var(--gold-dark); font-weight: 600; }
.area-chip-uae i { color: var(--gold-dark); }
.area-chip-more { background: var(--navy); border-color: var(--navy); color: var(--white); font-weight: 600; }
.area-chip-more i { color: var(--gold); }

.areas-note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.areas-note a { color: var(--navy); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.areas-note a:hover { color: var(--gold-dark); }

/* ─── CERTIFICATIONS STRIP ───────────────────────────────────── */
.certs-strip {
  background: var(--navy-dark);
  padding: 48px 0;
}
.certs-label {
  text-align: center;
  color: rgba(255,255,255,0.55);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.certs-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.cert-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.cert-item i {
  font-size: 2rem;
  color: var(--gold);
}
.cert-item span {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

/* ─── CONTACT SECTION ────────────────────────────────────────── */
.contact-section { background: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 56px;
  align-items: start;
}

/* Form */
.contact-form-col {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  border: 1px solid var(--border);
}

.contact-form { display: flex; flex-direction: column; gap: 20px; }

.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
}
.req { color: var(--cta); }

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--text-dark);
  font-size: 0.9rem;
  transition: var(--trans);
  outline: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(12,46,78,0.08);
}
.form-field input.error,
.form-field select.error { border-color: var(--cta); box-shadow: 0 0 0 3px rgba(224,82,30,0.08); }
.form-field textarea { resize: vertical; min-height: 110px; }
.form-field select { cursor: pointer; }

.field-err {
  font-size: 0.78rem;
  color: var(--cta);
  min-height: 16px;
  display: block;
}

.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--trans);
}
.btn-submit:hover { background: var(--navy-light); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.btn-wa-form {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--whatsapp);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 13px 22px;
  border-radius: var(--radius-sm);
  transition: var(--trans);
}
.btn-wa-form:hover { background: var(--whatsapp-dark); transform: translateY(-1px); }
.btn-wa-form i { font-size: 1.1rem; }

.form-success {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #065f46;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
}
.form-success i { font-size: 1.2rem; color: #059669; }

/* Contact Info Col */
.contact-info-col { padding-top: 8px; }
.contact-info-col h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 28px;
}
.cinfo-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 22px;
}
.cinfo-icon {
  width: 44px;
  height: 44px;
  background: var(--light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 1rem;
  flex-shrink: 0;
}
.cinfo-item strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 3px;
}
.cinfo-item a, .cinfo-item span {
  display: block;
  font-size: 0.92rem;
  color: var(--text-dark);
  line-height: 1.5;
}
.cinfo-item a:hover { color: var(--navy-light); }

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  margin: 24px 0;
  border: 1px solid var(--border);
  line-height: 0;
}

.contact-social {
  display: flex;
  gap: 10px;
}
.contact-social a {
  width: 38px;
  height: 38px;
  background: var(--light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-body);
  font-size: 0.9rem;
  transition: var(--trans);
}
.contact-social a:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }

/* ─── FOOTER ─────────────────────────────────────────────────── */
.main-footer { background: var(--navy-dark); }

.footer-body { padding: 72px 0 48px; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
}

.footer-brand p {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  line-height: 1.7;
  margin: 18px 0 22px;
}
.footer-logo { margin-bottom: 2px; }
.footer-logo .logo-name { color: var(--white); }
.footer-logo .logo-sub  { color: rgba(255,255,255,0.5); }

.footer-cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(212,168,67,0.12);
  border: 1px solid rgba(212,168,67,0.3);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
}
.cert-badge-logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 6px;
  padding: 3px;
  flex-shrink: 0;
}
.footer-cert-badge span {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 0.04em;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  color: rgba(255,255,255,0.6);
  font-size: 0.86rem;
  transition: var(--trans);
}
.footer-col ul a:hover { color: var(--gold-light); padding-left: 4px; }

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}
.footer-contact-list i {
  color: var(--gold);
  font-size: 0.85rem;
  margin-top: 3px;
  width: 16px;
  flex-shrink: 0;
}
.footer-contact-list a,
.footer-contact-list span {
  color: rgba(255,255,255,0.65);
  font-size: 0.86rem;
  transition: var(--trans);
  line-height: 1.5;
}
.footer-contact-list a:hover { color: var(--gold-light); }

.footer-social {
  display: flex;
  gap: 8px;
  margin-top: 18px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
  transition: var(--trans);
}
.footer-social a:hover { background: var(--gold); color: var(--navy-dark); transform: translateY(-2px); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p {
  color: rgba(255,255,255,0.45);
  font-size: 0.82rem;
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  color: rgba(255,255,255,0.45);
  font-size: 0.82rem;
  transition: var(--trans);
}
.footer-bottom-links a:hover { color: var(--gold-light); }

/* ─── FLOATING WHATSAPP ──────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: var(--whatsapp);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  transition: var(--trans);
  text-decoration: none;
}
.whatsapp-float:hover { background: var(--whatsapp-dark); transform: scale(1.08) translateY(-2px); }
.whatsapp-float::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--whatsapp);
  animation: waPulse 2.2s infinite;
  z-index: -1;
}
@keyframes waPulse {
  0%   { transform: scale(1); opacity: 0.6; }
  70%  { transform: scale(1.55); opacity: 0; }
  100% { opacity: 0; }
}
.wa-tooltip {
  position: absolute;
  right: 68px;
  background: var(--text-dark);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--trans);
}
.wa-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right: none;
  border-left-color: var(--text-dark);
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; }

/* ─── BACK TO TOP ────────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 28px;
  z-index: 998;
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  opacity: 0;
  pointer-events: none;
  transition: var(--trans);
  box-shadow: var(--shadow-md);
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { background: var(--navy-light); transform: translateY(-2px); }

/* ─── COOKIE BANNER ──────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 990;
  background: var(--navy);
  color: rgba(255,255,255,0.9);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  border-top: 2px solid var(--gold);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner p {
  color: rgba(255,255,255,0.8);
  font-size: 0.86rem;
  max-width: 600px;
}
.cookie-banner a { color: var(--gold-light); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; }
.btn-cookie-accept {
  background: var(--gold);
  color: var(--navy-dark);
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: var(--trans);
}
.btn-cookie-accept:hover { background: var(--gold-dark); }
.btn-cookie-decline {
  background: transparent;
  color: rgba(255,255,255,0.6);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: var(--trans);
}
.btn-cookie-decline:hover { color: var(--white); border-color: rgba(255,255,255,0.5); }

/* ─── RESPONSIVE BREAKPOINTS ─────────────────────────────────── */

/* Large screens */
@media (max-width: 1100px) {
  .why-grid { gap: 48px; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-contact-col { grid-column: 1 / -1; }
}

/* Tablets */
@media (max-width: 900px) {
  :root { --section-py: 72px; }

  /* Nav becomes mobile */
  .hamburger { display: flex; }
  .nav-links,
  .nav-actions { display: none; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 96px 32px 40px;
    gap: 6px;
    z-index: 900;
    box-shadow: -4px 0 24px rgba(0,0,0,0.12);
    transition: right 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    overflow-y: auto;
  }
  .nav-links.open { right: 0; display: flex; }

  .nav-actions {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    flex-direction: column;
    padding: 0 32px 40px;
    padding-top: calc(96px + 6 * 52px);
    z-index: 900;
    transition: right 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    gap: 10px;
  }
  .nav-actions.open { right: 0; display: flex; }

  .nav-links a { font-size: 1rem; padding: 12px 0; display: block; border-bottom: 1px solid var(--border); }
  .btn-wa-nav, .btn-primary-nav { text-align: center; justify-content: center; }
  .mobile-overlay { display: block; pointer-events: none; }
  .mobile-overlay.visible { pointer-events: auto; }

  /* Hero */
  .hero { min-height: 90vh; }
  .hero-trust { gap: 0; padding: 14px 16px; }
  .trust-item { padding: 6px 14px; }

  /* Why */
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-img-wrap img { height: 380px; }
  .why-cert-badge { right: 0; bottom: -16px; }
  .why-features { grid-template-columns: 1fr; }

  /* Process */
  .process-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .process-arrow { display: none; }

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

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

/* Small tablets / large phones */
@media (max-width: 640px) {
  :root { --section-py: 56px; }

  .top-bar-left { display: none; }

  .hero-trust {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }
  .trust-div { display: none; }
  .trust-item { border-bottom: 1px solid rgba(255,255,255,0.1); width: 45%; padding: 10px 8px; }
  .trust-item:last-child { border-bottom: none; }

  .hero-actions { flex-direction: column; }
  .btn-hero-primary, .btn-hero-secondary { width: 100%; justify-content: center; }

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

  .process-row { grid-template-columns: 1fr; }

  .form-row-2 { grid-template-columns: 1fr; }

  .stats-row { gap: 0; }
  .stat-item { width: 50%; padding: 18px 16px; }
  .stat-div { height: auto; width: 0; }

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

  .reviews-cta { flex-direction: column; text-align: center; gap: 24px; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom .container { flex-direction: column; text-align: center; gap: 10px; }
  .footer-bottom-links { justify-content: center; }

  .contact-form-col { padding: 28px 20px; }
}

/* Very small phones */
@media (max-width: 400px) {
  h1 { font-size: 1.85rem; }
  .stat-item { width: 100%; }
}
