@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Arabic:wght@300;400;500;600;700&display=swap');

:root {
  --primary: #0A66FF;
  --primary-dark: #0050CC;
  --primary-glow: rgba(10, 102, 255, 0.3);
  --accent: #F59E0B;
  --whatsapp: #00C853;
  --call: #FF3B30;
  --dark: #ffffff;
  --dark2: #f4f6fb;
  --dark3: #eaf0fb;
  --text: #1a1a2e;
  --text-muted: #5a6a85;
  --border: rgba(10,102,255,0.13);
  --card-bg: #ffffff;
  --radius: 12px;
  --shadow: 0 8px 32px rgba(10,102,255,0.08);
  --glass: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.2);
  --glass-blur: 15px;
}

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

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-services-special .glass-card {
  animation: float 6s ease-in-out infinite;
}

.svc-hero-card {
  animation: fadeInUp 0.6s ease-out both;
}

.svc-hero-card:nth-child(1) { animation-delay: 0.1s; }
.svc-hero-card:nth-child(2) { animation-delay: 0.2s; }
.svc-hero-card:nth-child(3) { animation-delay: 0.3s; }
.svc-hero-card:nth-child(4) { animation-delay: 0.4s; }

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'IBM Plex Sans Arabic', sans-serif;
  background: var(--dark);
  color: var(--text);
  direction: rtl;
  line-height: 1.7;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; }
ul { list-style: none; }

/* UTILITIES */
.glass-card {
  background: var(--glass);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow);
}

.gradient-border {
  position: relative;
  background: linear-gradient(var(--card-bg), var(--card-bg)) padding-box,
              linear-gradient(135deg, var(--primary), var(--accent)) border-box;
  border: 2px solid transparent;
  border-radius: var(--radius);
}

.neon-text {
  text-shadow: 0 0 10px var(--primary-glow);
}

/* BREADCRUMB */
.breadcrumb-pro {
  background: var(--dark);
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 5;
}
.breadcrumb-pro .container {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.breadcrumb-pro a {
  color: var(--primary);
  font-weight: 500;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 5px;
}
.breadcrumb-pro a:hover {
  color: var(--accent);
}
.breadcrumb-pro i {
  font-size: 0.8rem;
  opacity: 0.5;
}
.breadcrumb-pro .current {
  color: var(--text);
  font-weight: 600;
}

/* TRUST BAR - Dashboard Style */
.trust-bar-pro {
  background: var(--dark);
  padding: 60px 0;
  position: relative;
}
.trust-bar-pro .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}
.trust-item-pro {
  background: var(--card-bg);
  border: 1px solid var(--border);
  padding: 30px 25px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 30px rgba(10, 102, 255, 0.03);
}
.trust-item-pro:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(10, 102, 255, 0.08);
  border-color: var(--primary);
}
.trust-item-pro .trust-icon {
  width: 60px;
  height: 60px;
  background: var(--dark3);
  color: var(--primary);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  transition: 0.3s;
}
.trust-item-pro:hover .trust-icon {
  background: var(--primary);
  color: #fff;
  transform: rotate(10deg);
}
.trust-item-pro strong {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--text) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.trust-item-pro span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* BRAND SLIDER */
.brand-slider-pro {
  padding: 50px 0;
  background: var(--dark3);
  overflow: hidden;
  position: relative;
}
.brand-track-pro {
  display: flex;
  width: calc(250px * 14);
  animation: scrollBrands 40s linear infinite;
}
.brand-item-pro {
  width: 250px;
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-muted);
  opacity: 0.4;
  transition: 0.3s;
}
.brand-item-pro:hover { opacity: 1; color: var(--primary); }
@keyframes scrollBrands {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-250px * 7)); }
}

/* HOW WE WORK - STEPS */
.how-steps-pro {
  padding: 80px 0;
}
.steps-pro-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  position: relative;
}
.step-pro-card {
  text-align: center;
  position: relative;
}
.step-pro-num {
  width: 50px; height: 50px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto 20px;
  box-shadow: 0 0 15px var(--primary-glow);
}
.step-pro-card h4 { margin-bottom: 10px; }
.step-pro-card p { font-size: 0.9rem; color: var(--text-muted); }

/* APPLIANCE STRIP */
.appliance-strip-pro {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 20px 0;
  scrollbar-width: none;
}
.appliance-strip-pro::-webkit-scrollbar { display: none; }
.appliance-glass-card {
  min-width: 250px;
  padding: 30px;
  border-radius: var(--radius);
  text-align: center;
  transition: 0.3s;
}
.appliance-glass-card i { font-size: 2.5rem; color: var(--primary); margin-bottom: 15px; }

/* SECTION 9: Emergency Banner - Professional Redesign */
.emergency-pro-banner {
  background: #0f172a;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  border-top: 4px solid #ef4444;
}
.emergency-pro-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 20%, rgba(239, 68, 68, 0.1) 0%, transparent 50%);
  pointer-events: none;
}
.em-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.em-content {
  flex: 1;
  text-align: right;
}
.em-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.9rem;
  margin-bottom: 25px;
  border: 1px solid rgba(239, 68, 68, 0.3);
}
.em-pulse {
  width: 10px;
  height: 10px;
  background: #ef4444;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
  animation: pulse-red 1.5s infinite;
}
@keyframes pulse-red {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(239, 68, 68, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}
.em-title {
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 15px;
}
.em-desc {
  color: #94a3b8;
  font-size: 1.1rem;
  max-width: 600px;
}
.em-actions {
  display: flex;
  flex-direction: column;
  gap: 15px;
  min-width: 280px;
}
.btn-em-call {
  background: #ef4444;
  color: #fff !important;
  padding: 18px 35px;
  border-radius: 15px;
  font-weight: 800;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: 0.3s;
  box-shadow: 0 10px 25px rgba(239, 68, 68, 0.3);
}
.btn-em-call:hover {
  transform: translateY(-5px);
  background: #dc2626;
}
.btn-em-wa {
  background: #22c55e;
  color: #fff !important;
  padding: 18px 35px;
  border-radius: 15px;
  font-weight: 800;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: 0.3s;
}
.btn-em-wa:hover {
  transform: translateY(-5px);
  background: #16a34a;
}

/* TESTIMONIALS SLIDER */
.reviews-slider-pro {
  padding: 80px 0;
  background: var(--dark2);
}
.review-pro-card {
  padding: 30px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

/* TOPBAR */
.topbar {
  background: linear-gradient(90deg, #07111f 0%, #0b1f3a 62%, #122b46 100%);
  padding: 8px 0;
  font-size: 0.9rem;
  font-weight: 500;
  color: #fff;
  border-bottom: 1px solid rgba(255, 180, 0, 0.22);
  box-shadow: 0 2px 14px rgba(7, 17, 31, 0.22);
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar-right {
  display: flex;
  align-items: center;
}
.topbar-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.topbar-icon {
  background: rgba(255,180,0,0.16);
  color: #ffd166;
  width: 32px; height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.2s;
}
.topbar-icon:hover {
  background: rgba(255,180,0,0.28);
  color: #fff;
  transform: scale(1.05);
}

/* HEADER */
header {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(10,102,255,0.07);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 14px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo span { color: var(--primary); }
nav { display: flex; align-items: center; gap: 4px; }
nav a {
  padding: 7px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  transition: all .2s;
}
nav a .nav-icon {
  width: 18px;
  min-width: 18px;
  font-size: 0.95rem;
  color: var(--primary);
  text-align: center;
  transition: color .2s;
}
nav a:hover, nav a.active {
  background: rgba(10,102,255,0.08);
  color: var(--primary);
}
nav a:hover .nav-icon,
nav a.active .nav-icon {
  color: var(--secondary);
}
.nav-bottom-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-right: 8px;
  white-space: nowrap;
}
.btn-call-nav {
  background: var(--call);
  color: #fff !important;
  padding: 8px 18px !important;
  border-radius: 8px;
  font-weight: 600 !important;
  display: flex;
  align-items: center;
  gap: 6px;
}
.btn-call-nav i,
.nav-bottom-cta .nav-highlight i {
  font-size: 0.95rem;
  line-height: 1;
}
@media (min-width: 769px) {
  .nav-bottom-cta {
    display: flex;
  }
  .nav-bottom-cta .btn-call-nav {
    display: none;
  }
  .nav-bottom-cta .nav-highlight {
    display: inline-flex;
  }
}
.btn-call-nav:hover { background: #e0322a !important; }
.btn-whatsapp-nav {
  background: var(--whatsapp);
}
.btn-whatsapp-nav:hover {
  background: #10a846 !important;
}

/* احجز الآن - highlighted nav link */
nav a.nav-highlight {
  background: #FFB400;
  color: #000 !important;
  font-weight: 700 !important;
  padding: 8px 16px !important;
  border-radius: 8px;
  animation: pulse-gold 2s infinite;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
nav a.nav-highlight:hover {
  background: #e6a200;
  color: #000 !important;
}
@keyframes pulse-gold {
  0%,100% { box-shadow: 0 0 0 0 rgba(255,180,0,0.4); }
  50%      { box-shadow: 0 0 0 6px rgba(255,180,0,0); }
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* CONTAINER */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all .25s;
  font-family: inherit;
  text-decoration: none;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 20px rgba(10,102,255,0.35);
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); }
.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 4px 20px rgba(0,200,83,0.35);
}
.btn-whatsapp:hover { background: #00a844; transform: translateY(-2px); }
.btn-call {
  background: var(--call);
  color: #fff;
  box-shadow: 0 4px 20px rgba(255,59,48,0.35);
}
.btn-call:hover { background: #e0322a; transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}
.btn-outline:hover { background: var(--primary); color: #fff; }

/* HERO — تصميم احترافي + لمسة شبكة (سكيتش خفيف) */
.hero {
  padding: 72px 0 64px;
  position: relative;
  overflow: hidden;
  background-color: #070b14;
}

/* صورة خلفية + طبقة داكنة بشفافية 65% (تُرى الصورة بنسبة ~35%) */
.hero.hero-sketch {
  --hero-overlay: rgba(7, 11, 20, 0.65);
  background-image:
    linear-gradient(var(--hero-overlay), var(--hero-overlay)),
    url('images/hero-bg.jpg');
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
}

.hero-sketch::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 15% 20%, rgba(59, 130, 246, 0.2), transparent 55%),
    radial-gradient(ellipse 60% 45% at 85% 75%, rgba(245, 158, 11, 0.08), transparent 50%),
    radial-gradient(circle at 50% 100%, rgba(14, 165, 233, 0.1), transparent 45%);
  pointer-events: none;
  z-index: 0;
}

.hero-sketch::after {
  content: '';
  position: absolute;
  width: min(520px, 90vw);
  height: min(520px, 90vw);
  top: -18%;
  left: -8%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.hero-deco {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.45;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 85% 70% at 50% 40%, #000 20%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse 85% 70% at 50% 40%, #000 20%, transparent 72%);
}

@media (prefers-reduced-motion: no-preference) {
  .hero-sketch::before {
    animation: hero-mesh-shift 22s ease-in-out infinite alternate;
  }
}

@keyframes hero-mesh-shift {
  0% { opacity: 1; transform: scale(1) translate(0, 0); }
  100% { opacity: 0.92; transform: scale(1.03) translate(-1%, 1%); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-sketch::before { animation: none; }
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4vw, 56px);
  align-items: center;
}

/* نص الهيرو */
.hero-text {
  text-align: right;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  color: #f1f5f9;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 600;
  margin-bottom: 22px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}

.hero-badge-star {
  font-size: 0.95rem;
  color: #fbbf24;
  filter: drop-shadow(0 0 6px rgba(251, 191, 36, 0.45));
  flex-shrink: 0;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-badge-star {
    animation: hero-pulse 2.4s ease-in-out infinite;
  }
}

@keyframes hero-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.08); opacity: 0.88; }
}

.hero h1 {
  font-size: clamp(2.05rem, 4.2vw, 3.15rem);
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.25);
}

.hero-h1-accent {
  font-weight: 800;
  background: linear-gradient(135deg, #fde68a 0%, #fbbf24 45%, #f59e0b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 600;
  color: #bae6fd;
  margin-bottom: 16px !important;
  letter-spacing: 0.01em;
}

.hero-divider {
  width: 72px;
  height: 4px;
  background: linear-gradient(90deg, #38bdf8, #fbbf24);
  border-radius: 4px;
  margin: 0 0 20px auto;
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.35);
}

.hero-desc {
  font-size: 1.02rem;
  color: rgba(226, 232, 240, 0.92);
  margin-bottom: 28px !important;
  line-height: 1.85;
  max-width: 34em;
  margin-right: 0;
  margin-left: auto;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 28px;
}

/* أيقونات على اليسار: عمود أيقونة (يسار) | عمود نص */
.btn-hero-primary,
.btn-hero-secondary {
  display: inline-grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: 10px;
  direction: ltr;
  text-align: right;
  padding: 14px 22px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.btn-hero-label {
  direction: rtl;
  text-align: center;
  min-width: 0;
}

.btn-hero-primary {
  background: linear-gradient(180deg, #ff5f52 0%, #e11d48 100%);
  color: #fff !important;
  box-shadow: 0 8px 28px rgba(225, 29, 72, 0.45);
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(225, 29, 72, 0.5);
}

.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(8px);
}

.btn-hero-secondary:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-hero-icon {
  font-size: 1.15rem;
  line-height: 1;
  justify-self: center;
  width: 1.35em;
  text-align: center;
}

.btn-hero-secondary .btn-hero-icon {
  font-size: 1.25rem;
  color: #4ade80;
}

.hero-trust-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* أيقونة الثقة على اليسار */
.hero-trust-item {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: 12px;
  direction: ltr;
  align-self: center;
  background: rgba(15, 23, 42, 0.45);
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 14px;
  padding: 12px 18px;
  backdrop-filter: blur(10px);
}

.hero-trust-copy {
  display: flex;
  flex-direction: column;
  text-align: center;
  direction: rtl;
  min-width: 0;
}

.hero-trust-icon {
  font-size: 1.35rem;
  line-height: 1;
  justify-self: center;
  width: 1.5em;
  text-align: center;
  color: #7dd3fc;
}

.hero-trust-copy strong {
  color: #f8fafc;
  font-size: 0.88rem;
  font-weight: 700;
}

.hero-trust-copy > span {
  color: rgba(203, 213, 225, 0.9);
  font-size: 0.76rem;
}

/* لوحة البطاقات — زجاج، متمركزة أفقياً */
.hero-cards {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: 100%;
}

.hero-panel {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  padding: 22px 20px 20px;
  backdrop-filter: blur(16px);
  box-shadow:
    0 4px 40px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  width: 100%;
  max-width: 520px;
  margin-inline: auto;
}

.hero-panel-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(186, 230, 253, 0.85);
  margin: 0 auto 14px;
  text-align: center;
  display: block;
  width: 100%;
}

.hero-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
}

.hero-card {
  position: relative;
  background: rgba(15, 23, 42, 0.35);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 16px;
  padding: 16px 10px 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
  text-decoration: none;
  color: #fff;
  overflow: hidden;
}

.hero-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(56, 189, 248, 0.12), transparent 55%);
  opacity: 0;
  transition: opacity 0.22s ease;
}

.hero-card:hover {
  transform: translateY(-5px);
  border-color: rgba(125, 211, 252, 0.45);
  background: rgba(30, 41, 59, 0.55);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.hero-card:hover::before {
  opacity: 1;
}

.hero-card-icon {
  font-size: 1.75rem;
  line-height: 1;
  position: relative;
  z-index: 1;
  color: #bae6fd;
}

.hero-card strong {
  font-size: 0.88rem;
  font-weight: 800;
  color: #f8fafc;
  position: relative;
  z-index: 1;
}

.hero-card span {
  font-size: 0.72rem;
  color: rgba(203, 213, 225, 0.88);
  position: relative;
  z-index: 1;
}

.hero-cards-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
  background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 50%, #fcd34d 100%);
  color: #0f172a !important;
  font-weight: 800;
  font-size: 0.92rem;
  text-align: center;
  padding: 15px 18px;
  border-radius: 14px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 6px 28px rgba(245, 158, 11, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.hero-cards-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(245, 158, 11, 0.45);
}

.hero-cards-cta .hero-cta-shield {
  font-size: 1.15rem;
  color: #0f172a;
  opacity: 0.95;
}

.btn-hero-primary:focus-visible,
.btn-hero-secondary:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 3px;
}

.hero-stats-bar {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 16px;
  padding: 14px 12px;
  margin-top: 16px;
  gap: 4px;
}

.hs-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-width: 0;
}

.hs-sep {
  width: 1px;
  align-self: stretch;
  min-height: 36px;
  background: linear-gradient(180deg, transparent, rgba(148, 163, 184, 0.35), transparent);
  flex-shrink: 0;
}

.hs-num {
  font-size: clamp(1.25rem, 2.5vw, 1.55rem);
  font-weight: 800;
  background: linear-gradient(135deg, #fef9c3, #fbbf24);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.hs-text {
  font-size: 0.74rem;
  color: rgba(226, 232, 240, 0.88);
  font-weight: 600;
  text-align: center;
  line-height: 1.35;
}

@media (max-width: 900px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-text { text-align: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .hero-trust-row { justify-content: center; }
  .hero-trust-copy { text-align: center; }
  .hero-divider { margin: 0 auto 20px; }
}

@media (max-width: 500px) {
  .hero-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats-bar {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 8px;
    padding: 16px 12px;
  }
  .hs-sep { display: none; }
  .hs-item { flex: 0 0 42%; max-width: 48%; }
}



/* SECTIONS */
section { padding: 70px 0; }
.section-title {
  text-align: center;
  margin-bottom: 50px;
}
.section-title h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}
.section-title p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 550px;
  margin: 0 auto;
}
.section-label {
  display: inline-block;
  background: rgba(10,102,255,0.12);
  color: var(--primary);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

/* PROBLEM SECTION */
.problem-section { background: var(--dark2); }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.problem-card {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}
.problem-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform .3s;
}
.problem-card:hover { transform: translateY(-4px); border-color: rgba(10,102,255,0.3); }
.problem-card:hover::before { transform: scaleX(1); }
.problem-icon { font-size: 2.5rem; margin-bottom: 12px; }
.problem-card h3 { font-size: 1rem; font-weight: 600; color: var(--text); }

/* SERVICES PRO */
.services-pro-section {
  background:
    linear-gradient(180deg, #f7fbff 0%, #eef5ff 55%, #ffffff 100%);
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}
.services-pro-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10,102,255,0.05) 1px, transparent 1px),
    linear-gradient(0deg, rgba(10,102,255,0.04) 1px, transparent 1px);
  background-size: 54px 54px;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 74%, transparent);
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 74%, transparent);
  pointer-events: none;
}
.services-pro-section .container {
  position: relative;
  z-index: 1;
}
.services-proof-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: -26px auto 34px;
}
.services-proof-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(10,102,255,0.12);
  color: #1f3b63;
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: 0 10px 28px rgba(10,102,255,0.08);
  backdrop-filter: blur(10px);
}
.services-proof-item i {
  color: var(--primary);
  font-size: 0.95rem;
}
.services-pro-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.svc-card {
  background: rgba(255,255,255,0.9);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(15, 35, 75, 0.08);
  border: 1px solid rgba(10,102,255,0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
  position: relative;
  min-height: 100%;
  backdrop-filter: blur(12px);
}
.svc-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-top: 4px solid rgba(10,102,255,0.85);
  pointer-events: none;
}
.svc-card-featured {
  box-shadow: 0 22px 58px rgba(10,102,255,0.16);
  border-color: rgba(10,102,255,0.22);
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(15, 35, 75, 0.15);
  border-color: rgba(10,102,255,0.24);
}
.svc-emergency-card { border-color: rgba(220,38,38,0.12); }
.svc-emergency-card:hover { box-shadow: 0 16px 48px rgba(220,38,38,0.12); border-color: rgba(220,38,38,0.25); }
.svc-emergency-card::before { border-top-color: #dc2626; }

/* CARD HEADER */
.svc-card-header {
  padding: 26px 22px 18px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  position: relative;
}
.svc-icon-wrap {
  width: 58px; height: 58px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.35rem;
  box-shadow: 0 14px 28px rgba(15, 35, 75, 0.2);
  flex: 0 0 auto;
}
.svc-badge {
  position: static;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(10,102,255,0.1);
  color: #1f3b63;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 6px 11px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 20px rgba(15, 35, 75, 0.08);
}
.svc-badge-red {
  background: rgba(220,38,38,0.08);
  color: #dc2626;
  border-color: rgba(220,38,38,0.2);
}

/* CARD BODY */
.svc-card-body {
  padding: 0 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.svc-card-body h3 {
  font-size: 1.12rem;
  font-weight: 800;
  color: #07111f;
  margin-bottom: 10px;
  text-align: right;
}
.svc-card-body > p {
  color: #50617a;
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 16px;
  text-align: right;
}

/* FEATURES LIST */
.svc-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.svc-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #26384f;
}
.svc-features li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px; height: 18px;
  background: rgba(10,102,255,0.1);
  color: var(--primary);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}
.svc-emergency-card .svc-features li::before {
  background: #fee2e2;
  color: #dc2626;
}

/* ACTION BUTTONS */
.svc-card-actions {
  display: flex;
  gap: 8px;
  margin-top: auto;
}
.svc-btn-primary {
  flex: 1;
  display: flex; align-items: center; justify-content: center;
  background: #07111f;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 800;
  padding: 11px 14px;
  border-radius: 8px;
  text-decoration: none;
  transition: all .2s;
  text-align: center;
  gap: 7px;
}
.svc-btn-primary:hover { background: var(--primary); transform: translateY(-1px); }
.svc-btn-red { background: #dc2626; }
.svc-btn-red:hover { background: #b91c1c; }
.svc-btn-call {
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(10,102,255,0.16);
  color: #07111f;
  font-size: 0.88rem;
  font-weight: 800;
  padding: 11px 16px;
  border-radius: 8px;
  text-decoration: none;
  transition: all .2s;
  white-space: nowrap;
  gap: 6px;
}
.svc-btn-call:hover { background: #e8f0fe; border-color: var(--primary); color: var(--primary); }
.svc-call-red:hover { background: #fee2e2; border-color: #dc2626; color: #dc2626; }

@media (max-width: 1000px) {
  .services-pro-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 580px)  {
  .services-pro-section { padding: 64px 0; }
  .services-proof-row { margin-top: -18px; justify-content: stretch; }
  .services-proof-item { flex: 1 1 100%; justify-content: center; }
  .services-pro-grid { grid-template-columns: 1fr; }
  .svc-card-header { padding: 22px 18px 16px; }
  .svc-card-body { padding: 0 18px 18px; }
  .svc-card-actions { flex-direction: column; }
  .svc-btn-call,
  .svc-btn-primary { width: 100%; }
}



/* SERVICES HERO STYLE */
.services-section-hero {
  background: linear-gradient(135deg, #3730c4 0%, #4B3FE4 40%, #5b4fd4 70%, #3a6ed4 100%);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.services-section-hero::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
  top: -150px; right: -100px;
  pointer-events: none;
}
.section-label-hero {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.services-grid-hero {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-card-hero {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(14px);
  border-radius: 16px;
  padding: 24px 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  transition: all .28s;
  position: relative;
  overflow: hidden;
}
.service-card-hero:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.35);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}
.sc-hero-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}
.sc-hero-icon {
  font-size: 2rem;
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
}
.sc-hero-tag {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
}
.service-card-hero h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}
.service-card-hero p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}
.sc-hero-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 6px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.sc-hero-features {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
}
.sc-hero-arrow {
  font-size: 1rem;
  color: #ffd54f;
  font-weight: 700;
  transition: transform .2s;
}
.service-card-hero:hover .sc-hero-arrow { transform: translateX(-4px); }
.sc-emergency { border-color: rgba(252,100,100,0.3); }
.sc-emergency:hover { border-color: rgba(252,100,100,0.5); }

@media (max-width: 900px) { .services-grid-hero { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .services-grid-hero { grid-template-columns: 1fr; } }



/* BRANDS PRO */
.brands-section {
  background:
    linear-gradient(180deg, rgba(7,17,31,0.8) 0%, rgba(11,31,58,0.8) 100%);
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}
.brands-section::before {
  content: '';
  position: absolute;
  top: 0;
  inset-inline: 0;
  height: 100%;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: linear-gradient(to bottom, #000, rgba(0,0,0,0.8));
  mask-image: linear-gradient(to bottom, #000, rgba(0,0,0,0.8));
  pointer-events: none;
}
.brands-section .container {
  position: relative;
  z-index: 1;
}
.brands-section .section-label {
  background: rgba(255,180,0,0.16);
  color: #ffd166;
  border: 1px solid rgba(255,180,0,0.22);
}
.brands-section .section-title h2,
.brands-section .section-title p {
  color: #fff;
}
.brands-section .section-title p {
  color: rgba(255,255,255,0.74);
}
.brands-proof-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: -26px auto 34px;
}
.brands-proof-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.92);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 0.88rem;
  font-weight: 800;
  box-shadow: 0 14px 34px rgba(0,0,0,0.16);
  backdrop-filter: blur(10px);
}
.brands-proof-item i {
  color: #ffd166;
  font-size: 0.95rem;
}
.brands-grid-pro {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.brand-pro-card {
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 8px;
  overflow: hidden;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  box-shadow: 0 22px 56px rgba(7,17,31,0.12);
  position: relative;
  backdrop-filter: blur(12px);
}
.brand-pro-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-top: 4px solid rgba(255,180,0,0.9);
  pointer-events: none;
}
.brand-pro-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(7,17,31,0.18);
  border-color: rgba(255,180,0,0.32);
}
.bpc-logo {
  min-height: 112px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.92), rgba(239,246,255,0.96));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 900;
  border-bottom: 1px solid rgba(10,102,255,0.08);
  letter-spacing: 0;
  text-align: center;
  padding: 18px;
  position: relative;
}
.bpc-logo::after {
  content: 'معتمد للصيانة';
  position: absolute;
  bottom: 10px;
  inset-inline-start: 16px;
  color: #1f3b63;
  background: rgba(255,180,0,0.16);
  border: 1px solid rgba(255,180,0,0.22);
  border-radius: 999px;
  padding: 4px 9px;
  font-size: 0.7rem;
  font-weight: 800;
}
.bpc-content {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.bpc-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}
.bpc-meta span {
  background: rgba(10,102,255,0.08);
  color: #1f3b63;
  border: 1px solid rgba(10,102,255,0.08);
  border-radius: 999px;
  padding: 4px 9px;
  font-size: 0.72rem;
  font-weight: 800;
}
.bpc-content h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #07111f;
  margin-bottom: 8px;
  text-align: right;
}
.bpc-content p {
  color: #50617a;
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
  text-align: right;
}
.bpc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  text-align: center;
  background: #07111f;
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 11px 14px;
  border-radius: 8px;
  text-decoration: none;
  transition: all .2s;
}
.bpc-btn:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-1px);
}
.brands-more-wrap {
  text-align: center;
  margin-top: 36px;
}
.brands-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #fff;
  color: #07111f;
  border: 1px solid rgba(10,102,255,0.14);
  box-shadow: 0 18px 42px rgba(10,102,255,0.1);
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 900;
  transition: all .2s;
}
.brands-more-btn strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 26px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(255,180,0,0.18);
  color: #8a5a00;
}
.brands-more-btn:hover {
  transform: translateY(-2px);
  color: var(--primary);
  border-color: rgba(10,102,255,0.28);
}

@media (max-width: 900px) {
  .brands-grid-pro { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 500px) {
  .brands-section { padding: 64px 0; }
  .brands-proof-row { margin-top: -18px; justify-content: stretch; }
  .brands-proof-item { flex: 1 1 100%; justify-content: center; text-align: center; }
  .brands-grid-pro { grid-template-columns: 1fr; }
  .bpc-logo { min-height: 104px; }
  .bpc-content { padding: 18px; }
  .brands-more-btn { width: 100%; }
}

/* BLOG SECTION */
.blog-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}
.blog-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10,102,255,0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(10,102,255,0.035) 1px, transparent 1px);
  background-size: 58px 58px;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
  pointer-events: none;
}
.blog-section .container {
  position: relative;
  z-index: 1;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.blog-card {
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(10,102,255,0.1);
  border-radius: 8px;
  box-shadow: 0 20px 52px rgba(15,35,75,0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
  backdrop-filter: blur(12px);
}
.blog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(10,102,255,0.24);
  box-shadow: 0 26px 68px rgba(15,35,75,0.14);
}
.blog-media {
  min-height: 142px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #07111f;
  position: relative;
  overflow: hidden;
}
.blog-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7,17,31,0.05), rgba(7,17,31,0.34));
  pointer-events: none;
}
.blog-media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}
.blog-card:hover .blog-media img {
  transform: scale(1.05);
}
.blog-content {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}
.blog-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(10,102,255,0.08);
  color: #1f3b63;
  border: 1px solid rgba(10,102,255,0.08);
  border-radius: 999px;
  padding: 4px 9px;
  font-size: 0.72rem;
  font-weight: 800;
}
.blog-content h3 {
  font-size: 1.12rem;
  line-height: 1.55;
  margin-bottom: 10px;
  color: #07111f;
  text-align: center;
}
.blog-content p {
  color: #50617a;
  font-size: 0.92rem;
  line-height: 1.8;
  margin-bottom: 18px;
  flex: 1;
  text-align: center;
}
.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 900;
  width: fit-content;
  align-self: flex-end;
}
.blog-link:hover {
  color: #07111f;
}
.blog-more-wrap {
  text-align: center;
  margin-top: 34px;
}
.blog-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #fff;
  color: #07111f;
  border: 1px solid rgba(10,102,255,0.14);
  box-shadow: 0 18px 42px rgba(10,102,255,0.1);
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 900;
  transition: all .2s;
}
.blog-more-btn strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 26px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(255,180,0,0.18);
  color: #8a5a00;
}
.blog-more-btn:hover {
  transform: translateY(-2px);
  color: var(--primary);
  border-color: rgba(10,102,255,0.28);
}
.blog-cta {
  margin-top: 28px;
  background: #07111f;
  color: #fff;
  border-radius: 8px;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  box-shadow: 0 24px 58px rgba(7,17,31,0.16);
}
.blog-cta div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.blog-cta strong {
  font-size: 1.05rem;
}
.blog-cta span {
  color: rgba(255,255,255,0.72);
  font-size: 0.92rem;
}
.blog-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #ff3b30;
  color: #fff;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 900;
  white-space: nowrap;
}
.blog-cta a:hover {
  background: var(--primary);
}
@media (max-width: 1000px) {
  .blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 580px) {
  .blog-section { padding: 64px 0; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-media { min-height: 150px; }
  .blog-content { padding: 18px; }
  .blog-more-btn { width: 100%; }
  .blog-cta { flex-direction: column; align-items: stretch; text-align: center; }
  .blog-cta a { width: 100%; }
}

/* PROBLEM PRO */
.problem-pro-section {
  background:
    linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}
.problem-pro-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,180,0,0.07) 1px, transparent 1px),
    linear-gradient(0deg, rgba(10,102,255,0.035) 1px, transparent 1px);
  background-size: 58px 58px;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
  pointer-events: none;
}
.problem-pro-section .container {
  position: relative;
  z-index: 1;
}
.problem-proof-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: -26px auto 34px;
}
.problem-proof-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(10,102,255,0.12);
  color: #1f3b63;
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(10,102,255,0.08);
  backdrop-filter: blur(10px);
}
.problem-proof-item i {
  color: #d97706;
  font-size: 0.95rem;
}
.problem-pro-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.problem-pro-card {
  background: rgba(255,255,255,0.92);
  border-radius: 8px;
  padding: 22px;
  border: 1px solid rgba(10,102,255,0.1);
  box-shadow: 0 20px 52px rgba(15,35,75,0.08);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
}
.problem-pro-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-top: 4px solid rgba(255,180,0,0.9);
  pointer-events: none;
}
.problem-pro-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(15,35,75,0.14);
  border-color: rgba(255,180,0,0.32);
}
.ppc-icon {
  font-size: 1.35rem;
  width: 58px; height: 58px;
  border-radius: 8px;
  background: #07111f;
  color: #ffd166;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 14px 28px rgba(15,35,75,0.2);
}
.ppc-icon-hot {
  background: #7f1d1d;
  color: #fecaca;
}
.ppc-icon-cold {
  background: #0c4a6e;
  color: #bae6fd;
}
.ppc-badge {
  display: inline-flex;
  width: fit-content;
  background: rgba(10,102,255,0.08);
  color: #1f3b63;
  border: 1px solid rgba(10,102,255,0.1);
  border-radius: 999px;
  padding: 4px 9px;
  font-size: 0.72rem;
  font-weight: 800;
  margin-bottom: 10px;
}
.ppc-badge-hot {
  background: rgba(220,38,38,0.1);
  color: #b91c1c;
  border-color: rgba(220,38,38,0.14);
}
.ppc-badge-cold {
  background: rgba(2,132,199,0.1);
  color: #0369a1;
  border-color: rgba(2,132,199,0.14);
}
.ppc-content h3 {
  font-size: 1.12rem;
  font-weight: 800;
  color: #07111f;
  margin-bottom: 14px;
}
.ppc-content ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.ppc-content ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: #50617a;
  line-height: 1.6;
}
.ppc-content ul li::before {
  content: '!';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255,180,0,0.18);
  color: #8a5a00;
  font-size: 0.75rem;
  font-weight: 900;
  flex: 0 0 auto;
}
.problem-actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.problem-more-btn,
.problem-call-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 900;
  transition: all .2s;
}
.problem-more-btn {
  background: #fff;
  color: #07111f;
  border: 1px solid rgba(10,102,255,0.14);
  box-shadow: 0 18px 42px rgba(10,102,255,0.1);
}
.problem-call-btn {
  background: #ff3b30;
  color: #fff;
  box-shadow: 0 18px 42px rgba(255,59,48,0.16);
}
.problem-more-btn:hover,
.problem-call-btn:hover {
  transform: translateY(-2px);
}
.problem-more-btn:hover {
  color: var(--primary);
  border-color: rgba(10,102,255,0.28);
}
.problem-call-btn:hover {
  background: var(--primary);
}
@media (max-width: 1000px) {
  .problem-pro-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 580px) {
  .problem-pro-section { padding: 64px 0; }
  .problem-proof-row { margin-top: -18px; justify-content: stretch; }
  .problem-proof-item { flex: 1 1 100%; justify-content: center; text-align: center; }
  .problem-pro-grid { grid-template-columns: 1fr; }
  .problem-actions { align-items: stretch; }
  .problem-more-btn,
  .problem-call-btn { width: 100%; }
}

/* WHY US PRO */
.why-pro-section {
  background:
    linear-gradient(180deg, rgba(7,17,31,0.92) 0%, rgba(11,31,58,0.92) 100%);
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}
.why-pro-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 58px 58px;
  -webkit-mask-image: linear-gradient(to bottom, #000, rgba(0,0,0,0.8));
  mask-image: linear-gradient(to bottom, #000, rgba(0,0,0,0.8));
  pointer-events: none;
}
.why-pro-section .container {
  position: relative;
  z-index: 1;
}
.why-pro-section .section-label {
  background: rgba(255,180,0,0.16);
  color: #ffd166;
  border: 1px solid rgba(255,180,0,0.22);
}
.why-pro-section .section-title h2,
.why-pro-section .section-title p {
  color: #fff;
}
.why-pro-section .section-title p {
  color: rgba(255,255,255,0.74);
}
.why-proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 760px;
  margin: -24px auto 34px;
}
.why-proof-item {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 14px 16px;
  text-align: center;
  box-shadow: 0 18px 42px rgba(0,0,0,0.16);
  backdrop-filter: blur(10px);
}
.why-proof-item strong {
  display: block;
  color: #ffd166;
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1.2;
}
.why-proof-item span {
  display: block;
  color: rgba(255,255,255,0.78);
  font-size: 0.84rem;
  font-weight: 800;
  margin-top: 4px;
}
.why-pro-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.why-pro-card {
  text-align: right;
  padding: 24px;
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: 8px;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 22px 56px rgba(7,17,31,0.13);
  backdrop-filter: blur(12px);
}
.why-pro-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-top: 4px solid rgba(255,180,0,0.9);
  pointer-events: none;
}
.why-pro-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,180,0,0.32);
  box-shadow: 0 30px 72px rgba(7,17,31,0.2);
}
.wpc-icon-wrap {
  width: 58px; height: 58px;
  margin: 0 0 18px;
  background: #07111f;
  color: #ffd166;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  transition: transform .24s ease, background .24s ease, color .24s ease;
  box-shadow: 0 14px 28px rgba(15,35,75,0.2);
}
.why-pro-card:hover .wpc-icon-wrap {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}
.wpc-icon {
  font-size: 1.35rem;
  line-height: 1;
}
.why-card-number {
  position: absolute;
  top: 18px;
  left: 18px;
  color: rgba(7,17,31,0.12);
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
}
.why-pro-card h3 {
  font-size: 1.12rem;
  font-weight: 800;
  color: #07111f;
  margin-bottom: 10px;
}
.why-pro-card p {
  font-size: 0.92rem;
  color: #50617a;
  line-height: 1.75;
  margin: 0;
}
.why-cta {
  margin-top: 34px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  box-shadow: 0 24px 58px rgba(0,0,0,0.16);
  backdrop-filter: blur(10px);
}
.why-cta div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.why-cta strong {
  font-size: 1.05rem;
}
.why-cta span {
  color: rgba(255,255,255,0.72);
  font-size: 0.92rem;
}
.why-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #FFB400;
  color: #07111f;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 900;
  white-space: nowrap;
}
.why-cta a:hover {
  background: #fff;
  color: var(--primary);
}
@media (max-width: 1000px) {
  .why-pro-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 580px) {
  .why-pro-section { padding: 64px 0; }
  .why-proof-row { grid-template-columns: 1fr; margin-top: -18px; }
  .why-pro-grid { grid-template-columns: 1fr; }
  .why-pro-card { padding: 22px 18px; }
  .why-cta { flex-direction: column; align-items: stretch; text-align: center; }
  .why-cta a { width: 100%; }
}

/* REVIEWS PRO */
.reviews-pro-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}
.reviews-pro-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,180,0,0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(10,102,255,0.035) 1px, transparent 1px);
  background-size: 58px 58px;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
  pointer-events: none;
}
.reviews-pro-section .container {
  position: relative;
  z-index: 1;
}
.reviews-summary-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 760px;
  margin: -24px auto 34px;
}
.reviews-summary-item {
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(10,102,255,0.12);
  border-radius: 8px;
  padding: 14px 16px;
  text-align: center;
  box-shadow: 0 18px 42px rgba(10,102,255,0.08);
  backdrop-filter: blur(10px);
}
.reviews-summary-item strong {
  display: block;
  color: #07111f;
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1.2;
}
.reviews-summary-item span {
  display: block;
  color: #50617a;
  font-size: 0.84rem;
  font-weight: 800;
  margin-top: 4px;
}
.reviews-grid-pro {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.review-pro-card {
  background: rgba(255,255,255,0.92);
  border-radius: 8px;
  padding: 24px;
  position: relative;
  box-shadow: 0 22px 56px rgba(15,35,75,0.09);
  border: 1px solid rgba(10,102,255,0.1);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
  overflow: hidden;
  backdrop-filter: blur(12px);
}
.review-pro-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-top: 4px solid rgba(255,180,0,0.9);
  pointer-events: none;
}
.review-pro-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 72px rgba(15,35,75,0.15);
  border-color: rgba(255,180,0,0.32);
}
.rpc-quote-icon {
  position: absolute;
  top: 18px;
  left: 18px;
  font-size: 2.2rem;
  color: rgba(10,102,255,0.1);
  line-height: 1;
}
.rpc-rating {
  color: #FFB400;
  font-size: 0.95rem;
  margin-bottom: 12px;
  display: flex;
  gap: 3px;
}
.rpc-service {
  display: inline-flex;
  width: fit-content;
  background: rgba(10,102,255,0.08);
  color: #1f3b63;
  border: 1px solid rgba(10,102,255,0.1);
  border-radius: 999px;
  padding: 4px 9px;
  font-size: 0.72rem;
  font-weight: 800;
  margin-bottom: 14px;
}
.rpc-text {
  font-size: 0.96rem;
  color: #26384f;
  line-height: 1.8;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.rpc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(10,102,255,0.08);
  padding-top: 16px;
}
.rpc-user {
  display: flex;
  align-items: center;
  gap: 12px;
}
.rpc-avatar {
  width: 48px; height: 48px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-weight: 900;
  font-size: 1.1rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.rpc-user-info h4 {
  font-size: 1rem;
  font-weight: 800;
  color: #07111f;
  margin-bottom: 2px;
}
.rpc-verified {
  font-size: 0.75rem;
  color: var(--whatsapp);
  font-weight: 800;
}
.rpc-date {
  font-size: 0.8rem;
  color: #64748b;
  white-space: nowrap;
}
.reviews-cta {
  margin-top: 34px;
  background: #07111f;
  color: #fff;
  border-radius: 8px;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  box-shadow: 0 24px 58px rgba(7,17,31,0.16);
}
.reviews-cta div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.reviews-cta strong {
  font-size: 1.05rem;
}
.reviews-cta span {
  color: rgba(255,255,255,0.72);
  font-size: 0.92rem;
}
.reviews-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #FFB400;
  color: #07111f;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 900;
  white-space: nowrap;
}
.reviews-cta a:hover {
  background: #fff;
  color: var(--primary);
}
@media (max-width: 1000px) {
  .reviews-grid-pro { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 580px) {
  .reviews-pro-section { padding: 64px 0; }
  .reviews-summary-row { grid-template-columns: 1fr; margin-top: -18px; }
  .reviews-grid-pro { grid-template-columns: 1fr; }
  .review-pro-card { padding: 22px 18px; }
  .reviews-cta { flex-direction: column; align-items: stretch; text-align: center; }
  .reviews-cta a { width: 100%; }
  .rpc-footer { align-items: flex-start; gap: 12px; }
}

/* SEO CONTENT PRO */
.seo-pro-section {
  background:
    linear-gradient(180deg, rgba(7,17,31,0.92) 0%, rgba(11,31,58,0.92) 100%);
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}
.seo-pro-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 58px 58px;
  -webkit-mask-image: linear-gradient(to bottom, #000, rgba(0,0,0,0.8));
  mask-image: linear-gradient(to bottom, #000, rgba(0,0,0,0.8));
  pointer-events: none;
}
.seo-pro-section .container {
  position: relative;
  z-index: 1;
}
.seo-pro-header { max-width: 840px; margin: 0 auto 34px; text-align: center; }
.seo-pro-header h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); font-weight: 900; color: #fff; margin-bottom: 16px; }
.seo-pro-header p { color: rgba(255,255,255,0.76); font-size: 1.05rem; line-height: 1.9; }
.seo-pro-header p strong { color: #ffd166; }
.seo-proof-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 auto 34px;
}
.seo-proof-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.92);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 0.88rem;
  font-weight: 800;
  box-shadow: 0 14px 34px rgba(0,0,0,0.16);
  backdrop-filter: blur(10px);
}
.seo-proof-item i { color: #ffd166; }
.seo-pro-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.seo-pro-card {
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: 8px;
  padding: 24px;
  display: flex;
  gap: 18px;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 22px 56px rgba(7,17,31,0.13);
  backdrop-filter: blur(12px);
}
.seo-pro-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-top: 4px solid rgba(255,180,0,0.9);
  pointer-events: none;
}
.seo-pro-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,180,0,0.32);
  box-shadow: 0 30px 72px rgba(7,17,31,0.2);
}
.seo-icon {
  font-size: 1.35rem;
  width: 58px; height: 58px;
  border-radius: 8px;
  background: #07111f;
  color: #ffd166;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 14px 28px rgba(15,35,75,0.2);
}
.seo-icon-hot { background: #7f1d1d; color: #fecaca; }
.seo-icon-cold { background: #0c4a6e; color: #bae6fd; }
.seo-card-tag {
  display: inline-flex;
  width: fit-content;
  background: rgba(10,102,255,0.08);
  color: #1f3b63;
  border: 1px solid rgba(10,102,255,0.1);
  border-radius: 999px;
  padding: 4px 9px;
  font-size: 0.72rem;
  font-weight: 800;
  margin-bottom: 10px;
}
.seo-card-tag-hot { background: rgba(220,38,38,0.1); color: #b91c1c; border-color: rgba(220,38,38,0.14); }
.seo-card-tag-cold { background: rgba(2,132,199,0.1); color: #0369a1; border-color: rgba(2,132,199,0.14); }
.seo-text h3 { font-size: 1.12rem; font-weight: 900; color: #07111f; margin-bottom: 10px; }
.seo-text p { color: #50617a; font-size: 0.92rem; line-height: 1.8; }
.seo-more-wrap {
  text-align: center;
  margin-top: 34px;
}
.seo-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #fff;
  color: #07111f;
  border: 1px solid rgba(255,180,0,0.22);
  box-shadow: 0 18px 42px rgba(0,0,0,0.16);
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 900;
  transition: all .2s;
}
.seo-more-btn:hover {
  transform: translateY(-2px);
  color: var(--primary);
  border-color: rgba(255,180,0,0.42);
}

@media (max-width: 900px) { .seo-pro-grid { grid-template-columns: 1fr; } }
@media (max-width: 580px) {
  .seo-pro-section { padding: 64px 0; }
  .seo-proof-item { flex: 1 1 100%; justify-content: center; text-align: center; }
  .seo-pro-card { flex-direction: column; padding: 22px 18px; }
  .seo-more-btn { width: 100%; }
}

/* FAQ PRO */
.faq-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}
.faq-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10,102,255,0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,180,0,0.055) 1px, transparent 1px);
  background-size: 58px 58px;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
  pointer-events: none;
}
.faq-section .container {
  position: relative;
  z-index: 1;
}
.faq-proof-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: -24px auto 34px;
}
.faq-proof-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(10,102,255,0.12);
  color: #1f3b63;
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(10,102,255,0.08);
  backdrop-filter: blur(10px);
}
.faq-proof-item i { color: var(--primary); }
.faq-list { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(10,102,255,0.1);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(15,35,75,0.07);
  transition: border-color .24s ease, box-shadow .24s ease, transform .24s ease;
  backdrop-filter: blur(12px);
}
.faq-item:hover {
  border-color: rgba(10,102,255,0.24);
  box-shadow: 0 24px 58px rgba(15,35,75,0.12);
  transform: translateY(-2px);
}
.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  color: #07111f;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 900;
  padding: 22px 24px;
  text-align: right;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.24s;
}
.faq-question.open { color: var(--primary); }
.faq-arrow {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(10,102,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  font-size: 0.9rem;
  transition: all .3s;
  flex-shrink: 0;
}
.faq-question.open .faq-arrow {
  background: var(--primary);
  color: #fff;
  transform: rotate(45deg);
}
.faq-answer {
  background: transparent;
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .4s;
  color: #50617a;
  font-size: 0.95rem;
  line-height: 1.8;
}
.faq-answer.open { max-height: 300px; padding: 0 24px 24px; }
.faq-cta {
  max-width: 860px;
  margin: 28px auto 0;
  background: #07111f;
  color: #fff;
  border-radius: 8px;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  box-shadow: 0 24px 58px rgba(7,17,31,0.16);
}
.faq-cta div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.faq-cta strong { font-size: 1.05rem; }
.faq-cta span { color: rgba(255,255,255,0.72); font-size: 0.92rem; }
.faq-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #ff3b30;
  color: #fff;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 900;
  white-space: nowrap;
}
.faq-cta a:hover {
  background: var(--primary);
}
@media (max-width: 580px) {
  .faq-section { padding: 64px 0; }
  .faq-proof-row { margin-top: -18px; justify-content: stretch; }
  .faq-proof-item { flex: 1 1 100%; justify-content: center; text-align: center; }
  .faq-question { padding: 18px; font-size: 0.98rem; }
  .faq-answer.open { padding: 0 18px 18px; }
  .faq-cta { flex-direction: column; align-items: stretch; text-align: center; }
  .faq-cta a { width: 100%; }
}

/* CONTACT PRO */
.contact-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}
.contact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10,102,255,0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,180,0,0.055) 1px, transparent 1px);
  background-size: 58px 58px;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
  pointer-events: none;
}
.contact-section .container {
  position: relative;
  z-index: 1;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}
.contact-info {
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(10,102,255,0.1);
  border-radius: 8px;
  padding: 28px;
  box-shadow: 0 22px 56px rgba(15,35,75,0.08);
  backdrop-filter: blur(12px);
}
.contact-info h2 { font-size: clamp(1.7rem, 3.4vw, 2.35rem); font-weight: 900; color: #07111f; margin-bottom: 12px; }
.contact-info p { color: #50617a; font-size: 1.05rem; line-height: 1.8; margin-bottom: 20px; }
.contact-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}
.contact-proof-row span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(10,102,255,0.08);
  color: #1f3b63;
  border: 1px solid rgba(10,102,255,0.1);
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 0.82rem;
  font-weight: 800;
}
.contact-proof-row i { color: var(--primary); }
.contact-items { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(10,102,255,0.1);
  border-radius: 8px;
  padding: 16px;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
  min-width: 0;
}
.contact-item:hover { border-color: rgba(10,102,255,0.24); transform: translateY(-3px); box-shadow: 0 18px 38px rgba(10,102,255,0.09); }
.contact-item-icon { 
  font-size: 1rem; 
  width: 42px; height: 42px; 
  background: #07111f;
  color: #ffd166;
  border-radius: 8px; 
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 24px rgba(15,35,75,0.18);
  flex: 0 0 auto;
}
.contact-item-call .contact-item-icon { background: #ff3b30; color: #fff; }
.contact-item-wa .contact-item-icon { background: var(--whatsapp); color: #fff; }
.contact-item-text { display: flex; flex-direction: column; }
.contact-item-label { font-size: 0.82rem; color: #64748b; margin-bottom: 2px; }
.contact-item-value { font-weight: 900; color: #07111f; font-size: 0.95rem; overflow-wrap: anywhere; }

.contact-form { 
  background: rgba(255,255,255,0.94); 
  border: 1px solid rgba(10,102,255,0.12); 
  border-radius: 8px; 
  padding: 28px; 
  box-shadow: 0 24px 58px rgba(15,35,75,0.1);
  backdrop-filter: blur(12px);
}
.contact-form-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}
.contact-form-head > span {
  width: 54px;
  height: 54px;
  border-radius: 8px;
  background: #07111f;
  color: #ffd166;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 14px 28px rgba(15,35,75,0.18);
}
.contact-form h3 { font-size: 1.35rem; font-weight: 900; color: #07111f; margin-bottom: 3px; }
.contact-form-head p { color: #64748b; font-size: 0.9rem; line-height: 1.6; margin: 0; }
#contactForm {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.form-group { margin-bottom: 16px; }
.form-group-full { grid-column: 1 / -1; }
.form-group label { display: block; font-size: 0.92rem; font-weight: 800; color: #07111f; margin-bottom: 7px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  background: #f8faff;
  border: 1px solid rgba(10,102,255,0.12);
  border-radius: 8px;
  padding: 14px 16px;
  color: #07111f;
  font-family: inherit;
  font-size: 1rem;
  transition: all .3s;
  outline: none;
  direction: rtl;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { 
  border-color: var(--primary); 
  background: #fff; 
  box-shadow: 0 0 0 4px rgba(10,102,255,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.contact-form .btn-primary {
  border-radius: 8px;
  font-weight: 900;
  padding: 14px 18px;
  box-shadow: 0 16px 36px rgba(10,102,255,0.18);
}
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 580px) {
  .contact-section { padding: 64px 0; }
  .contact-info,
  .contact-form { padding: 22px 18px; }
  .contact-items { grid-template-columns: 1fr; }
  .contact-proof-row span { flex: 1 1 100%; justify-content: center; }
  .contact-form-head { align-items: flex-start; }
  #contactForm { grid-template-columns: 1fr; }
}

/* CTA PRO BANNER */
.cta-pro-banner {
  background:
    linear-gradient(135deg, #07111f 0%, #0b1f3a 58%, #0A66FF 140%);
  padding: 88px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-pro-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 58px 58px;
  -webkit-mask-image: linear-gradient(to bottom, #000, rgba(0,0,0,0.72));
  mask-image: linear-gradient(to bottom, #000, rgba(0,0,0,0.72));
  pointer-events: none;
}
.cta-pro-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 38px;
  box-shadow: 0 30px 74px rgba(0,0,0,0.18);
  backdrop-filter: blur(12px);
}
.cta-pro-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 200, 83, 0.14);
  color: #86efac;
  border: 1px solid rgba(0, 200, 83, 0.24);
  padding: 7px 16px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 900;
  margin-bottom: 24px;
}
.pulse-dot {
  width: 10px; height: 10px;
  background: var(--whatsapp);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(0, 200, 83, 0.7);
  animation: pulse-green 1.5s infinite;
}
@keyframes pulse-green {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 200, 83, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(0, 200, 83, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 200, 83, 0); }
}
.cta-pro-banner h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900; color: #fff; margin-bottom: 16px; }
.cta-pro-banner p { color: rgba(255,255,255,0.76); font-size: 1.15rem; line-height: 1.8; margin-bottom: 24px; }
.cta-pro-banner p strong { color: #ffd166; }
.cta-feature-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}
.cta-feature-row span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.9);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.86rem;
  font-weight: 800;
}
.cta-feature-row i { color: #ffd166; }

.cta-pro-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-btn-call, .cta-btn-wa {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: transform .24s ease, box-shadow .24s ease, background .24s ease, border-color .24s ease;
  min-width: 260px;
  text-align: right;
}
.cta-btn-call {
  background: #ff3b30;
  color: #fff;
  box-shadow: 0 18px 42px rgba(255,59,48,0.22);
}
.cta-btn-call:hover { background: var(--primary); transform: translateY(-3px); box-shadow: 0 22px 48px rgba(10,102,255,0.28); }
.cta-btn-wa {
  background: rgba(255,255,255,0.94);
  color: #07111f;
  border: 1px solid rgba(255,255,255,0.45);
  box-shadow: 0 18px 42px rgba(0,0,0,0.12);
}
.cta-btn-wa:hover { border-color: var(--whatsapp); transform: translateY(-3px); box-shadow: 0 22px 48px rgba(0, 200, 83, 0.14); }

.cta-icon {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  line-height: 1;
  background: rgba(255,255,255,0.16);
}
.cta-btn-wa .cta-icon {
  background: rgba(0,200,83,0.12);
  color: var(--whatsapp);
}
.cta-text { display: flex; flex-direction: column; }
.cta-btn-call .cta-text span { font-size: 0.85rem; opacity: 0.9; }
.cta-btn-call .cta-text strong { font-size: 1.3rem; font-weight: 900; letter-spacing: 1px; }
.cta-btn-wa .cta-text span { font-size: 0.85rem; color: #64748b; }
.cta-btn-wa .cta-text strong { font-size: 1.1rem; font-weight: 900; color: var(--whatsapp); }
@media (max-width: 580px) {
  .cta-pro-banner { padding: 64px 0; }
  .cta-pro-content { padding: 24px 18px; }
  .cta-feature-row { align-items: stretch; }
  .cta-feature-row span,
  .cta-btn-call,
  .cta-btn-wa { width: 100%; justify-content: center; }
}

/* STATS */
.stats-section { background: var(--dark2); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 24px;
  text-align: center;
}
.stat-item {}
.stat-number { font-size: 2.5rem; font-weight: 700; color: var(--primary); line-height: 1; }
.stat-label { color: var(--text-muted); font-size: 0.9rem; margin-top: 6px; }

/* FOOTER PRO */
.site-footer {
  background:
    linear-gradient(180deg, #07111f 0%, #0b1f3a 100%);
  border-top: 4px solid #FFB400;
  padding: 76px 0 22px;
  color: rgba(255,255,255,0.72);
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 58px 58px;
  -webkit-mask-image: linear-gradient(to bottom, #000, rgba(0,0,0,0.72));
  mask-image: linear-gradient(to bottom, #000, rgba(0,0,0,0.72));
  pointer-events: none;
}
.site-footer .container {
  position: relative;
  z-index: 1;
}
.footer-grid-pro {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 18px;
  margin-bottom: 38px;
}
.footer-brand-pro,
.footer-links-pro,
.footer-contact-pro {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 24px;
  backdrop-filter: blur(10px);
}
.logo-pro {
  font-size: 1.35rem;
  font-weight: 900;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
}
.logo-pro i { color: #ffd166; }
.logo-pro span { color: #ffd166; }
.footer-desc { line-height: 1.85; margin-bottom: 18px; font-size: 0.95rem; }
.footer-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.footer-trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,180,0,0.12);
  border: 1px solid rgba(255,180,0,0.18);
  color: #ffd166;
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 0.8rem;
  font-weight: 800;
}
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 42px; height: 42px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  transition: transform .24s ease, background .24s ease, color .24s ease;
  font-size: 1.1rem;
}
.footer-socials a:hover { background: #FFB400; color: #07111f; transform: translateY(-3px); }

.footer-links-pro h4, .footer-contact-pro h4 {
  color: #fff; font-size: 1.05rem; font-weight: 900; margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}
.footer-links-pro h4::after, .footer-contact-pro h4::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: 36px;
  height: 3px;
  border-radius: 999px;
  background: #FFB400;
}
.footer-links-pro ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-links-pro a {
  color: rgba(255,255,255,0.72);
  transition: color .2s, transform .2s;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.footer-links-pro a::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,180,0,0.6);
}
.footer-links-pro a:hover { color: #ffd166; transform: translateX(-3px); }
.footer-book-link {
  color: #ffd166 !important;
  font-weight: 900;
}
.footer-book-link::before { display: none; }

.contact-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.contact-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.95rem; line-height: 1.6; }
.c-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(255,180,0,0.12);
  color: #ffd166;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  font-size: 0.82rem;
}
.contact-list a { color: rgba(255,255,255,0.78); transition: color .2s; }
.contact-list a:hover { color: #ffd166; }
.footer-call-btn {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: #ff3b30;
  color: #fff;
  border-radius: 8px;
  padding: 12px 16px;
  font-weight: 900;
  transition: background .2s, transform .2s;
}
.footer-call-btn:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

.footer-bottom-pro {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}
.fb-right a { color: rgba(255,255,255,0.72); transition: color .2s; margin: 0 5px; }
.fb-right a:hover { color: #ffd166; }

/* BOOKING MODAL */
.modal-open { overflow: hidden; }
.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(7,17,31,0.72);
  backdrop-filter: blur(8px);
}
.booking-modal.open { display: flex; }
.booking-dialog {
  width: min(680px, 100%);
  max-height: min(92vh, 860px);
  overflow-y: auto;
  background: #fff;
  border-radius: 8px;
  border: 1px solid rgba(10,102,255,0.14);
  box-shadow: 0 32px 90px rgba(0,0,0,0.28);
}
.booking-modal-header {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  background: #fff;
  border-bottom: 1px solid rgba(10,102,255,0.1);
}
.booking-kicker {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 900;
  margin-bottom: 6px;
}
.booking-modal-header h3 {
  margin: 0;
  color: #07111f;
  font-size: 1.5rem;
  font-weight: 900;
}
.booking-close {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 8px;
  background: rgba(10,102,255,0.08);
  color: #07111f;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.booking-close:hover {
  background: #ff3b30;
  color: #fff;
}
.booking-form {
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.booking-field { display: flex; flex-direction: column; gap: 7px; }
.booking-field-full { grid-column: 1 / -1; }
.booking-field label {
  color: #07111f;
  font-size: 0.9rem;
  font-weight: 900;
}
.booking-field input,
.booking-field select,
.booking-field textarea {
  width: 100%;
  background: #f8faff;
  border: 1px solid rgba(10,102,255,0.12);
  border-radius: 8px;
  padding: 13px 14px;
  color: #07111f;
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.booking-field textarea { resize: vertical; min-height: 110px; }
.booking-field input:focus,
.booking-field select:focus,
.booking-field textarea:focus {
  background: #fff;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(10,102,255,0.1);
}
.booking-submit {
  grid-column: 1 / -1;
  border: none;
  border-radius: 8px;
  background: var(--whatsapp);
  color: #fff;
  padding: 15px 18px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 900;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  transition: transform .2s, background .2s;
}
.booking-submit:hover {
  background: #10a846;
  transform: translateY(-2px);
}
@media (max-width: 580px) {
  .booking-fab {
    left: 16px;
    bottom: 142px;
    padding: 10px 12px;
  }
  .booking-dialog { max-height: 94vh; }
  .booking-modal-header { padding: 18px; }
  .booking-form {
    grid-template-columns: 1fr;
    padding: 18px;
  }
}

/* SERVICES PAGE */
.services-page-hero {
  background:
    radial-gradient(circle at 12% 18%, rgba(255,180,0,0.26), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(0,200,83,0.18), transparent 30%),
    linear-gradient(135deg, #07111f 0%, #0b1f3a 52%, #0a3f80 100%);
  padding: 92px 0 118px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.services-page-hero::before,
.services-catalog-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 58px 58px;
  -webkit-mask-image: linear-gradient(to bottom, #000, rgba(0,0,0,0.72));
  mask-image: linear-gradient(to bottom, #000, rgba(0,0,0,0.72));
  pointer-events: none;
}
.services-page-hero::after {
  content: '';
  position: absolute;
  inset-inline: 0;
  bottom: -1px;
  height: 96px;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, #ffffff 100%);
  pointer-events: none;
  z-index: 0;
}
.services-page-hero .container,
.services-catalog-section .container {
  position: relative;
  z-index: 1;
}
.services-hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: 42px;
  max-width: 1180px;
  margin: 0 auto;
}
.services-hero-copy {
  text-align: right;
}
.services-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  color: #ffd166;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  padding: 9px 16px;
  font-weight: 900;
  margin-bottom: 22px;
  box-shadow: 0 16px 44px rgba(0,0,0,0.14);
}
.services-page-hero h1 {
  color: #fff;
  font-size: clamp(2.15rem, 5vw, 4.05rem);
  font-weight: 900;
  line-height: 1.22;
  margin-bottom: 18px;
  max-width: 820px;
}
.services-page-hero p {
  color: rgba(255,255,255,0.82);
  font-size: 1.18rem;
  line-height: 1.8;
  margin: 0 0 24px;
  max-width: 760px;
}
.services-hero-proof {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.services-hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.92);
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 800;
  font-size: 0.88rem;
}
.services-hero-proof i { color: #ffd166; }
.services-hero-cta {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 14px;
}
.services-hero-call,
.services-hero-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 8px;
  padding: 14px 24px;
  font-weight: 900;
  transition: transform .24s ease, box-shadow .24s ease;
}
.services-hero-call {
  background: #FFB400;
  color: #07111f;
  box-shadow: 0 18px 42px rgba(255,180,0,0.24);
}
.services-hero-wa {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 18px 42px rgba(0,200,83,0.2);
}
.services-hero-call:hover,
.services-hero-wa:hover {
  transform: translateY(-3px);
}
.services-hero-panel {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 28px 80px rgba(0,0,0,0.28);
  backdrop-filter: blur(18px);
}
.services-hero-panel-head {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 16px;
}
.services-hero-panel-head > span {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #FFB400;
  color: #07111f;
  font-size: 1.25rem;
  flex: 0 0 auto;
}
.services-hero-panel-head strong {
  display: block;
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 4px;
}
.services-hero-panel-head small {
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
}
.services-hero-devices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 16px;
}
.services-hero-devices span {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  color: rgba(255,255,255,0.9);
  font-weight: 800;
  padding: 10px 12px;
}
.services-hero-devices i {
  color: #ffd166;
}
.services-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.services-hero-stats div {
  background: #fff;
  color: #07111f;
  border-radius: 12px;
  padding: 14px 10px;
  text-align: center;
  box-shadow: 0 16px 44px rgba(0,0,0,0.14);
}
.services-hero-stats strong {
  display: block;
  font-size: 1.45rem;
  font-weight: 900;
  color: #0A66FF;
  line-height: 1;
  margin-bottom: 7px;
}
.services-hero-stats small {
  color: #526173;
  font-weight: 800;
  line-height: 1.4;
}
.services-catalog-section {
  background:
    radial-gradient(circle at 92% 12%, rgba(10,102,255,0.09), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  padding: 92px 0 96px;
  position: relative;
  overflow: hidden;
  margin-top: -40px;
  z-index: 2;
}
.services-catalog-section::before {
  background:
    linear-gradient(90deg, rgba(10,102,255,0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,180,0,0.055) 1px, transparent 1px);
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
}
.services-catalog-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 26px;
}
.services-catalog-head .section-title {
  text-align: right;
  margin: 0;
  max-width: 720px;
}
.services-catalog-head .section-title h2 {
  color: #07111f;
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  line-height: 1.25;
}
.services-catalog-head .section-title p {
  color: #526173;
  max-width: 680px;
}
.services-head-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  flex: 0 0 auto;
  background: #07111f;
  color: #fff;
  border-radius: 10px;
  padding: 13px 18px;
  font-weight: 900;
  box-shadow: 0 18px 42px rgba(7,17,31,0.18);
  transition: transform .24s ease, box-shadow .24s ease, background .24s ease;
}
.services-head-action i {
  color: #ffd166;
}
.services-head-action:hover {
  background: #0A66FF;
  transform: translateY(-3px);
  box-shadow: 0 24px 56px rgba(10,102,255,0.22);
}
.services-proof-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 26px;
}
.services-proof-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(10,102,255,0.1);
  border-radius: 12px;
  padding: 14px 16px;
  color: #132238;
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(15,35,75,0.06);
}
.services-proof-item i {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,180,0,0.18);
  color: #b77900;
  flex: 0 0 auto;
}
.services-catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.service-tile {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,251,255,0.98));
  border: 1px solid rgba(10,102,255,0.12);
  border-radius: 14px;
  padding: 24px;
  min-height: 245px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  box-shadow: 0 20px 52px rgba(15,35,75,0.09);
  position: relative;
  overflow: hidden;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.service-tile::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,102,255,0.1), transparent 42%);
  opacity: 0;
  transition: opacity .24s ease;
  pointer-events: none;
}
.service-tile::after {
  content: '';
  position: absolute;
  inset-inline: 24px;
  top: 0;
  height: 4px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, #FFB400, #0A66FF);
}
.service-tile:hover {
  transform: translateY(-6px);
  border-color: rgba(10,102,255,0.25);
  box-shadow: 0 28px 70px rgba(15,35,75,0.16);
}
.service-tile:hover::before {
  opacity: 1;
}
.service-tile span {
  width: 62px;
  height: 62px;
  border-radius: 14px;
  background: #07111f;
  color: #ffd166;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  box-shadow: 0 14px 28px rgba(15,35,75,0.18);
  position: relative;
  z-index: 1;
}
.service-tile-alert span {
  background: #7f1d1d;
  color: #fecaca;
}
.service-tile strong {
  color: #07111f;
  font-size: 1.14rem;
  font-weight: 900;
  line-height: 1.45;
  position: relative;
  z-index: 1;
}
.service-tile small {
  color: #50617a;
  font-size: 0.93rem;
  line-height: 1.7;
  flex: 1;
  position: relative;
  z-index: 1;
}
.service-tile em {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 7px;
  color: var(--primary);
  font-style: normal;
  font-weight: 900;
  position: relative;
  z-index: 1;
  margin-top: 4px;
}
.services-brands-section {
  background:
    radial-gradient(circle at 10% 12%, rgba(255,180,0,0.12), transparent 28%),
    linear-gradient(180deg, #fff 0%, #f7fbff 100%);
  padding: 94px 0;
  position: relative;
  overflow: hidden;
}
.services-brands-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7,17,31,0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(10,102,255,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.8;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 16%, #000 84%, transparent);
  mask-image: linear-gradient(to bottom, transparent, #000 16%, #000 84%, transparent);
  pointer-events: none;
}
.services-brands-section .container {
  position: relative;
  z-index: 1;
}
.services-brands-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.services-brand-card {
  min-height: 210px;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(10,102,255,0.12);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  text-align: center;
  color: #07111f;
  box-shadow: 0 20px 52px rgba(15,35,75,0.08);
  position: relative;
  overflow: hidden;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.services-brand-card::before {
  content: '';
  position: absolute;
  inset-inline: 24px;
  top: 0;
  height: 4px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, #0A66FF, #FFB400);
}
.services-brand-card::after {
  content: '';
  position: absolute;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background: rgba(10,102,255,0.07);
  left: -40px;
  bottom: -44px;
  transition: transform .24s ease;
}
.services-brand-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,180,0,0.32);
  box-shadow: 0 28px 70px rgba(15,35,75,0.15);
}
.services-brand-card:hover::after {
  transform: scale(1.25);
}
.services-brand-card strong {
  font-family: Arial, sans-serif;
  color: #07111f;
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.1;
  position: relative;
  z-index: 1;
}
.services-brand-card span {
  color: #0A66FF;
  font-size: 1.08rem;
  font-weight: 900;
  position: relative;
  z-index: 1;
}
.services-brand-card small {
  color: #5f6f84;
  font-size: 0.92rem;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}
.services-brands-more {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.services-faults-section {
  background:
    radial-gradient(circle at 86% 16%, rgba(10,102,255,0.1), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  padding: 94px 0;
  position: relative;
  overflow: hidden;
}
.services-faults-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10,102,255,0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,180,0,0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
  pointer-events: none;
}
.services-faults-section .container {
  position: relative;
  z-index: 1;
}
.services-faults-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.services-fault-card {
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(10,102,255,0.12);
  border-radius: 14px;
  padding: 24px;
  min-height: 315px;
  box-shadow: 0 20px 52px rgba(15,35,75,0.08);
  position: relative;
  overflow: hidden;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.services-fault-card::before {
  content: '';
  position: absolute;
  inset-inline: 24px;
  top: 0;
  height: 4px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, #FFB400, #0A66FF);
}
.services-fault-card:hover {
  transform: translateY(-6px);
  border-color: rgba(10,102,255,0.25);
  box-shadow: 0 28px 70px rgba(15,35,75,0.15);
}
.services-fault-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.services-fault-head span {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: #07111f;
  color: #ffd166;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  box-shadow: 0 14px 28px rgba(15,35,75,0.16);
  flex: 0 0 auto;
}
.services-fault-head h3 {
  color: #07111f;
  font-size: 1.18rem;
  font-weight: 900;
  line-height: 1.4;
  margin: 0;
}
.services-fault-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.services-fault-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #50617a;
  font-weight: 800;
  line-height: 1.65;
}
.services-fault-card li i {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(10,102,255,0.1);
  color: #0A66FF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  margin-top: 2px;
  flex: 0 0 auto;
}
.services-trust-section {
  background:
    radial-gradient(circle at 18% 15%, rgba(255,180,0,0.16), transparent 28%),
    radial-gradient(circle at 86% 18%, rgba(10,102,255,0.2), transparent 30%),
    linear-gradient(135deg, #07111f 0%, #0b1f3a 56%, #132238 100%);
  color: #fff;
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.services-trust-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 58px 58px;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
  pointer-events: none;
}
.services-trust-section .container {
  position: relative;
  z-index: 1;
}
.services-trust-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}
.services-trust-card {
  min-height: 260px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: right;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 52px rgba(0,0,0,0.14);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease, background .24s ease;
}
.services-trust-card:hover {
  transform: translateY(-7px);
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,180,0,0.34);
  box-shadow: 0 28px 70px rgba(0,0,0,0.22);
}
.services-trust-card span {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: #FFB400;
  color: #07111f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  box-shadow: 0 14px 34px rgba(255,180,0,0.18);
}
.services-trust-card h3 {
  color: #fff;
  font-size: 1.12rem;
  font-weight: 900;
  line-height: 1.45;
  margin: 0;
}
.services-trust-card p {
  color: rgba(255,255,255,0.72);
  font-size: 0.93rem;
  line-height: 1.75;
  margin: 0;
}
.services-emergency-section {
  background: #fff;
  padding: 82px 0;
}
.services-emergency-card {
  background:
    radial-gradient(circle at 12% 20%, rgba(255,180,0,0.18), transparent 26%),
    linear-gradient(135deg, #7f1d1d 0%, #dc2626 62%, #f97316 120%);
  color: #fff;
  border-radius: 18px;
  padding: 34px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  box-shadow: 0 28px 80px rgba(127,29,29,0.22);
  position: relative;
  overflow: hidden;
}
.services-emergency-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.services-emergency-card > * {
  position: relative;
  z-index: 1;
}
.services-emergency-card > span {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  background: #fff;
  color: #dc2626;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 18px 48px rgba(0,0,0,0.18);
}
.services-emergency-card h2 {
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  font-weight: 900;
  margin: 0 0 8px;
}
.services-emergency-card p {
  color: rgba(255,255,255,0.86);
  font-size: 1.08rem;
  line-height: 1.8;
  margin: 0;
}
.services-emergency-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #fff;
  color: #b91c1c;
  border-radius: 10px;
  padding: 15px 22px;
  font-weight: 900;
  box-shadow: 0 18px 44px rgba(0,0,0,0.16);
  transition: transform .24s ease, box-shadow .24s ease;
}
.services-emergency-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 58px rgba(0,0,0,0.22);
}
.services-reviews-section,
.services-coverage-section {
  background:
    radial-gradient(circle at 90% 12%, rgba(10,102,255,0.08), transparent 26%),
    linear-gradient(180deg, #fff 0%, #f8fbff 100%);
  padding: 94px 0;
  position: relative;
  overflow: hidden;
}
.services-rating-badge {
  min-width: 150px;
  background: #07111f;
  color: #fff;
  border-radius: 14px;
  padding: 16px 18px;
  text-align: center;
  box-shadow: 0 20px 52px rgba(7,17,31,0.16);
}
.services-rating-badge strong {
  display: block;
  color: #FFB400;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 7px;
}
.services-rating-badge span {
  font-weight: 900;
  color: rgba(255,255,255,0.86);
}
.services-rating-badge i,
.services-stars i {
  color: #FFB400;
}
.services-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.services-review-card {
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(10,102,255,0.12);
  border-radius: 14px;
  padding: 24px;
  min-height: 180px;
  box-shadow: 0 20px 52px rgba(15,35,75,0.08);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.services-review-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,180,0,0.32);
  box-shadow: 0 28px 70px rgba(15,35,75,0.14);
}
.services-stars {
  display: flex;
  gap: 5px;
  margin-bottom: 16px;
}
.services-review-card p {
  color: #334155;
  font-size: 1.04rem;
  line-height: 1.8;
  margin: 0;
  font-weight: 800;
}
.services-faq-section .section-title {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 34px;
}
.services-faq-section .section-title h2 {
  color: #07111f;
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  font-weight: 900;
}
.services-faq-section .section-title p {
  color: #526173;
}
.services-coverage-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.services-coverage-card {
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(10,102,255,0.12);
  border-radius: 14px;
  padding: 24px;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 20px 52px rgba(15,35,75,0.08);
}
.services-coverage-card i {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: #07111f;
  color: #ffd166;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.28rem;
}
.services-coverage-card strong {
  color: #07111f;
  font-size: 1.12rem;
  font-weight: 900;
}
.services-coverage-card span {
  color: #5f6f84;
  line-height: 1.7;
  font-weight: 800;
}
.services-final-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,180,0,0.14);
  color: #ffd166;
  border: 1px solid rgba(255,180,0,0.24);
  border-radius: 999px;
  padding: 9px 16px;
  font-weight: 900;
  margin-bottom: 18px;
}
.services-final-cta .cta-pro-content {
  text-align: center;
}
.services-final-cta .cta-pro-btns {
  justify-content: center;
}
.services-process-section {
  background:
    radial-gradient(circle at 12% 16%, rgba(10,102,255,0.08), transparent 28%),
    linear-gradient(180deg, #fff 0%, #f8fbff 100%);
  padding: 94px 0;
  position: relative;
  overflow: hidden;
}
.services-process-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10,102,255,0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,180,0,0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 16%, #000 84%, transparent);
  mask-image: linear-gradient(to bottom, transparent, #000 16%, #000 84%, transparent);
  pointer-events: none;
}
.services-process-section .container {
  position: relative;
  z-index: 1;
}
.services-process-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  counter-reset: process;
}
.services-process-step {
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(10,102,255,0.12);
  border-radius: 14px;
  padding: 24px;
  min-height: 265px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 20px 52px rgba(15,35,75,0.08);
  position: relative;
  overflow: hidden;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.services-process-step::before {
  content: '';
  position: absolute;
  inset-inline: 24px;
  top: 0;
  height: 4px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, #0A66FF, #FFB400);
}
.services-process-step:hover {
  transform: translateY(-6px);
  border-color: rgba(255,180,0,0.32);
  box-shadow: 0 28px 70px rgba(15,35,75,0.14);
}
.services-process-step > span {
  color: rgba(10,102,255,0.14);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}
.services-process-step > i {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: #07111f;
  color: #ffd166;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 14px 28px rgba(15,35,75,0.16);
}
.services-process-step h3 {
  color: #07111f;
  font-size: 1.08rem;
  font-weight: 900;
  line-height: 1.45;
  margin: 0;
}
.services-process-step p {
  color: #5f6f84;
  font-size: 0.92rem;
  line-height: 1.75;
  margin: 0;
}
.services-faq-section .faq-proof-row {
  margin: -8px auto 26px;
  max-width: 920px;
}
.services-faq-section .faq-cta {
  max-width: 860px;
  margin: 22px auto 0;
}
@media (max-width: 1200px) {
  .services-hero-content {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
    gap: 28px;
  }
  .services-proof-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .services-catalog-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .services-brands-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .services-faults-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .solution-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .services-trust-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .services-coverage-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .services-process-steps { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .pain-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
  .services-page-hero { padding: 76px 0 92px; }
  .services-hero-content {
    grid-template-columns: 1fr;
  }
  .services-hero-copy {
    text-align: center;
  }
  .services-hero-proof,
  .services-hero-cta {
    justify-content: center;
  }
  .services-catalog-head {
    align-items: stretch;
    flex-direction: column;
    text-align: center;
  }
  .services-catalog-head .section-title {
    text-align: center;
  }
  .services-head-action {
    width: 100%;
  }
  .services-catalog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .services-brands-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .services-faults-section { padding: 70px 0; }
  .solution-section { padding: 72px 0; }
  .solution-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .services-trust-section { padding: 72px 0; }
  .services-trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .services-emergency-section,
  .services-reviews-section,
  .services-coverage-section,
  .services-process-section { padding: 70px 0; }
  .services-emergency-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .services-emergency-card > span {
    margin: 0 auto;
  }
  .services-reviews-grid { grid-template-columns: 1fr; }
  .services-process-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pain-section { padding: 70px 0; }
  .pain-box { padding: 32px 22px; }
}
@media (max-width: 520px) {
  .services-catalog-section { padding: 64px 0; }
  .services-brands-section { padding: 64px 0; }
  .services-faults-section { padding: 64px 0; }
  .services-proof-row,
  .services-catalog-grid,
  .services-brands-grid,
  .services-faults-grid,
  .solution-grid,
  .services-trust-grid,
  .services-coverage-grid,
  .services-process-steps,
  .pain-grid { grid-template-columns: 1fr; }
  .services-brand-card { min-height: auto; }
  .services-fault-card { min-height: auto; }
  .sol-card { min-height: auto; }
  .services-trust-card { min-height: auto; }
  .services-emergency-btn,
  .services-process-section .services-head-action,
  .services-final-cta .cta-btn-call,
  .services-final-cta .cta-btn-wa { width: 100%; }
  .services-process-step { min-height: auto; }
  .solution-cta .services-hero-call { width: 100%; }
  .services-brands-more .brands-more-btn { width: 100%; }
  .pain-item { min-height: auto; }
  .pain-msg { width: 100%; }
  .services-hero-panel {
    padding: 16px;
    border-radius: 14px;
  }
  .services-hero-devices,
  .services-hero-stats {
    grid-template-columns: 1fr;
  }
  .services-hero-call,
  .services-hero-wa,
  .services-hero-proof span { width: 100%; }
}

/* STICKY BUTTONS */
.sticky-btns {
  position: fixed;
  bottom: 24px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}
.sticky-btn {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  color: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  transition: all .3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: pulse-ring 2s infinite;
  text-decoration: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.sticky-btn i {
  transition: transform .3s;
}
.sticky-btn:hover { 
  transform: scale(1.15) translateY(-3px); 
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  color: #fff;
}
.sticky-btn:hover i {
  transform: scale(1.1);
}
.sticky-call { background: linear-gradient(135deg, #FF3B30, #d32f2f); }
.sticky-wa { background: linear-gradient(135deg, #00C853, #009624); }
.sticky-booking { background: linear-gradient(135deg, #FFB400, #F59E0B); color: #07111f !important; }
@keyframes pulse-ring {
  0%, 100% { box-shadow: 0 4px 20px rgba(0,0,0,0.25); }
  50% { box-shadow: 0 4px 30px rgba(255,59,48,0.5); }
}
.sticky-wa { animation-name: pulse-wa; }
@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 20px rgba(0,0,0,0.25); }
  50% { box-shadow: 0 4px 30px rgba(0,200,83,0.5); }
}
.sticky-booking { animation-name: pulse-booking; }
@keyframes pulse-booking {
  0%, 100% { box-shadow: 0 4px 20px rgba(0,0,0,0.25); }
  50% { box-shadow: 0 4px 30px rgba(255,180,0,0.5); }
}

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, #0A66FF 0%, #0050CC 100%);
  padding: 70px 0 50px;
  text-align: center;
}
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; color: #fff; margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,0.85); font-size: 1.05rem; max-width: 600px; margin: 0 auto 24px; }
.breadcrumb {
  display: flex;
  gap: 8px;
  justify-content: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 20px;
}
.breadcrumb a { color: #ffd54f; }
.breadcrumb span { color: rgba(255,255,255,0.6); }

/* MOBILE */
@media (max-width: 900px) {
  .footer-grid-pro { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .logo { position: relative; z-index: 1001; font-size: 1.15rem; }
  .hamburger { display: flex; position: relative; z-index: 1001; }
  .hamburger.open span { background: var(--primary); }

  /* Dropdown Menu */
  nav { 
    display: flex; 
    position: absolute; 
    top: 100%; /* Just below the header */
    left: 0; right: 0;
    background: #fff; 
    flex-direction: column; 
    justify-content: flex-start; 
    align-items: stretch; 
    padding: 0; 
    max-height: 0;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: max-height 0.35s ease;
    border-top: 1px solid transparent;
  }
  nav.open { 
    max-height: 560px; /* Big enough to fit items */
    border-top: 1px solid var(--border);
  }
  
  nav a { 
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem; 
    padding: 14px 20px; 
    color: var(--text); 
    width: 100%; 
    border-bottom: 1px solid #f1f5f9;
  }
  nav a:hover, nav a.active {
    background: rgba(10,102,255,0.04);
    color: var(--primary);
  }
  .nav-icon {
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    color: var(--primary);
  }

  /* Bottom CTA in Nav */
  .nav-bottom-cta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-right: 0;
    padding: 16px 20px;
    background: #f8faff;
  }
  .nav-bottom-cta a {
    justify-content: center;
    min-width: 0;
    width: auto;
  }
  .btn-call-nav { 
    justify-content: center; 
    padding: 12px 10px !important;
    font-size: 0.92rem;
  }
  nav a.nav-highlight {
    padding: 12px 10px !important;
    font-size: 0.92rem;
  }
  
  .hero { padding: 50px 0 40px; }
  .footer-grid-pro { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-pro { flex-direction: column; text-align: center; gap: 12px; }
  section { padding: 50px 0; }
}
@media (max-width: 480px) {
  .topbar-inner { 
    flex-direction: row; 
    justify-content: space-between; 
    align-items: center;
  }
  .topbar-right span {
    font-size: 0.75rem; /* Make text smaller so it fits on one line */
  }
  .topbar-left {
    gap: 8px; /* Slightly reduce gap between icons */
  }
  .hero-cta { flex-direction: column; align-items: center; }
  .cta-btns { flex-direction: column; align-items: center; }
}

/* CONVERSION KILLER STYLES */

/* Premium Pain Section */
.pain-section {
  padding: 94px 0;
  background:
    radial-gradient(circle at 14% 18%, rgba(239,68,68,0.1), transparent 25%),
    linear-gradient(180deg, #f7fbff 0%, #fff 100%);
  position: relative;
  overflow: hidden;
}
.pain-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(239,68,68,0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(10,102,255,0.04) 1px, transparent 1px);
  background-size: 54px 54px;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
  pointer-events: none;
}
.pain-box {
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(239,68,68,0.12);
  border-radius: 18px;
  padding: 42px;
  text-align: center;
  max-width: 1120px;
  margin: 0 auto;
  box-shadow: 0 24px 70px rgba(15,35,75,0.08);
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.pain-box::before {
  content: '';
  position: absolute;
  inset-inline: 28px;
  top: 0;
  height: 5px;
  background: linear-gradient(90deg, #ef4444, #FFB400, #0A66FF);
  border-radius: 0 0 999px 999px;
}
.pain-head {
  max-width: 760px;
  margin: 0 auto 28px;
}
.pain-box h2 {
  color: #07111f;
  margin: 10px 0 12px;
  font-size: clamp(1.8rem, 3vw, 2.65rem);
  line-height: 1.3;
  font-weight: 900;
}
.pain-head p {
  color: #526173;
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 0;
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 28px;
}
.pain-item {
  background: linear-gradient(180deg, #fff 0%, #fff7f7 100%);
  padding: 22px;
  border-radius: 14px;
  color: #991b1b;
  border: 1px solid rgba(239,68,68,0.13);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: right;
  gap: 11px;
  min-height: 235px;
  box-shadow: 0 16px 38px rgba(239,68,68,0.06);
}
.pain-item i {
  width: 54px;
  height: 54px;
  border-radius: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fee2e2;
  color: #dc2626;
  font-size: 1.35rem;
}
.pain-item strong {
  color: #07111f;
  font-size: 1.08rem;
  font-weight: 900;
  line-height: 1.45;
}
.pain-item small {
  color: #5f6f84;
  line-height: 1.75;
  font-size: 0.92rem;
}
.pain-item:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 58px rgba(239,68,68,0.13);
  border-color: rgba(239,68,68,0.26);
}
.pain-msg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 1.05rem;
  font-weight: 900;
  color: #07111f;
  padding: 16px 22px;
  background: rgba(10,102,255,0.06);
  border-radius: 12px;
  border: 1px solid rgba(10,102,255,0.12);
}
.pain-msg i {
  color: #0A66FF;
}

/* Premium SEO Pro Cards Enhancement */
.seo-pro-card {
  transition: all .4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid #e2e8f0;
  background: #fff;
  border-radius: 20px;
  padding: 30px;
}
.seo-pro-card:hover {
  transform: translateY(-10px);
  border-color: #0A66FF;
  box-shadow: 0 20px 40px rgba(10,102,255,0.1);
}

/* Review Cards Premium */
.review-card-pro {
  background: #fff; border: 1px solid #f1f5f9; border-radius: 20px; padding: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  position: relative;
  transition: transform .3s;
}
.review-card-pro:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0,0,0,0.06); }
.review-card-pro::before { content: '"'; position: absolute; top: 10px; right: 30px; font-size: 6rem; color: rgba(10,102,255,0.05); font-family: serif; line-height: 1; pointer-events: none; }

/* Urgency Section Premium */
.urgency-section {
  background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
  position: relative; overflow: hidden; padding: 70px 0;
}
.urgency-section::after {
  content: ''; position: absolute; top:0; left:0; right:0; bottom:0;
  background: repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(0,0,0,0.05) 20px, rgba(0,0,0,0.05) 40px);
}
.urgency-content { position: relative; z-index: 1; text-align: center; color: white; }


/* Solution Section */
.solution-section {
  padding: 96px 0;
  background:
    radial-gradient(circle at 15% 18%, rgba(255,180,0,0.18), transparent 28%),
    radial-gradient(circle at 86% 12%, rgba(10,102,255,0.22), transparent 30%),
    linear-gradient(135deg, #07111f 0%, #0b1f3a 58%, #0f2748 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.solution-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 58px 58px;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
  pointer-events: none;
}
.solution-section .container {
  position: relative;
  z-index: 1;
}
.solution-head {
  max-width: 780px;
  margin: 0 auto 34px;
  text-align: center;
}
.solution-head .section-label {
  background: rgba(255,180,0,0.14);
  color: #ffd166;
  border: 1px solid rgba(255,180,0,0.24);
}
.solution-head h2 {
  color: #fff;
  font-size: clamp(1.9rem, 3.8vw, 3.05rem);
  line-height: 1.28;
  font-weight: 900;
  margin: 12px 0;
}
.solution-head p {
  color: rgba(255,255,255,0.78);
  font-size: 1.08rem;
  line-height: 1.85;
  margin: 0;
}
.solution-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  position: relative;
  z-index: 1;
}
.sol-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.13);
  padding: 24px;
  border-radius: 14px;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease, background .24s ease;
  backdrop-filter: blur(10px);
  min-height: 270px;
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sol-card:hover {
  transform: translateY(-7px);
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,180,0,0.34);
  box-shadow: 0 24px 62px rgba(0,0,0,0.24);
}
.sol-icon-wrapper {
  width: 58px;
  height: 58px;
  background: #FFB400;
  color: #07111f;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .24s ease, background .24s ease;
  box-shadow: 0 14px 34px rgba(255,180,0,0.18);
  font-size: 1.35rem;
}
.sol-card:hover .sol-icon-wrapper {
  background: #fff;
  transform: translateY(-3px);
}
.sol-card h3 {
  font-size: 1.12rem;
  font-weight: 900;
  line-height: 1.45;
  color: #fff;
  margin: 0;
}
.sol-card p {
  font-size: 0.93rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  margin: 0;
}
.solution-cta {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

@keyframes pulse-btn-anim {
  0% { box-shadow: 0 0 0 0 rgba(10,102,255,0.7); }
  70% { box-shadow: 0 0 0 15px rgba(10,102,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(10,102,255,0); }
}
.pulse-btn { animation: pulse-btn-anim 2s infinite; transition: transform .2s; }
.pulse-btn:hover { transform: scale(1.05); }

/* Process Section */
.process-section { padding: 60px 0; background: #f8faff; }
.process-steps {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}
.process-steps .step {
  background: #fff;
  padding: 16px 24px;
  border-radius: 50px;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  color: #1f2937;
  border: 2px solid transparent;
  transition: all .3s;
  font-size: 1.1rem;
}
.process-steps .step:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-3px); }

/* Types Section */
.types-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.type-card { background: #fff; padding: 30px 20px; border-radius: 12px; border: 1px solid #e2e8f0; text-align: center; box-shadow: 0 4px 10px rgba(0,0,0,0.03); transition: transform .3s; }
.type-card:hover { transform: translateY(-5px); border-color: var(--primary); }
.type-icon { font-size: 3rem; margin-bottom: 16px; color: var(--primary); }
.type-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; }

/* Comparison Section */
.compare-container { display: flex; flex-wrap: wrap; gap: 24px; justify-content: center; }
.compare-card { flex: 1; min-width: 280px; padding: 40px; border-radius: 16px; position: relative; overflow: hidden; }
.compare-bad { background: #fef2f2; border: 1px solid #fecaca; }
.compare-bad h3 { color: #dc2626; font-size: 1.5rem; margin-bottom: 20px; font-weight: 800; border-bottom: 2px dashed #fecaca; padding-bottom: 10px; }
.compare-bad ul li::before { content: '❌'; margin-left: 8px; }
.compare-good { background: #f0fdf4; border: 1px solid #bbf7d0; box-shadow: 0 10px 30px rgba(0,200,83,0.1); }
.compare-good h3 { color: #16a34a; font-size: 1.5rem; margin-bottom: 20px; font-weight: 800; border-bottom: 2px dashed #bbf7d0; padding-bottom: 10px; }
.compare-good ul li::before { content: '✅'; margin-left: 8px; }
.compare-card ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.compare-card ul li { font-size: 1.1rem; font-weight: 600; color: #374151; display: flex; align-items: center; }

/* Pricing Transparency */
.pricing-box { background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%); color: #fff; padding: 40px; border-radius: 16px; text-align: center; max-width: 800px; margin: 0 auto; box-shadow: 0 10px 25px rgba(0,0,0,0.2); }
.pricing-box h2 { font-size: 2rem; color: #FFB400; margin-bottom: 20px; font-weight: 800; }
.pricing-box p { font-size: 1.2rem; margin-bottom: 24px; line-height: 1.8; color: #cbd5e1; }
.pricing-tags { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.p-tag { background: rgba(255,255,255,0.1); padding: 10px 20px; border-radius: 8px; font-weight: 700; font-size: 1.1rem; border: 1px solid rgba(255,255,255,0.2); }

/* Gallery Section Premium */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.gallery-item {
  position: relative; border-radius: 20px; overflow: hidden; height: 240px; background: #1e293b;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.05);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all .4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.gallery-item:hover {
  transform: translateY(-10px);
  border-color: rgba(10,102,255,0.4);
  box-shadow: 0 20px 40px rgba(10,102,255,0.15);
}
.gallery-item::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,23,42,0.95), transparent); z-index: 1; opacity: 0.8; transition: opacity .4s; }
.gallery-item:hover::before { opacity: 1; background: linear-gradient(to top, rgba(10,102,255,0.8), transparent); }
.gallery-caption { position: absolute; bottom: 20px; left: 20px; right: 20px; z-index: 2; color: #fff; font-weight: 800; font-size: 1.2rem; text-align: center; transform: translateY(0); transition: transform .4s; }
.gallery-item:hover .gallery-caption { transform: translateY(-5px); color: #fff; text-shadow: 0 2px 10px rgba(0,0,0,0.3); }
.gallery-icon { font-size: 5rem; color: rgba(255,255,255,0.05); transition: all .4s cubic-bezier(0.175, 0.885, 0.32, 1.275); z-index: 0; }
.gallery-item:hover .gallery-icon { transform: scale(1.3); color: rgba(255,255,255,0.15); }

/* Services page mobile fixes: keep these after the late services section rules. */
@media (max-width: 900px) {
  .pain-section,
  .solution-section {
    padding: 72px 0;
  }

  .pain-box {
    padding: 34px 22px;
    border-radius: 16px;
  }

  .pain-grid,
  .solution-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sol-card {
    min-height: 230px;
  }
}

@media (max-width: 560px) {
  .pain-section,
  .solution-section {
    padding: 62px 0;
  }

  .pain-head,
  .solution-head {
    margin-bottom: 24px;
  }

  .pain-box {
    padding: 28px 16px;
    border-radius: 14px;
  }

  .pain-grid,
  .solution-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .pain-item,
  .sol-card {
    min-height: auto;
    padding: 20px;
  }

  .pain-msg,
  .solution-cta .services-hero-call {
    width: 100%;
  }

  .pain-msg {
    align-items: flex-start;
    text-align: right;
  }
}

/* Brands page redesign */
.brands-page-hero {
  background:
    radial-gradient(circle at 12% 18%, rgba(255,180,0,0.22), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(10,102,255,0.22), transparent 30%),
    linear-gradient(135deg, #07111f 0%, #0b1f3a 54%, #0a3f80 100%);
  color: #fff;
  padding: 96px 0 118px;
  position: relative;
  overflow: hidden;
}
.brands-page-hero::before,
.brands-catalog-section::before,
.brands-faults-section::before,
.brands-intro-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 58px 58px;
  pointer-events: none;
}
.brands-page-hero .container,
.brands-catalog-section .container,
.brands-faults-section .container,
.brands-intro-section .container {
  position: relative;
  z-index: 1;
}
.brands-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  align-items: center;
  gap: 42px;
}
.brands-hero-copy h1 {
  color: #fff;
  font-size: clamp(2.15rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.24;
  margin: 16px 0 18px;
}
.brands-hero-copy p {
  color: rgba(255,255,255,0.82);
  font-size: 1.16rem;
  line-height: 1.85;
  max-width: 760px;
  margin: 0 0 24px;
}
.brands-hero-panel {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 28px 80px rgba(0,0,0,0.28);
  backdrop-filter: blur(18px);
}
.brands-hero-panel strong {
  display: block;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 900;
  margin-bottom: 16px;
}
.brands-hero-panel div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 16px;
}
.brands-hero-panel span {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 10px;
  color: #ffd166;
  font-weight: 900;
  padding: 11px 12px;
  text-align: center;
}
.brands-hero-panel p {
  color: rgba(255,255,255,0.76);
  line-height: 1.8;
  margin: 0;
}
.brands-intro-section {
  background: #fff;
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.brands-intro-section::before {
  background:
    linear-gradient(90deg, rgba(10,102,255,0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,180,0,0.04) 1px, transparent 1px);
}
.brands-intro-card {
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(10,102,255,0.12);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: 0 20px 52px rgba(15,35,75,0.08);
}
.brands-intro-card i {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  background: #07111f;
  color: #ffd166;
  font-size: 1.35rem;
}
.brands-intro-card p {
  color: #475569;
  font-size: 1.12rem;
  line-height: 1.85;
  margin: 0;
  font-weight: 800;
}
.brands-catalog-section,
.brands-faults-section {
  background:
    radial-gradient(circle at 92% 12%, rgba(10,102,255,0.08), transparent 26%),
    linear-gradient(180deg, #f8fbff 0%, #fff 100%);
  padding: 94px 0;
  position: relative;
  overflow: hidden;
}
.brands-catalog-section::before,
.brands-faults-section::before {
  background:
    linear-gradient(90deg, rgba(10,102,255,0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,180,0,0.045) 1px, transparent 1px);
}
.brands-catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.brands-catalog-card {
  min-height: 245px;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(10,102,255,0.12);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 20px 52px rgba(15,35,75,0.08);
  position: relative;
  overflow: hidden;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.brands-catalog-card::before,
.brands-fault-card::before {
  content: '';
  position: absolute;
  inset-inline: 24px;
  top: 0;
  height: 4px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, #0A66FF, #FFB400);
}
.brands-catalog-card:hover,
.brands-fault-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,180,0,0.32);
  box-shadow: 0 28px 70px rgba(15,35,75,0.15);
}
.brands-catalog-card strong {
  color: #07111f;
  font-family: Arial, sans-serif;
  font-size: 1.45rem;
  font-weight: 900;
}
.brands-catalog-card span {
  color: #0A66FF;
  font-weight: 900;
  font-size: 1.05rem;
}
.brands-catalog-card p {
  color: #5f6f84;
  line-height: 1.7;
  margin: 0;
  flex: 1;
}
.brands-catalog-card em {
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-style: normal;
  font-weight: 900;
}
.brands-why-section {
  background: #fff;
  padding: 94px 0;
}
.brands-why-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 34px;
  align-items: center;
}
.brands-why-copy h2 {
  color: #07111f;
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  line-height: 1.3;
  font-weight: 900;
  margin: 12px 0;
}
.brands-why-copy p {
  color: #526173;
  font-size: 1.08rem;
  line-height: 1.85;
}
.brands-why-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}
.brands-why-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #132238;
  font-weight: 900;
}
.brands-why-list i {
  color: #0A66FF;
}
.brands-why-panel {
  background: linear-gradient(135deg, #07111f 0%, #0A66FF 140%);
  border-radius: 18px;
  padding: 28px;
  color: #fff;
  box-shadow: 0 28px 80px rgba(10,102,255,0.18);
}
.brands-why-panel h3 {
  font-size: 1.45rem;
  font-weight: 900;
  margin: 0 0 18px;
}
.brands-why-panel div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.brands-why-panel span {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 900;
}
.brands-why-panel p {
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  margin: 20px 0 0;
}
.brands-faults-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.brands-fault-card {
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(10,102,255,0.12);
  border-radius: 14px;
  padding: 24px;
  min-height: 300px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 52px rgba(15,35,75,0.08);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.brands-fault-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.brands-fault-head i {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #07111f;
  color: #ffd166;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.brands-fault-head h3 {
  color: #07111f;
  font-size: 1.16rem;
  font-weight: 900;
  margin: 0;
}
.brands-fault-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.brands-fault-card li {
  display: flex;
  gap: 10px;
  color: #50617a;
  font-weight: 800;
  line-height: 1.65;
}
.brands-fault-card li i {
  color: #0A66FF;
  margin-top: 5px;
}
.brands-links-section {
  background: #07111f;
  color: #fff;
  padding: 64px 0;
  text-align: center;
}
.brands-links-section h3 {
  color: #fff;
  font-size: 1.55rem;
  font-weight: 900;
  margin: 0 0 24px;
}
.brands-quick-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.brands-quick-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.86);
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 10px 15px;
  font-weight: 900;
  transition: transform .24s ease, background .24s ease;
}
.brands-quick-links a:hover {
  background: rgba(255,180,0,0.16);
  transform: translateY(-3px);
}
@media (max-width: 1100px) {
  .brands-catalog-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
  .brands-hero-layout,
  .brands-why-layout { grid-template-columns: 1fr; }
  .brands-catalog-grid,
  .brands-faults-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .brands-page-hero,
  .brands-catalog-section,
  .brands-why-section,
  .brands-faults-section { padding: 64px 0; }
  .brands-catalog-grid,
  .brands-faults-grid { grid-template-columns: 1fr; }
  .brands-intro-card { align-items: flex-start; flex-direction: column; }
  .brands-hero-panel div { grid-template-columns: 1fr; }
  .brands-catalog-card,
  .brands-fault-card { min-height: auto; }
}

/* Washing page redesign */
.washing-page-hero {
  background:
    radial-gradient(circle at 12% 18%, rgba(255,180,0,0.22), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(0,200,83,0.16), transparent 30%),
    linear-gradient(135deg, #07111f 0%, #0b1f3a 54%, #0a3f80 100%);
  color: #fff;
  padding: 96px 0 118px;
  position: relative;
  overflow: hidden;
}
.washing-page-hero::before,
.washing-faults-section::before,
.washing-types-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 58px 58px;
  pointer-events: none;
}
.washing-page-hero .container,
.washing-faults-section .container,
.washing-types-section .container {
  position: relative;
  z-index: 1;
}
.washing-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  align-items: center;
  gap: 42px;
}
.washing-hero-copy h1 {
  color: #fff;
  font-size: clamp(2.15rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.24;
  margin: 16px 0 18px;
}
.washing-hero-copy p {
  color: rgba(255,255,255,0.82);
  font-size: 1.16rem;
  line-height: 1.85;
  max-width: 760px;
  margin: 0 0 24px;
}
.washing-hero-panel {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 28px 80px rgba(0,0,0,0.28);
  backdrop-filter: blur(18px);
}
.washing-hero-panel strong {
  display: block;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 900;
  margin-bottom: 16px;
}
.washing-hero-panel div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 16px;
}
.washing-hero-panel span {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 10px;
  color: rgba(255,255,255,0.9);
  font-weight: 900;
  padding: 11px 12px;
}
.washing-hero-panel i { color: #ffd166; }
.washing-hero-panel p {
  color: rgba(255,255,255,0.76);
  line-height: 1.8;
  margin: 0;
}
.washing-faults-section,
.washing-types-section {
  background:
    radial-gradient(circle at 92% 12%, rgba(10,102,255,0.08), transparent 26%),
    linear-gradient(180deg, #fff 0%, #f8fbff 100%);
  padding: 94px 0;
  position: relative;
  overflow: hidden;
}
.washing-faults-section::before,
.washing-types-section::before {
  background:
    linear-gradient(90deg, rgba(10,102,255,0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,180,0,0.045) 1px, transparent 1px);
}
.washing-faults-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}
.washing-fault-card,
.washing-type-card {
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(10,102,255,0.12);
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 20px 52px rgba(15,35,75,0.08);
  position: relative;
  overflow: hidden;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.washing-fault-card {
  min-height: 265px;
}
.washing-fault-card::before,
.washing-type-card::before {
  content: '';
  position: absolute;
  inset-inline: 24px;
  top: 0;
  height: 4px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, #0A66FF, #FFB400);
}
.washing-fault-card:hover,
.washing-type-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,180,0,0.32);
  box-shadow: 0 28px 70px rgba(15,35,75,0.15);
}
.washing-fault-card span {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: #07111f;
  color: #ffd166;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 14px;
}
.washing-fault-card h3,
.washing-type-card h3 {
  color: #07111f;
  font-size: 1.1rem;
  font-weight: 900;
  line-height: 1.45;
  margin: 0 0 10px;
}
.washing-fault-card p {
  color: #5f6f84;
  line-height: 1.75;
  margin: 0;
  font-weight: 800;
  font-size: 0.92rem;
}
.washing-types-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.washing-type-card {
  min-height: 190px;
}
.washing-type-card i {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: #07111f;
  color: #ffd166;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 14px;
}
.washing-type-card span {
  color: #0A66FF;
  font-weight: 900;
}
@media (max-width: 1200px) {
  .washing-faults-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
  .washing-hero-layout { grid-template-columns: 1fr; }
  .washing-faults-grid,
  .washing-types-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .washing-page-hero,
  .washing-faults-section,
  .washing-types-section { padding: 64px 0; }
  .washing-faults-grid,
  .washing-types-grid,
  .washing-hero-panel div { grid-template-columns: 1fr; }
  .washing-fault-card,
  .washing-type-card { min-height: auto; }
}

/* SERVICES GRID - Professional Cards */
.services-pro-section {
  background: var(--dark);
}
.services-pro-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 35px;
}
.svc-card {
  background: var(--card-bg);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease;
  position: relative;
  border: 1px solid var(--border);
}
.svc-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(10, 102, 255, 0.1);
  border-color: var(--primary);
}
.svc-card-header {
  height: 220px;
  position: relative;
  overflow: hidden; /* Clips the image zoom */
  border-radius: 24px 24px 0 0;
}
.svc-card-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.svc-card:hover .svc-card-header img {
  transform: scale(1.1);
}
.svc-badge-top {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(5px);
  padding: 6px 12px;
  border-radius: 10px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  z-index: 2;
}
.svc-icon-wrap {
  position: absolute;
  top: 195px; /* Positioned at the junction (Header is 220px) */
  right: 25px;
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  z-index: 10; /* High z-index to stay on top */
}
.svc-card-body {
  padding: 40px 25px 25px;
  flex-grow: 1;
}
.svc-card-body h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
  text-align: center;
}
.svc-card-body p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.6;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.svc-features-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 25px;
  padding-right: 10px;
}
.svc-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}

/* Service Colors */
.svc-card.svc-blacksmith { --svc-theme: var(--primary); }
.svc-card.svc-qarmeed { --svc-theme: #b91c1c; }
.svc-card.svc-kitchens { --svc-theme: #d97706; }
.svc-card.svc-aluminum { --svc-theme: #475569; }
.svc-card.svc-painting { --svc-theme: #2563eb; }
.svc-card.svc-plumbing { --svc-theme: #0284c7; }

/* Appliance Colors */
.svc-card.svc-washing { --svc-theme: #0ea5e9; }
.svc-card.svc-dishwasher { --svc-theme: #14b8a6; }
.svc-card.svc-dryer { --svc-theme: #f97316; }
.svc-card.svc-fridge { --svc-theme: #6366f1; }
.svc-card.svc-oven { --svc-theme: #991b1b; }
.svc-card.svc-ac { --svc-theme: #0284c7; }

.svc-card { border-bottom: 4px solid var(--svc-theme, var(--primary)); }
.svc-card .svc-icon-wrap { background: var(--svc-theme, var(--primary)); }
.svc-card .svc-feature i { color: var(--svc-theme, var(--primary)); }
.svc-card .svc-badge-top { color: var(--svc-theme, var(--primary)); }
.svc-card .svc-btn-primary { background: var(--svc-theme, var(--primary)); }
.svc-card .svc-btn-primary:hover { opacity: 0.9; }
.svc-card-footer {
  padding: 0 25px 30px;
}
.svc-card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.svc-btn-primary {
  background: var(--primary);
  color: #fff;
  padding: 12px;
  border-radius: 12px;
  font-weight: 600;
  text-align: center;
  font-size: 0.9rem;
  transition: 0.3s;
}
.svc-btn-primary:hover {
  background: var(--primary-dark);
}
.svc-btn-call {
  background: var(--dark3);
  color: var(--text);
  padding: 12px;
  border-radius: 12px;
  font-weight: 600;
  text-align: center;
  font-size: 0.9rem;
  transition: 0.3s;
}
.svc-btn-call:hover {
  background: #dfe7f5;
}

/* SECTION 8: Main Contracting Hub & Filter */
.hub-section {
  background: var(--dark);
  padding: 100px 0;
}
.filter-container {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}
.filter-btn {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 10px 25px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.hub-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.hub-card {
  background: var(--card-bg);
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: 0.4s;
  display: flex;
  flex-direction: column;
}
.hub-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
}
.hub-img-wrap {
  height: 350px;
  position: relative;
  overflow: hidden;
}
.hub-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s;
}
.hub-card:hover .hub-img-wrap img {
  transform: scale(1.05);
}
.hub-content {
  padding: 35px;
}
.hub-content h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #fff;
}
.hub-content p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 25px;
}
.hub-sub-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 30px;
  padding: 20px;
  background: rgba(255,255,255,0.02);
  border-radius: 15px;
}
.hub-sub-item {
  font-size: 0.9rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hub-sub-item i {
  color: var(--primary);
}
.hub-footer {
  margin-top: auto;
  padding: 0 35px 35px;
}
.btn-hub {
  width: 100%;
  display: block;
  text-align: center;
  padding: 18px;
  background: var(--primary);
  color: #fff;
  border-radius: 15px;
  font-weight: 700;
  transition: 0.3s;
  font-size: 1.1rem;
}
.btn-hub:hover {
  background: var(--primary-dark);
}

@media (max-width: 992px) {
  .hub-grid { grid-template-columns: 1fr; }
  .hub-img-wrap { height: 250px; }
}

/* SECTION 10: Professional Articles Feed - 4 Column Layout */
.articles-feed-section {
  background: var(--dark2); /* Keep section dark for contrast */
  padding: 100px 0;
}
.art-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 Columns per row */
  gap: 30px;
}
.art-card {
  background: #ffffff; /* White background for black text */
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.05);
  border-bottom: 5px solid var(--art-theme, var(--primary));
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}
.art-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* Article Theme Classes */
.art-maintenance { --art-theme: #0ea5e9; }
.art-design { --art-theme: #fbbf24; }
.art-contracting { --art-theme: #ef4444; }

.art-img-wrap {
  height: 240px;
  position: relative;
  overflow: hidden;
}
.art-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.art-card:hover .art-img-wrap img {
  transform: scale(1.1);
}
.art-category {
  position: absolute;
  top: 20px;
  left: 20px;
  right: auto;
  background: var(--art-theme, var(--primary));
  color: #fff;
  padding: 6px 16px;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  z-index: 5;
}
.art-body {
  padding: 25px 20px;
  flex-grow: 1;
  text-align: center;
  background: #ffffff;
}
.art-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #6b7280;
  font-size: 0.8rem;
  margin-bottom: 12px;
}
.art-body h3 {
  font-size: 1.25rem;
  color: #000000; /* Black Titles as requested */
  margin-bottom: 12px;
  line-height: 1.5;
  font-weight: 800;
  transition: 0.3s;
}
.art-card:hover .art-body h3 {
  color: var(--art-theme, var(--primary)); /* Themed Title on Hover */
}
.art-body p {
  color: #4b5563;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
}
.art-footer {
  padding: 0 20px 25px;
  display: flex;
  justify-content: center;
  background: #ffffff;
}
.read-more-link {
  color: var(--art-theme, var(--primary));
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  transition: 0.3s;
  padding: 10px 20px;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
  background: rgba(255,255,255,0.02);
}
.read-more-link i {
  transition: transform 0.3s;
}
.read-more-link:hover {
  background: var(--art-theme, var(--primary));
  color: #fff;
}
.read-more-link:hover i {
  transform: translateX(-5px); /* Arrow animation for RTL */
}

/* SECTION 11: How We Work - Professional Process */
.process-section {
  background: var(--dark);
  padding: 120px 0;
  position: relative;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}
.process-grid::before {
  content: "";
  position: absolute;
  top: 50px;
  left: 50px;
  right: 50px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  z-index: 0;
  opacity: 0.3;
}
.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
}
.step-number {
  width: 80px;
  height: 80px;
  background: var(--dark2);
  border: 3px solid var(--primary);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 900;
  margin: 0 auto 30px;
  box-shadow: 0 0 30px rgba(186, 153, 76, 0.2);
  transition: 0.4s;
  position: relative;
}
.process-step:hover .step-number {
  background: var(--primary);
  color: #fff;
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 0 50px rgba(186, 153, 76, 0.4);
}
.step-number::after {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1px solid var(--primary);
  border-radius: 50%;
  opacity: 0.3;
  animation: pulse-border 2s infinite;
}
@keyframes pulse-border {
  0% { transform: scale(1); opacity: 0.3; }
  100% { transform: scale(1.3); opacity: 0; }
}
.step-card {
  background: rgba(255,255,255,0.03);
  padding: 40px 25px;
  border-radius: 25px;
  border: 1px solid rgba(255,255,255,0.05);
  transition: 0.4s;
}
.process-step:hover .step-card {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.1);
  transform: translateY(-10px);
}
.step-card i {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 20px;
  opacity: 0.8;
}
.step-card h3 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 15px;
}
.step-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 992px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
}
@media (max-width: 576px) {
  .process-grid { grid-template-columns: 1fr; }
}

/* SECTION 12: Why Choose Us - Features Grid */
.why-us-section {
  background: var(--dark2);
  padding: 100px 0;
  position: relative;
}
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.why-card {
  padding: 60px 40px;
  border-radius: 35px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}
.why-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--card-grad);
  opacity: 0.85;
  z-index: -1;
  transition: 0.5s;
}
.why-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}
.why-card:hover::before {
  opacity: 1;
  transform: scale(1.1);
}

/* Specific Card Gradients */
.why-warranty { --card-grad: linear-gradient(135deg, #1e293b 0%, #0f172a 100%); border-bottom: 5px solid #fbbf24; }
.why-pros { --card-grad: linear-gradient(135deg, #1e293b 0%, #0f172a 100%); border-bottom: 5px solid #0ea5e9; }
.why-speed { --card-grad: linear-gradient(135deg, #1e293b 0%, #0f172a 100%); border-bottom: 5px solid #ef4444; }

.why-icon-wrap {
  width: 100px;
  height: 100px;
  background: rgba(255,255,255,0.03);
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 35px;
  font-size: 3.5rem;
  color: #fff;
  transition: 0.4s;
  box-shadow: inset 0 0 20px rgba(255,255,255,0.05);
}
.why-warranty .why-icon-wrap { color: #fbbf24; text-shadow: 0 0 20px rgba(251, 191, 36, 0.4); }
.why-pros .why-icon-wrap { color: #0ea5e9; text-shadow: 0 0 20px rgba(14, 165, 233, 0.4); }
.why-speed .why-icon-wrap { color: #ef4444; text-shadow: 0 0 20px rgba(239, 68, 68, 0.4); }

.why-card:hover .why-icon-wrap {
  transform: rotateY(360deg);
}
.why-card h3 {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 20px;
}
.why-card p {
  color: #94a3b8;
  font-size: 1.1rem;
  line-height: 1.8;
}

@media (max-width: 992px) {
  .why-us-grid { grid-template-columns: 1fr; }
}

/* SECTION 13: Customer Testimonials Slider */
.testimonials-section {
  background: var(--dark);
  padding: 100px 0;
  overflow: hidden;
}
.testi-slider-wrap {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}
.testi-slider {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none; /* Hide scrollbar for clean look */
  padding: 40px 10px;
}
.testi-slider::-webkit-scrollbar { display: none; }

.testi-card {
  flex: 0 0 calc(33.333% - 20px); /* 3 cards on desktop */
  scroll-snap-align: start;
  background: var(--card-bg);
  border-radius: 30px;
  padding: 40px;
  border: 1px solid var(--border);
  position: relative;
  transition: 0.4s;
  display: flex;
  flex-direction: column;
}
.testi-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.testi-quote {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 30px;
  position: relative;
}
.testi-quote::before {
  content: "“";
  font-size: 4rem;
  color: var(--primary);
  opacity: 0.2;
  position: absolute;
  top: -20px;
  right: -10px;
}
.testi-rating {
  color: #fbbf24;
  margin-bottom: 25px;
  font-size: 0.9rem;
  display: flex;
  gap: 5px;
}
.testi-user {
  display: flex;
  align-items: center;
  gap: 15px;
}
.testi-avatar {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), #d4af37);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: #fff;
  font-size: 1.2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.testi-info h4 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 5px;
}
.testi-info span {
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 700;
}

/* Slider Controls */
.slider-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}
.dot {
  width: 12px;
  height: 12px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}
.dot.active {
  background: var(--primary);
  width: 30px;
  border-radius: 10px;
}

@media (max-width: 992px) {
  .testi-card { flex: 0 0 calc(50% - 15px); }
}
@media (max-width: 768px) {
  .testi-card { flex: 0 0 100%; }
}
/* Beko Page Custom Styles */

.hero-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.service-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.feature-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.faq-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.portfolio-item:hover {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.8) 0%, rgba(118, 75, 162, 0.8) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.contact-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.top-bar {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
    padding: 8px 0;
}

.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.05)" points="0,0 1000,300 1000,1000 0,700"/></svg>');
    background-size: cover;
}

.footer {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-slide-in-right {
    animation: slideInRight 0.6s ease-out;
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

/* FAQ Animations */
.faq-answer {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
}

.faq-answer:not(.hidden) {
    opacity: 1;
}

.faq-opened {
    opacity: 1 !important;
}

.faq-icon {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-question {
    transition: all 0.2s ease-in-out;
}

.faq-question:hover {
    transform: translateX(-2px);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-answer:not(.hidden) .faq-content {
    animation: fadeInUp 0.4s ease-out;
}

.faq-question:hover .faq-icon {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .faq-question:hover {
        transform: none;
    }
}

.faq-question h3 {
    transition: color 0.3s ease;
}

.faq-answer .loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* FAQ Styles from beko.html */
.faq-answer {
    transition: all 0.3s ease-in-out;
    max-height: 0;
    overflow: hidden;
}

.faq-answer:not(.hidden) {
    max-height: 500px;
}

.faq-icon {
    transition: transform 0.3s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.faq-answer:not(.hidden) {
    animation: fadeIn 0.3s ease-in-out;
}

/* =========================================
   MODERN PREMIUM SERVICES GRID
   ========================================= */
.services-premium-section {
  background-color: #f0f4ff;
  background-image:
    linear-gradient(rgba(10, 102, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 102, 255, 0.07) 1px, transparent 1px),
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(10, 102, 255, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 80% 100%, rgba(245, 158, 11, 0.06) 0%, transparent 60%);
  background-size: 40px 40px, 40px 40px, 100% 100%, 100% 100%;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.services-premium-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 25%, rgba(10, 102, 255, 0.08) 0%, transparent 45%),
    radial-gradient(circle at 85% 75%, rgba(245, 158, 11, 0.07) 0%, transparent 45%);
  pointer-events: none;
}

.sp-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.sp-header .sp-badge {
  display: inline-block;
  background: rgba(10, 102, 255, 0.1);
  color: #0a66ff;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 15px;
  border: 1px solid rgba(10, 102, 255, 0.25);
  letter-spacing: 0.03em;
}

.sp-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #0f172a;
  font-weight: 800;
  margin-bottom: 15px;
}

.sp-header h2 span {
  background: linear-gradient(135deg, #0a66ff, #38bdf8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sp-header p {
  color: #5a6a85;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.sp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 2;
}

/* Glass Card with Animated Border */
.sp-card {
  position: relative;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 1px; /* For animated border */
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: block;
  border: 1px solid rgba(10, 102, 255, 0.1);
}

.sp-card::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%; width: 200%; height: 200%;
  background: conic-gradient(transparent, transparent, transparent, #0a66ff);
  animation: rotate-border 4s linear infinite;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.sp-card:hover::before {
  opacity: 1;
}

@keyframes rotate-border {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.sp-card-inner {
  position: relative;
  background: #ffffff;
  border-radius: 19px;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 4px 20px rgba(10, 102, 255, 0.06);
}

.sp-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(10, 102, 255, 0.18);
}

.sp-img-wrapper {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.sp-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.sp-card:hover .sp-img-wrapper img {
  transform: scale(1.1);
}

.sp-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 45%, rgba(255,255,255,0.98) 100%);
}

.sp-icon {
  position: absolute;
  bottom: -20px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #0a66ff, #0050cc);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #fff;
  box-shadow: 0 10px 20px rgba(10, 102, 255, 0.3);
  border: 3px solid #0f172a;
  transition: transform 0.4s ease, background 0.4s ease;
}

.sp-card:hover .sp-icon {
  transform: scale(1.1) rotate(10deg);
  background: linear-gradient(135deg, #f59e0b, #d97706);
  box-shadow: 0 10px 20px rgba(245, 158, 11, 0.3);
  border-color: #0f172a;
}

.sp-content {
  padding: 40px 25px 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.sp-content h3 {
  color: #0f172a;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.sp-content p {
  color: #5a6a85;
  font-size: 0.95rem;
  margin-bottom: 25px;
  line-height: 1.6;
  flex-grow: 1;
}

.sp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #38bdf8;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.sp-btn i {
  font-size: 0.85rem;
  transition: transform 0.3s ease;
}

.sp-card:hover .sp-btn {
  color: #f59e0b;
}

.sp-card:hover .sp-btn i {
  transform: translateX(-5px);
}

/* Maintenance variant - slightly different grid tint */
.maintenance-section {
  background-color: #fff8ee;
  background-image:
    linear-gradient(rgba(245, 158, 11, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 158, 11, 0.08) 1px, transparent 1px),
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(245, 158, 11, 0.07) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 20% 100%, rgba(10, 102, 255, 0.05) 0%, transparent 60%);
  background-size: 40px 40px, 40px 40px, 100% 100%, 100% 100%;
}

.maintenance-section .sp-header h2 span {
  background: linear-gradient(135deg, #f59e0b, #ef8c06);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.maintenance-section .sp-header .sp-badge {
  background: rgba(245, 158, 11, 0.12);
  color: #d97706;
  border-color: rgba(245, 158, 11, 0.3);
}

.maintenance-section .sp-card::before {
  background: conic-gradient(transparent, transparent, transparent, #f59e0b);
}

.maintenance-section .sp-icon {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  box-shadow: 0 10px 20px rgba(245, 158, 11, 0.3);
}

.maintenance-section .sp-card:hover .sp-icon {
  background: linear-gradient(135deg, #10b981, #059669);
  box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3);
}

/* =========================================
   LUXURY BRANDS CAROUSEL SECTION
   ========================================= */
.brands-section {
  background-color: #030712;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.brands-glow-left {
  position: absolute;
  left: -200px;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(10, 102, 255, 0.15) 0%, transparent 70%);
  pointer-events: none;
  border-radius: 50%;
}

.brands-glow-right {
  position: absolute;
  right: -200px;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, transparent 70%);
  pointer-events: none;
  border-radius: 50%;
}

.brands-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.brands-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 15px;
  border: 1px solid rgba(245, 158, 11, 0.2);
}

.brands-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  font-weight: 800;
  margin-bottom: 15px;
}

.brands-title span {
  background: linear-gradient(135deg, #fde68a, #f59e0b);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brands-sub {
  color: #94a3b8;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Track Settings */
.brands-track-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
  z-index: 2;
}

/* Fades at the edges */
.brands-fade-right {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 150px;
  background: linear-gradient(to left, #030712, transparent);
  z-index: 5;
  pointer-events: none;
}

.brands-fade-left {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 150px;
  background: linear-gradient(to right, #030712, transparent);
  z-index: 5;
  pointer-events: none;
}

.brands-track {
  display: flex;
  gap: 25px;
  width: max-content;
  animation: scroll-left 40s linear infinite;
}

.brands-track-reverse {
  animation: scroll-right 45s linear infinite;
}

.brands-track:hover {
  animation-play-state: paused;
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 12.5px)); }
}

@keyframes scroll-right {
  0% { transform: translateX(calc(-50% - 12.5px)); }
  100% { transform: translateX(0); }
}

/* Cards */
.brand-card {
  width: 200px;
  height: 100px;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.brand-card-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.brand-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.1), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.brand-card:hover {
  transform: translateY(-5px);
  background: rgba(30, 41, 59, 0.8);
  border-color: rgba(56, 189, 248, 0.4);
  box-shadow: 0 10px 30px rgba(10, 102, 255, 0.2);
}

.brand-card-outline:hover {
  border-color: rgba(245, 158, 11, 0.4);
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.15);
}

.brand-card:hover::after {
  opacity: 1;
}

.brand-logo-text {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 5px;
  z-index: 2;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.brand-cat {
  font-size: 0.8rem;
  color: #64748b;
  font-weight: 600;
  z-index: 2;
  transition: color 0.3s ease;
}

.brand-card:hover .brand-cat {
  color: #38bdf8;
}

.brand-card-outline:hover .brand-cat {
  color: #f59e0b;
}

/* Stats */
.brands-stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 80px;
  padding: 40px;
  background: rgba(15, 23, 42, 0.4);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  z-index: 2;
}

.brands-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.brands-stat-item i {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 5px;
  filter: drop-shadow(0 0 10px rgba(245, 158, 11, 0.3));
}

.brands-stat-item strong {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.brands-stat-item span {
  font-size: 0.95rem;
  color: #94a3b8;
  font-weight: 600;
}

.brands-stat-sep {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  margin: auto 0;
}

@media (max-width: 768px) {
  .brands-stats {
    gap: 20px;
    flex-direction: column;
    padding: 30px;
  }
  .brands-stat-sep {
    width: 100%;
    height: 1px;
    margin: 10px 0;
  }
}

/* =========================================
   WHY CHOOSE US SECTION
   ========================================= */
.why-us-section {
  padding: 100px 0;
  background-color: #f8fafc;
  position: relative;
  overflow: hidden;
}

.why-header {
  text-align: center;
  margin-bottom: 60px;
}

.why-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(10, 102, 255, 0.1);
  color: #0a66ff;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.why-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #0f172a;
  font-weight: 800;
  margin-bottom: 15px;
}

.why-header h2 span {
  color: #f59e0b;
}

.why-header p {
  color: #64748b;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 2;
}

.why-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  border: 1px solid rgba(10, 102, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, #0a66ff, #38bdf8);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.why-card:hover::before {
  transform: scaleX(1);
}

.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(10, 102, 255, 0.1);
}

.why-icon-box {
  width: 80px;
  height: 80px;
  background: rgba(10, 102, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: #0a66ff;
  margin: 0 auto 25px;
  transition: all 0.4s ease;
}

.why-card:hover .why-icon-box {
  background: #0a66ff;
  color: #ffffff;
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 20px rgba(10, 102, 255, 0.3);
}

.why-card h3 {
  font-size: 1.4rem;
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 15px;
}

.why-card p {
  color: #5a6a85;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* =========================================
   STATS SECTION
   ========================================= */
.stats-section {
  padding: 80px 0;
  background: url('https://images.unsplash.com/photo-1541888086425-d81bb19240f5?q=80&w=1920&auto=format&fit=crop') center/cover fixed;
  position: relative;
}

.stats-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(3, 7, 18, 0.95), rgba(15, 23, 42, 0.85));
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
}

.stat-box {
  padding: 30px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.4s ease;
  position: relative;
  z-index: 2;
}

.stat-box:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(245, 158, 11, 0.4);
}

.stat-icon {
  font-size: 3rem;
  color: #f59e0b;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 15px rgba(245, 158, 11, 0.4));
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 10px;
  font-family: 'Segoe UI', sans-serif;
  display: inline-block;
}

.stat-box:nth-child(1) .stat-number::after { content: '+'; color: #38bdf8; }
.stat-box:nth-child(2) .stat-number::after { content: '+'; color: #38bdf8; }
.stat-box:nth-child(3) .stat-number::after { content: '+'; color: #38bdf8; }
.stat-box:nth-child(4) .stat-number::after { content: '+'; color: #38bdf8; }

.stat-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: #94a3b8;
}

/* Dropdown Styles */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background-color: #fff;
  min-width: 250px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border-radius: 12px;
  z-index: 1000;
  padding: 10px 0;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  list-style: none;
  margin: 0;
}

.dropdown:hover > .dropdown-menu {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.dropdown-submenu {
  position: relative;
}

.dropdown-menu-sub {
  display: none;
  position: absolute;
  top: 0;
  right: 100%;
  background-color: #fff;
  min-width: 220px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border-radius: 12px;
  padding: 10px 0;
  list-style: none;
  margin: 0;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s ease;
}

.dropdown-submenu:hover > .dropdown-menu-sub {
  display: block;
  opacity: 1;
  transform: translateX(0);
}

.dropdown-menu a, .dropdown-menu-sub a {
  display: block;
  padding: 10px 20px;
  color: #475569 !important;
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 0.95rem;
  font-weight: 600;
}

.dropdown-menu li:hover > a, .dropdown-submenu:hover > a {
  background-color: #f1f5f9;
  color: #2563eb !important;
  padding-right: 25px;
}

@media (max-width: 991px) {
  .dropdown-menu, .dropdown-menu-sub {
    position: static;
    display: none;
    box-shadow: none;
    opacity: 1;
    transform: none;
    background: transparent;
    padding: 0 15px;
  }
  .dropdown-menu {
    border-right: 2px solid #e2e8f0;
    margin-right: 10px;
  }
  .dropdown:hover > .dropdown-menu,
  .dropdown-submenu:hover > .dropdown-menu-sub {
    display: block;
  }
}

