/* ============================================================
   ARROBASAGRES — site stylesheet
   ============================================================ */

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

:root {
  --blue:        #137AE9;
  --blue-dark:   #0d62c7;
  --navy:        #0d1b2a;
  --navy-2:      #16314a;
  --sand:        #e7a94c;
  --sand-dark:   #cf8f2f;
  --ink:         #1c2733;
  --gray-700:    #4a5866;
  --gray-500:    #7c8a98;
  --gray-300:    #cfd8e0;
  --gray-100:    #eef2f6;
  --off-white:   #eef1f6;
  --white:       #ffffff;
  --radius-sm:   10px;
  --radius:      16px;
  --radius-lg:   22px;
  --shadow-sm:   0 4px 16px rgba(13,27,42,0.08);
  --shadow:      0 12px 40px rgba(13,27,42,0.12);
  --shadow-lg:   0 24px 60px rgba(13,27,42,0.22);
  --container:   1200px;
  --header-h:    82px;
}

html { scroll-behavior: smooth; }

html, body {
  font-family: 'Montserrat', -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--ink);
  background: var(--off-white);
}

body { overflow-x: hidden; }

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

button { font-family: inherit; cursor: pointer; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.icon {
  width: 1em;
  height: 1em;
  display: inline-block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  vertical-align: -0.15em;
}

/* ── Section rhythm ── */
.section { padding: 88px 0; }
.section-sm { padding: 56px 0; }
.section-tight { padding: 64px 0; }
@media (max-width: 780px) {
  .section { padding: 60px 0; }
  .section-sm { padding: 40px 0; }
  .section-tight { padding: 44px 0; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  width: 22px;
  height: 2px;
  background: var(--sand);
  display: inline-block;
}

h1, h2, h3, h4 { font-weight: 700; line-height: 1.18; color: var(--navy); }
h1 { font-size: clamp(2.1rem, 4.2vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); }
h3 { font-size: 1.2rem; }

.section-head { max-width: 680px; margin-bottom: 44px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { color: var(--gray-700); font-size: 1.02rem; margin-top: 14px; line-height: 1.65; }

p { line-height: 1.7; color: var(--gray-700); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  border: 2px solid transparent;
  transition: box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--blue); color: var(--white); box-shadow: 0 10px 24px rgba(19,122,233,0.32); }
.btn-primary:hover { background: var(--blue-dark); box-shadow: 0 14px 30px rgba(19,122,233,0.4); transform: translateY(-2px); }
.btn-sand { background: var(--sand); color: var(--navy); box-shadow: 0 10px 24px rgba(231,169,76,0.32); }
.btn-sand:hover { background: var(--sand-dark); transform: translateY(-2px); }
.btn-outline { border-color: rgba(255,255,255,0.55); color: var(--white); }
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: var(--white); transform: translateY(-2px); }
.btn-outline-navy { border-color: var(--navy); color: var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 20px; font-size: 0.82rem; }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(13,27,42,0.0);
  transition: background 0.25s ease, box-shadow 0.25s ease, height 0.25s ease;
}
.site-header.solid {
  background: rgba(13,27,42,0.94);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  height: 70px;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 38px; width: auto; }
.brand span { color: var(--white); font-weight: 700; font-size: 1.18rem; letter-spacing: 0.04em; }

.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  color: rgba(255,255,255,0.88);
  font-weight: 600;
  font-size: 0.92rem;
  position: relative;
  padding: 6px 0;
}
.nav-links a::after {
  content: '';
  position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--sand);
  transition: width 0.2s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--white); }

.header-actions { display: flex; align-items: center; gap: 14px; }

/* Language switcher */
.lang-switch { position: relative; }
.lang-btn {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--white);
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.lang-btn img { width: 18px; height: 12px; object-fit: cover; border-radius: 2px; }
.lang-btn .icon { width: 12px; height: 12px; transition: transform 0.2s ease; }
.lang-switch.open .lang-btn .icon { transform: rotate(180deg); }
.lang-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  padding: 8px;
  min-width: 150px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}
.lang-switch.open .lang-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-menu button {
  display: flex; align-items: center; gap: 10px;
  width: 100%;
  padding: 9px 10px;
  border-radius: 8px;
  border: none;
  background: none;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--navy);
}
.lang-menu button img { width: 20px; height: 14px; object-fit: cover; border-radius: 2px; }
.lang-menu button:hover { background: var(--gray-100); }
.lang-menu button[aria-current="true"] { color: var(--blue); background: rgba(19,122,233,0.08); }

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.08);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  width: 18px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .header-actions .btn-sand.call-cta { display: none; }
}

.mobile-nav {
  position: fixed;
  top: 0; right: -100%;
  width: min(320px, 86vw);
  height: 100%;
  background: var(--navy);
  z-index: 600;
  padding: 100px 28px 32px;
  transition: right 0.3s ease;
  overflow-y: auto;
}
.mobile-nav.open { right: 0; }
.mobile-nav a {
  display: block;
  color: var(--white);
  font-weight: 600;
  font-size: 1.05rem;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mobile-nav .btn { margin-top: 24px; }
.nav-scrim {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 590;
  opacity: 0; visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.nav-scrim.open { opacity: 1; visibility: visible; }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(115deg, rgba(13,27,42,0.92) 30%, rgba(13,27,42,0.55) 65%, rgba(13,27,42,0.35) 100%);
}
.hero-inner { position: relative; z-index: 1; padding-top: var(--header-h); }
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hero h1 { color: var(--white); max-width: 760px; margin-bottom: 20px; }
.hero p.lead { max-width: 560px; font-size: 1.08rem; color: rgba(255,255,255,0.85); margin-bottom: 34px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats {
  position: relative;
  z-index: 1;
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  overflow: hidden;
}
.hero-stats .stat { padding: 22px 18px; text-align: center; border-right: 1px solid rgba(255,255,255,0.12); }
.hero-stats .stat:last-child { border-right: none; }
.hero-stats .num { font-size: 1.9rem; font-weight: 800; color: var(--sand); }
.hero-stats .label { font-size: 0.76rem; color: rgba(255,255,255,0.75); margin-top: 4px; letter-spacing: 0.02em; }

@media (max-width: 780px) {
  .hero { min-height: 560px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-stats .stat:nth-child(2) { border-right: none; }
}

/* Simple inner-page banner */
.page-banner {
  position: relative;
  padding: calc(var(--header-h) + 70px) 0 70px;
  color: var(--white);
  text-align: center;
  overflow: hidden;
}
.page-banner .bg { position: absolute; inset: 0; z-index: 0; }
.page-banner .bg img { width: 100%; height: 100%; object-fit: cover; }
.page-banner .bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13,27,42,0.9), rgba(13,27,42,0.75));
}
.page-banner .container { position: relative; z-index: 1; }
.page-banner h1 { color: var(--white); }
.page-banner .crumb { margin-top: 12px; color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.page-banner .crumb a { color: var(--sand); font-weight: 600; }

/* ============================================================
   Cards / grids
   ============================================================ */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: 1fr 1fr; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 960px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } .grid-2 { grid-template-columns: 1fr; } }
@media (max-width: 600px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 32px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(19,122,233,0.25); }
.service-card .ic {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(19,122,233,0.12), rgba(19,122,233,0.04));
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
}
.service-card h3 { margin-bottom: 10px; font-size: 1.08rem; }
.service-card p { font-size: 0.93rem; }
.service-card.compact { padding: 24px 20px; }

.service-card.full {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.service-card.full .ic { flex-shrink: 0; margin-bottom: 0; }

.section-cta-row { display: flex; justify-content: center; margin-top: 42px; }

/* Feature list w/ check icons */
.check-list { display: grid; gap: 14px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--gray-700); font-weight: 500; }
.check-list .ic { color: var(--blue); flex-shrink: 0; margin-top: 2px; }

/* Split section (image + text) */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 34px; } }

.media-wrap { position: relative; }
.media-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4 / 5; }
.media-frame img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 900px) { .media-frame { aspect-ratio: 16 / 11; } }
.media-badge {
  position: absolute; bottom: -22px; left: -22px; z-index: 1;
  background: var(--blue);
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.media-badge .num { font-size: 1.8rem; font-weight: 800; }
.media-badge .label { font-size: 0.76rem; letter-spacing: 0.03em; }
@media (max-width: 600px) { .media-badge { left: 12px; bottom: -18px; padding: 14px 18px; } }

/* Areas / tags */
.tag-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.tag { background: var(--gray-100); color: var(--navy); font-size: 0.82rem; font-weight: 600; padding: 8px 14px; border-radius: 100px; }

/* Testimonial band */
.band {
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.band::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 15% 20%, rgba(19,122,233,0.28) 0%, transparent 45%),
              radial-gradient(circle at 85% 80%, rgba(231,169,76,0.2) 0%, transparent 45%);
}
.band .container { position: relative; z-index: 1; }
.quote-mark { font-size: 3.5rem; color: var(--sand); line-height: 1; font-family: Georgia, serif; }
.band blockquote { font-size: 1.3rem; font-weight: 500; max-width: 800px; margin: 14px 0 24px; line-height: 1.6; color: rgba(255,255,255,0.94); }
.band cite { font-style: normal; font-weight: 700; color: var(--sand); }

/* CTA band */
.cta-band {
  background: linear-gradient(120deg, var(--blue), #0f5fc4);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  color: var(--white);
  display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
}
.cta-band h2 { color: var(--white); margin-bottom: 8px; }
.cta-band p { color: rgba(255,255,255,0.85); }
@media (max-width: 700px) { .cta-band { text-align: center; justify-content: center; padding: 40px 28px; } }

/* Team card */
.team-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: transform .2s ease, box-shadow .2s ease;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.team-card .photo { aspect-ratio: 4/3.4; background: var(--gray-100); overflow: hidden; }
.team-card .photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card .info { padding: 22px 22px 26px; }
.team-card h3 { font-size: 1.05rem; margin-bottom: 2px; }
.team-card .role { color: var(--blue); font-weight: 700; font-size: 0.8rem; letter-spacing: 0.03em; text-transform: uppercase; margin-bottom: 12px; }
.team-card p { font-size: 0.88rem; }

/* Values card */
.value-card { text-align: center; padding: 8px; }
.value-card .ic {
  width: 66px; height: 66px; margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--sand);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
}
.value-card h3 { margin-bottom: 8px; }
.value-card p { font-size: 0.92rem; }

/* Tabs (about story) */
.tabs { display: flex; gap: 10px; margin-bottom: 28px; flex-wrap: wrap; justify-content: center; }
.tab-btn {
  padding: 12px 22px;
  border-radius: 100px;
  background: var(--gray-100);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.88rem;
  border: 2px solid transparent;
}
.tab-btn.active { background: var(--blue); color: var(--white); }
.tab-panel { display: none; max-width: 760px; margin: 0 auto; text-align: center; }
.tab-panel.active { display: block; }
.tab-panel p { font-size: 1.02rem; }

/* Process steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding-top: 8px; }
.step .step-num {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--sand);
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.step h3 { font-size: 1rem; margin-bottom: 8px; }
.step p { font-size: 0.88rem; }

/* Service category label */
.category-title { display: flex; align-items: center; gap: 14px; margin: 8px 0 26px; }
.category-title .line { flex: 1; height: 1px; background: var(--gray-300); }
.category-title h2 { font-size: 1.4rem; white-space: nowrap; }

/* ============================================================
   Gallery
   ============================================================ */
.gallery-filters { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 36px; }
.gallery-filters button {
  padding: 10px 20px;
  border-radius: 100px;
  background: var(--gray-100);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.84rem;
  border: none;
}
.gallery-filters button.active { background: var(--blue); color: var(--white); }
.gallery-grid {
  columns: 3 260px;
  column-gap: 18px;
}
.gallery-grid figure {
  break-inside: avoid;
  margin-bottom: 18px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: zoom-in;
  position: relative;
}
.gallery-grid img { width: 100%; display: block; transition: transform 0.35s ease; }
.gallery-grid figure:hover img { transform: scale(1.06); }
.gallery-grid figure figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 14px 16px;
  background: linear-gradient(0deg, rgba(13,27,42,0.85), transparent);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.gallery-grid figure:hover figcaption { opacity: 1; transform: translateY(0); }
@media (max-width: 700px) { .gallery-grid { columns: 2 180px; } }

.lightbox {
  position: fixed; inset: 0;
  background: rgba(6,12,20,0.94);
  z-index: 800;
  display: flex; align-items: center; justify-content: center;
  padding: 40px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 100%; max-height: 88vh; border-radius: 10px; box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.lightbox-close {
  position: absolute; top: 24px; right: 28px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.25);
}
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* ============================================================
   Contact
   ============================================================ */
.contact-info-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 34px;
}
.contact-info-card h3 { color: var(--white); margin-bottom: 6px; }
.contact-info-card > p { color: rgba(255,255,255,0.7); margin-bottom: 26px; }
.contact-row { display: flex; gap: 16px; align-items: flex-start; padding: 16px 0; border-top: 1px solid rgba(255,255,255,0.12); }
.contact-row:first-of-type { border-top: none; }
.contact-row .ic {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: 12px;
  background: rgba(19,122,233,0.2);
  color: var(--sand);
  display: flex; align-items: center; justify-content: center;
}
.contact-row .label { font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.05em; color: rgba(255,255,255,0.55); margin-bottom: 3px; }
.contact-row .value { font-weight: 700; }
.contact-row .value a:hover { color: var(--sand); }
.social-row { display: flex; gap: 12px; margin-top: 26px; }
.social-row a {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.18);
}
.social-row a:hover { background: var(--sand); color: var(--navy); }

.form-card { background: var(--white); border-radius: var(--radius-lg); padding: 40px 34px; box-shadow: var(--shadow); border: 1px solid var(--gray-100); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.82rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: 10px;
  border: 1.5px solid var(--gray-300);
  font-family: inherit;
  font-size: 0.94rem;
  color: var(--ink);
  background: var(--off-white);
  transition: border-color 0.18s ease, background 0.18s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--white);
}
.field textarea { resize: vertical; min-height: 120px; }
.checkbox-group { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 22px; }
@media (max-width: 500px) { .checkbox-group { grid-template-columns: 1fr; } }
.checkbox-group label {
  display: flex; align-items: center; gap: 9px;
  font-size: 0.86rem; font-weight: 600; color: var(--gray-700);
  background: var(--off-white);
  border: 1.5px solid var(--gray-300);
  border-radius: 10px;
  padding: 10px 12px;
  cursor: pointer;
}
.checkbox-group input { width: 16px; height: 16px; accent-color: var(--blue); }
.form-note { font-size: 0.8rem; color: var(--gray-500); margin-top: 14px; }
.form-status { display: none; margin-top: 16px; padding: 14px 16px; border-radius: 10px; font-weight: 600; font-size: 0.9rem; }
.form-status.show { display: block; }
.form-status.ok { background: rgba(46,160,67,0.12); color: #1e7e34; }
.form-status.err { background: rgba(233,40,30,0.1); color: #c41e15; }

/* Map placeholder */
.area-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 100%;
  min-height: 280px;
}
.area-map iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ============================================================
   FAQ (accordion)
   ============================================================ */
.faq-item { border-bottom: 1px solid var(--gray-300); }
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 4px;
  background: none; border: none;
  text-align: left;
  font-weight: 700;
  color: var(--navy);
  font-size: 1rem;
}
.faq-q .ic { transition: transform 0.25s ease; color: var(--blue); flex-shrink: 0; margin-left: 16px; }
.faq-item.open .faq-q .ic { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-a p { padding: 0 4px 22px; font-size: 0.94rem; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.75); }
.footer-top { padding: 70px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-brand img { height: 34px; }
.footer-brand span { color: var(--white); font-weight: 700; font-size: 1.1rem; }
.footer-col h4 { color: var(--white); font-size: 0.86rem; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul a:hover { color: var(--sand); }
.footer-col p { font-size: 0.88rem; color: rgba(255,255,255,0.6); }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.15);
}
.footer-social a:hover { background: var(--sand); color: var(--navy); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.82rem; color: rgba(255,255,255,0.5);
  flex-wrap: wrap; gap: 10px;
}

/* Scroll to top */
.to-top {
  position: fixed; right: 22px; bottom: 22px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow);
  z-index: 400;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* Whatsapp floating button */
.wa-float {
  position: fixed; left: 22px; bottom: 22px;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(37,211,102,0.45);
  z-index: 400;
  font-size: 1.5rem;
}
.wa-float:hover { transform: scale(1.06); }
