@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;700;800&family=Roboto+Condensed:wght@600;700&family=Sora:wght@700;800&display=swap');

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', 'Segoe UI', Arial, sans-serif;
  background:
    radial-gradient(circle at 12% -5%, #dbeafe 0%, rgba(219,234,254,0) 35%),
    radial-gradient(circle at 92% 12%, #ffedd5 0%, rgba(255,237,213,0) 28%),
    #ffffff;
  color: #1a1a2e;
  line-height: 1.6;
}

/* ── Design Tokens ── */
:root {
  --orange:     #f97316;
  --orange-dark:#c05a0a;
  --blue:       #1e40af;
  --blue-light: #3b82f6;
  --blue-dark:  #1e3a8a;
  --white:      #ffffff;
  --off-white:  #f8fafc;
  --gray-light: #e2e8f0;
  --gray:       #64748b;
  --dark:       #1a1a2e;
  --cyan:       #06b6d4;
  --panel:      #f3f8ff;
  --shadow-soft: 0 14px 34px rgba(30,58,138,.12);
  --shadow-hover: 0 22px 40px rgba(30,58,138,.2);
}

/* ── Utility ── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 1.5rem; }
.btn {
  display: inline-block;
  padding: 0.9rem 2.05rem;
  border-radius: 999px;
  font-family: 'Roboto Condensed', 'Arial Narrow', 'Segoe UI', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.015em;
  text-decoration: none;
  border: 1px solid transparent;
  box-shadow: 0 8px 20px rgba(15, 23, 42, .12);
  transition: background 0.2s, transform 0.18s, box-shadow 0.18s;
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(15, 23, 42, .18);
}
.btn-orange {
  background: linear-gradient(135deg, #fb923c, var(--orange));
  color: var(--white);
}
.btn-orange:hover { background: linear-gradient(135deg, var(--orange), var(--orange-dark)); }
.btn-blue   { background: var(--blue); color: var(--white); }
.btn-blue:hover   { background: var(--blue-dark); }
.btn-whatsapp {
  background: linear-gradient(135deg, #34d399, #25d366);
  color: var(--white);
}
.btn-whatsapp:hover { background: linear-gradient(135deg, #25d366, #1ea952); }
.btn-icon-phone,
.btn-icon-email {
  display: inline-flex;
  width: 1.2rem;
  height: 1.2rem;
  margin-right: 0.45rem;
  vertical-align: middle;
}
.btn-icon-email {
  width: 1.35rem;
  height: 1.35rem;
}
.btn-icon-phone svg,
.btn-icon-email svg {
  width: 100%;
  height: 100%;
  fill: #ffffff;
}
.section-label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.5rem;
}
.section-title {
  font-size: clamp(2rem, 4.2vw, 2.5rem);
  font-family: 'Sora', 'Segoe UI', Arial, sans-serif;
  font-weight: 800;
  color: var(--blue-dark);
  margin-bottom: 1rem;
}

/* ══════════════════════════════════════
   TOP BAR
══════════════════════════════════════ */
.topbar {
  background: var(--blue-dark);
  color: var(--white);
  font-size: 0.875rem;
  padding: 0.45rem 0;
}
.topbar .container {
  display: flex;
  justify-content: flex-end;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
}
.topbar a { color: var(--white); text-decoration: none; }
.topbar a:hover { color: var(--orange); }
.topbar .icon {
  margin-right: 0.35rem;
  display: inline-flex;
  width: 1rem;
  height: 1rem;
  vertical-align: middle;
}
.topbar .icon-email {
  width: 1.15rem;
  height: 1.15rem;
}
.topbar .icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

/* ══════════════════════════════════════
   HEADER / NAV
══════════════════════════════════════ */
header {
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 26px rgba(15,23,42,.12);
  border-bottom: 1px solid rgba(148,163,184,.24);
  position: sticky;
  top: 0;
  z-index: 100;
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 1rem;
}
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.logo-image {
  display: block;
  height: 58px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 6px 12px rgba(30,64,175,.2));
}
.nav-links {
  display: flex;
  gap: 1.75rem;
  list-style: none;
  flex-wrap: wrap;
}
.nav-links a {
  text-decoration: none;
  color: var(--dark);
  font-family: 'Roboto Condensed', 'Arial Narrow', 'Segoe UI', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  position: relative;
  transition: color 0.2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s;
}
.nav-links a:hover { color: var(--orange); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta .btn { padding: 0.55rem 1.4rem; }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  background:
    radial-gradient(circle at 85% 20%, rgba(56,189,248,.25), rgba(56,189,248,0) 35%),
    linear-gradient(130deg, #0f2a7a 0%, #1f4cc7 52%, #2563eb 100%);
  color: var(--white);
  padding: 3rem 1.5rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='1.5' fill='rgba(255,255,255,.08)'/%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.28);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-family: 'Sora', 'Segoe UI', Arial, sans-serif;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.hero-line { color: var(--white); }
.hero-emphasis { color: var(--orange); }
.hero p {
  font-size: 1.15rem;
  opacity: 0.9;
  max-width: 580px;
  margin: 0 auto 2.25rem;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-actions-break { flex-basis: 100%; height: 0; }
.hero-actions-secondary { flex: 0 0 auto; }
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.hero-stat {
  text-align: center;
  padding: 0.5rem 0.5rem;
  min-width: 125px;
}
.hero-stat .number {
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--white);
  display: block;
}
.hero-stat .label { font-size: 0.85rem; opacity: 0.85; }

/* ══════════════════════════════════════
   SERVICES
══════════════════════════════════════ */
.services {
  padding: 5rem 1.5rem;
  background:
    linear-gradient(180deg, #f8fbff 0%, #edf5ff 100%);
}
.services .container { text-align: center; }
.services .section-intro {
  max-width: 600px;
  margin: 0 auto 3rem;
  color: var(--gray);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
  margin-top: 0;
}
.service-card {
  background: linear-gradient(150deg, #1b3f9c 0%, #1f56d8 100%);
  border-radius: 18px;
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s, box-shadow 0.25s;
  border-top: 4px solid var(--blue-light);
  border: 1px solid rgba(255,255,255,.16);
  color: var(--white);
  text-align: left;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}
.service-card:nth-child(even) { border-top-color: var(--orange); }
.service-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  font-size: 1.7rem;
}
.icon-blue { background: #dbeafe; }
.icon-orange { background: #fff7ed; }
.service-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.service-card p { font-size: 0.9rem; color: rgba(255,255,255,.9); }
.service-card * { color: inherit; }

/* ══════════════════════════════════════
   WHY CHOOSE US
══════════════════════════════════════ */
.why {
  padding: 5rem 1.5rem;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.why-visual {
  background: linear-gradient(145deg, #173793, #2d67f2);
  border-radius: 22px;
  padding: 3rem 2rem;
  color: var(--white);
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-soft);
}
.why-visual .big-icon { font-size: 5rem; display: block; margin-bottom: 1.25rem; }
.why-visual h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 0.5rem; }
.why-visual p { opacity: 0.88; font-size: 0.95rem; }
.why-ribbon {
  position: absolute;
  top: -14px; right: -14px;
  background: linear-gradient(135deg, #fb923c, #ea580c);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.45rem 0.9rem;
  border-radius: 50px;
}
.why-list { list-style: none; }
.why-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.why-list .check {
  min-width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #fb923c, #ea580c);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.why-list h4 { font-size: 1rem; font-weight: 700; color: var(--blue-dark); margin-bottom: 0.2rem; }
.why-list p { font-size: 0.88rem; color: var(--gray); }

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

  nav {
    align-items: center;
    padding: 0.7rem 1rem;
    gap: 0.5rem;
  }
  .logo { order: 1; }
  .logo-image { height: 54px; }
  .nav-cta {
    order: 2;
    margin-left: auto;
    flex-shrink: 0;
  }
  .nav-cta .btn {
    font-size: 1.1rem;
    padding: 0.45rem 0.85rem;
  }
  .nav-links {
    order: 3;
    width: 100%;
    justify-content: center;
    gap: 1.2rem;
    flex-wrap: nowrap;
    margin-top: 0.4rem;
  }
  .nav-links a {
    font-size: 1.1rem;
    padding: 0.1rem 0.6rem;
    display: inline-block;
  }

  .hero-actions {
    gap: 0.6rem;
  }
  .hero-actions .btn {
    font-size: 1.1rem;
    padding: 0.65rem 1.2rem;
  }
}

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

/* ══════════════════════════════════════
   SERVICE AREAS
══════════════════════════════════════ */
.areas {
  padding: 5rem 0.5rem;
  background: linear-gradient(150deg, #122a78 0%, #1f4ecf 70%, #285fe0 100%);
  color: var(--white);
  text-align: center;
}
.areas .section-label { color: var(--orange); }
.areas .section-title { color: var(--white); }
.areas-subtitle { opacity: 0.8; max-width: 540px; margin: 0 auto 2.5rem; }
.areas-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  max-width: 900px;
  margin: 0 auto 2.5rem;
}
.area-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 16px;
  padding: 1.4rem 1rem;
  min-width: 190px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.area-card:hover {
  background: rgba(249,115,22,.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(10,20,60,.35);
}
.area-card .area-icon { font-size: 2rem; display: block; margin-bottom: 0.5rem; }
.area-card .area-name { font-size: 1.05rem; font-weight: 700; }
.area-card .area-state { font-size: 0.8rem; opacity: 0.7; }

/* ══════════════════════════════════════
   CONTACT
══════════════════════════════════════ */
.contact {
  padding: 5rem 1.5rem;
  background: linear-gradient(180deg, #f5f9ff 0%, #eef5ff 100%);
}
.contact-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-info p { color: var(--gray); margin-bottom: 2rem; }
.contact-methods { list-style: none; }
.contact-methods li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.4rem;
}
.contact-methods .method-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #1e3a8a, #2563eb);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.method-icon-svg {
  display: inline-flex;
  width: 1.45rem;
  height: 1.45rem;
}
.method-icon-svg svg {
  width: 100%;
  height: 100%;
  fill: #ffffff;
}
.contact-methods .method-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray);
  font-weight: 600;
}
.contact-methods .method-value {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--blue-dark);
}
.contact-methods a {
  text-decoration: none;
  color: var(--blue-dark);
}
.contact-methods a:hover { color: var(--orange); }

.contact-cta {
  background: linear-gradient(145deg, #142f83, #2556d8);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  color: var(--white);
  text-align: center;
  box-shadow: var(--shadow-soft);
}
.contact-cta h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 0.75rem; }
.contact-cta p { opacity: 0.85; margin-bottom: 1.75rem; font-size: 0.95rem; }
.contact-cta .phone-big {
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--orange);
  display: block;
  margin-bottom: 1.25rem;
  text-decoration: none;
}
.contact-cta .phone-big:hover { opacity: 0.85; }
.btn-ghost {
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.5);
  color: var(--white);
}
.btn-ghost:hover { background: rgba(255,255,255,.25); }
.btn-full-width { width: 100%; text-align: center; }

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

  .contact-inner { grid-template-columns: 1fr; }

  .areas-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 100%;
  }

  .area-card {
    min-width: 0;
    width: 100%;
  }
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer {
  background: linear-gradient(180deg, #101424 0%, #0a1020 100%);
  color: rgba(255,255,255,.7);
  padding: 1.2rem 1rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-logo { display: flex; align-items: center; gap: 0.6rem; }
.footer-logo-image {
  display: block;
  height: 44px;
  width: auto;
  object-fit: contain;
}
.footer-copy { font-size: 0.8rem; }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { color: rgba(255,255,255,.6); text-decoration: none; font-size: 0.88rem; }
.footer-links a:hover { color: var(--orange); }

@media (prefers-reduced-motion: no-preference) {
  .service-card,
  .area-card,
  .btn,
  .nav-links a {
    will-change: transform;
  }
}
