/* ═══════════════════════════════════════════════════
   PRIMEVA GROUP — style.css
   Shared across every page
═══════════════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  --navy:      #04080F;
  --navy-2:    #06101C;
  --navy-3:    #091728;
  --gold:      #C9A84C;
  --gold-lt:   #DDB95E;
  --gold-dim:  rgba(201,168,76,0.12);
  --white:     #F5F0E8;
  --muted:     rgba(245,240,232,0.52);
  --muted-2:   rgba(245,240,232,0.24);
  --border:    rgba(201,168,76,0.1);
  --green:     #25D366;
  --ease:      cubic-bezier(0.16, 1, 0.3, 1);
  --radius:    2px;
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--navy);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a  { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul  { list-style: none; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; }

/* ── LAYOUT ── */
.wrap { max-width: 1160px; margin: 0 auto; padding: 0 40px; }
@media (max-width: 600px) { .wrap { padding: 0 20px; } }

/* ══════════════════════════════════════════════════
   NAV
══════════════════════════════════════════════════ */
#nav {
  position: fixed; top: 0; left: 0; width: 100%;
  z-index: 200;
  background: rgba(4,8,15,0.97);
  backdrop-filter: blur(18px) saturate(1.5);
  -webkit-backdrop-filter: blur(18px) saturate(1.5);
  border-bottom: 1px solid var(--border);
}
.nav-wrap {
  max-width: 1160px; margin: 0 auto; padding: 0 40px;
  height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px;
}
/* Logo */
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo img { height: 38px; width: auto; display: block; }
.nav-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 600;
  letter-spacing: 4px; color: var(--gold);
  text-transform: uppercase; display: none;
}
/* Center links */
.nav-links {
  display: flex; align-items: center; gap: 6px;
  flex: 1; justify-content: center;
}
.nav-link {
  font-size: 0.72rem; font-weight: 400;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--muted);
  padding: 8px 16px;
  border-radius: var(--radius);
  transition: color 0.25s, background 0.25s;
  white-space: nowrap;
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,0.04); }
.nav-link.active { color: var(--gold); }

/* Right actions */
.nav-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.nav-icon-btn {
  width: 38px; height: 38px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); transition: color 0.25s, border-color 0.25s, background 0.25s;
}
.nav-icon-btn:hover { color: var(--gold); border-color: rgba(201,168,76,0.35); background: rgba(201,168,76,0.05); }
.nav-icon-btn.wa:hover { color: var(--green); border-color: rgba(37,211,102,0.35); background: rgba(37,211,102,0.05); }

/* Hamburger */
.hamburger {
  display: none;
  width: 38px; height: 38px;
  background: transparent; border: 1px solid var(--border);
  border-radius: var(--radius);
  flex-direction: column; align-items: center; justify-content: center;
  gap: 5px; cursor: pointer; flex-shrink: 0;
  transition: border-color 0.25s;
}
.hamburger:hover { border-color: rgba(201,168,76,0.35); }
.ham-line {
  width: 18px; height: 1px; background: var(--muted);
  transition: all 0.3s var(--ease);
  transform-origin: center;
}
.hamburger.open .ham-line:nth-child(1) { transform: translateY(6px) rotate(45deg); background: var(--gold); }
.hamburger.open .ham-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open .ham-line:nth-child(3) { transform: translateY(-6px) rotate(-45deg); background: var(--gold); }

/* Mobile drawer */
.mobile-menu {
  display: none;
  position: fixed; top: 68px; left: 0; right: 0;
  background: rgba(4,8,15,0.99);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  padding: 16px 20px 24px;
  z-index: 199;
  flex-direction: column; gap: 2px;
}
.mobile-menu.open { display: flex; }
.mob-link {
  font-size: 0.85rem; font-weight: 400;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--muted); padding: 14px 16px;
  border-radius: var(--radius);
  transition: color 0.25s, background 0.25s;
  display: flex; align-items: center; justify-content: space-between;
}
.mob-link:hover { color: var(--white); background: rgba(255,255,255,0.04); }
.mob-link.active { color: var(--gold); }
.mob-divider { height: 1px; background: var(--border); margin: 8px 0; }
.mob-actions { display: flex; gap: 8px; margin-top: 8px; padding: 0 16px; }
.mob-action-btn {
  flex: 1; padding: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.7rem; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--muted); text-align: center;
  transition: color 0.25s, border-color 0.25s, background 0.25s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.mob-action-btn:hover { color: var(--gold); border-color: rgba(201,168,76,0.35); }
.mob-action-btn.wa:hover { color: var(--green); border-color: rgba(37,211,102,0.35); }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-wrap { padding: 0 20px; }
}

/* ══════════════════════════════════════════════════
   FLOATING WHATSAPP BUTTON
══════════════════════════════════════════════════ */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 150;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--green);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.wa-float:hover { transform: scale(1.08) translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,0.45); }
@media (max-width: 480px) { .wa-float { bottom: 20px; right: 20px; width: 46px; height: 46px; } }

/* ══════════════════════════════════════════════════
   TYPOGRAPHY SHARED
══════════════════════════════════════════════════ */
.display {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300; line-height: 1.08; letter-spacing: -0.5px;
}
.display em { font-style: italic; color: var(--gold); }
.label {
  font-size: 0.62rem; letter-spacing: 5px;
  text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 14px;
}
.label::before {
  content: ''; display: inline-block;
  width: 28px; height: 1px; background: var(--gold); flex-shrink: 0;
}
.label.center { justify-content: center; }
.label.center::before { display: none; }

/* ══════════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 15px 36px; border: none; cursor: pointer;
  transition: transform 0.3s var(--ease), background 0.3s, color 0.3s, border-color 0.3s;
  border-radius: var(--radius);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-lt); }
.btn-outline { background: transparent; color: var(--gold); border: 1px solid rgba(201,168,76,0.4); }
.btn-outline:hover { background: rgba(201,168,76,0.07); border-color: var(--gold); }
.btn-ghost { background: transparent; color: var(--muted); padding-left: 0; padding-right: 0; }
.btn-ghost:hover { color: var(--white); transform: none; }
.btn-wa-full {
  background: var(--green); color: #fff;
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 15px 36px; border-radius: var(--radius);
  transition: background 0.3s, transform 0.3s var(--ease);
}
.btn-wa-full:hover { background: #1ebe58; transform: translateY(-2px); }

/* Arrow icon in buttons */
.btn-arrow {
  display: inline-flex; transition: transform 0.3s var(--ease);
}
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ══════════════════════════════════════════════════
   PAGE STRUCTURE
══════════════════════════════════════════════════ */
.page-top { padding-top: 68px; } /* clears fixed nav */

/* Inner page header */
.page-header {
  padding: 80px 0 72px;
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.page-header .label { margin-bottom: 16px; }
.page-header h1 { font-size: clamp(2.4rem, 4vw, 3.8rem); }
.page-header p {
  color: var(--muted); font-size: 1rem; line-height: 1.8;
  max-width: 520px; margin: 20px auto 0;
}

/* Sections */
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-title { font-size: clamp(2rem, 3.5vw, 3.2rem); margin-bottom: 16px; }
.section-sub { color: var(--muted); font-size: 0.95rem; line-height: 1.8; }

/* Section header with label */
.s-head { margin-bottom: 64px; }
.s-head .label { margin-bottom: 16px; }
.s-head.center { text-align: center; }

/* ══════════════════════════════════════════════════
   CARDS
══════════════════════════════════════════════════ */
/* Service cards */
.service-cards {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.s-card {
  background: var(--navy-2);
  padding: 48px 40px;
  display: flex; flex-direction: column;
  justify-content: space-between;
  min-height: 340px;
  position: relative; overflow: hidden;
  transition: background 0.4s;
}
.s-card:hover { background: var(--navy-3); }
.s-card::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--gold);
  transition: width 0.5s var(--ease);
}
.s-card:hover::after { width: 100%; }
.s-card.featured { border-left: 2px solid var(--gold); }
.s-card-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.5rem; font-weight: 300;
  color: rgba(201,168,76,0.06); line-height: 1;
  margin-bottom: 16px; display: block;
  transition: color 0.4s;
}
.s-card:hover .s-card-num { color: rgba(201,168,76,0.1); }
.s-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem; font-weight: 400;
  line-height: 1.2; margin-bottom: 14px;
}
.s-card h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem; font-weight: 400;
  line-height: 1.2; margin-bottom: 14px;
}
.s-card p { font-size: 0.86rem; color: var(--muted); line-height: 1.75; flex-grow: 1; margin-bottom: 32px; }
.s-card-link {
  font-size: 0.66rem; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold); display: inline-flex; align-items: center; gap: 10px;
  transition: gap 0.35s var(--ease);
}
.s-card:hover .s-card-link { gap: 16px; }

/* Info / stat cards */
.info-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border);
}
.info-card {
  background: var(--navy-2); padding: 40px 36px;
  transition: background 0.4s;
}
.info-card:hover { background: var(--navy-3); }
.info-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem; font-weight: 300; color: var(--gold);
  line-height: 1; display: block; margin-bottom: 8px;
}
.info-label {
  font-size: 0.66rem; letter-spacing: 2px;
  text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 6px;
}
.info-desc { font-size: 0.82rem; color: var(--muted-2); line-height: 1.65; }

/* Step cards (how we work) */
.steps-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border);
}
.step-card {
  background: var(--navy-2); padding: 44px 36px;
  position: relative; overflow: hidden;
  transition: background 0.4s;
}
.step-card:hover { background: var(--navy-3); }
.step-card::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--gold);
  transition: width 0.5s var(--ease);
}
.step-card:hover::after { width: 100%; }
.step-num {
  font-size: 0.62rem; font-weight: 600; letter-spacing: 3px;
  color: var(--gold); display: block; margin-bottom: 20px;
}
.step-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 400; margin-bottom: 12px;
}
.step-card p { font-size: 0.82rem; color: var(--muted); line-height: 1.75; }
.step-bg {
  position: absolute; bottom: 6px; right: 12px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 6rem; font-weight: 600;
  color: rgba(201,168,76,0.03); line-height: 1; pointer-events: none;
}

/* ══════════════════════════════════════════════════
   CONTACT CHANNELS
══════════════════════════════════════════════════ */
.channels { display: flex; flex-direction: column; gap: 10px; }
.ch {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 20px;
  border: 1px solid rgba(201,168,76,0.12);
  background: rgba(201,168,76,0.03);
  border-radius: var(--radius);
  transition: border-color 0.25s, background 0.25s;
}
.ch:hover { border-color: rgba(201,168,76,0.4); background: rgba(201,168,76,0.07); }
.ch.wa { border-color: rgba(37,211,102,0.15); background: rgba(37,211,102,0.03); }
.ch.wa:hover { border-color: rgba(37,211,102,0.45); background: rgba(37,211,102,0.08); }
.ch-ico {
  width: 38px; height: 38px; flex-shrink: 0;
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
}
.ch.wa .ch-ico { border-color: rgba(37,211,102,0.3); }
.ch-info { flex: 1; min-width: 0; }
.ch-type {
  font-size: 0.56rem; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold);
  display: block; margin-bottom: 2px;
}
.ch.wa .ch-type { color: var(--green); }
.ch-val { font-size: 0.88rem; color: var(--white); display: block; }
.ch-pill {
  font-size: 0.58rem; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid rgba(201,168,76,0.28);
  color: var(--gold); white-space: nowrap; flex-shrink: 0;
  border-radius: var(--radius);
}
.ch.wa .ch-pill { border-color: rgba(37,211,102,0.3); color: var(--green); }

/* ══════════════════════════════════════════════════
   FORM
══════════════════════════════════════════════════ */
.form-grid { display: flex; flex-direction: column; gap: 0; }
.form-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: rgba(201,168,76,0.06);
  margin-bottom: 1px;
}
.form-row.full { grid-template-columns: 1fr; }
.fld {
  background: var(--navy-2); padding: 18px 20px 16px;
  transition: background 0.3s; position: relative;
}
.fld:focus-within { background: var(--navy-3); }
.fld::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; height: 1px; width: 0;
  background: var(--gold);
  transition: width 0.4s var(--ease);
}
.fld:focus-within::after { width: 100%; }
.fld label {
  display: block; font-size: 0.56rem; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 7px;
}
.fld input, .fld select, .fld textarea {
  width: 100%; background: transparent;
  border: none; outline: none;
  color: var(--white); font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem; font-weight: 300; caret-color: var(--gold);
}
.fld input::placeholder, .fld textarea::placeholder { color: var(--muted-2); }
.fld select { cursor: pointer; -webkit-appearance: none; }
.fld select option { background: var(--navy-3); color: var(--white); }
.fld textarea { resize: none; height: 90px; line-height: 1.6; }
.fld .sel-arr {
  position: absolute; right: 18px; top: 50%;
  transform: translateY(-50%);
  color: rgba(201,168,76,0.4); font-size: 0.7rem; pointer-events: none;
}

/* Checkboxes */
.cks-wrap { background: var(--navy-2); padding: 18px 20px; margin-bottom: 1px; }
.cks-label {
  font-size: 0.56rem; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold);
  display: block; margin-bottom: 12px;
}
.cks-row { display: flex; flex-wrap: wrap; gap: 8px; }
.cks-row input[type="checkbox"] { display: none; }
.cks-row label {
  font-size: 0.74rem; color: var(--muted); padding: 7px 14px;
  border: 1px solid rgba(201,168,76,0.14); cursor: pointer;
  border-radius: var(--radius); transition: all 0.2s;
}
.cks-row input:checked + label {
  border-color: var(--gold); color: var(--white);
  background: rgba(201,168,76,0.08);
}
.cks-row label:hover { border-color: rgba(201,168,76,0.35); color: var(--white); }

/* Submit row */
.sub-row {
  background: var(--navy-2); padding: 26px 20px;
  display: flex; align-items: center;
  justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.sub-note { font-size: 0.74rem; color: var(--muted-2); line-height: 1.65; max-width: 220px; }
.sub-note b { color: var(--muted); font-weight: 400; }

/* ══════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════ */
footer {
  background: var(--navy-2);
  border-top: 1px solid var(--border);
  padding: 72px 0 40px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 52px; margin-bottom: 60px;
}
.footer-brand img { height: 34px; margin-bottom: 18px; }
.footer-brand-txt {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-weight: 600;
  letter-spacing: 4px; color: var(--gold);
  text-transform: uppercase; display: none; margin-bottom: 16px;
}
.footer-tagline { font-size: 0.85rem; color: var(--muted); line-height: 1.75; max-width: 240px; }
.footer-col h5 {
  font-size: 0.6rem; letter-spacing: 3.5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}
.footer-col a {
  display: block; font-size: 0.84rem; color: var(--muted);
  margin-bottom: 12px; transition: color 0.25s, padding-left 0.25s;
}
.footer-col a:hover { color: var(--white); padding-left: 4px; }
.footer-social { display: flex; gap: 8px; margin-top: 20px; }
.footer-social-btn {
  width: 36px; height: 36px;
  border: 1px solid var(--border); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted-2); transition: color 0.25s, border-color 0.25s, background 0.25s;
}
.footer-social-btn:hover { color: var(--gold); border-color: rgba(201,168,76,0.35); background: rgba(201,168,76,0.05); }
.footer-social-btn.wa:hover { color: var(--green); border-color: rgba(37,211,102,0.35); background: rgba(37,211,102,0.05); }
.footer-bottom {
  padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.05);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 0.74rem; color: var(--muted-2); }
.footer-loc { font-size: 0.66rem; letter-spacing: 2.5px; text-transform: uppercase; color: var(--muted-2); }

/* ══════════════════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════════════════ */
.sr {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.sr.sr-left  { transform: translateX(-28px); }
.sr.sr-right { transform: translateX(28px); }
.sr.in       { opacity: 1; transform: none; }
.sr-d1 { transition-delay: 0.1s; }
.sr-d2 { transition-delay: 0.2s; }
.sr-d3 { transition-delay: 0.3s; }
.sr-d4 { transition-delay: 0.4s; }

/* ══════════════════════════════════════════════════
   AVAILABILITY DOT
══════════════════════════════════════════════════ */
.avail {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.7rem; color: var(--muted-2);
}
.avail-dot {
  width: 7px; height: 7px; background: var(--green);
  border-radius: 50%; flex-shrink: 0;
  animation: dotpulse 2.5s infinite;
}
@keyframes dotpulse {
  0%,100% { opacity:1; box-shadow:0 0 0 0 rgba(37,211,102,0.4); }
  50%      { opacity:.6; box-shadow:0 0 0 5px rgba(37,211,102,0); }
}

/* ══════════════════════════════════════════════════
   UTILITIES
══════════════════════════════════════════════════ */
.gold  { color: var(--gold); }
.muted { color: var(--muted); }
.text-center { text-align: center; }
.divider-v {
  width: 1px; height: 64px;
  background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.25), transparent);
  margin: 0 auto;
}
.gold-line { width: 100%; height: 1px; background: linear-gradient(to right, transparent, rgba(201,168,76,0.18), transparent); }

/* Inline italic gold */
em { font-style: italic; color: var(--gold); }

/* ══════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════ */
@media (max-width: 960px) {
  .service-cards { grid-template-columns: 1fr; }
  .info-grid      { grid-template-columns: 1fr 1fr; }
  .steps-grid     { grid-template-columns: 1fr 1fr; }
  .footer-grid    { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 680px) {
  .section { padding: 72px 0; }
  .section-sm { padding: 48px 0; }
  .info-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
  .sub-row { flex-direction: column; }
  .page-header { padding: 60px 0 52px; }
  .page-header h1 { font-size: 2.2rem; }
}
@media (max-width: 480px) {
  .btn { padding: 13px 28px; font-size: 0.68rem; }
}
