/* ============================================================
   Deegaan — Daryeelka Guryaha iyo Beeraha
   Home & Garden care · Pest control · Hygiene — Hargeisa, Somaliland
   Design tokens mirror the Claude Design source exactly.
   ============================================================ */

:root {
  --bg:            #F5FBF7;
  --ink:           #0B221A;
  --green:         #00BA73;
  --green-600:     #00A566;
  --green-700:     #00885A;
  --text:          #3B5548;
  --text-muted:    #4A6558;
  --text-strong:   #1C4A38;
  --line:          #E2F0E8;
  --line-2:        #DCEDE3;
  --line-3:        #D5ECDF;
  --mint:          #EAF7F0;
  --mint-2:        #E9F6EE;
  --foot-sub:      #7A9C8B;
  --maxw:          1180px;
  --pad:           20px;
  --radius-card:   24px;
  --shadow-btn:    0 6px 18px rgba(0,186,115,.32);
  --shadow-soft:   0 18px 44px rgba(11,34,26,.08);
  --sora: 'Sora', system-ui, sans-serif;
  --manrope: 'Manrope', system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--manrope);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 2px;
  border-radius: 6px;
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--ink); color: #fff; padding: 12px 18px;
  border-radius: 12px; font-weight: 700; text-decoration: none;
  transition: top .18s ease;
}
.skip-link:focus { top: 12px; }

/* ---------- Diamond accent (brand motif) ---------- */
.diamond {
  display: inline-block; width: 8px; height: 8px;
  border-radius: 0 999px 0 999px; background: var(--green);
  transform: rotate(45deg); flex: none;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  text-decoration: none; font-weight: 700; font-size: 15.5px;
  padding: 16px 30px; border-radius: 999px; cursor: pointer;
  border: none; font-family: var(--manrope);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  will-change: transform;
}
.btn-dark  { background: var(--ink);  color: #fff; box-shadow: 0 6px 18px rgba(11,34,26,.22); }
.btn-dark:hover  { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(11,34,26,.3); }
.btn-green { background: var(--green); color: #fff; box-shadow: var(--shadow-btn); }
.btn-green:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,186,115,.42); }
.btn .wa-dot {
  width: 9px; height: 9px; border-radius: 50%; background: #fff;
  box-shadow: 0 0 0 4px rgba(255,255,255,.3);
}

/* ---------- Section eyebrow / headings ---------- */
.eyebrow {
  font-size: 12.5px; font-weight: 800; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--green-600);
}
h1, h2, h3, h4, h5 { font-family: var(--sora); }
.h2 {
  font-family: var(--sora); font-weight: 800;
  font-size: clamp(28px, 3.4vw, 40px); letter-spacing: -.8px;
  margin: 12px 0 0; color: var(--ink);
}
.section-head { text-align: center; max-width: 640px; margin: 0 auto; }
.section-head p {
  font-size: 15.5px; color: var(--text-muted); line-height: 1.7; margin: 14px 0 0;
}
.section { padding-top: clamp(56px, 7vw, 100px); padding-bottom: clamp(56px, 7vw, 100px); }

/* ============================================================
   NAVBAR
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad);
  height: 70px; display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
}
.brand { display: flex; align-items: center; text-decoration: none; }
.brand img { height: 44px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a.navlink {
  text-decoration: none; color: var(--text); font-size: 14.5px;
  font-weight: 600; transition: color .15s ease;
}
.nav-links a.navlink:hover,
.nav-links a.navlink.active { color: var(--green-600); }
.nav-cta {
  text-decoration: none; background: var(--green); color: #fff;
  font-weight: 700; font-size: 14px; padding: 11px 20px; border-radius: 999px;
  box-shadow: 0 4px 14px rgba(0,186,115,.3);
  transition: transform .15s ease, box-shadow .15s ease;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(0,186,115,.4); }

.menu-btn {
  width: 46px; height: 46px; border-radius: 12px; border: 1px solid var(--line-2);
  background: #fff; display: none; flex-direction: column; align-items: center;
  justify-content: center; gap: 5px; cursor: pointer; padding: 0;
}
.menu-btn span {
  width: 20px; height: 2px; background: var(--ink); border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.menu-btn[aria-expanded="true"] span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.menu-btn[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
.menu-btn[aria-expanded="true"] span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none; background: #fff; border-bottom: 1px solid var(--line);
  padding: 10px var(--pad) 20px; flex-direction: column; gap: 4px;
}
.mobile-nav.open { display: flex; animation: dgFadeUp .2s ease both; }
.mobile-nav a.navlink {
  text-decoration: none; color: var(--ink); font-size: 17px; font-weight: 700;
  padding: 13px 12px; border-radius: 12px; transition: background .15s ease;
}
.mobile-nav a.navlink:hover { background: var(--mint); }
.mobile-nav .m-cta {
  text-decoration: none; background: var(--green); color: #fff; font-weight: 700;
  font-size: 16px; padding: 15px; border-radius: 14px; text-align: center; margin-top: 8px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: linear-gradient(180deg, #EAF7F0 0%, #F5FBF7 100%);
  position: relative; overflow: hidden;
}
.blob { position: absolute; border-radius: 50%; pointer-events: none; }
.hero .blob-a { top: -120px; right: -120px; width: 380px; height: 380px; background: rgba(0,186,115,.08); }
.hero .blob-b { bottom: -80px; left: -100px; width: 280px; height: 280px; background: rgba(0,186,115,.06); }
.hero-inner {
  max-width: var(--maxw); margin: 0 auto; padding: clamp(48px,7vw,96px) var(--pad);
  display: flex; flex-wrap: wrap; align-items: center; gap: clamp(32px,5vw,64px);
  position: relative;
}
.hero-copy { flex: 1 1 440px; min-width: min(100%, 320px); }
.badge {
  display: inline-flex; align-items: center; gap: 8px; background: #fff;
  border: 1px solid var(--line-3); border-radius: 999px; padding: 8px 16px;
  font-size: 12.5px; font-weight: 700; color: var(--green-700);
  letter-spacing: .4px; text-transform: uppercase;
}
.hero h1 {
  font-family: var(--sora); font-weight: 800; font-size: clamp(34px,5vw,58px);
  line-height: 1.08; letter-spacing: -1px; margin: 20px 0 0; color: var(--ink);
}
.hero h1 .accent { color: var(--green); }
.hero-lead {
  font-size: clamp(17px,2vw,20px); font-weight: 700; color: var(--text-strong);
  margin: 18px 0 0; line-height: 1.45;
}
.hero-sub {
  font-size: 15.5px; color: var(--text-muted); margin: 14px 0 0;
  line-height: 1.65; max-width: 520px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 26px; margin-top: 38px; }
.stat .stat-num { font-family: var(--sora); font-weight: 800; font-size: 24px; color: var(--ink); }
.stat .stat-label { font-size: 13px; color: var(--text-muted); font-weight: 600; }
.stat-divider { width: 1px; background: var(--line-3); }

.hero-media { flex: 1 1 380px; min-width: min(100%, 300px); position: relative; }
.hero-frame {
  border-radius: 28px; overflow: hidden; box-shadow: 0 24px 60px rgba(11,34,26,.16);
  border: 6px solid #fff; aspect-ratio: 4/4.4; background: var(--mint-2);
}
.hero-frame img { width: 100%; height: 100%; object-fit: cover; }
.float-card {
  position: absolute; bottom: 24px; left: -14px; background: #fff; border-radius: 18px;
  padding: 14px 18px; box-shadow: 0 12px 30px rgba(11,34,26,.14);
  display: flex; align-items: center; gap: 12px; animation: dgFloat 5s ease-in-out infinite;
}
.float-card .ic {
  width: 40px; height: 40px; border-radius: 12px; background: var(--mint);
  display: flex; align-items: center; justify-content: center;
}
.float-card .ic .diamond { width: 16px; height: 16px; }
.float-card b { font-size: 14px; }
.float-card small { font-size: 12px; color: var(--text-muted); }
.float-pill {
  position: absolute; top: 26px; right: -10px; background: var(--ink); color: #fff;
  border-radius: 16px; padding: 12px 16px; box-shadow: 0 12px 30px rgba(11,34,26,.25);
  font-size: 13px; font-weight: 700; display: flex; align-items: center; gap: 9px;
  animation: dgFloat 6s .8s ease-in-out infinite;
}
.float-pill .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--green); }

/* ============================================================
   TRUST BADGES
   ============================================================ */
.trust { background: #fff; border-bottom: 1px solid var(--line); }
.trust-row {
  max-width: var(--maxw); margin: 0 auto; padding: 20px var(--pad);
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
}
.trust-pill {
  display: inline-flex; align-items: center; gap: 8px; background: var(--bg);
  border: 1px solid var(--line-2); border-radius: 999px; padding: 9px 16px;
  font-size: 12.5px; font-weight: 800; color: var(--text-strong);
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid { display: flex; flex-wrap: wrap; gap: clamp(30px,4vw,56px); align-items: flex-start; }
.about-col { flex: 1 1 380px; min-width: min(100%, 300px); }
.about-col p { font-size: 16px; color: var(--text); line-height: 1.75; margin: 18px 0 0; }
.about-photo {
  margin-top: 26px; border-radius: 22px; overflow: hidden; aspect-ratio: 16/8;
  border: 1px solid var(--line-3); background: var(--mint-2);
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.vm-col { flex: 1 1 400px; min-width: min(100%, 300px); display: flex; flex-direction: column; gap: 20px; }
.vm-card {
  border-radius: var(--radius-card); padding: clamp(24px,3vw,36px);
  position: relative; overflow: hidden;
}
.vm-card h3 { font-weight: 700; font-size: 21px; margin: 16px 0 0; }
.vm-card p { font-size: 14.5px; line-height: 1.7; margin: 10px 0 0; }
.vm-card .vm-ic {
  width: 46px; height: 46px; border-radius: 14px; display: flex;
  align-items: center; justify-content: center;
}
.vm-vision { background: var(--ink); color: #fff; }
.vm-vision p { color: #C7DED2; }
.vm-vision .vm-ic { background: rgba(0,186,115,.18); }
.vm-vision .vm-ic .ring { width: 18px; height: 18px; border-radius: 50%; border: 3px solid var(--green); }
.vm-vision .blob { top: -40px; right: -40px; width: 150px; height: 150px; background: rgba(0,186,115,.14); }
.vm-mission { background: var(--green); color: #fff; }
.vm-mission p { color: #EAFBF3; }
.vm-mission .vm-ic { background: rgba(255,255,255,.2); }
.vm-mission .vm-ic .diamond { width: 16px; height: 16px; background: #fff; }
.vm-mission .blob {
  bottom: -50px; right: -30px; width: 160px; height: 160px;
  border-radius: 0 999px 0 999px; background: rgba(255,255,255,.12); transform: rotate(45deg);
}

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.svc-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%,300px),1fr));
  gap: 22px; margin-top: 44px;
}
.svc-card {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-card);
  padding: 30px; display: flex; flex-direction: column; gap: 14px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.svc-card:hover { transform: translateY(-5px); box-shadow: 0 18px 40px rgba(11,34,26,.1); }
.svc-ic {
  width: 56px; height: 56px; border-radius: 18px; display: flex; align-items: center;
  justify-content: center; font-family: var(--sora); font-weight: 800; font-size: 20px;
}
.svc-card h3 { font-weight: 700; font-size: 20px; margin: 6px 0 0; color: var(--ink); }
.svc-card p { font-size: 14.5px; color: var(--text-muted); line-height: 1.65; margin: 0; }
.svc-link {
  text-decoration: none; margin-top: auto; align-self: flex-start; color: var(--green-700);
  font-weight: 800; font-size: 14px; display: inline-flex; align-items: center; gap: 7px;
  padding: 10px 0; transition: gap .15s ease;
}
.svc-link:hover { gap: 12px; }
.svc-link .arw { font-size: 16px; }

.sub-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%,240px),1fr));
  gap: 16px; margin-top: 22px;
}
.sub-card {
  background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 20px;
  display: flex; flex-direction: column; gap: 8px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.sub-card:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(11,34,26,.08); border-color: #8FDCBE; }
.sub-top { display: flex; align-items: center; gap: 11px; }
.sub-top .sub-ic {
  width: 34px; height: 34px; border-radius: 11px; background: var(--mint);
  display: flex; align-items: center; justify-content: center; flex: none;
}
.sub-top .sub-ic .diamond { width: 13px; height: 13px; }
.sub-card h4 { font-weight: 700; font-size: 15.5px; margin: 0; color: var(--ink); }
.sub-card p { font-size: 13.5px; color: var(--text-muted); line-height: 1.6; margin: 0; }
.sub-link { text-decoration: none; color: var(--green-700); font-weight: 800; font-size: 13px; margin-top: 2px; }
.sub-link:hover { color: var(--green); }

/* ============================================================
   WHY CHOOSE
   ============================================================ */
.why-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%,230px),1fr));
  gap: 18px; margin-top: 44px;
}
.why-card {
  background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 24px;
  display: flex; flex-direction: column; gap: 10px;
  transition: transform .18s ease, box-shadow .18s ease;
}
.why-card:hover { transform: translateY(-4px); box-shadow: 0 14px 32px rgba(11,34,26,.09); }
.why-ic {
  width: 42px; height: 42px; border-radius: 13px; display: flex; align-items: center;
  justify-content: center; font-family: var(--sora); font-weight: 800; font-size: 15px;
}
.why-card h4 { font-weight: 700; font-size: 15.5px; margin: 6px 0 0; color: var(--ink); }
.why-card p { font-size: 13.5px; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.process { background: var(--ink); position: relative; overflow: hidden; }
.process .blob { top: -100px; left: -100px; width: 320px; height: 320px; background: rgba(0,186,115,.08); }
.process .eyebrow { color: var(--green); }
.process .h2 { color: #fff; }
.steps-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%,230px),1fr));
  gap: 18px; margin-top: 48px; position: relative;
}
.step {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: 22px; padding: 28px 24px; position: relative;
  transition: background .2s ease, transform .2s ease;
}
.step:hover { background: rgba(0,186,115,.12); transform: translateY(-4px); }
.step .step-num {
  font-family: var(--sora); font-weight: 800; font-size: 15px; color: var(--ink);
  background: var(--green); width: 38px; height: 38px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.step h4 { font-weight: 700; font-size: 17px; color: #fff; margin: 18px 0 0; }
.step p { font-size: 13.5px; color: #A9C6B8; line-height: 1.65; margin: 10px 0 0; }

/* ============================================================
   PACKAGES
   ============================================================ */
.pkg-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%,290px),1fr));
  gap: 22px; margin-top: 44px; align-items: stretch;
}
.pkg {
  border-radius: 26px; padding: 32px 28px; display: flex; flex-direction: column; gap: 14px;
  position: relative; overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.pkg:hover { transform: translateY(-6px); box-shadow: 0 22px 48px rgba(11,34,26,.14); }
.pkg h3 { font-weight: 800; font-size: 21px; margin: 0; }
.pkg > p { font-size: 14px; line-height: 1.6; margin: 0; }
.pkg-tag {
  position: absolute; top: 20px; right: 20px; background: var(--green); color: #fff;
  font-size: 11px; font-weight: 800; letter-spacing: .6px; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px;
}
.pkg-items { display: flex; flex-direction: column; gap: 10px; margin: 8px 0 4px; }
.pkg-item { display: flex; align-items: center; gap: 10px; font-size: 13.5px; font-weight: 600; }
.pkg-tick {
  width: 18px; height: 18px; border-radius: 6px; display: flex; align-items: center;
  justify-content: center; font-size: 11px; font-weight: 800; flex: none;
}
.pkg-cta {
  text-decoration: none; margin-top: auto; font-weight: 800; font-size: 14.5px;
  padding: 14px; border-radius: 999px; text-align: center; transition: transform .15s ease;
}
.pkg-cta:hover { transform: translateY(-2px); }
.pkg-light { background: #fff; color: var(--ink); border: 1px solid var(--line); }
.pkg-light > p { color: var(--text-muted); }
.pkg-light .pkg-tick { background: var(--mint); color: var(--green-700); }
.pkg-light .pkg-cta { background: var(--ink); color: #fff; }
.pkg-dark { background: var(--ink); color: #fff; border: 1px solid var(--ink); }
.pkg-dark > p { color: #A9C6B8; }
.pkg-dark .pkg-tick { background: rgba(0,186,115,.2); color: var(--green); }
.pkg-dark .pkg-cta { background: var(--green); color: #fff; }

/* ============================================================
   SERVICE AREA
   ============================================================ */
.service-area { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad) clamp(56px,7vw,100px); }
.area-card {
  background: var(--green); border-radius: 28px; padding: clamp(28px,4vw,48px);
  position: relative; overflow: hidden; display: flex; flex-wrap: wrap;
  align-items: center; gap: 28px;
}
.area-card .blob-a { top: -60px; right: -60px; width: 220px; height: 220px; background: rgba(255,255,255,.1); }
.area-card .blob-b {
  bottom: -70px; left: 30%; width: 180px; height: 180px;
  border-radius: 0 999px 0 999px; background: rgba(255,255,255,.08); transform: rotate(45deg);
}
.area-copy { flex: 1 1 380px; position: relative; }
.area-tag {
  display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.18);
  border-radius: 999px; padding: 8px 16px; font-size: 12.5px; font-weight: 800; color: #fff;
  letter-spacing: .5px; text-transform: uppercase;
}
.area-tag .dot { width: 9px; height: 9px; border-radius: 50%; background: #fff; }
.area-card h2 {
  font-weight: 800; font-size: clamp(24px,3vw,34px); letter-spacing: -.6px;
  color: #fff; margin: 16px 0 0;
}
.area-card .area-copy p { font-size: 15px; color: #EAFBF3; line-height: 1.7; margin: 12px 0 0; max-width: 560px; }
.area-btn {
  position: relative; text-decoration: none; background: var(--ink); color: #fff;
  font-weight: 800; font-size: 15px; padding: 16px 28px; border-radius: 999px;
  flex: none; transition: transform .15s ease;
}
.area-btn:hover { transform: translateY(-2px); }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.gal-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%,260px),1fr));
  gap: 18px; margin-top: 44px;
}
.gal-item {
  border-radius: 20px; overflow: hidden; position: relative; aspect-ratio: 4/3;
  border: 1px solid var(--line); background: var(--mint-2);
  transition: transform .25s ease, box-shadow .25s ease;
}
.gal-item img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gal-item:hover { transform: scale(1.03); box-shadow: 0 18px 40px rgba(11,34,26,.14); }
.gal-item:hover img { transform: scale(1.06); }
.gal-label {
  position: absolute; bottom: 12px; left: 12px; background: var(--ink); color: #fff;
  font-size: 12px; font-weight: 700; padding: 7px 13px; border-radius: 999px; pointer-events: none;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.tst-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%,280px),1fr));
  gap: 20px; margin-top: 44px;
}
.tst-card {
  background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 28px;
  display: flex; flex-direction: column; gap: 16px;
  transition: transform .18s ease, box-shadow .18s ease;
}
.tst-card:hover { transform: translateY(-4px); box-shadow: 0 14px 32px rgba(11,34,26,.09); }
.tst-stars { color: var(--green); font-size: 16px; letter-spacing: 2px; }
.tst-card blockquote { font-size: 15px; color: var(--text-strong); line-height: 1.7; margin: 0; font-weight: 500; }
.tst-who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.tst-avatar {
  width: 42px; height: 42px; border-radius: 50%; background: var(--mint); color: var(--green-700);
  font-family: var(--sora); font-weight: 800; font-size: 15px;
  display: flex; align-items: center; justify-content: center; flex: none;
}
.tst-name { font-weight: 800; font-size: 14px; color: var(--ink); }
.tst-role { font-size: 12.5px; color: var(--text-muted); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  background: linear-gradient(180deg, #EAF7F0 0%, #F5FBF7 100%);
  border-top: 1px solid var(--line);
}
.contact-inner {
  max-width: var(--maxw); margin: 0 auto; padding: clamp(56px,7vw,100px) var(--pad);
  display: flex; flex-wrap: wrap; gap: clamp(30px,4vw,60px);
}
.contact-info { flex: 1 1 360px; min-width: min(100%, 300px); }
.contact-info > p { font-size: 15.5px; color: var(--text-muted); line-height: 1.7; margin: 16px 0 0; max-width: 440px; }
.contact-cards { display: flex; flex-direction: column; gap: 14px; margin-top: 30px; }
.contact-card {
  text-decoration: none; background: #fff; border: 1px solid var(--line-2); border-radius: 18px;
  padding: 18px 22px; display: flex; align-items: center; gap: 16px;
  transition: transform .15s ease, box-shadow .15s ease;
}
a.contact-card:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(11,34,26,.09); }
.contact-card .cc-ic {
  width: 46px; height: 46px; border-radius: 14px; display: flex; align-items: center;
  justify-content: center; font-weight: 800; flex: none;
}
.cc-phone { background: var(--ink); color: #fff; font-size: 13px; }
.cc-wa    { background: var(--green); color: #fff; font-size: 12px; }
.cc-loc   { background: var(--mint); color: var(--green-700); font-size: 17px; }
.contact-card .cc-k { font-size: 12.5px; font-weight: 700; color: var(--text-muted); display: block; }
.contact-card .cc-v { font-weight: 800; font-size: 17px; color: var(--ink); display: block; }
.quick-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.qa {
  text-decoration: none; font-weight: 800; font-size: 13.5px; padding: 12px 20px;
  border-radius: 999px; border: 1px solid; transition: transform .15s ease;
}
.qa:hover { transform: translateY(-2px); }
.qa-dark  { background: var(--ink);  color: #fff; border-color: var(--ink); }
.qa-green { background: var(--green); color: #fff; border-color: var(--green); }
.qa-light { background: #fff; color: var(--text-strong); border-color: var(--line-2); }

.contact-form {
  flex: 1 1 420px; min-width: min(100%, 300px); background: #fff;
  border: 1px solid var(--line-2); border-radius: 26px; padding: clamp(24px,3vw,36px);
  box-shadow: var(--shadow-soft); display: flex; flex-direction: column; gap: 16px;
}
.contact-form h3 { font-weight: 800; font-size: 20px; margin: 0; color: var(--ink); }
.form-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%,200px),1fr)); gap: 14px; }
.field { display: flex; flex-direction: column; gap: 7px; font-size: 13px; font-weight: 800; color: var(--text-strong); }
.field input, .field select, .field textarea {
  border: 1.5px solid var(--line-2); border-radius: 13px; padding: 14px 16px; font-size: 15px;
  font-family: var(--manrope); outline: none; background: #F9FDFB; color: var(--ink);
  transition: border-color .15s ease;
}
.field textarea { resize: vertical; min-height: 108px; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--green); }
.field input.invalid, .field select.invalid, .field textarea.invalid { border-color: #D96A6A; }
::placeholder { color: #9AB3A6; }
.form-msg { margin: 0; font-size: 13.5px; font-weight: 700; border-radius: 12px; padding: 12px 16px; }
.form-msg.error   { color: #C24040; background: #FDF0F0; border: 1px solid #F2D3D3; }
.form-msg.success { color: var(--green-700); background: var(--mint); border: 1px solid #C9EBDB; }
.form-submit {
  background: var(--green); color: #fff; border: none; font-family: var(--manrope);
  font-weight: 800; font-size: 16px; padding: 16px; border-radius: 999px; cursor: pointer;
  box-shadow: var(--shadow-btn); transition: transform .15s ease, box-shadow .15s ease;
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,186,115,.42); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--ink); color: #fff; }
.footer-top {
  max-width: var(--maxw); margin: 0 auto; padding: 56px var(--pad) 32px;
  display: flex; flex-wrap: wrap; gap: 40px; justify-content: space-between;
}
.footer-brand { flex: 1 1 280px; max-width: 380px; }
.footer-brand img { height: 46px; width: auto; }
.footer-brand p { font-size: 13.5px; color: #A9C6B8; line-height: 1.7; margin: 16px 0 0; }
.footer-col { flex: 0 1 auto; }
.footer-col h5 {
  font-size: 13px; letter-spacing: 1px; text-transform: uppercase; color: #7FCBA8;
  margin: 0 0 14px; font-weight: 700;
}
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a, .footer-col .footer-links span { text-decoration: none; color: #C7DED2; font-size: 14px; font-weight: 600; }
.footer-links a:hover { color: var(--green); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); }
.footer-bottom .fb-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 18px var(--pad);
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between;
  font-size: 12.5px; color: var(--foot-sub);
}

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.wa-float {
  position: fixed; bottom: 22px; right: 22px; z-index: 60; width: 60px; height: 60px;
  border-radius: 50%; background: var(--green); display: flex; align-items: center;
  justify-content: center; box-shadow: 0 10px 28px rgba(0,186,115,.45);
  text-decoration: none; transition: transform .18s ease;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 32px; height: 32px; }
.wa-float .wa-ping {
  position: absolute; top: 0; right: 0; width: 14px; height: 14px; border-radius: 50%;
  background: #fff; border: 3px solid var(--green);
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 859px) {
  .nav-links { display: none; }
  .menu-btn { display: flex; }
}
@media (max-width: 560px) {
  .hero-stats { gap: 18px; }
  .footer-top { gap: 28px; }
  .wa-float { bottom: 16px; right: 16px; width: 54px; height: 54px; }
  .wa-float svg { width: 28px; height: 28px; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

@keyframes dgFadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes dgFloat  { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.anim-fade   { animation: dgFadeUp .6s ease both; }
.anim-fade-d { animation: dgFadeUp .6s .15s ease both; }
@media (prefers-reduced-motion: reduce) {
  .anim-fade, .anim-fade-d { animation: none; }
}
