/* =============================================
   GENUINE CARE - Main Stylesheet
   Color Scheme: Dark Navy + Orange Accent
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Poppins:wght@400;500;600;700;800&display=swap');

:root {
  --primary: #d4521a;
  --primary-dark: #b8421a;
  --primary-light: #f06a2a;
  --secondary: #1a2744;
  --secondary-dark: #0f1a33;
  --secondary-light: #243358;
  --accent: #f59e0b;
  --success: #22c55e;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  --text-dark: #1a2744;
  --text-body: #374151;
  --text-muted: #6b7280;
  --border: #e2e8f0;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.1);
  --shadow-lg: 0 16px 40px rgba(0,0,0,0.12);
  --radius: 10px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --transition: all 0.25s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-body);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* =============================================
   UTILITY CLASSES
   ============================================= */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.container-lg { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-muted { color: var(--text-muted); }
.mb-0 { margin-bottom: 0; }
.mb-4 { margin-bottom: 4px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(212,82,26,0.35);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(212,82,26,0.45);
  color: var(--white);
}

.btn-secondary {
  background: var(--secondary);
  color: var(--white);
}
.btn-secondary:hover {
  background: var(--secondary-light);
  transform: translateY(-1px);
  color: var(--white);
}

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

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
}
.btn-whatsapp:hover {
  background: #1da851;
  color: var(--white);
  transform: translateY(-1px);
}

.btn-lg { padding: 15px 32px; font-size: 16px; }
.btn-sm { padding: 8px 16px; font-size: 13px; }

/* =============================================
   SECTION STYLES
   ============================================= */
.section { padding: 64px 0; }
.section-sm { padding: 40px 0; }
.section-lg { padding: 96px 0; }
.section-alt { background: var(--gray-50); }
.section-dark {
  background: var(--secondary);
  color: var(--white);
}

.section-header { margin-bottom: 48px; }
.section-header .badge {
  display: inline-block;
  background: rgba(212,82,26,0.1);
  color: var(--primary);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.section-dark .section-header .badge {
  background: rgba(245,158,11,0.2);
  color: var(--accent);
}

.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: 12px;
}
.section-dark .section-title { color: var(--white); }

.section-sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}
.section-dark .section-sub { color: rgba(255,255,255,0.7); }

/* =============================================
   HEADER / NAVIGATION
   ============================================= */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.header-top {
  background: var(--secondary-dark);
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  padding: 6px 0;
}
.header-top .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.header-top a { color: rgba(255,255,255,0.85); }
.header-top a:hover { color: var(--white); }
.header-top-left, .header-top-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header-top-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.header-top-item svg { flex-shrink: 0; }

.header-main { padding: 12px 0; }
.header-main .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-size: 18px;
}
.logo-text { line-height: 1.2; }
.logo-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--secondary);
}
.logo-tagline {
  font-size: 11px;
  color: var(--text-muted);
  display: block;
}

.main-nav { display: flex; align-items: center; gap: 4px; }
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--primary);
  background: rgba(212,82,26,0.06);
}
.nav-link svg { transition: transform 0.2s; }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 200px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s ease;
  z-index: 100;
}
.nav-item:hover .dropdown-menu,
.nav-item:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--gray-700);
  transition: var(--transition);
}
.dropdown-item:hover {
  background: var(--gray-50);
  color: var(--primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--secondary);
  font-size: 15px;
}
.header-phone:hover { color: var(--primary); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--secondary);
  border-radius: 2px;
  transition: var(--transition);
}

/* =============================================
   MOBILE MENU
   ============================================= */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
}
.mobile-menu.open { display: block; }
.mobile-menu-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}
.mobile-menu-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(320px, 85vw);
  height: 100%;
  background: var(--white);
  overflow-y: auto;
  padding: 24px 20px;
  animation: slideInRight 0.3s ease;
}
@keyframes slideInRight {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.mobile-menu-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gray-100);
  cursor: pointer;
}
.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-700);
}
.mobile-nav-link:hover { color: var(--primary); }
.mobile-sub-links { padding: 8px 0 8px 16px; }
.mobile-sub-link {
  display: block;
  padding: 8px 0;
  font-size: 14px;
  color: var(--text-muted);
}
.mobile-sub-link:hover { color: var(--primary); }
.mobile-menu-cta { margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }
.mobile-menu-cta .btn { justify-content: center; }

/* =============================================
   HERO SECTIONS
   ============================================= */
.hero {
  background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--secondary) 50%, #1e3060 100%);
  color: var(--white);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212,82,26,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245,158,11,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content { position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(212,82,26,0.2);
  border: 1px solid rgba(212,82,26,0.4);
  color: #ffa07a;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ffa07a;
}

.hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}
.hero-title span { color: var(--primary-light); }

.hero-desc {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hero-stat-num span { color: var(--primary-light); }
.hero-stat-label { font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 2px; }

/* Brand Hero Variant */
.brand-hero {
  background: linear-gradient(135deg, #0a1628 0%, #1a2744 50%, #0d1f3c 100%);
}
.brand-hero-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: center;
}
.brand-logo-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  padding: 32px;
  text-align: center;
  backdrop-filter: blur(10px);
}
.brand-logo-card .brand-big {
  font-family: 'Poppins', sans-serif;
  font-size: 56px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 8px;
}
.brand-logo-card .brand-verified {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(34,197,94,0.2);
  color: #4ade80;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
}

/* =============================================
   BREADCRUMB
   ============================================= */
.breadcrumb-bar {
  background: var(--gray-50);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 13px;
}
.breadcrumb-item { color: var(--text-muted); }
.breadcrumb-item a { color: var(--text-muted); }
.breadcrumb-item a:hover { color: var(--primary); }
.breadcrumb-item.active { color: var(--text-dark); font-weight: 500; }
.breadcrumb-sep { color: var(--gray-300); }

/* =============================================
   CARDS
   ============================================= */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: var(--transition);
}
.card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(212,82,26,0.2);
  transform: translateY(-2px);
}
.card-icon {
  width: 52px;
  height: 52px;
  background: rgba(212,82,26,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--primary);
}

/* Service Cards */
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: var(--transition);
  text-align: left;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.service-card:hover::before { transform: scaleX(1); }
.service-card-icon {
  font-size: 36px;
  margin-bottom: 14px;
}
.service-card-title {
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.service-card-desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.service-card-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.service-tag {
  font-size: 11px;
  padding: 3px 8px;
  background: var(--gray-100);
  border-radius: 50px;
  color: var(--text-muted);
}
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
}
.service-card-link:hover { gap: 8px; }

/* Feature / Trust Cards */
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  text-align: center;
}
.feature-card-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(212,82,26,0.1), rgba(212,82,26,0.05));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 28px;
}
.feature-card-title {
  font-weight: 700;
  font-size: 16px;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.feature-card-desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* =============================================
   GRID LAYOUTS
   ============================================= */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-6 { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
}
.testimonial-stars { display: flex; gap: 2px; color: #f59e0b; margin-bottom: 12px; }
.testimonial-text {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--secondary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 600; font-size: 15px; color: var(--text-dark); }
.testimonial-location { font-size: 13px; color: var(--text-muted); }

/* =============================================
   FAQ ACCORDION
   ============================================= */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  background: var(--white);
  transition: var(--transition);
}
.faq-question:hover { background: var(--gray-50); }
.faq-question.open { background: var(--gray-50); color: var(--primary); }
.faq-q-text { font-size: 15px; font-weight: 600; color: var(--text-dark); }
.faq-question.open .faq-q-text { color: var(--primary); }
.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}
.faq-question.open .faq-icon { background: var(--primary); color: var(--white); transform: rotate(45deg); }
.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-answer.open { padding: 4px 24px 20px; max-height: 500px; }
.faq-answer p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* =============================================
   PRICING TABLE
   ============================================= */
.pricing-table {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.pricing-table-header {
  background: var(--secondary);
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 16px;
  padding: 14px 20px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.pricing-row {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 16px;
  padding: 14px 20px;
  align-items: center;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  transition: var(--transition);
}
.pricing-row:last-child { border-bottom: none; }
.pricing-row:hover { background: var(--gray-50); }
.pricing-service-name { font-weight: 500; color: var(--text-dark); }
.pricing-time { color: var(--text-muted); font-size: 13px; }
.pricing-amount {
  font-weight: 700;
  color: var(--primary);
  font-size: 15px;
  white-space: nowrap;
}
.pricing-note { font-size: 12px; color: var(--text-muted); }

/* =============================================
   PROCESS STEPS
   ============================================= */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  z-index: 0;
}
.process-step { text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 4px 14px rgba(212,82,26,0.4);
}
.step-title { font-weight: 700; font-size: 15px; color: var(--text-dark); margin-bottom: 8px; }
.step-desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* =============================================
   CONTACT FORM
   ============================================= */
.form-group { margin-bottom: 16px; }
.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.form-control {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--text-body);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(212,82,26,0.12);
}
.form-control::placeholder { color: var(--gray-400); }
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; }
.form-checkbox { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--text-muted); }
.form-checkbox input { margin-top: 2px; flex-shrink: 0; accent-color: var(--primary); }

/* =============================================
   TRUST BADGES
   ============================================= */
.trust-badges { display: flex; flex-wrap: wrap; gap: 12px; }
.trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--success);
}
.trust-badge svg { color: var(--success); }

/* =============================================
   DISCLAIMER BOX
   ============================================= */
.disclaimer-box {
  background: #fffbeb;
  border: 1px solid #fcd34d;
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-md);
  padding: 20px 24px;
}
.disclaimer-title {
  font-weight: 700;
  color: #92400e;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.disclaimer-text { font-size: 13px; color: #78350f; line-height: 1.7; }

/* =============================================
   CITIES / AREAS
   ============================================= */
.city-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; }
.city-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.city-card:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

/* =============================================
   BRAND LOGOS ROW
   ============================================= */
.brands-row { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.brand-pill {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 10px 24px;
  font-weight: 700;
  font-size: 15px;
  color: var(--text-dark);
  transition: var(--transition);
}
.brand-pill:hover {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
}

/* =============================================
   FOOTER
   ============================================= */
#site-footer {
  background: var(--secondary-dark);
  color: rgba(255,255,255,0.75);
}
.footer-top { padding: 56px 0 40px; }
.footer-grid {
  display: grid;
  grid-template-columns: 280px repeat(3, 1fr) 220px;
  gap: 48px;
}
.footer-brand { }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo-icon {
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-size: 18px;
}
.footer-logo-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--white);
}
.footer-desc { font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  margin-bottom: 10px;
}
.footer-contact-item a { color: rgba(255,255,255,0.75); }
.footer-contact-item a:hover { color: var(--white); }
.footer-contact-icon { color: var(--primary); flex-shrink: 0; margin-top: 2px; }

.footer-section-title {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-link {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-link:hover { color: var(--white); padding-left: 4px; }
.footer-link::before { content: '›'; font-size: 16px; color: var(--primary); }

.footer-cta-box {
  background: rgba(212,82,26,0.15);
  border: 1px solid rgba(212,82,26,0.3);
  border-radius: var(--radius-md);
  padding: 20px;
}
.footer-cta-title { font-weight: 700; color: var(--white); font-size: 15px; margin-bottom: 8px; }
.footer-cta-desc { font-size: 13px; margin-bottom: 16px; }
.footer-cta-phone {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  display: block;
  margin-bottom: 12px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy { font-size: 13px; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 20px; }
.footer-legal a {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}
.footer-legal a:hover { color: var(--white); }

/* =============================================
   STICKY CALL BUTTONS (Mobile)
   ============================================= */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.12);
  padding: 10px 16px;
}
.sticky-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.sticky-cta .btn { justify-content: center; font-size: 14px; padding: 12px 16px; }

/* =============================================
   REVIEW SUMMARY
   ============================================= */
.rating-box {
  background: var(--secondary);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  text-align: center;
}
.rating-num {
  font-family: 'Poppins', sans-serif;
  font-size: 56px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.rating-stars { display: flex; justify-content: center; gap: 4px; color: #f59e0b; font-size: 20px; margin: 8px 0; }
.rating-total { font-size: 13px; color: rgba(255,255,255,0.6); }

/* =============================================
   INFO BOXES
   ============================================= */
.info-box {
  background: rgba(212,82,26,0.05);
  border: 1px solid rgba(212,82,26,0.15);
  border-radius: var(--radius-md);
  padding: 20px 24px;
}
.info-box-title { font-weight: 700; color: var(--primary); margin-bottom: 8px; font-size: 15px; }

.problems-list { display: flex; flex-direction: column; gap: 6px; }
.problems-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: var(--text-body);
  padding: 4px 0;
}
.problems-list li::before {
  content: '✓';
  color: var(--success);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* =============================================
   PAGE HEADER (Inner Pages)
   ============================================= */
.page-header {
  background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--secondary) 100%);
  color: var(--white);
  padding: 48px 0;
}
.page-header-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 700;
  margin-bottom: 10px;
}
.page-header-sub { font-size: 16px; color: rgba(255,255,255,0.75); }

/* =============================================
   TABLE STYLES
   ============================================= */
.table-wrapper { overflow-x: auto; border-radius: var(--radius-md); border: 1px solid var(--border); }
table { width: 100%; border-collapse: collapse; }
th {
  background: var(--secondary);
  color: var(--white);
  padding: 14px 16px;
  text-align: left;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
td {
  padding: 13px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-body);
}
tr:last-child td { border-bottom: none; }
tr:hover td { background: var(--gray-50); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .brand-hero-grid { grid-template-columns: 1fr; }
  .brand-logo-card { display: none; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-6 { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 48px 0; }
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .header-top-left { display: none; }
  .header-phone span { display: none; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-6 { grid-template-columns: repeat(2, 1fr); }
  .hero { padding: 48px 0; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats { gap: 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-brand { grid-column: 1; }
  .process-steps { grid-template-columns: 1fr; }
  .pricing-table-header, .pricing-row { grid-template-columns: 1fr auto; }
  .pricing-table-header span:nth-child(3),
  .pricing-row .pricing-time { display: none; }
  .sticky-cta { display: flex; }
  body { padding-bottom: 70px; }
  .page-header { padding: 36px 0; }
  .trust-badges { justify-content: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .grid-4, .grid-6 { grid-template-columns: 1fr; }
  .btn-lg { padding: 12px 20px; font-size: 15px; }
  .section-title { font-size: 22px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

.animate-fade-up { animation: fadeInUp 0.6s ease both; }
.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }

/* Whatsapp float button (bottom-left) */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 54px;
  height: 54px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 8px 25px rgba(37,211,102,0.45);
  z-index: 800;
  transition: var(--transition);
  animation: pulse 2s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  background: #1da851;
}
@media (max-width: 768px) {
  .whatsapp-float { bottom: 20px; left: 16px; width: 48px; height: 48px; }
}

/* =============================================
   MEGA MENU (BRANDS)
   ============================================= */
.mega-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 500px;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  z-index: 100;
}
.nav-item:hover .mega-menu,
.nav-item:focus-within .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.mega-menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.mega-menu-item {
  display: flex;
  flex-direction: column;
  padding: 8px;
  border-radius: var(--radius);
  transition: var(--transition);
}
.mega-menu-item:hover {
  background: var(--gray-50);
}
.mega-menu-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--text-dark);
  margin-bottom: 2px;
}
.mega-menu-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* =============================================
   FLOATING WIDGET (NEED REPAIR?)
   ============================================= */
.repair-widget {
  background: #1e293b;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 360px;
}
.repair-widget-header {
  padding: 24px;
  color: white;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.repair-widget-icon {
  font-size: 24px;
  color: rgba(255,255,255,0.7);
}
.repair-widget-title {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
}
.repair-widget-subtitle {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 4px;
}
.repair-widget-body {
  background: white;
  margin: 0 4px 4px 4px;
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
}
.repair-widget-text {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.repair-widget-phone {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 20px;
  display: block;
}
.repair-widget .btn {
  width: 100%;
  justify-content: center;
  margin-bottom: 12px;
}
.repair-widget-footer {
  font-size: 11px;
  color: var(--text-muted);
}

/* =============================================
   FLOATING SIDE REPAIR WIDGET (GENUINE CARE STYLE)
   ============================================= */
.side-repair-widget {
  position: fixed;
  right: 28px;
  bottom: 28px;
  width: 320px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.22);
  z-index: 9999;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.9);
  font-family: 'Inter', sans-serif;
  animation: sideWidgetIn 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  transition: all 0.3s ease;
}
@keyframes sideWidgetIn {
  from { opacity: 0; transform: translateY(30px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.side-widget-header {
  background: var(--brand-color, var(--primary, #d4521a));
  color: #ffffff;
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.side-widget-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.side-widget-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
}
.side-widget-brand {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.2;
}
.side-widget-title {
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.25;
}
.side-widget-close {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: #ffffff;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.side-widget-close:hover {
  background: rgba(255, 255, 255, 0.35);
}
.side-widget-body {
  padding: 20px;
  background: #ffffff;
}
.side-widget-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 4px;
}
.side-widget-phone {
  font-family: 'Playfair Display', Georgia, 'Poppins', serif;
  font-size: 27px;
  font-weight: 800;
  color: #0f172a;
  text-decoration: none;
  display: block;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.side-widget-btn-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px;
  box-sizing: border-box;
  background: var(--brand-color, var(--primary, #d4521a));
  color: #ffffff;
  border-radius: 10px;
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 10px;
  transition: all 0.2s ease;
}
.side-widget-btn-call:hover {
  filter: brightness(0.9);
  transform: translateY(-1px);
}
.side-widget-btn-book {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px;
  box-sizing: border-box;
  background: #ffffff;
  color: #0f172a;
  border: 1.5px solid #cbd5e1;
  border-radius: 10px;
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s ease;
}
.side-widget-btn-book:hover {
  border-color: #64748b;
  background: #f8fafc;
}
.side-widget-footer {
  font-size: 11.5px;
  color: #94a3b8;
  text-align: center;
  margin-top: 12px;
}

/* REOPEN BUTTON WHEN WIDGET IS CLOSED */
.side-widget-reopen {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 9998;
  background: var(--brand-color, var(--primary, #d4521a));
  color: #ffffff;
  border: none;
  border-radius: 50px;
  padding: 12px 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  display: none;
  align-items: center;
  gap: 10px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.side-widget-reopen:hover {
  transform: scale(1.05);
}

/* BOOKING POPUP MODAL */
.booking-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(6px);
  z-index: 100000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.booking-modal-backdrop.open {
  display: flex;
  opacity: 1;
}
.booking-modal-box {
  background: #ffffff;
  width: 100%;
  max-width: 520px;
  max-height: 92vh;
  overflow-y: auto;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.25);
  transform: scale(0.95);
  transition: transform 0.25s ease;
}
.booking-modal-backdrop.open .booking-modal-box {
  transform: scale(1);
}
.booking-modal-top {
  padding: 22px 24px;
  color: #ffffff;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  background: var(--brand-color, var(--primary, #d4521a));
}
.modal-top-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 4px;
}
.modal-top-title {
  font-family: 'Playfair Display', Georgia, 'Poppins', serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 4px;
  color: #ffffff;
}
.modal-top-sub {
  font-size: 12.5px;
  color: rgba(255,255,255,0.9);
}
.booking-modal-close {
  background: rgba(255,255,255,0.2);
  border: none;
  color: #ffffff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.booking-modal-close:hover {
  background: rgba(255,255,255,0.35);
}
.booking-modal-form {
  padding: 24px;
}
.modal-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.modal-field {
  margin-bottom: 14px;
}
.modal-field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #475569;
  margin-bottom: 6px;
}
.modal-field input,
.modal-field select,
.modal-field textarea {
  width: 100%;
  padding: 10px 14px;
  box-sizing: border-box;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-size: 13.5px;
  color: #0f172a;
  background: #ffffff;
  outline: none;
  transition: border-color 0.2s ease;
  font-family: inherit;
}
.modal-field input:focus,
.modal-field select:focus,
.modal-field textarea:focus {
  border-color: var(--brand-color, var(--primary, #d4521a));
  box-shadow: 0 0 0 3px rgba(212, 82, 26, 0.12);
}
.modal-checkbox-line {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 18px;
  font-size: 12px;
  color: #64748b;
  line-height: 1.4;
}
.modal-checkbox-line input {
  margin-top: 2px;
}
.modal-submit-btn {
  width: 100%;
  padding: 14px;
  background: #25d366;
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: filter 0.2s ease, transform 0.2s ease;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}
.modal-submit-btn:hover {
  filter: brightness(0.92);
  transform: translateY(-1px);
}
.modal-form-note {
  font-size: 11.5px;
  color: #94a3b8;
  text-align: center;
  margin-top: 10px;
}
@media (max-width: 600px) {
  .side-repair-widget {
    right: 16px;
    bottom: 16px;
    width: calc(100vw - 32px);
    max-width: 330px;
  }
  .modal-form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

