/* ===================================================================
   Geoland Contracting — Production Stylesheet
   Light premium construction theme. Brand: turquoise + steel.
   =================================================================== */

/* ---------- Design Tokens ---------- */
:root {
  /* Brand colors (from GC logo) */
  --turquoise: #18B6D6;
  --turquoise-dark: #0F93AE;
  --turquoise-light: #5FD1E8;
  --turquoise-soft: #E3F6FB;

  --steel: #C7CCD1;
  --steel-dark: #9AA3AB;
  --steel-light: #E4E8EB;

  --graphite: #2A323A;
  --graphite-soft: #5A6670;
  --ink: #1A2026;

  --white: #FFFFFF;
  --bg: #F4F7F9;
  --bg-alt: #EDF2F5;
  --bg-blue: #F0F5F8;

  --line: #E2E8EC;

  /* Gradients */
  --grad-turquoise: linear-gradient(135deg, #18B6D6 0%, #0F93AE 100%);
  --grad-steel: linear-gradient(135deg, #EDF1F3 0%, #D7DDE2 100%);
  --grad-hero: linear-gradient(120deg, rgba(244,247,249,.96) 0%, rgba(244,247,249,.55) 42%, rgba(244,247,249,0) 70%);

  /* Typography */
  --font-head: 'Manrope', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(42, 50, 58, .06);
  --shadow-md: 0 8px 28px rgba(42, 50, 58, .08);
  --shadow-lg: 0 20px 50px rgba(42, 50, 58, .12);
  --shadow-turquoise: 0 12px 30px rgba(24, 182, 214, .28);

  /* Spacing scale */
  --sp-1: 4px;  --sp-2: 8px;  --sp-3: 12px; --sp-4: 16px;
  --sp-5: 24px; --sp-6: 32px; --sp-7: 48px; --sp-8: 64px;
  --sp-9: 96px; --sp-10: 128px;

  /* Radius */
  --r-sm: 8px;  --r-md: 14px; --r-lg: 22px; --r-xl: 30px; --r-pill: 100px;

  --container: 1200px;
  --header-h: 78px;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--graphite);
  background: var(--white);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  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; border: none; background: none; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -.02em;
}

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

.section { padding: var(--sp-9) 0; }
.section-sm { padding: var(--sp-8) 0; }

.section-head { max-width: 680px; margin: 0 auto var(--sp-7); text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--turquoise-dark);
  margin-bottom: var(--sp-4);
}
.eyebrow::before {
  content: ""; display: inline-block; width: 26px; height: 2px;
  background: var(--turquoise); vertical-align: middle; margin-right: 10px;
}
.section-head.center-eyebrow .eyebrow::after {
  content: ""; display: inline-block; width: 26px; height: 2px;
  background: var(--turquoise); vertical-align: middle; margin-left: 10px;
}

h1 { font-size: clamp(2.6rem, 5.2vw, 4.1rem); }
h2 { font-size: clamp(2rem, 3.8vw, 2.9rem); }
h3 { font-size: 1.3rem; }

.lead { font-size: 1.18rem; color: var(--graphite-soft); }
.tq { color: var(--turquoise); }
.muted { color: var(--graphite-soft); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 700; font-size: 15px;
  padding: 14px 26px; border-radius: var(--r-pill);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  white-space: nowrap; cursor: pointer;
}
.btn svg { width: 17px; height: 17px; transition: transform .25s ease; }
.btn:hover svg { transform: translateX(4px); }

.btn-primary {
  background: var(--grad-turquoise); color: var(--white);
  box-shadow: var(--shadow-turquoise);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(24,182,214,.38); }

.btn-ghost {
  background: var(--white); color: var(--graphite);
  border: 1.5px solid var(--line); box-shadow: var(--shadow-sm);
}
.btn-ghost:hover { transform: translateY(-2px); border-color: var(--turquoise); color: var(--turquoise-dark); }

.btn-outline {
  background: transparent; color: var(--turquoise-dark);
  border: 1.5px solid var(--turquoise);
}
.btn-outline:hover { background: var(--turquoise); color: var(--white); transform: translateY(-2px); }

.btn-lg { padding: 17px 34px; font-size: 16px; }
.btn-block { width: 100%; justify-content: center; }

/* ===================================================================
   HEADER
   =================================================================== */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s ease, border-color .3s ease, background .3s ease;
}
.header.scrolled {
  box-shadow: 0 6px 24px rgba(42,50,58,.08);
  border-bottom-color: var(--line);
  background: rgba(255,255,255,.94);
}
.header-inner {
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand img { height: 46px; width: auto; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  font-family: var(--font-head); font-weight: 600; font-size: 15px;
  color: var(--graphite); padding: 8px 16px; border-radius: var(--r-pill);
  position: relative; transition: color .2s ease;
}
.nav a::after {
  content: ""; position: absolute; left: 16px; right: 16px; bottom: 2px; height: 2px;
  background: var(--turquoise); border-radius: 2px;
  transform: scaleX(0); transform-origin: left; transition: transform .25s ease;
}
.nav a:hover { color: var(--turquoise-dark); }
.nav a:hover::after, .nav a.active::after { transform: scaleX(1); }
.nav a.active { color: var(--turquoise-dark); }

.header-actions { display: flex; align-items: center; gap: 14px; }
.lang {
  display: flex; align-items: center; gap: 5px;
  font-family: var(--font-head); font-weight: 700; font-size: 14px;
  color: var(--graphite); padding: 8px 6px;
}
.lang svg { width: 13px; height: 13px; }

.menu-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.menu-toggle span {
  width: 24px; height: 2px; background: var(--graphite); border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===================================================================
   HERO
   =================================================================== */
.hero {
  position: relative; overflow: hidden;
  background: var(--bg);
  min-height: calc(100vh - var(--header-h));
  display: flex; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-bg::after {
  content: ""; position: absolute; inset: 0; background: var(--grad-hero);
}
.hero .container { position: relative; z-index: 2; padding-top: var(--sp-8); padding-bottom: var(--sp-9); }
.hero-content { max-width: 600px; }
.hero h1 { margin-bottom: var(--sp-5); }
.hero h1 .ink { color: var(--ink); }
.hero p.sub { font-size: 1.22rem; color: var(--graphite-soft); margin-bottom: var(--sp-6); max-width: 480px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* Trust indicators */
.trust-bar {
  position: relative; z-index: 2;
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: var(--sp-8);
}
.trust-item {
  display: flex; align-items: center; gap: 12px;
  padding-right: 28px; margin-right: 20px;
  border-right: 1px solid var(--line);
}
.trust-item:last-child { border-right: none; }
.trust-item .ico {
  width: 38px; height: 38px; flex-shrink: 0;
  display: grid; place-items: center;
  color: var(--turquoise-dark);
}
.trust-item .ico svg { width: 26px; height: 26px; }
.trust-item span {
  font-family: var(--font-head); font-weight: 700; font-size: 13px;
  text-transform: uppercase; letter-spacing: .04em; color: var(--graphite);
  line-height: 1.25;
}

/* ===================================================================
   FLOATING SERVICES CARD
   =================================================================== */
.services-float { margin-top: -70px; position: relative; z-index: 5; }
.services-card {
  background: var(--white); border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  display: grid; grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
}
.svc-mini {
  padding: 38px 32px; border-right: 1px solid var(--line);
  transition: background .3s ease, transform .3s ease;
}
.svc-mini:last-child { border-right: none; }
.svc-mini:hover { background: var(--bg-blue); }
.svc-mini .ico {
  width: 48px; height: 48px; color: var(--turquoise-dark);
  margin-bottom: var(--sp-4);
}
.svc-mini .ico svg { width: 100%; height: 100%; }
.svc-mini h3 {
  font-size: 1rem; text-transform: uppercase; letter-spacing: .03em;
  margin-bottom: var(--sp-3); color: var(--ink);
}
.svc-mini p { font-size: .95rem; color: var(--graphite-soft); line-height: 1.6; }

/* ===================================================================
   WHY GEOLAND / STATS
   =================================================================== */
.why-grid {
  display: grid; grid-template-columns: 1fr 1.15fr; gap: var(--sp-8); align-items: center;
}
.why-text h2 { margin-bottom: var(--sp-5); }
.why-text .divider { width: 56px; height: 3px; background: var(--turquoise); border-radius: 3px; margin: var(--sp-5) 0; }
.why-text p { color: var(--graphite-soft); margin-bottom: var(--sp-5); }
.why-list { display: grid; gap: 14px; margin-top: var(--sp-5); }
.why-list li { display: flex; align-items: center; gap: 12px; font-weight: 600; color: var(--graphite); }
.why-list .check {
  width: 24px; height: 24px; border-radius: 50%; background: var(--turquoise-soft);
  color: var(--turquoise-dark); display: grid; place-items: center; flex-shrink: 0;
}
.why-list .check svg { width: 14px; height: 14px; }

.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.stat-card {
  background: var(--bg-blue); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 32px 26px; text-align: center;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.stat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--turquoise-light); }
.stat-card .num {
  font-family: var(--font-head); font-weight: 800; font-size: 2.7rem;
  color: var(--turquoise-dark); line-height: 1; margin-bottom: 8px;
}
.stat-card .label {
  font-family: var(--font-head); font-weight: 700; font-size: .8rem;
  text-transform: uppercase; letter-spacing: .08em; color: var(--graphite-soft);
}

/* Stats band (dark-on-image variant for inner pages) */
.stats-band { background: var(--grad-steel); }

/* ===================================================================
   SERVICE CARDS (grid)
   =================================================================== */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.service-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 38px 32px; transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card .ico-wrap {
  width: 62px; height: 62px; border-radius: var(--r-md);
  background: var(--turquoise-soft); color: var(--turquoise-dark);
  display: grid; place-items: center; margin-bottom: var(--sp-5);
  transition: background .3s ease, color .3s ease;
}
.service-card:hover .ico-wrap { background: var(--grad-turquoise); color: var(--white); }
.service-card .ico-wrap svg { width: 32px; height: 32px; }
.service-card h3 { margin-bottom: var(--sp-3); }
.service-card > p { color: var(--graphite-soft); margin-bottom: var(--sp-5); }
.service-card .benefits { display: grid; gap: 10px; margin-bottom: var(--sp-6); }
.service-card .benefits li { display: flex; gap: 10px; align-items: flex-start; font-size: .95rem; color: var(--graphite); }
.service-card .benefits .dot {
  width: 18px; height: 18px; flex-shrink: 0; margin-top: 3px;
  color: var(--turquoise-dark);
}
.service-card .card-foot { margin-top: auto; }
.service-card .card-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 700; font-size: 14px; color: var(--turquoise-dark);
}
.service-card .card-link svg { width: 16px; height: 16px; transition: transform .25s ease; }
.service-card:hover .card-link svg { transform: translateX(4px); }

/* ===================================================================
   FEATURED PROJECTS
   =================================================================== */
.proj-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.proj-card {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); background: var(--white);
  transition: transform .35s ease, box-shadow .35s ease;
}
.proj-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.proj-media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.proj-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.proj-card:hover .proj-media img { transform: scale(1.07); }
.proj-tag {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  background: rgba(255,255,255,.92); color: var(--turquoise-dark);
  font-family: var(--font-head); font-weight: 700; font-size: 12px;
  text-transform: uppercase; letter-spacing: .05em;
  padding: 6px 14px; border-radius: var(--r-pill); backdrop-filter: blur(6px);
}
.proj-status {
  position: absolute; top: 16px; right: 16px; z-index: 2;
  background: var(--grad-turquoise); color: #fff;
  font-family: var(--font-head); font-weight: 700; font-size: 11px;
  padding: 6px 12px; border-radius: var(--r-pill);
}
.proj-status.ongoing { background: linear-gradient(135deg,#F0A93B,#E08A1E); }
.proj-body { padding: 24px 26px 28px; }
.proj-body h3 { font-size: 1.18rem; margin-bottom: 8px; }
.proj-meta { display: flex; align-items: center; gap: 8px; color: var(--graphite-soft); font-size: .92rem; }
.proj-meta svg { width: 15px; height: 15px; color: var(--turquoise-dark); }

/* Filters */
.filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: var(--sp-7); }
.filter-btn {
  font-family: var(--font-head); font-weight: 700; font-size: 14px;
  padding: 11px 24px; border-radius: var(--r-pill);
  background: var(--white); color: var(--graphite-soft); border: 1.5px solid var(--line);
  transition: all .25s ease;
}
.filter-btn:hover { border-color: var(--turquoise); color: var(--turquoise-dark); }
.filter-btn.active { background: var(--grad-turquoise); color: #fff; border-color: transparent; box-shadow: var(--shadow-turquoise); }
.proj-card.hide { display: none; }

/* ===================================================================
   PROCESS
   =================================================================== */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.process-step { position: relative; text-align: center; padding: 0 12px; }
.process-step .step-num {
  width: 70px; height: 70px; margin: 0 auto var(--sp-4);
  border-radius: 50%; background: var(--white); border: 2px solid var(--turquoise-light);
  color: var(--turquoise-dark); font-family: var(--font-head); font-weight: 800; font-size: 1.5rem;
  display: grid; place-items: center; box-shadow: var(--shadow-sm);
  position: relative; z-index: 2;
}
.process-step h3 { font-size: 1.12rem; margin-bottom: 10px; }
.process-step p { font-size: .95rem; color: var(--graphite-soft); }
.process-grid { position: relative; }
.process-grid::before {
  content: ""; position: absolute; top: 35px; left: 12%; right: 12%; height: 2px;
  background: linear-gradient(90deg, var(--turquoise-light), var(--steel-light));
  z-index: 1;
}

/* ===================================================================
   CTA BANNER
   =================================================================== */
.cta-banner { position: relative; overflow: hidden; }
.cta-inner {
  background: var(--grad-turquoise); border-radius: var(--r-xl);
  padding: var(--sp-9) var(--sp-8); text-align: center; position: relative; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta-inner::before, .cta-inner::after {
  content: ""; position: absolute; border-radius: 50%;
  background: rgba(255,255,255,.10);
}
.cta-inner::before { width: 320px; height: 320px; top: -120px; right: -80px; }
.cta-inner::after { width: 260px; height: 260px; bottom: -130px; left: -60px; }
.cta-inner h2 { color: #fff; margin-bottom: var(--sp-4); position: relative; }
.cta-inner p { color: rgba(255,255,255,.92); font-size: 1.15rem; max-width: 560px; margin: 0 auto var(--sp-6); position: relative; }
.cta-inner .btn-white {
  background: #fff; color: var(--turquoise-dark); position: relative;
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
}
.cta-inner .btn-white:hover { transform: translateY(-2px); }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }
.cta-inner .btn-line { background: rgba(255,255,255,.14); color: #fff; border: 1.5px solid rgba(255,255,255,.5); }
.cta-inner .btn-line:hover { background: rgba(255,255,255,.24); }

/* ===================================================================
   PAGE HERO (inner pages)
   =================================================================== */
.page-hero {
  position: relative; padding: var(--sp-9) 0 var(--sp-8);
  background: var(--bg-blue); overflow: hidden;
}
.page-hero::after {
  content: ""; position: absolute; bottom: 0; left: 0; right: 0; height: 60%;
  background: linear-gradient(180deg, transparent, rgba(227,246,251,.5));
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero-inner { max-width: 720px; }
.page-hero h1 { font-size: clamp(2.3rem, 4.5vw, 3.4rem); margin-bottom: var(--sp-4); }
.page-hero p { font-size: 1.18rem; color: var(--graphite-soft); }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 14px; color: var(--graphite-soft); margin-bottom: var(--sp-5); font-family: var(--font-head); font-weight: 600; }
.breadcrumb a:hover { color: var(--turquoise-dark); }
.breadcrumb .sep { color: var(--steel-dark); }

/* ===================================================================
   ABOUT
   =================================================================== */
.about-split { display: grid; grid-template-columns: 1.1fr 1fr; gap: var(--sp-8); align-items: center; }
.about-img { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 5/4; }
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-text h2 { margin-bottom: var(--sp-5); }
.about-text p { color: var(--graphite-soft); margin-bottom: var(--sp-4); }

.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.mv-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 42px 38px; box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
}
.mv-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.mv-card .ico-wrap {
  width: 60px; height: 60px; border-radius: var(--r-md); background: var(--turquoise-soft);
  color: var(--turquoise-dark); display: grid; place-items: center; margin-bottom: var(--sp-5);
}
.mv-card .ico-wrap svg { width: 30px; height: 30px; }
.mv-card h3 { font-size: 1.5rem; margin-bottom: var(--sp-3); }
.mv-card p { color: var(--graphite-soft); }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.value-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 30px 28px; text-align: center; transition: all .3s ease;
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--turquoise-light); }
.value-card .ico {
  width: 54px; height: 54px; margin: 0 auto var(--sp-4); border-radius: 50%;
  background: var(--turquoise-soft); color: var(--turquoise-dark); display: grid; place-items: center;
}
.value-card .ico svg { width: 28px; height: 28px; }
.value-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.value-card p { font-size: .92rem; color: var(--graphite-soft); }

.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-card { text-align: center; }
.team-photo {
  aspect-ratio: 1; border-radius: var(--r-lg); overflow: hidden; margin-bottom: var(--sp-4);
  box-shadow: var(--shadow-sm); background: var(--grad-steel); position: relative;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card h3 { font-size: 1.12rem; margin-bottom: 4px; }
.team-card .role { font-size: .9rem; color: var(--turquoise-dark); font-weight: 600; font-family: var(--font-head); }

/* Strengths / feature list */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-item {
  display: flex; gap: 16px; align-items: flex-start; padding: 26px;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md);
  transition: all .3s ease;
}
.feature-item:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.feature-item .ico {
  width: 46px; height: 46px; flex-shrink: 0; border-radius: var(--r-sm);
  background: var(--turquoise-soft); color: var(--turquoise-dark); display: grid; place-items: center;
}
.feature-item .ico svg { width: 24px; height: 24px; }
.feature-item h3 { font-size: 1.1rem; margin-bottom: 6px; }
.feature-item p { font-size: .93rem; color: var(--graphite-soft); }

/* ===================================================================
   CONTACT
   =================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: var(--sp-8); align-items: start; }
.contact-info { display: grid; gap: 16px; }
.info-card {
  display: flex; gap: 16px; align-items: flex-start; padding: 26px;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md);
  transition: all .3s ease;
}
.info-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.info-card .ico {
  width: 48px; height: 48px; flex-shrink: 0; border-radius: var(--r-sm);
  background: var(--turquoise-soft); color: var(--turquoise-dark); display: grid; place-items: center;
}
.info-card .ico svg { width: 24px; height: 24px; }
.info-card h3 { font-size: 1.05rem; margin-bottom: 4px; }
.info-card p, .info-card a { color: var(--graphite-soft); font-size: .98rem; }
.info-card a:hover { color: var(--turquoise-dark); }
.info-card.whatsapp .ico { background: #E7F8EE; color: #1FA463; }

.contact-form-wrap {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 42px; box-shadow: var(--shadow-md);
}
.contact-form-wrap h2 { font-size: 1.7rem; margin-bottom: var(--sp-2); }
.contact-form-wrap > p { color: var(--graphite-soft); margin-bottom: var(--sp-6); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-family: var(--font-head); font-weight: 600; font-size: 14px;
  color: var(--graphite); margin-bottom: 8px;
}
.form-group label .req { color: var(--turquoise-dark); }
.form-control {
  width: 100%; padding: 14px 16px; font-family: inherit; font-size: 15px;
  color: var(--graphite); background: var(--bg); border: 1.5px solid var(--line);
  border-radius: var(--r-sm); transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.form-control:focus {
  outline: none; border-color: var(--turquoise); background: var(--white);
  box-shadow: 0 0 0 4px rgba(24,182,214,.12);
}
.form-control::placeholder { color: var(--steel-dark); }
textarea.form-control { resize: vertical; min-height: 130px; }
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%239AA3AB' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 42px; }
.form-group.error .form-control { border-color: #E05555; background: #FEF4F4; }
.error-msg { display: none; color: #E05555; font-size: 13px; margin-top: 6px; font-weight: 600; }
.form-group.error .error-msg { display: block; }
.form-success {
  display: none; padding: 16px 20px; background: #E7F8EE; border: 1px solid #B6E7C9;
  border-radius: var(--r-sm); color: #1A7A47; font-weight: 600; margin-bottom: 20px;
}
.form-success.show { display: block; }

.map-wrap { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--line); }
.map-wrap iframe { width: 100%; height: 420px; border: 0; display: block; filter: grayscale(.15); }

/* ===================================================================
   FOOTER
   =================================================================== */
.footer { background: var(--ink); color: #B9C2CB; padding: var(--sp-9) 0 var(--sp-5); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 48px; margin-bottom: var(--sp-8); }
.footer-brand img { height: 44px; margin-bottom: var(--sp-4); filter: brightness(1.05); }
.footer-brand p { font-size: .96rem; line-height: 1.7; color: #93A0AB; max-width: 320px; }
.footer h4 { color: #fff; font-size: 1rem; margin-bottom: var(--sp-4); font-family: var(--font-head); letter-spacing: .02em; }
.footer-links { display: grid; gap: 12px; }
.footer-links a, .footer-contact li { font-size: .95rem; color: #93A0AB; transition: color .2s ease; }
.footer-links a:hover { color: var(--turquoise-light); }
.footer-contact { display: grid; gap: 14px; }
.footer-contact li { display: flex; gap: 12px; align-items: flex-start; }
.footer-contact svg { width: 18px; height: 18px; color: var(--turquoise); flex-shrink: 0; margin-top: 2px; }
.footer-contact a:hover { color: var(--turquoise-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding-top: var(--sp-5);
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  font-size: .9rem; color: #7C8893;
}
.social { display: flex; gap: 12px; }
.social a {
  width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.06);
  display: grid; place-items: center; transition: all .25s ease;
}
.social a:hover { background: var(--turquoise); transform: translateY(-3px); }
.social svg { width: 18px; height: 18px; color: #fff; }

/* ===================================================================
   ANIMATIONS
   =================================================================== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 1024px) {
  .why-grid, .about-split, .contact-grid { grid-template-columns: 1fr; gap: var(--sp-7); }
  .cards-grid, .feature-grid, .values-grid, .proj-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-grid::before { display: none; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .services-card { grid-template-columns: repeat(2, 1fr); }
  .svc-mini:nth-child(2) { border-right: none; }
  .svc-mini { border-bottom: 1px solid var(--line); }
}

@media (max-width: 880px) {
  .nav, .header-actions .btn, .header-actions .lang { display: none; }
  .menu-toggle { display: flex; }
  .header-actions { gap: 8px; }

  /* Mobile nav drawer */
  .mobile-nav {
    position: fixed; top: var(--header-h); left: 0; right: 0; bottom: 0;
    background: rgba(255,255,255,.98); backdrop-filter: blur(10px);
    transform: translateX(100%); transition: transform .35s ease;
    z-index: 99; padding: 32px 24px; overflow-y: auto; display: flex; flex-direction: column;
  }
  .mobile-nav.open { transform: translateX(0); }
  .mobile-nav a {
    font-family: var(--font-head); font-weight: 700; font-size: 1.3rem; color: var(--ink);
    padding: 18px 0; border-bottom: 1px solid var(--line);
  }
  .mobile-nav a.active { color: var(--turquoise-dark); }
  .mobile-nav .btn { margin-top: var(--sp-6); }
  .mobile-nav .mlang { margin-top: var(--sp-4); font-family: var(--font-head); font-weight: 700; color: var(--graphite-soft); }
}
.mobile-nav { display: none; }
@media (max-width: 880px) { .mobile-nav { display: flex; } }

@media (max-width: 760px) {
  body { font-size: 16px; }
  .section, .section-sm { padding: var(--sp-8) 0; }
  .hero { min-height: auto; }
  .hero .container { padding-top: var(--sp-7); padding-bottom: var(--sp-8); }
  .hero-bg::after { background: linear-gradient(180deg, rgba(244,247,249,.92) 0%, rgba(244,247,249,.78) 55%, rgba(244,247,249,.6) 100%); }
  .trust-bar { gap: 18px; }
  .trust-item { border-right: none; padding-right: 0; margin-right: 0; width: calc(50% - 18px); }
  .services-float { margin-top: -30px; }
  .services-card { grid-template-columns: 1fr; }
  .svc-mini { border-right: none; border-bottom: 1px solid var(--line); }
  .svc-mini:last-child { border-bottom: none; }
  .cards-grid, .feature-grid, .values-grid, .proj-grid, .stats-grid, .mv-grid, .process-grid, .team-grid {
    grid-template-columns: 1fr;
  }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 22px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .cta-inner { padding: var(--sp-8) var(--sp-5); }
  .hero-cta .btn, .cta-actions .btn { flex: 1; justify-content: center; }
}

@media (max-width: 460px) {
  .footer-grid { grid-template-columns: 1fr; }
  h1 { font-size: 2.2rem; }
  .stat-card .num { font-size: 2.2rem; }
}
