/* ============================================
   AR Electronics — Premium Local Business CSS
   V2: Refined for trust, conversion, realism
   Mobile-First | Conversion-Focused | Trust-First
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Primary Palette */
  --royal-blue: #1a3a8f;
  --royal-blue-dark: #0e2260;
  --royal-blue-light: #2a4db0;
  --royal-blue-pale: #e8edff;
  --gold: #f0a500;
  --gold-dark: #c98a00;
  --gold-light: #ffc94d;
  --gold-pale: #fff8e6;
  --white: #ffffff;
  --off-white: #f7f8fc;
  --light-gray: #eef1f8;

  /* Accent */
  --urgency-red: #d63031;
  --urgency-orange: #e17055;
  --success-green: #00b894;
  --whatsapp-green: #25D366;
  --whatsapp-dark: #128C7E;

  /* Neutrals */
  --text-primary: #1a1d26;
  --text-secondary: #4a5068;
  --text-muted: #7a8094;
  --border-color: #e4e7f0;
  --card-bg: #ffffff;
  --section-alt-bg: #f5f7fc;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(26, 58, 143, 0.04);
  --shadow-sm: 0 2px 8px rgba(26, 58, 143, 0.06);
  --shadow-md: 0 4px 16px rgba(26, 58, 143, 0.08);
  --shadow-lg: 0 8px 32px rgba(26, 58, 143, 0.10);
  --shadow-xl: 0 16px 48px rgba(26, 58, 143, 0.12);
  --shadow-gold: 0 4px 20px rgba(240, 165, 0, 0.2);

  /* Layout */
  --card-radius: 16px;
  --card-radius-sm: 12px;
  --btn-radius: 12px;
  --section-py: 72px;
  --section-py-lg: 88px;

  /* Transition */
  --ease-out: cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast: 0.18s;
  --t-normal: 0.3s;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-bottom: 68px;
}

@media (min-width: 768px) {
  body { padding-bottom: 0; }
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-primary);
}

h1 { font-size: clamp(1.6rem, 5vw, 2.75rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.35rem, 4vw, 2rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.05rem, 2.5vw, 1.3rem); }

p { color: var(--text-secondary); line-height: 1.7; }

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

/* ---------- Section ---------- */
.section {
  padding: var(--section-py) 0;
}

.section-alt {
  background: var(--section-alt-bg);
}

.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 40px;
}

.section-header h2 {
  margin-bottom: 12px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--royal-blue);
  background: var(--royal-blue-pale);
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.section-divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--royal-blue), var(--gold));
  border-radius: 2px;
  margin: 14px auto 0;
}

.section-header p {
  font-size: 0.95rem;
  margin-top: 8px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--btn-radius);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  transition: all var(--t-normal) var(--ease-out);
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
  position: relative;
}

.btn:active {
  transform: scale(0.97);
}

.btn i {
  font-size: 1em;
}

.btn-primary {
  background: var(--royal-blue);
  color: var(--white);
  box-shadow: 0 3px 12px rgba(26, 58, 143, 0.25);
}

.btn-primary:hover {
  background: var(--royal-blue-dark);
  box-shadow: 0 5px 20px rgba(26, 58, 143, 0.35);
  transform: translateY(-1px);
}

.btn-gold {
  background: var(--gold);
  color: var(--text-primary);
  box-shadow: var(--shadow-gold);
  font-weight: 700;
}

.btn-gold:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
}

.btn-whatsapp {
  background: var(--whatsapp-green);
  color: var(--white);
  box-shadow: 0 3px 12px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--royal-blue);
  border: 2px solid var(--royal-blue);
}

.btn-outline:hover {
  background: var(--royal-blue);
  color: var(--white);
}

.btn-sm { padding: 9px 18px; font-size: 0.8rem; border-radius: 10px; }
.btn-lg { padding: 15px 32px; font-size: 0.95rem; }

/* Pulse for primary hero CTA */
@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(26, 58, 143, 0.3); }
  70% { box-shadow: 0 0 0 10px rgba(26, 58, 143, 0); }
  100% { box-shadow: 0 0 0 0 rgba(26, 58, 143, 0); }
}

.btn-pulse { animation: pulse-ring 2.5s ease-out infinite; }

/* ===================================================================
   NAVBAR
   =================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(228, 231, 240, 0.6);
  transition: box-shadow var(--t-normal) var(--ease-out);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  max-width: 1140px;
  margin: 0 auto;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar-logo {
  width: 38px;
  height: 38px;
  background: var(--royal-blue);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-size: 1rem;
  font-family: 'Outfit', sans-serif;
  flex-shrink: 0;
}

.navbar-brand-text { display: flex; flex-direction: column; }

.navbar-brand-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--royal-blue);
  line-height: 1.2;
}

.navbar-brand-tagline {
  font-size: 0.6rem;
  color: var(--text-muted);
  font-weight: 500;
}

.navbar-cta {
  display: flex;
  align-items: center;
  gap: 6px;
}

.navbar-links { display: none; }

@media (min-width: 768px) {
  .navbar-links {
    display: flex;
    align-items: center;
    gap: 28px;
  }

  .navbar-links a {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color var(--t-fast);
  }

  .navbar-links a:hover,
  .navbar-links a.active {
    color: var(--royal-blue);
  }
}

/* ===================================================================
   HERO SECTION
   =================================================================== */
.hero {
  position: relative;
  padding: 100px 0 48px;
  background: linear-gradient(170deg, #eef2ff 0%, #f7f8fc 50%, #fefdfb 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(26, 58, 143, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero .container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

@media (min-width: 768px) {
  .hero {
    padding: 120px 0 72px;
  }

  .hero .container {
    flex-direction: row;
    align-items: center;
    gap: 48px;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
}

/* Google Review Badge */
.hero-google-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  padding: 8px 16px;
  border-radius: 50px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  margin-bottom: 18px;
}

.hero-google-badge .google-icon {
  font-size: 1.1rem;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
}

.hero-google-badge .google-icon span:nth-child(1) { color: #4285F4; }
.hero-google-badge .google-icon span:nth-child(2) { color: #EA4335; }
.hero-google-badge .google-icon span:nth-child(3) { color: #FBBC05; }
.hero-google-badge .google-icon span:nth-child(4) { color: #34A853; }

.hero-stars {
  display: flex;
  gap: 1px;
  color: var(--gold);
  font-size: 0.8rem;
}

.hero-rating-text {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-primary);
}

.hero-rating-text span {
  font-weight: 400;
  color: var(--text-muted);
}

.hero h1 {
  margin-bottom: 10px;
  color: var(--text-primary);
}

.hero h1 .highlight {
  color: var(--royal-blue);
}

.hero-alt-headline {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
  margin-bottom: 14px;
  line-height: 1.5;
}

.hero-description {
  font-size: 0.92rem;
  margin-bottom: 24px;
  max-width: 540px;
  color: var(--text-secondary);
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

/* Hero trust badges row */
.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.hero-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.73rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--white);
  padding: 6px 12px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

.hero-trust-item i {
  color: var(--gold);
  font-size: 0.7rem;
}

.hero-support-line {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-support-line i {
  color: var(--royal-blue);
  font-size: 0.7rem;
}

/* Urgency bar */
.hero-urgency {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fef2f2;
  color: var(--urgency-red);
  padding: 7px 14px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 14px;
  border: 1px solid #fecaca;
}

.hero-urgency i {
  font-size: 0.7rem;
}

/* Hero Image Side */
.hero-image-side {
  flex: 0 0 340px;
  display: none;
}

@media (min-width: 768px) {
  .hero-image-side {
    display: block;
  }
}

@media (min-width: 1024px) {
  .hero-image-side {
    flex: 0 0 420px;
  }
}

.hero-image-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.hero-image-card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

@media (min-width: 1024px) {
  .hero-image-card img {
    height: 460px;
  }
}

.hero-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.7) 100%);
}

.hero-image-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  padding: 8px 14px;
  border-radius: 10px;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
}

.hero-image-badge i {
  color: var(--gold);
}

/* ===================================================================
   TRUST STRIP
   =================================================================== */
.trust-strip {
  background: var(--royal-blue-dark);
  padding: 16px 0;
  overflow: hidden;
}

.trust-strip-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 20px;
}

.trust-strip-inner::-webkit-scrollbar { display: none; }

.trust-strip-item {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  flex-shrink: 0;
}

.trust-strip-item i {
  width: 30px;
  height: 30px;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.8rem;
  flex-shrink: 0;
}

.trust-strip-item span {
  color: rgba(255,255,255,0.92);
  font-size: 0.78rem;
  font-weight: 600;
}

@media (min-width: 768px) {
  .trust-strip-inner {
    justify-content: center;
    flex-wrap: wrap;
    gap: 36px;
  }
}

/* ===================================================================
   SERVICES
   =================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 500px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 900px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}

.service-card {
  background: var(--card-bg);
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: all var(--t-normal) var(--ease-out);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-card-image {
  width: 100%;
  height: 160px;
  overflow: hidden;
  position: relative;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

.service-card:hover .service-card-image img {
  transform: scale(1.05);
}

.service-card-body {
  padding: 20px;
}

.service-card-body h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-card-body h3 i {
  color: var(--royal-blue);
  font-size: 0.9rem;
}

.service-card-body p {
  font-size: 0.84rem;
  line-height: 1.6;
  margin-bottom: 14px;
  color: var(--text-muted);
}

.service-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--royal-blue);
  padding: 8px 16px;
  border-radius: 8px;
  background: var(--royal-blue-pale);
  transition: all var(--t-fast);
}

.service-card-cta:hover {
  background: var(--royal-blue);
  color: var(--white);
}

.services-support {
  text-align: center;
  margin-top: 28px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ===================================================================
   WHY CHOOSE US
   =================================================================== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (min-width: 768px) {
  .why-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }
}

.why-card {
  background: var(--card-bg);
  border-radius: var(--card-radius);
  padding: 22px 16px;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: all var(--t-normal) var(--ease-out);
}

.why-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--royal-blue-pale);
}

.why-icon {
  width: 44px;
  height: 44px;
  background: var(--gold-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.why-icon i {
  font-size: 1rem;
  color: var(--gold-dark);
}

.why-card h3 {
  font-size: 0.85rem;
  margin-bottom: 6px;
  font-weight: 700;
}

.why-card p {
  font-size: 0.76rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.why-support {
  text-align: center;
  max-width: 560px;
  margin: 28px auto 0;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===================================================================
   PAIN POINTS
   =================================================================== */
.pain-section {
  background: linear-gradient(160deg, var(--royal-blue-dark), var(--royal-blue));
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.pain-section::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(240,165,0,0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.pain-section .section-header h2 { color: var(--white); }

.pain-section .section-label {
  background: rgba(255,255,255,0.12);
  color: var(--gold-light);
}

.pain-section .section-divider {
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.pain-section .section-header p {
  color: rgba(255,255,255,0.75);
}

.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 28px;
}

@media (min-width: 768px) {
  .pain-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .pain-grid { grid-template-columns: repeat(5, 1fr); }
}

.pain-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.07);
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.08);
  transition: background var(--t-fast);
}

.pain-item:hover {
  background: rgba(255,255,255,0.12);
}

.pain-item i {
  color: var(--urgency-orange);
  font-size: 0.75rem;
  flex-shrink: 0;
}

.pain-item span {
  font-size: 0.76rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
}

.pain-cta-line {
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 20px;
}

.pain-cta-line i { margin-right: 6px; }

.pain-cta-group {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

/* ===================================================================
   TESTIMONIALS
   =================================================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 600px) {
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 960px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}

.testimonial-card {
  background: var(--card-bg);
  border-radius: var(--card-radius);
  padding: 24px 22px;
  border: 1px solid var(--border-color);
  transition: all var(--t-normal) var(--ease-out);
  position: relative;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.testimonial-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  color: var(--gold);
  font-size: 0.8rem;
}

.testimonial-google {
  font-size: 0.65rem;
  color: var(--text-muted);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
}

.testimonial-google i {
  color: #4285F4;
  font-size: 0.7rem;
}

.testimonial-text {
  font-size: 0.88rem;
  line-height: 1.65;
  margin-bottom: 16px;
  color: var(--text-secondary);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial-avatar {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--royal-blue), var(--royal-blue-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 0.82rem;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-primary);
}

.testimonial-label {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.testimonials-summary {
  text-align: center;
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-pale);
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-primary);
  margin-left: auto;
  margin-right: auto;
}

.testimonials-summary-wrap {
  text-align: center;
}

.testimonials-summary i {
  color: var(--gold);
}

/* ===================================================================
   HOW IT WORKS
   =================================================================== */
.steps-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

@media (min-width: 768px) {
  .steps-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

.step-card {
  text-align: center;
  background: var(--card-bg);
  border-radius: var(--card-radius);
  padding: 28px 20px;
  border: 1px solid var(--border-color);
  position: relative;
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  font-weight: 800;
  margin: 0 auto 14px;
  color: var(--white);
  font-family: 'Outfit', sans-serif;
}

.step-card:nth-child(1) .step-number {
  background: var(--royal-blue);
}
.step-card:nth-child(2) .step-number {
  background: var(--gold);
  color: var(--text-primary);
}
.step-card:nth-child(3) .step-number {
  background: var(--success-green);
}

.step-card h3 {
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.step-card p {
  font-size: 0.84rem;
  color: var(--text-muted);
}

.steps-support {
  text-align: center;
  margin-top: 24px;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.steps-support i {
  color: var(--success-green);
  margin-right: 6px;
}

/* ===================================================================
   SERVICE AREAS
   =================================================================== */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

@media (min-width: 500px) {
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 768px) {
  .areas-grid { grid-template-columns: repeat(4, 1fr); }
}

.area-tag {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--card-bg);
  padding: 11px 14px;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  transition: all var(--t-fast);
}

.area-tag:hover {
  border-color: var(--royal-blue);
  color: var(--royal-blue);
  box-shadow: var(--shadow-sm);
}

.area-tag i {
  color: var(--royal-blue);
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* ===================================================================
   FAQ
   =================================================================== */
.faq-container {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  background: var(--card-bg);
  border-radius: var(--card-radius-sm);
  margin-bottom: 10px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: all var(--t-normal) var(--ease-out);
}

.faq-item.active {
  box-shadow: var(--shadow-sm);
  border-color: rgba(26, 58, 143, 0.12);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  cursor: pointer;
  gap: 14px;
  -webkit-tap-highlight-color: transparent;
}

.faq-question h3 {
  font-size: 0.88rem;
  font-weight: 600;
  flex: 1;
  line-height: 1.4;
}

.faq-toggle {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--royal-blue-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--t-normal) var(--ease-out);
}

.faq-item.active .faq-toggle {
  background: var(--royal-blue);
  transform: rotate(180deg);
}

.faq-toggle i {
  font-size: 0.65rem;
  color: var(--royal-blue);
  transition: color var(--t-fast);
}

.faq-item.active .faq-toggle i {
  color: var(--white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease-out);
}

.faq-answer-inner {
  padding: 0 20px 18px;
  font-size: 0.84rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* ===================================================================
   FINAL CTA
   =================================================================== */
.final-cta {
  background: linear-gradient(160deg, var(--royal-blue-dark), var(--royal-blue));
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  bottom: -60%;
  left: -10%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(240,165,0,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.final-cta h2 { color: var(--white); }

.final-cta-sub {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  margin-bottom: 28px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.final-cta-trust {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}

.final-cta-trust .dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  vertical-align: middle;
  margin: 0 8px;
}

/* ===================================================================
   CONTACT SECTION
   =================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-info-card {
  background: var(--card-bg);
  border-radius: var(--card-radius);
  padding: 24px;
  border: 1px solid var(--border-color);
}

.contact-info-card h3 {
  font-size: 1rem;
  margin-bottom: 18px;
  color: var(--royal-blue);
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.contact-detail:last-child { margin-bottom: 0; }

.contact-detail-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--royal-blue-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon i {
  color: var(--royal-blue);
  font-size: 0.8rem;
}

.contact-detail-text { flex: 1; }

.contact-detail-text strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.contact-detail-text p,
.contact-detail-text a {
  font-size: 0.88rem;
  color: var(--text-primary);
  font-weight: 500;
}

.contact-detail-text a:hover { color: var(--royal-blue); }

/* Quick contact buttons row */
.contact-quick-btns {
  display: flex;
  gap: 8px;
  margin-top: 18px;
}

.contact-quick-btns .btn {
  flex: 1;
  font-size: 0.8rem;
  padding: 11px 14px;
}

.contact-map {
  border-radius: var(--card-radius);
  overflow: hidden;
  border: 1px solid var(--border-color);
  height: 200px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Contact Form */
.contact-form-card {
  background: var(--card-bg);
  border-radius: var(--card-radius);
  padding: 24px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.contact-form-card h3 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.contact-form-card > p {
  font-size: 0.84rem;
  margin-bottom: 20px;
}

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

@media (max-width: 480px) {
  .form-row { grid-template-columns: 1fr; }
}

.form-group {
  margin-bottom: 14px;
}

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border-color);
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: var(--text-primary);
  background: var(--white);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--royal-blue);
  box-shadow: 0 0 0 3px rgba(26, 58, 143, 0.06);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.form-group select {
  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='%234a5068' 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 14px center;
  padding-right: 36px;
}

.form-submit { margin-top: 4px; }
.form-submit .btn { width: 100%; }

.form-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 10px;
  font-size: 0.72rem;
  color: var(--text-muted);
}

.form-trust i { color: var(--success-green); }

/* ===================================================================
   FOOTER
   =================================================================== */
.footer {
  background: #12151e;
  color: rgba(255,255,255,0.65);
  padding: 36px 0 20px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo {
  width: 34px;
  height: 34px;
  background: var(--royal-blue);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-size: 0.85rem;
}

.footer-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.85);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
}

.footer-links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--t-fast);
}

.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.3);
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
  width: 100%;
  text-align: center;
}

/* ===================================================================
   STICKY MOBILE CTA
   =================================================================== */
.sticky-mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--white);
  padding: 8px 12px;
  box-shadow: 0 -2px 16px rgba(0,0,0,0.08);
  display: flex;
  gap: 6px;
  border-top: 1px solid var(--border-color);
  transform: translateY(100%);
  transition: transform var(--t-normal) var(--ease-out);
}

.sticky-mobile-cta .btn {
  flex: 1;
  padding: 11px 8px;
  font-size: 0.78rem;
  border-radius: 10px;
}

@media (min-width: 768px) {
  .sticky-mobile-cta { display: none; }
}

/* ===================================================================
   FLOATING BUTTONS
   =================================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 998;
  width: 52px;
  height: 52px;
  background: var(--whatsapp-green);
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.4rem;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
  transition: transform var(--t-fast);
}

.whatsapp-float:hover { transform: scale(1.08); }

@media (min-width: 768px) {
  .whatsapp-float { display: flex; }
}

.back-to-top {
  position: fixed;
  bottom: 80px;
  right: 16px;
  z-index: 998;
  width: 40px;
  height: 40px;
  background: var(--royal-blue);
  color: var(--white);
  border: none;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(16px);
  transition: all var(--t-normal) var(--ease-out);
  font-size: 0.9rem;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover { background: var(--royal-blue-dark); }

@media (min-width: 768px) {
  .back-to-top { bottom: 24px; right: 84px; }
}

/* ===================================================================
   ANIMATIONS
   =================================================================== */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-1 { transition-delay: 0.08s; }
.fade-up-delay-2 { transition-delay: 0.16s; }
.fade-up-delay-3 { transition-delay: 0.24s; }
.fade-up-delay-4 { transition-delay: 0.32s; }

/* ===================================================================
   UTILITIES
   =================================================================== */
.text-center { text-align: center; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
