/* ===================================================
   Doha Repair — styles.css
   Design System: Light, clean, trust-building
   =================================================== */

/* ===== RESET & ROOT ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Premium Light Palette */
  --bg:           #ffffff;
  --bg-2:         #f8fafc;
  --bg-white:     rgba(255, 255, 255, 0.7);
  --bg-card:      #ffffff;
  --bg-card-2:    rgba(29, 110, 245, 0.03);

  /* Brand colors */
  --blue:         #1d6ef5;
  --blue-dark:    #1558d6;
  --blue-light:   #f0f6ff;
  --blue-mid:     #e0e7ff;
  --teal:         #06b6d4;
  --green:        #10b981;
  --green-light:  #f0fdf4;
  --amber:        #f59e0b;
  --amber-light:  #fffbeb;
  --red:          #ef4444;

  /* Text - Dark for light background */
  --text:         #0f172a;
  --text-2:       #334155;
  --text-3:       #64748b;
  --text-4:       #94a3b8;

  /* Borders */
  --border:       rgba(15, 23, 42, 0.08); /* Darker border for light mode */
  --border-2:     rgba(15, 23, 42, 0.12);

  /* Shadows - adapted for light mode */
  --shadow-sm:    0 1px 2px rgba(0,0,0,0.05);
  --shadow:       0 4px 12px rgba(0,0,0,0.05);
  --shadow-md:    0 10px 25px rgba(15,23,42,0.08);
  --shadow-lg:    0 20px 50px rgba(15,23,42,0.12);
  --shadow-blue:  0 10px 25px rgba(29,110,245,0.15);

  /* Glassmorphism additions */
  --glass-border: 1px solid rgba(255, 255, 255, 0.4);
  --glass-blur:   blur(12px);

  /* Misc */
  --radius:       20px;
  --radius-sm:    12px;
  --radius-xs:    8px;
  --transition:   0.3s cubic-bezier(0.4,0,0.2,1);
  --font:         'Inter', sans-serif;
  --font-head:    'Plus Jakarta Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}
body.no-scroll {
  overflow: hidden;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-2); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 99px; }

/* ===== UTILITIES ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }

.gradient-text {
  background: linear-gradient(135deg, var(--blue) 0%, var(--teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-light);
  border: 1px solid var(--blue-mid);
  color: var(--blue);
  padding: 6px 16px;
  border-radius: 99px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}
.section-header h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 1rem;
}
.section-header p { color: var(--text-3); font-size: 1.05rem; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  border: 2px solid transparent;
  font-family: var(--font);
}
.btn-primary {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: #fff;
  box-shadow: var(--shadow-blue);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(29,110,245,0.3);
}
.btn-outline {
  background: var(--bg-white);
  border-color: var(--border-2);
  color: var(--text);
  box-shadow: var(--shadow-sm);
}
.btn-outline:hover {
  background: var(--blue-light);
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; }

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  background: #ffffff !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: padding 0.4s, box-shadow 0.4s;
}
.navbar.scrolled {
  padding: 8px 0;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1) !important;
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo img {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
}
.logo span {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}
.logo span strong {
  color: var(--blue);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color var(--transition);
  position: relative;
}
.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--blue);
  transition: width 0.3s ease;
}
.nav-links a:hover:not(.nav-cta)::after,
.nav-links a.active:not(.nav-cta)::after {
  width: 100%;
}
.nav-links a:hover,
.nav-links a.active { color: var(--blue); }

/* Dropdown */
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}
.dropdown-trigger {
  display: flex !important;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
.dropdown-trigger i {
  font-size: 0.75rem;
  transition: transform 0.3s;
}
.dropdown-content {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--bg-white);
  min-width: 240px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--border);
  z-index: 100;
}
.dropdown-content a {
  display: block;
  padding: 10px 24px;
  font-size: 0.88rem !important;
  white-space: nowrap;
  color: var(--text-2) !important;
}
.dropdown-content a:hover {
  background: var(--blue-light);
  color: var(--blue) !important;
}
.nav-dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown:hover .dropdown-trigger i {
  transform: rotate(180deg);
}

.nav-cta {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark)) !important;
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(29,110,245,0.35);
}
.nav-cta:hover { opacity: 0.95; transform: translateY(-1.5px); box-shadow: 0 6px 16px rgba(29,110,245,0.4); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2.5px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 130px 0 80px;
  background: radial-gradient(circle at 50% 0%, #f0f7ff 0%, var(--bg) 60%);
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(29,110,245,0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  filter: blur(60px);
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(34,211,238,0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  filter: blur(60px);
}
/* Dot grid pattern */
.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(29,110,245,0.12) 1.5px, transparent 1.5px);
  background-size: 36px 36px;
  pointer-events: none;
  opacity: 0.7;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-light);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--blue-mid);
  color: var(--blue);
  padding: 7px 18px;
  border-radius: 99px;
  font-size: 0.83rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.hero-badge .badge-dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.12;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-3);
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
}
.trust-avatars {
  display: flex;
}
.trust-avatars img {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid #fff;
  object-fit: cover;
  margin-left: -10px;
}
.trust-avatars img:first-child { margin-left: 0; }
.trust-text { font-size: 0.85rem; color: var(--text-3); line-height: 1.4; }
.trust-text strong { color: var(--text); display: block; }
.trust-stars { color: var(--amber); font-size: 0.75rem; }

/* Hero right — image design */
.hero-main-img-wrap {
  position: relative;
  width: 100%;
  max-width: 580px;
  margin-left: auto;
}
.hero-main-img {
  width: 100%;
  border-radius: 32px;
  box-shadow: var(--shadow-lg);
  border: 4px solid #fff;
  display: block;
}
.hero-floating-card {
  position: absolute;
  top: 15%;
  left: -15%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: var(--glass-blur);
  padding: 16px 24px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.4);
  animation: floatBadge 4s ease-in-out infinite;
}
.hero-floating-card.bottom {
  top: auto;
  bottom: 15%;
  left: auto;
  right: -10%;
  animation-delay: 2s;
}
.h-card-icon {
  width: 44px;
  height: 44px;
  background: var(--blue-light);
  color: var(--blue);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}
.h-card-icon.green {
  background: var(--green-light);
  color: var(--green);
}
.hero-floating-card strong {
  display: block;
  font-size: 1rem;
  color: var(--text);
  font-weight: 800;
}
.hero-floating-card span {
  font-size: 0.82rem;
  color: var(--text-3);
  font-weight: 600;
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--bg-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
  box-shadow: var(--shadow-sm);
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 8px 20px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--blue);
  display: inline;
}
.stat-suf { font-family: var(--font-head); font-size: 2.4rem; font-weight: 800; color: var(--blue); }
.stat-item p { font-size: 0.85rem; color: var(--text-3); margin-top: 4px; font-weight: 500; }

/* ===== BRANDS ===== */
.brands {
  padding: 32px 0;
  background: var(--bg-2);
  overflow: hidden;
}
.brands-label {
  text-align: center;
  color: var(--text-4);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 20px;
}
.brands-scroll { overflow: hidden; }
.brands-track {
  display: flex;
  align-items: center;
  gap: 56px;
  width: max-content;
  animation: scrollBrands 32s linear infinite;
}
.brands-track span {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-4);
  letter-spacing: 0.03em;
  white-space: nowrap;
  transition: color 0.3s;
}
.brands-track span:hover { color: var(--blue); }
@keyframes scrollBrands {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== SERVICES ===== */
.services { background: var(--bg); }
/* ======= TEAM CARDS ======= */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}
.team-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--border);
}
.team-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); border-color: var(--blue-mid); }
.team-image { position: relative; height: 350px; }
.team-image img { width: 100%; height: 100%; object-fit: cover; }
.team-role {
  position: absolute;
  bottom: 0px; left: 0px; right: 0px;
  background: linear-gradient(to top, rgba(15,23,42,0.95), transparent);
  color: #fff;
  padding: 30px 24px 20px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.team-body { padding: 30px; }
.team-body h3 { font-family: var(--font-head); font-size: 1.4rem; color: var(--text); margin-bottom: 5px; }
.team-title { color: var(--blue); font-weight: 700; font-size: 0.9rem; margin-bottom: 15px; display: block; }
.team-bio { color: var(--text-3); font-size: 0.95rem; line-height: 1.6; margin-bottom: 20px; }
.team-skills { display: flex; flex-wrap: wrap; gap: 8px; }
.skill { background: var(--bg-2); color: var(--text-2); padding: 5px 12px; border-radius: 6px; font-size: 0.78rem; font-weight: 600; border: 1px solid var(--border); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
}
.service-card {
  background: var(--bg-card);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  box-shadow: var(--shadow-sm);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-blue);
  border-color: rgba(29, 110, 245, 0.5);
}
.service-img {
  position: relative;
  height: 210px;
  overflow: hidden;
}
.service-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-img img { transform: scale(1.03); }
.service-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.8), transparent 80%);
}
.service-chip {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 99px;
  padding: 5px 14px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--blue);
  box-shadow: var(--shadow-sm);
  display: flex; align-items: center; gap: 6px;
}
.service-body { padding: 28px; }
.service-body h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.65rem;
}
.service-body p { color: var(--text-3); font-size: 0.92rem; margin-bottom: 1.1rem; }
.service-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 1.5rem;
}
.service-list li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.83rem;
  color: var(--text-3);
}
.service-list li i { color: var(--green); font-size: 0.8rem; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: gap 0.3s;
}
.service-link:hover { gap: 14px; }

/* ===== WHY US ===== */
.why-us { background: var(--bg-2); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-left h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 1rem;
}
.why-left > p { color: var(--text-3); margin-bottom: 2rem; font-size: 1rem; }
.why-features { display: flex; flex-direction: column; gap: 20px; margin-bottom: 2.5rem; }
.why-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px;
  background: var(--bg-card);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.why-feature:hover { transform: translateX(3px); box-shadow: var(--shadow); }
.why-icon {
  width: 46px; height: 46px;
  flex-shrink: 0;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem;
}
.why-icon.blue { background: var(--blue-light); color: var(--blue); }
.why-icon.green { background: var(--green-light); color: var(--green); }
.why-icon.amber { background: var(--amber-light); color: var(--amber); }
.why-icon.teal { background: #e0f2fe; color: var(--teal); }
.why-feature h4 { font-weight: 700; font-size: 0.95rem; margin-bottom: 3px; color: var(--text); }
.why-feature p { color: var(--text-3); font-size: 0.88rem; }

.why-image-grid { position: relative; height: 480px; }
.why-img-card { border-radius: var(--radius); overflow: hidden; border: 3px solid #fff; position: absolute; box-shadow: var(--shadow-md); }
.why-img-card img { width: 100%; height: 100%; object-fit: cover; }
.card-lg { width: 65%; height: 80%; top: 0; left: 0; }
.card-sm { width: 45%; height: 45%; }
.card-sm.top { right: 0; top: 10%; }
.card-sm.bottom { right: 0; bottom: 0; }
.why-badge-float {
  position: absolute;
  bottom: 10%; left: 5%;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow-md);
  animation: floatBadge 4s ease-in-out infinite;
}
.why-badge-float i { color: var(--amber); font-size: 1.4rem; }
.why-badge-float span { font-weight: 800; font-size: 1.1rem; display: block; color: var(--text); }
.why-badge-float small { color: var(--text-3); font-size: 0.78rem; display: block; }

/* ===== HOW IT WORKS ===== */
.how-it-works { background: var(--bg-white); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
.step-card {
  background: var(--bg-card);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 28px;
  position: relative;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-mid);
}
.step-number {
  font-family: var(--font-head);
  font-size: 5rem;
  font-weight: 900;
  color: rgba(29, 110, 245, 0.08);
  position: absolute;
  top: 12px; right: 16px;
  line-height: 1;
  user-select: none;
}
.step-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--blue-light), var(--blue-mid));
  border: 1px solid var(--blue-mid);
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
  color: var(--blue);
  margin: 0 auto 1.5rem;
}
.step-card h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.75rem;
}
.step-card p { color: var(--text-3); font-size: 0.9rem; line-height: 1.7; }
.step-connector {
  position: absolute;
  top: 50%; right: -18px;
  transform: translateY(-50%);
  width: 36px; height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  z-index: 2;
}
.step-connector::after {
  content: '';
  position: absolute;
  right: -3px; top: -4px;
  border: 5px solid transparent;
  border-left-color: var(--teal);
}

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--bg-2); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: var(--bg-card);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.testi-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-mid);
}
.testi-card.featured {
  background: linear-gradient(145deg, var(--blue-light), #f0f6ff);
  border-color: var(--blue-mid);
  box-shadow: var(--shadow-blue);
}
.testi-stars { color: var(--amber); margin-bottom: 1rem; font-size: 0.9rem; display: flex; gap: 3px; }
.testi-card p {
  color: var(--text-2);
  font-size: 0.93rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-author img {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
}
.testi-author strong { display: block; font-size: 0.92rem; color: var(--text); font-weight: 700; }
.testi-author span { color: var(--text-4); font-size: 0.8rem; }

/* ===== PRICING ===== */
.pricing { background: var(--bg-2); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.pricing-card {
  background: var(--bg-card);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pricing-card.popular {
  background: linear-gradient(145deg, rgba(29, 110, 245, 0.1), rgba(6, 182, 212, 0.05));
  border-color: var(--blue);
  box-shadow: var(--shadow-blue);
}
.popular-badge {
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 5px 18px;
  border-radius: 99px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.pricing-icon {
  width: 56px; height: 56px;
  background: var(--blue-light);
  border: 1px solid var(--blue-mid);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--blue);
  margin-bottom: 1.25rem;
}
.pricing-card h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.75rem;
}
.price {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 900;
  color: var(--blue);
  margin-bottom: 0.25rem;
  display: flex;
  align-items: flex-start;
  gap: 4px;
}
.currency { font-size: 1.5rem; margin-top: 8px; }
.price-from { font-size: 1rem; font-weight: 400; color: var(--text-3); align-self: flex-end; margin-bottom: 6px; }
.price-note { color: var(--text-4); font-size: 0.8rem; margin-bottom: 1.5rem; }
.pricing-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 2rem;
}
.pricing-card ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-2);
  font-size: 0.9rem;
}
.pricing-card ul li i { color: var(--green); font-size: 0.85rem; }

/* ===== FAQ (REDESIGNED) ===== */
.faq { background: var(--bg); }
.faq-wrap { display: flex; flex-direction: column; gap: 40px; align-items: center; max-width: 800px; margin: 0 auto; text-align: center; }
.faq-left h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.faq-left p { color: var(--text-3); font-size: 1.1rem; }
.faq-right { display: flex; flex-direction: column; gap: 16px; width: 100%; text-align: left; }
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}
.faq-item:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
  border-color: var(--blue-light);
}
.faq-item.open { 
  border-color: var(--blue); 
  box-shadow: 0 0 0 4px var(--blue-light); 
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 24px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: inherit;
}
.faq-question i {
  color: var(--blue);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 1.2rem;
}
.faq-item.open .faq-question i { transform: rotate(180deg); }
.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: 300px; }
.faq-answer p {
  padding: 0 24px 24px;
  color: var(--text-2);
  line-height: 1.7;
  margin: 0;
}

/* ===== CONTACT ===== */
.contact { background: var(--bg-2); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px; align-items: start; }
.contact-left h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1rem;
}
.contact-left > p { color: var(--text-3); margin-bottom: 2rem; }
.contact-methods { display: flex; flex-direction: column; gap: 14px; }
.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: var(--text);
  background: var(--bg-card);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.contact-method:hover { border-color: var(--blue); transform: translateX(3px); box-shadow: var(--shadow); }
.cm-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.contact-method strong { display: block; font-size: 0.9rem; margin-bottom: 2px; color: var(--text); font-weight: 700; }
.contact-method span { color: var(--text-3); font-size: 0.85rem; }

.contact-form {
  background: var(--bg-card);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 44px;
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.form-group label { font-size: 0.85rem; font-weight: 700; color: var(--text-2); }
.form-group input,
.form-group select,
.form-group textarea {
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
  padding: 12px 16px;
  color: var(--text);
  font-family: var(--font);
  font-size: 0.92rem;
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(29,110,245,0.12);
}
.form-group select { appearance: none; cursor: pointer; color: var(--text-4); }
.form-group select option { background: var(--bg-2); color: var(--text); }
.form-group textarea { resize: vertical; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-4); }

.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  color: var(--green);
  font-weight: 700;
  font-size: 0.92rem;
  margin-top: 12px;
}
.form-success.show { display: flex; }
.form-success i { font-size: 1.3rem; }

/* ===== FOOTER ===== */
.footer { background: #0f172a; color: #f1f5f9; position: relative; z-index: 10; }
.footer-top { padding: 80px 0 60px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 48px;
}
.footer-brand p { color: #64748b; font-size: 0.88rem; margin: 1rem 0 1.5rem; line-height: 1.75; }
.footer-logo { color: #f1f5f9 !important; }
.footer-logo .logo-icon { box-shadow: none; }
.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}
.social-links a:hover { background: var(--blue); border-color: var(--blue); color: #fff; }
.footer-col h4 { font-family: var(--font-head); font-weight: 800; color: #f1f5f9; margin-bottom: 1.25rem; font-size: 0.95rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li { font-size: 0.88rem; color: #64748b; }
.footer-col ul li a { color: #64748b; text-decoration: none; transition: color 0.3s; }
.footer-col ul li a:hover { color: #93c5fd; }
.footer-col ul li i { margin-right: 8px; color: #3b82f6; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding: 20px 0; }
.footer-bottom .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { color: #475569; font-size: 0.82rem; }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 32px; right: 32px;
  z-index: 999;
  background: #25D366;
  color: #fff;
  width: 58px; height: 58px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(37,211,102,0.45);
  transition: transform 0.3s, box-shadow 0.3s;
}
.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}
.whatsapp-float:hover { transform: scale(1.05); box-shadow: 0 12px 40px rgba(37,211,102,0.65); }
.wa-tooltip {
  position: absolute;
  right: 68px;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; }
.wa-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  animation: waPulse 2.5s ease-out infinite;
  z-index: -1;
}
@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.9); opacity: 0; }
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 105px; right: 34px;
  z-index: 998;
  width: 44px; height: 44px;
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  color: var(--text-3);
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { background: var(--blue); border-color: var(--blue); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-blue); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero-right { height: 380px; }
  .hero-subtitle { margin: 0 auto 2rem; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .badge-certified { left: -2%; }
  .badge-warranty { right: -2%; }
  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-image-grid { height: 320px; }
  .faq-wrap { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 768px) {
  .navbar { padding: 10px 0; }
  .logo img { height: 36px; }
  .logo span { font-size: 1.2rem; }
  .section { padding: 60px 0; }
  .section-header h2 { font-size: 1.8rem; }
  .service-hero { padding: 120px 0 60px !important; }
  .service-hero h1 { font-size: 2.2rem !important; }
  .section h2 { font-size: 2rem !important; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-connector { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .hero-right { height: 300px; }
  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .nav-links {
    position: fixed;
    top: 0; right: -320px; bottom: 0;
    width: 320px;
    background: #ffffff;
    flex-direction: column;
    gap: 24px;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 100px 24px 40px;
    font-size: 1.15rem;
    opacity: 1; /* override original opacity transition */
    pointer-events: auto; /* override */
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    border-left: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: -10px 0 30px rgba(0,0,0,0.05);
  }
  .nav-links a { font-size: 1.15rem; font-weight: 600; width: 100%; }
  
  .mobile-overlay {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,10,30,0.6);
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    z-index: 998;
    opacity: 0; pointer-events: none;
    transition: opacity 0.4s;
  }
  .mobile-overlay.open { opacity: 1; pointer-events: auto; }
  .nav-dropdown { flex-direction: column; width: 100%; }
  .dropdown-trigger { width: 100%; justify-content: flex-start; }
  .dropdown-content {
    position: static !important;
    width: 100% !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    box-shadow: none !important;
    border: none !important;
    background: transparent !important;
    text-align: left !important;
    min-width: unset !important;
    padding: 0 !important;
    margin: 0 !important;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    display: flex !important;
    flex-direction: column !important;
  }
  .nav-dropdown:hover .dropdown-content,
  .nav-dropdown.active .dropdown-content { max-height: 400px; }
  .nav-dropdown.active .dropdown-trigger i { transform: rotate(180deg); }
  .dropdown-content a { font-size: 0.95rem !important; padding: 10px 0; white-space: normal; border-bottom: 1px solid rgba(0,0,0,0.03); }
  .dropdown-content a:last-child { border-bottom: none; }

  .nav-links.open { right: 0; }
  .hamburger { display: flex; z-index: 1000; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .why-image-grid { display: none; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .contact-form { padding: 24px; }
  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .mosaic-badge { display: none; }
}

/* ===== SERVICE PAGE SPECIFIC ===== */
.service-hero {
  padding: 160px 0 100px;
  background: linear-gradient(165deg, #f0f6ff 0%, #ffffff 100%);
  text-align: center;
}
.service-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
}
.service-hero p {
  font-size: 1.15rem;
  color: var(--text-3);
  max-width: 700px;
  margin: 0 auto 2.5rem;
}

/* Booking Card — Qatar Specific */
.booking-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  margin-top: -60px;
  position: relative;
  z-index: 10;
}
.booking-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 768px) {
  .booking-grid { grid-template-columns: 1fr; }
}

/* Coverage Area */
.coverage-section { background: var(--bg-2); }
.zones-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 32px;
}
.zone-item {
  background: var(--bg-white);
  padding: 12px 20px;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-2);
}
.zone-item i { color: var(--blue); font-size: 0.8rem; }

/* Pricing QAR */
.price-qar {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--blue);
}
.currency-qar { font-size: 1rem; color: var(--text-3); margin-left: 4px; }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-sm);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-label {
  position: absolute;
  bottom: 12px; left: 12px;
  background: rgba(15, 23, 42, 0.8);
  color: #fff;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
}

/* Loading Animations */
.skeleton {
  background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
}
@keyframes skeleton-loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Responsive tweaks for service page */
@media (max-width: 768px) {
  .booking-card { padding: 24px; margin-top: -40px; }
  .service-hero { padding: 120px 0 80px; }
}

