/* ===========================
   CSS VARIABLES & RESET
   =========================== */
:root {
  --primary:       #1a3a5c;
  --primary-dark:  #122840;
  --primary-light: #2a5a8c;
  --accent:        #e05c1a;
  --accent-dark:   #c04d10;
  --green:         #27ae60;
  --cyan:          #0891b2;
  --teal:          #0f766e;

  --bg:            #f8f9fa;
  --bg-alt:        #eef2f7;
  --surface:       #ffffff;
  --border:        #dde3ea;

  --text:          #1e2d3d;
  --text-muted:    #5a6a7a;
  --text-light:    #8a9aaa;

  --radius-sm:     6px;
  --radius:        12px;
  --radius-lg:     20px;
  --radius-xl:     32px;

  --shadow-sm:     0 1px 4px rgba(0,0,0,.06);
  --shadow:        0 4px 20px rgba(0,0,0,.08);
  --shadow-lg:     0 12px 40px rgba(0,0,0,.12);

  --transition:    .25s ease;
  --font:          'Inter', system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ===========================
   UTILITIES
   =========================== */
.container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 24px;
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .02em;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 16px rgba(224,92,26,.35);
}
.btn--primary:hover {
  background: var(--accent-dark);
  box-shadow: 0 6px 22px rgba(224,92,26,.45);
}
.btn--ghost {
  background: rgba(26,58,92,.07);
  color: var(--primary);
  border: 2px solid rgba(26,58,92,.3);
}
.btn--ghost:hover {
  background: rgba(26,58,92,.14);
  border-color: var(--primary);
  color: var(--primary-dark);
}
.btn--white {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 4px 16px rgba(0,0,0,.15);
}
.btn--white:hover {
  background: #f0f4f8;
  box-shadow: 0 6px 22px rgba(0,0,0,.2);
}
.btn--full { width: 100%; justify-content: center; border-radius: var(--radius); }

/* ===========================
   HEADER
   =========================== */
.header {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 100;
  padding-block: 14px;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
.header.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
  padding-block: 10px;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo__img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: contain;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
  transition: transform var(--transition);
}
.logo:hover .logo__img { transform: scale(1.08); }
.logo__mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -.02em;
  flex-shrink: 0;
  transition: background var(--transition);
}
.logo__text { display: flex; flex-direction: column; line-height: 1.2; }
.logo__text strong { font-size: .95rem; font-weight: 700; color: var(--text); }
.logo__text small { font-size: .72rem; color: var(--text-muted); font-weight: 400; }
.logo--white .logo__text strong { color: #fff; }
.logo--white .logo__text small { color: rgba(255,255,255,.7); }

/* Nav */
.nav__list {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__link {
  padding: 8px 14px;
  border-radius: 50px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: background var(--transition), color var(--transition);
}
.nav__link:hover { background: var(--bg-alt); color: var(--text); }
.nav__link--cta {
  background: var(--accent);
  color: #fff !important;
  padding: 9px 20px;
  font-weight: 600;
}
.nav__link--cta:hover { background: var(--accent-dark) !important; }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 36px;
  padding: 6px 4px;
}
.burger span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===========================
   HERO
   =========================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(155deg, #dff0fb 0%, #f0f8ff 45%, #e6f4f9 100%);
  padding-top: 90px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 55% at 85% 25%, rgba(224,92,26,.09) 0%, transparent 65%),
    radial-gradient(ellipse 45% 50% at 5% 85%, rgba(8,145,178,.10) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(74,168,204,.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding-block: 80px 120px;
}
.hero__eyebrow {
  display: inline-block;
  background: rgba(26,58,92,.07);
  border: 1px solid rgba(26,58,92,.18);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero__title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--primary-dark);
  margin-bottom: 20px;
  letter-spacing: -.02em;
}
.hero__title .highlight { color: var(--accent); }
.hero__subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 36px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 80px;
  z-index: 2;
}
.hero__wave svg { width: 100%; height: 100%; }

/* ===========================
   SECTIONS
   =========================== */
.section { padding-block: 90px; }
.section--alt { background: var(--bg-alt); }

.section__header {
  text-align: center;
  max-width: 620px;
  margin-inline: auto;
  margin-bottom: 60px;
}
.section__eyebrow {
  display: inline-block;
  color: var(--accent);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section__title {
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section__title--left { text-align: left; }
.section__desc { color: var(--text-muted); font-size: 1.05rem; }

/* ===========================
   SERVICES GRID
   =========================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 0;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

/* Media header — gradient background + photo support */
.service-card__media {
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
/* Dot texture overlay */
.service-card__media::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 18px 18px;
  z-index: 1;
}
/* Bottom vignette */
.service-card__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg, rgba(0,0,0,.04) 0%, rgba(0,0,0,.28) 100%);
  z-index: 1;
}
/* Real photo — placed via onerror-safe <img> in the markup */
.service-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  transition: transform .5s ease;
}
.service-card:hover .service-card__media img { transform: scale(1.06); }
/* Icon sits above texture and vignette, below photo when present */
.service-card__media svg {
  width: 72px;
  height: 72px;
  color: rgba(255,255,255,.92);
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.35));
}

/* Gradient backgrounds per service color */
.service-card[data-color="red"]    .service-card__media { background: linear-gradient(135deg, #b71c1c, #e53e3e); }
.service-card[data-color="blue"]   .service-card__media { background: linear-gradient(135deg, #0d2240, #1a4a7a); }
.service-card[data-color="cyan"]   .service-card__media { background: linear-gradient(135deg, #005662, #0891b2); }
.service-card[data-color="orange"] .service-card__media { background: linear-gradient(135deg, #bf360c, #e05c1a); }
.service-card[data-color="teal"]   .service-card__media { background: linear-gradient(135deg, #004d40, #0f766e); }
.service-card[data-color="green"]  .service-card__media { background: linear-gradient(135deg, #1b5e20, #27ae60); }

/* Card body */
.service-card__body { padding: 24px 28px 28px; }

.service-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}
.service-card__desc {
  color: var(--text-muted);
  font-size: .92rem;
  margin-bottom: 16px;
}
.service-card__list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.service-card__list li {
  font-size: .88rem;
  color: var(--text-muted);
  padding-left: 16px;
  position: relative;
}
.service-card__list li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* ===========================
   ABOUT
   =========================== */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about__visual { position: relative; }
.about__img-wrap { border-radius: var(--radius-lg); overflow: hidden; }
.about__img-placeholder {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: var(--radius-lg);
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: rgba(255,255,255,.7);
}
.about__img-placeholder svg { width: 64px; height: 64px; }
.about__img-placeholder p { font-weight: 600; font-size: 1.1rem; color: rgba(255,255,255,.9); }

.about__badge {
  position: absolute;
  top: -20px;
  right: -20px;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius);
  padding: 16px 20px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}
.about__badge-num { display: block; font-size: 2rem; font-weight: 800; line-height: 1; }
.about__badge-label { font-size: .78rem; font-weight: 500; opacity: .9; }

.about__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 20px;
}
.stat {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 18px 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.stat__num { display: block; font-size: 1.6rem; font-weight: 800; color: var(--primary); }
.stat__label { font-size: .8rem; color: var(--text-muted); font-weight: 500; }

.about__content { padding-block: 20px; }
.about__text {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 1rem;
}
.about__text strong { color: var(--text); }
.about__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.tag {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  color: var(--primary);
  font-size: .82rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 50px;
}

/* ===========================
   WHY US
   =========================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.why-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.why-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}
.why-card__icon svg { width: 22px; height: 22px; }
.why-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.why-card p { font-size: .9rem; color: var(--text-muted); }

/* ===========================
   CTA BANNER
   =========================== */
.cta-banner {
  background: linear-gradient(135deg, #1a4a7c 0%, #1e5f9e 55%, #2272b8 100%);
  padding-block: 70px;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 80% at 90% 50%, rgba(224,92,26,.22) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 5%  50%, rgba(255,255,255,.06) 0%, transparent 60%);
}
.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  flex-wrap: wrap;
}
.cta-banner__text h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}
.cta-banner__text p { color: rgba(255,255,255,.75); font-size: 1rem; }

/* ===========================
   CONTACT
   =========================== */
/* Quick action tiles */
.contact-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}
.contact-action {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.contact-action:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.contact-action__icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #fff;
}
.contact-action__icon svg { width: 22px; height: 22px; }
.contact-action__text { display: flex; flex-direction: column; min-width: 0; }
.contact-action__text strong { font-size: .95rem; color: var(--text); font-weight: 700; }
.contact-action__text span { font-size: .85rem; color: var(--text-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.contact-action--call .contact-action__icon   { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); }
.contact-action--whatsapp .contact-action__icon { background: linear-gradient(135deg, #25d366 0%, #128c7e 100%); }
.contact-action--email .contact-action__icon  { background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%); }

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 28px;
  align-items: start;
}
.contact-wrap > * { min-width: 0; }

.contact-info-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.contact-info-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-item__icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff;
  display: grid;
  place-items: center;
}
.contact-item__icon svg { width: 18px; height: 18px; }
.contact-item div { display: flex; flex-direction: column; gap: 2px; }
.contact-item strong { font-size: .78rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: .06em; }
.contact-item a,
.contact-item span { font-size: .95rem; color: var(--text); font-weight: 500; }
.contact-item a:hover { color: var(--accent); }

.contact-info-card__chatbot-cta {
  margin-top: 24px;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 16px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff;
  font-weight: 600;
  font-size: .9rem;
  box-shadow: 0 4px 16px rgba(26,58,92,.25);
  transition: transform var(--transition), box-shadow var(--transition);
}
.contact-info-card__chatbot-cta svg { width: 18px; height: 18px; }
.contact-info-card__chatbot-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,58,92,.35); }

/* Form */
.contact-form {
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  overflow: hidden;
}
.contact-form__header {
  padding: 22px 36px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff;
}
.contact-form__header h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 4px; }
.contact-form__header p { font-size: .88rem; color: rgba(255,255,255,.85); margin: 0; }
.contact-form__body { padding: 32px 36px 36px; }
/* Keep the submit button's visual footprint aligned with the fields above */
.contact-form__body .btn--full {
  box-shadow: 0 4px 12px rgba(224,92,26,.22);
  margin-top: 4px;
}
.contact-form__body .btn--full:hover { box-shadow: 0 6px 16px rgba(224,92,26,.3); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group:last-of-type { margin-bottom: 0; }
.form-group label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--text);
}
.form-group label span { color: var(--accent); }
.form-group--check label span { color: var(--text-muted); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font: inherit;
  font-size: .93rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,58,92,.1);
  background: #fff;
}
.form-group input.error,
.form-group textarea.error { border-color: #e53e3e; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group--check { margin-top: 4px; }
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1.4;
}
.checkbox-label input[type="checkbox"] {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin: 0;
  padding: 0;
  vertical-align: middle;
  cursor: pointer;
  accent-color: var(--accent);
  position: relative;
  top: 0;
}
.checkbox-label a { color: var(--primary); text-decoration: underline; font-weight: 600; }
.form-note {
  font-size: .8rem;
  color: var(--text-light);
  margin-top: 10px;
  text-align: center;
}

/* Success state */
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success svg { width: 56px; height: 56px; color: var(--green); margin-inline: auto; margin-bottom: 16px; }
.form-success h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; }
.form-success p { color: var(--text-muted); }
.form-success.visible { display: block; }

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,.75);
  padding-top: 64px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer__tagline {
  margin-top: 12px;
  font-size: .9rem;
  color: rgba(255,255,255,.5);
  font-style: italic;
}
.footer__links h4,
.footer__contact h4 {
  color: #fff;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer__links ul { display: flex; flex-direction: column; gap: 8px; }
.footer__links a {
  font-size: .9rem;
  transition: color var(--transition);
}
.footer__links a:hover { color: #fff; }
.footer__contact p { font-size: .9rem; margin-bottom: 6px; }
.footer__contact a { transition: color var(--transition); }
.footer__contact a:hover { color: #fff; }
.footer__hours { margin-top: 8px; font-size: .85rem; color: rgba(255,255,255,.5); }

.footer__bottom {
  padding-block: 20px;
}
.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__bottom p { font-size: .82rem; color: rgba(255,255,255,.4); }
.footer__admin-link {
  font-size: .76rem;
  color: rgba(255,255,255,.18);
  text-decoration: none;
  transition: color .2s;
}
.footer__admin-link:hover { color: rgba(255,255,255,.55); }

/* ===========================
   SCROLL ANIMATIONS
   =========================== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .about { grid-template-columns: 1fr; }
  .about__visual { order: -1; }
  .about__badge { top: -16px; right: 16px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .contact-actions { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
  .contact-info { flex-direction: row; flex-wrap: wrap; }
  .contact-item { flex: 1 1 200px; }
}

@media (max-width: 768px) {
  .section { padding-block: 64px; }
  .nav {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(18,40,64,.97);
    backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 99;
  }
  .nav.open { display: flex; }
  .nav__list { flex-direction: column; gap: 8px; text-align: center; }
  .nav__link { font-size: 1.2rem; color: rgba(255,255,255,.85); padding: 12px 32px; }
  .nav__link--cta { margin-top: 12px; }
  .burger { display: flex; z-index: 100; }
  .hero__content { padding-block: 60px 100px; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form__header { padding: 20px 24px; }
  .contact-form__body { padding: 24px; }
  .contact-info-card { padding: 22px; }
  .cta-banner__inner { flex-direction: column; text-align: center; }
  .footer__inner { grid-template-columns: 1fr; gap: 28px; }
  .about__stats { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 1.9rem; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { text-align: center; justify-content: center; }
  .about__badge { position: static; display: inline-flex; gap: 12px; align-items: center; margin-bottom: 16px; width: fit-content; border-radius: var(--radius); padding: 12px 20px; }
  .about__badge-num { font-size: 1.4rem; }
}

/* ===========================
   REVIEWS
   =========================== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}
.review-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.review-card__stars {
  display: flex;
  gap: 3px;
}
.review-card__stars svg {
  width: 18px;
  height: 18px;
  color: #f59e0b;
}
.review-card__text {
  font-size: .93rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}
.review-card__text::before { content: '"'; }
.review-card__text::after  { content: '"'; }
.review-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.review-card__avatar {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .02em;
}
.review-card__author strong {
  display: block;
  font-size: .92rem;
  font-weight: 700;
  color: var(--text);
}
.review-card__author span {
  font-size: .8rem;
  color: var(--text-muted);
}

.reviews-summary {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.reviews-summary__score {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.reviews-summary__num {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}
.reviews-summary__stars {
  display: flex;
  gap: 4px;
}
.reviews-summary__stars svg {
  width: 22px;
  height: 22px;
  color: #f59e0b;
}
.reviews-summary__label {
  font-size: .85rem;
  color: var(--text-muted);
  font-weight: 500;
}
.reviews-summary__note {
  font-size: .8rem;
  color: var(--text-light);
}

/* ===========================
   WHATSAPP BUTTON
   =========================== */
.whatsapp-btn {
  position: fixed;
  bottom: 80px;
  right: 20px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 9px;
  background: #25d366;
  color: #fff;
  border-radius: 50px;
  padding: 13px 22px 13px 16px;
  box-shadow: 0 4px 22px rgba(37,211,102,.45);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .01em;
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}
.whatsapp-btn svg { width: 24px; height: 24px; flex-shrink: 0; }
.whatsapp-btn span { white-space: nowrap; }
.whatsapp-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 30px rgba(37,211,102,.6);
}
@media (max-width: 480px) {
  .whatsapp-btn { padding: 13px 18px 13px 14px; bottom: 76px; right: 14px; font-size: .82rem; }
}

/* ===========================
   SCROLL TO TOP
   =========================== */
.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition), background var(--transition);
}
.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.scroll-top:hover { background: var(--primary-light); }
.scroll-top svg { width: 18px; height: 18px; }

/* ===========================
   COOKIE BANNER
   =========================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--primary-dark);
  color: rgba(255,255,255,.9);
  padding: 16px 0;
  transform: translateY(100%);
  transition: transform .4s ease;
  box-shadow: 0 -4px 24px rgba(0,0,0,.2);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner__inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-banner__text {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 200px;
}
.cookie-banner__text svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--accent);
}
.cookie-banner__text p { font-size: .88rem; }
.cookie-banner__text a {
  color: var(--accent);
  text-decoration: underline;
}
.cookie-banner__actions { display: flex; gap: 10px; flex-shrink: 0; }
.btn-cookie {
  padding: 9px 18px;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  border: none;
  font: inherit;
}
.btn-cookie--decline {
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.8);
  border: 1px solid rgba(255,255,255,.2);
}
.btn-cookie--decline:hover { background: rgba(255,255,255,.18); color: #fff; }
.btn-cookie--accept {
  background: var(--accent);
  color: #fff;
}
.btn-cookie--accept:hover { background: var(--accent-dark); }
@media (max-width: 600px) {
  .cookie-banner__inner { flex-direction: column; align-items: flex-start; gap: 14px; }
  .cookie-banner__actions { width: 100%; justify-content: flex-end; }
}

/* ===========================
   CHATBOT
   =========================== */
.chatbot-launcher {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 95;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 28px rgba(26,58,92,.45);
  transition: transform var(--transition), box-shadow var(--transition);
}
.chatbot-launcher:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 14px 36px rgba(26,58,92,.55); }
.chatbot-launcher__icon {
  width: 26px;
  height: 26px;
  position: absolute;
  transition: opacity .2s ease, transform .2s ease;
}
.chatbot-launcher__icon--close { opacity: 0; transform: rotate(-45deg); }
.chatbot-launcher.is-open .chatbot-launcher__icon--chat { opacity: 0; transform: rotate(45deg); }
.chatbot-launcher.is-open .chatbot-launcher__icon--close { opacity: 1; transform: rotate(0); }
.chatbot-launcher__badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  display: grid;
  place-items: center;
  box-shadow: 0 2px 6px rgba(224,92,26,.5);
}
.chatbot-launcher.is-open .chatbot-launcher__badge { display: none; }

.chatbot {
  position: fixed;
  bottom: 100px;
  left: 24px;
  z-index: 94;
  width: 360px;
  max-width: calc(100vw - 32px);
  height: 540px;
  max-height: calc(100vh - 140px);
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: 0 24px 60px rgba(0,0,0,.22);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform-origin: bottom left;
  animation: chatbotIn .22s ease;
}
.chatbot[hidden] { display: none; }
@keyframes chatbotIn {
  from { opacity: 0; transform: translateY(12px) scale(.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.chatbot__header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff;
}
.chatbot__avatar {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  display: grid;
  place-items: center;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .04em;
}
.chatbot__title { display: flex; flex-direction: column; min-width: 0; flex: 1; }
.chatbot__title strong { font-size: .98rem; font-weight: 700; }
.chatbot__title span { font-size: .76rem; color: rgba(255,255,255,.8); display: inline-flex; align-items: center; gap: 6px; }
.chatbot__online {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 2px rgba(74,222,128,.3);
  display: inline-block;
}
.chatbot__close {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  color: #fff;
  display: grid;
  place-items: center;
  transition: background var(--transition);
}
.chatbot__close svg { width: 18px; height: 18px; }
.chatbot__close:hover { background: rgba(255,255,255,.15); }

.chatbot__body {
  flex: 1;
  overflow-y: auto;
  padding: 18px 16px;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  gap: 10px;
  scroll-behavior: smooth;
}
.chatbot__msg {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: .9rem;
  line-height: 1.5;
  white-space: pre-line;
  word-wrap: break-word;
  animation: msgIn .25s ease;
}
@keyframes msgIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.chatbot__msg--bot {
  align-self: flex-start;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  border-bottom-left-radius: 4px;
}
.chatbot__msg--user {
  align-self: flex-end;
  background: var(--primary);
  color: #fff;
  border-bottom-right-radius: 4px;
}
.chatbot__msg a { color: var(--accent); text-decoration: underline; font-weight: 600; }
.chatbot__msg--user a { color: #fff; }
.chatbot__typing {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 12px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  border-bottom-left-radius: 4px;
}
.chatbot__typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-muted);
  animation: blink 1.2s infinite ease-in-out;
}
.chatbot__typing span:nth-child(2) { animation-delay: .15s; }
.chatbot__typing span:nth-child(3) { animation-delay: .3s; }
@keyframes blink {
  0%, 60%, 100% { opacity: .25; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-3px); }
}

.chatbot__chips {
  padding: 0 16px 10px;
  background: var(--bg);
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.chatbot__chip {
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--primary);
  font-size: .82rem;
  font-weight: 600;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}
.chatbot__chip:hover { background: var(--primary); color: #fff; border-color: var(--primary); transform: translateY(-1px); }

.chatbot__input {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-top: 1px solid var(--border);
  background: var(--surface);
}
.chatbot__input input {
  flex: 1;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: 999px;
  font: inherit;
  font-size: .9rem;
  outline: none;
  background: var(--bg);
  transition: border-color var(--transition), background var(--transition);
}
.chatbot__input input:focus { border-color: var(--primary); background: #fff; }
.chatbot__input button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(224,92,26,.35);
  transition: background var(--transition), transform var(--transition);
}
.chatbot__input button:hover { background: var(--accent-dark); transform: translateY(-1px); }
.chatbot__input button svg { width: 16px; height: 16px; }

@media (max-width: 480px) {
  .chatbot-launcher { bottom: 18px; left: 16px; width: 54px; height: 54px; }
  .chatbot {
    left: 8px;
    right: 8px;
    bottom: 84px;
    width: auto;
    max-width: none;
    height: calc(100vh - 110px);
  }
}
