:root {
  --bg: #f5f7fb;
  --bg-alt: #ffffff;
  --surface: #ffffff;
  --surface-soft: #f3f4f6;
  --accent: #2563eb;
  --accent-soft: rgba(37, 99, 235, 0.1);
  --accent-strong: #1d4ed8;
  --text: #111827;
  --text-soft: #6b7280;
  --border-subtle: rgba(148, 163, 184, 0.5);
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-pill: 999px;
  --shadow-soft: 0 18px 40px rgba(15, 23, 42, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: linear-gradient(to bottom, #f9fafb, #eef2ff);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.96),
    rgba(255, 255, 255, 0.9),
    transparent
  );
  border-bottom: 1px solid rgba(209, 213, 219, 0.9);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-logo {
  height: 46px;
  width: auto;
  filter: drop-shadow(0 4px 10px rgba(15, 23, 42, 0.15));
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.brand-name {
  font-weight: 700;
  letter-spacing: 0.05em;
  font-size: 1rem;
  text-transform: uppercase;
}

.brand-tagline {
  font-size: 0.78rem;
  color: var(--text-soft);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  font-size: 0.9rem;
}

.nav a {
  position: relative;
  padding: 0.25rem 0;
  color: var(--text-soft);
  transition: color 0.18s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), #22c55e);
  transition: width 0.2s ease-out;
}

.nav a:hover {
  color: var(--text);
}

.nav a:hover::after {
  width: 100%;
}

.nav-cta {
  font-size: 0.88rem;
  padding: 0.55rem 0.95rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(37, 99, 235, 0.7);
  background: radial-gradient(circle at top left, #3b82f6, #1d4ed8 55%);
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.35);
  white-space: nowrap;
  color: #ffffff;
  font-weight: 500;
}

.nav-cta:hover {
  background: radial-gradient(circle at top left, #2563eb, #1d4ed8 70%);
}

.hero {
  position: relative;
  padding: 4.5rem 0 0;
  overflow: hidden;
  background-image: url("assets/banner.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -40%;
  opacity: 0.22;
  background-image: radial-gradient(circle at 20% 0, #bfdbfe 0, transparent 55%),
    radial-gradient(circle at 90% 20%, #a5b4fc 0, transparent 55%),
    radial-gradient(circle at -10% 65%, #bbf7d0 0, transparent 55%);
  pointer-events: none;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top,
    rgba(15, 23, 42, 0.65),
    rgba(15, 23, 42, 0.92)
  );
  z-index: -1;
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 58vh;
}

.hero-text h1 {
  font-size: clamp(2.6rem, 3.6vw + 1.6rem, 3.8rem);
  line-height: 1.1;
  margin: 0 0 0.4rem;
  color: #ffffff;
  text-shadow: 0 3px 10px rgba(15, 23, 42, 0.65);
}

.accent {
  color: #60a5fa;
}

.hero-text p {
  max-width: 40rem;
  margin: 0 0 1.4rem;
  color: rgba(249, 250, 251, 0.96);
  font-size: 1rem;
  text-shadow: 0 2px 6px rgba(15, 23, 42, 0.7);
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: #e5e7eb;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 5px rgba(15, 23, 42, 0.7);
}

.hero-subtitle strong {
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.6rem;
}

.hero-actions-centered {
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1.6rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.16s ease-out, box-shadow 0.16s ease-out,
    background 0.16s ease-out, border-color 0.16s ease-out, color 0.16s ease-out;
}

.btn-primary {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.35);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.45);
}

.btn-outline {
  border-color: rgba(148, 163, 184, 0.8);
  background: #ffffff;
  color: var(--text-soft);
}

.btn-outline:hover {
  border-color: rgba(37, 99, 235, 0.9);
  background: #eff6ff;
  color: #1d4ed8;
}

.btn-full {
  width: 100%;
}

.hero-bottom-strip {
  padding: 0 0 2.5rem;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.highlight-item {
  padding: 0.7rem 0.8rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(209, 213, 219, 0.8);
  background: #ffffff;
  transition: transform 0.16s ease-out, box-shadow 0.16s ease-out,
    border-color 0.16s ease-out;
}

.highlight-label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-soft);
  margin-bottom: 0.25rem;
}

.highlight-value {
  font-size: 0.78rem;
}

.hero-card {
  border-radius: var(--radius-lg);
  background: #ffffff;
  padding: 1.6rem 1.5rem 1.7rem;
  border: 1px solid rgba(209, 213, 219, 0.9);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: -40%;
  opacity: 0.14;
  background-image: radial-gradient(circle at 80% 0, #22c55e 0, transparent 55%),
    radial-gradient(circle at 0 75%, #38bdf8 0, transparent 55%);
  pointer-events: none;
}

.hero-card h2 {
  margin: 0 0 0.8rem;
  font-size: 1.25rem;
}

.hero-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.1rem;
  font-size: 0.88rem;
}

.hero-card li {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  margin-bottom: 0.35rem;
}

.hero-card li::before {
  content: "▹";
  color: #bfdbfe;
  font-size: 0.8rem;
  margin-top: 0.1rem;
}

.hero-card-cta {
  position: relative;
  border-radius: 0.9rem;
  padding: 0.75rem 0.9rem;
  background: #f3f4ff;
  border: 1px solid rgba(191, 219, 254, 0.9);
  font-size: 0.86rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.phone-link {
  font-weight: 600;
  color: #1d4ed8;
  white-space: nowrap;
}

.section {
  padding: 3.1rem 0;
}

.section-alt {
  background: #f3f4f6;
}

.section-inner {
  display: flex;
  flex-direction: column;
  gap: 2.1rem;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.4fr);
  gap: 2.2rem;
  align-items: flex-start;
}

.section-title {
  font-size: 1.6rem;
  margin: 0;
}

.section-subtitle {
  margin: 0.4rem 0 0;
  color: var(--text-soft);
  font-size: 0.96rem;
  max-width: 30rem;
}

.section p {
  color: var(--text-soft);
  font-size: 0.96rem;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.stat-card {
  padding: 0.85rem 0.9rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(209, 213, 219, 0.9);
  background: #ffffff;
  transition: transform 0.16s ease-out, box-shadow 0.16s ease-out,
    border-color 0.16s ease-out;
}

.stat-label {
  display: block;
  font-size: 0.72rem;
  color: var(--text-soft);
  margin-bottom: 0.3rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.stat-value {
  font-size: 0.9rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.service-card {
  padding: 1.2rem 1.1rem 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(209, 213, 219, 0.9);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  transition: transform 0.18s ease-out, box-shadow 0.18s ease-out,
    border-color 0.18s ease-out;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
  border-color: rgba(148, 163, 184, 0.9);
}

.service-card h3 {
  margin: 0 0 0.6rem;
  font-size: 1.05rem;
}

.service-card p {
  margin: 0 0 0.7rem;
  font-size: 0.9rem;
}

.service-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.86rem;
  color: var(--text-soft);
}

.service-card li {
  margin-bottom: 0.35rem;
  padding-left: 0.75rem;
  position: relative;
}

.service-card li::before {
  content: "";
  position: absolute;
  left: 0.18rem;
  top: 0.5rem;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), #22c55e);
}

.brands-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.8rem;
}

.brand-pill {
  padding: 0.45rem 1rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(209, 213, 219, 0.9);
  background: #ffffff;
  font-size: 0.82rem;
  color: #111827;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
  position: relative;
  overflow: hidden;
  transition: transform 0.16s ease-out, box-shadow 0.16s ease-out,
    border-color 0.16s ease-out, color 0.16s ease-out;
}

.brand-pill::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #dbeafe, #e0f2fe);
  opacity: 0;
  transition: opacity 0.16s ease-out;
  z-index: -1;
}

.brand-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
  border-color: rgba(37, 99, 235, 0.75);
  color: #1d4ed8;
}

.brand-pill:hover::before {
  opacity: 1;
}

.contact-section {
  align-items: stretch;
}

.contact-points {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  font-size: 0.95rem;
  color: var(--text-soft);
}

.contact-points li {
  margin-bottom: 0.5rem;
}

.contact-points a {
  color: #2563eb;
}

.contact-form {
  padding: 1.25rem 1.2rem 1.35rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(209, 213, 219, 0.9);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  transition: transform 0.18s ease-out, box-shadow 0.18s ease-out,
    border-color 0.18s ease-out;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 0.8rem;
}

.form-field label {
  font-size: 0.82rem;
  color: var(--text-soft);
}

.form-field input,
.form-field select,
.form-field textarea {
  border-radius: 0.7rem;
  border: 1px solid rgba(209, 213, 219, 0.9);
  background: #ffffff;
  color: var(--text);
  padding: 0.6rem 0.7rem;
  font: inherit;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease,
    background 0.18s ease;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(148, 163, 184, 0.9);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(37, 99, 235, 0.9);
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.35);
  background: #ffffff;
}

.form-note {
  font-size: 0.8rem;
  margin-top: 0.65rem;
  color: var(--text-soft);
}

.site-footer {
  border-top: 1px solid rgba(209, 213, 219, 0.9);
  background: #f9fafb;
  padding: 1.8rem 0 1.6rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.footer-inner p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--text-soft);
}

.footer-note {
  margin-top: 0.25rem;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.6fr);
  gap: 1.4rem;
  align-items: stretch;
}

.footer-brand h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
}

.footer-address,
.footer-contact {
  font-size: 0.86rem;
  color: var(--text-soft);
  margin: 0 0 0.35rem;
}

.footer-contact a {
  color: #2563eb;
}

.footer-map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(209, 213, 219, 0.9);
  box-shadow: var(--shadow-soft);
  background: #ffffff;
  transition: transform 0.18s ease-out, box-shadow 0.18s ease-out,
    border-color 0.18s ease-out;
}

.footer-map {
  width: 100%;
  height: 200px;
  border: 0;
  display: block;
}

.footer-bottom {
  border-top: 1px solid rgba(209, 213, 219, 0.9);
  padding-top: 0.9rem;
  text-align: center;
}

.whatsapp-fab {
  position: fixed;
  left: 1.4rem;
  bottom: 1.4rem;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 14px 30px rgba(22, 163, 74, 0.45);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 40;
  transition: transform 0.16s ease-out, box-shadow 0.16s ease-out,
    background 0.16s ease-out;
}

.whatsapp-fab:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(22, 163, 74, 0.6);
  background: #16a34a;
}

.whatsapp-icon {
  position: relative;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 2px solid #ecfdf5;
}

.whatsapp-icon::before,
.whatsapp-icon::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  border: 2px solid #ecfdf5;
}

.whatsapp-icon::before {
  inset: 4px 6px 4px 9px;
  border-right-color: transparent;
  border-top-color: transparent;
  transform: rotate(-15deg);
}

.whatsapp-icon::after {
  width: 7px;
  height: 7px;
  border-top-color: transparent;
  border-left-color: transparent;
  border-bottom-color: #ecfdf5;
  border-right-color: #ecfdf5;
  bottom: -1px;
  right: -3px;
  transform: rotate(12deg);
}

@media (max-width: 960px) {
  .header-inner {
    align-items: flex-start;
  }

  .nav {
    display: none;
  }

  .hero-text p {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-cta {
    align-self: flex-end;
  }

  .hero {
    padding-top: 3.5rem;
  }

  .hero-highlights {
    grid-template-columns: minmax(0, 1fr);
  }

  .two-column {
    grid-template-columns: minmax(0, 1fr);
  }

  .cards-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .form-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-main {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 520px) {
  .brand {
    align-items: flex-start;
  }

  .brand-logo {
    height: 40px;
  }

  .hero-text h1 {
    font-size: 1.9rem;
  }

  .hero-highlights {
    grid-template-columns: minmax(0, 1fr);
  }

  .section {
    padding: 2.4rem 0;
  }

  .service-card,
  .contact-form {
    padding: 1.05rem 1rem 1.15rem;
  }
}

