/* ===================================================
   FixPro Appliance Repair — styles.css
   Design System: Light, clean, trust-building
   =================================================== */

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

:root {
  /* Light palette */
  --bg:           #f8fafc;
  --bg-2:         #f1f5f9;
  --bg-white:     #ffffff;
  --bg-card:      #ffffff;
  --bg-card-2:    #f0f6ff;

  /* Brand colors */
  --blue:         #1d6ef5;
  --blue-dark:    #1558d6;
  --blue-light:   #eff5ff;
  --blue-mid:     #dbeafe;
  --teal:         #0891b2;
  --green:        #059669;
  --green-light:  #ecfdf5;
  --amber:        #d97706;
  --amber-light:  #fffbeb;
  --red:          #dc2626;

  /* Text */
  --text:         #0f172a;
  --text-2:       #334155;
  --text-3:       #64748b;
  --text-4:       #94a3b8;

  /* Borders */
  --border:       #e2e8f0;
  --border-2:     #cbd5e1;

  /* Shadows */
  --shadow-sm:    0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.05);
  --shadow:       0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.05);
  --shadow-md:    0 10px 32px rgba(0,0,0,0.10), 0 4px 12px rgba(0,0,0,0.06);
  --shadow-lg:    0 20px 60px rgba(0,0,0,0.12), 0 8px 24px rgba(0,0,0,0.07);
  --shadow-blue:  0 8px 32px rgba(29,110,245,0.25);

  /* 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: 20px 0;
  transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
  padding: 10px 0;
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text);
  text-decoration: none;
}
.logo strong { color: var(--blue); }
.logo-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem;
  color: #fff;
  box-shadow: 0 4px 12px rgba(29,110,245,0.3);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  color: var(--text-2);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.3s;
}
.nav-links a:hover { 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: linear-gradient(165deg, #f0f6ff 0%, #f8fafc 40%, #fff5f0 100%);
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(29,110,245,0.10) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(8,145,178,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
/* 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(--bg-white);
  border: 1px solid var(--border);
  color: var(--text-2);
  padding: 7px 18px;
  border-radius: 99px;
  font-size: 0.83rem;
  font-weight: 600;
  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 mosaic */
.hero-right {
  position: relative;
  height: 540px;
}
.hero-mosaic {
  position: relative;
  width: 100%;
  height: 100%;
}
.mosaic-img {
  position: absolute;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.mosaic-img img { width: 100%; height: 100%; object-fit: cover; }
.mosaic-main {
  width: 68%; height: 65%;
  top: 0; right: 0;
  border-radius: 24px;
  animation: floatImg 5s ease-in-out infinite;
}
.mosaic-bl {
  width: 48%; height: 48%;
  bottom: 0; left: 0;
  border-radius: 20px;
  animation: floatImg 5s ease-in-out infinite 1.2s;
}
.mosaic-br {
  width: 44%; height: 43%;
  bottom: 0; right: 4%;
  border-radius: 20px;
  animation: floatImg 5s ease-in-out infinite 2.4s;
}
@keyframes floatImg {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}
/* Floating info cards */
.mosaic-badge {
  position: absolute;
  background: var(--bg-white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
  border: 1px solid var(--border);
}
.badge-certified {
  top: 28%; left: -6%;
  animation: floatBadge 4s ease-in-out infinite;
}
.badge-warranty {
  bottom: 28%; right: -6%;
  animation: floatBadge 4s ease-in-out infinite 2s;
}
@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.badge-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.badge-icon.blue { background: var(--blue-light); color: var(--blue); }
.badge-icon.green { background: var(--green-light); color: var(--green); }
.mosaic-badge strong { font-size: 0.9rem; font-weight: 700; display: block; color: var(--text); }
.mosaic-badge span { font-size: 0.75rem; color: var(--text-3); display: block; }

/* ===== 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); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
}
.service-card {
  background: var(--bg-white);
  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-md);
  border-color: var(--blue-mid);
}
.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.6), transparent 60%);
}
.service-chip {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--bg-white);
  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-white);
  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);
  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.06);
  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-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.testi-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.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-white); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.pricing-card {
  background: var(--bg);
  border: 1.5px 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, #eff5ff, #f0f8ff);
  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 ===== */
.faq { background: var(--bg-2); }
.faq-wrap { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; align-items: start; }
.faq-left h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.faq-left p { color: var(--text-3); }
.faq-right { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.faq-item.open { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(29,110,245,0.08); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 700;
  text-align: left;
  gap: 16px;
  font-family: var(--font);
}
.faq-question i { flex-shrink: 0; color: var(--blue); transition: transform 0.35s; }
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-answer { max-height: 200px; }
.faq-answer p { padding: 0 24px 20px; color: var(--text-3); font-size: 0.92rem; line-height: 1.75; }

/* ===== CONTACT ===== */
.contact { background: var(--bg-white); }
.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);
  border: 1.5px 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);
  border: 1.5px 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: var(--bg-white);
  border: 1.5px 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; }
.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; }
.footer-top { padding: 72px 0 48px; }
.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;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(37,211,102,0.45);
  transition: transform 0.3s, box-shadow 0.3s;
}
.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) {
  .section { padding: 72px 0; }
  .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 40px 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.4);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    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: center; }
  .dropdown-content {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    background: transparent;
    text-align: center;
    min-width: unset;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
  }
  .nav-dropdown:hover .dropdown-content { max-height: 200px; }
  .dropdown-content a { font-size: 0.95rem !important; padding: 8px 0; }

  .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; }
}

