/* ==========================================================================
   Egptender.com — Stylesheet
   Direction: institutional trust. Deep procurement green + gold "seal" accent.
   Display: Fraunces (serif) · Body: Plus Jakarta Sans · Refs: Space Mono
   ========================================================================== */

:root {
  --green-900: #0c3b2e;
  --green-800: #0f4534;
  --green-700: #135640;
  --green-500: #167c5b;
  --green-300: #4fae8c;
  --gold: #cda349;
  --gold-dark: #b68a33;
  --gold-soft: #f3e7c7;
  --ink: #16201c;
  --muted: #5b6b63;
  --paper: #f4f6f3;
  --paper-2: #eef2ee;
  --line: #e2e7e2;
  --white: #ffffff;

  --radius: 14px;
  --radius-lg: 22px;
  --radius-sm: 9px;
  --shadow-sm: 0 1px 2px rgba(12, 59, 46, 0.06), 0 4px 14px rgba(12, 59, 46, 0.05);
  --shadow-md: 0 8px 30px rgba(12, 59, 46, 0.1);
  --shadow-lg: 0 24px 60px rgba(12, 59, 46, 0.16);

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  --font-mono: "Space Mono", ui-monospace, monospace;

  --container: 1160px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--green-900);
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 22px;
}

/* ----- Reusable bits ----- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--gold);
  display: inline-block;
}
.eyebrow--light {
  color: var(--gold);
}

.section {
  padding-block: clamp(58px, 8vw, 110px);
}
.section--paper {
  background: var(--paper);
}
.section--green {
  background: var(--green-900);
  color: #d9e6df;
}
.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}
.section-head.center {
  margin-inline: auto;
  text-align: center;
}
.section-title {
  font-size: clamp(1.85rem, 3.4vw, 2.85rem);
  margin-top: 14px;
}
.section--green .section-title {
  color: var(--white);
}
.section-sub {
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.05rem;
}
.section--green .section-sub {
  color: #b7cabf;
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.97rem;
  padding: 13px 24px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease,
    color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.btn:active {
  transform: translateY(1px);
}
.btn-gold {
  background: var(--gold);
  color: var(--green-900);
  box-shadow: 0 6px 18px rgba(205, 163, 73, 0.32);
}
.btn-gold:hover {
  background: var(--gold-dark);
  color: #fff;
  transform: translateY(-2px);
}
.btn-green {
  background: var(--green-900);
  color: #fff;
}
.btn-green:hover {
  background: var(--green-700);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--green-900);
  border-color: var(--green-900);
}
.btn-outline:hover {
  background: var(--green-900);
  color: #fff;
}
.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}
.btn-outline-light:hover {
  background: #fff;
  color: var(--green-900);
  border-color: #fff;
}
.btn-sm {
  padding: 10px 18px;
  font-size: 0.88rem;
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.25s ease;
}
.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.28rem;
  color: var(--green-900);
}
.brand-mark {
  display: inline-flex;
}
.brand-dot {
  color: var(--gold-dark);
}
.brand--light {
  color: #fff;
}
.brand--light .brand-dot {
  color: var(--gold);
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav a {
  font-weight: 500;
  font-size: 0.96rem;
  color: var(--ink);
  position: relative;
  padding-block: 6px;
  transition: color 0.18s ease;
}
.nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--gold);
  transition: width 0.22s ease;
}
.nav a:not(.btn):hover {
  color: var(--green-700);
}
.nav a:not(.btn):hover::after,
.nav a.is-active:not(.btn)::after {
  width: 100%;
}
.nav a.is-active:not(.btn) {
  color: var(--green-900);
}
.nav-cta {
  margin-left: 4px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
}
.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--green-900);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s 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;
  background: radial-gradient(
      120% 120% at 85% 0%,
      var(--green-700) 0%,
      var(--green-900) 55%
    );
  color: #fff;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(80% 80% at 70% 10%, #000 0%, transparent 75%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
  padding-block: clamp(60px, 9vw, 120px);
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.4rem, 5.2vw, 4rem);
  font-weight: 600;
  margin-top: 20px;
}
.hero h1 .mark {
  color: var(--gold);
  font-style: italic;
}
.hero-lead {
  margin-top: 22px;
  font-size: 1.12rem;
  color: #c8d9d0;
  max-width: 36ch;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}
.hero-assure {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.9rem;
  color: #aebfb5;
}
.hero-assure svg {
  flex: none;
  color: var(--gold);
}

/* Hero card: a "tender ticket" mock */
.hero-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  padding: 26px;
  backdrop-filter: blur(6px);
  box-shadow: var(--shadow-lg);
}
.ticket-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.22);
}
.ticket-ref {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 0.05em;
}
.ticket-badge {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: rgba(205, 163, 73, 0.18);
  color: var(--gold);
  padding: 5px 10px;
  border-radius: 999px;
}
.ticket-list {
  list-style: none;
  margin-top: 18px;
  display: grid;
  gap: 14px;
}
.ticket-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.96rem;
  color: #e3eee8;
}
.ticket-check {
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(205, 163, 73, 0.16);
  display: grid;
  place-items: center;
  color: var(--gold);
}
.ticket-foot {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px dashed rgba(255, 255, 255, 0.22);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: #9fb3a8;
}
.ticket-stamp {
  color: var(--gold);
  border: 1.5px solid var(--gold);
  border-radius: 8px;
  padding: 4px 9px;
  transform: rotate(-6deg);
  letter-spacing: 0.08em;
}

/* Trust strip */
.trust-strip {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.12);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding-block: 30px;
}
.trust-item {
  text-align: center;
}
.trust-value {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 700;
  color: var(--gold);
}
.trust-label {
  font-size: 0.82rem;
  color: #b7cabf;
  margin-top: 2px;
}

/* ==========================================================================
   Benefits
   ========================================================================== */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.benefit-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-300);
}
.benefit-num {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--gold-dark);
  letter-spacing: 0.1em;
}
.benefit-card h3 {
  font-size: 1.28rem;
  margin: 14px 0 10px;
}
.benefit-card p {
  color: var(--muted);
  font-size: 0.98rem;
}

/* ==========================================================================
   Services
   ========================================================================== */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-300);
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-ref {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--gold-dark);
}
.service-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--paper-2);
  display: grid;
  place-items: center;
  margin: 14px 0 16px;
  color: var(--green-700);
}
.service-card h3 {
  font-size: 1.24rem;
  margin-bottom: 10px;
}
.service-card p {
  color: var(--muted);
  font-size: 0.96rem;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--green-700);
}
.service-link svg {
  transition: transform 0.2s ease;
}
.service-card:hover .service-link svg {
  transform: translateX(4px);
}

/* Full services page card with long description */
.service-detail {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.service-detail:hover {
  border-color: var(--green-300);
  box-shadow: var(--shadow-md);
}
.service-detail .service-icon {
  margin: 0;
}
.service-detail h3 {
  font-size: 1.3rem;
  margin: 6px 0 10px;
}
.service-detail p {
  color: var(--muted);
}

/* ==========================================================================
   How it works (steps)
   ========================================================================== */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  counter-reset: step;
}
.step {
  position: relative;
  padding-top: 26px;
}
.step::before {
  content: "";
  position: absolute;
  top: 33px;
  left: 0;
  right: -22px;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--green-300) 0 8px,
    transparent 8px 16px
  );
  opacity: 0.5;
}
.step:last-child::before {
  display: none;
}
.step-num {
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--green-900);
  color: var(--gold);
  font-family: var(--font-mono);
  font-weight: 700;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.step h3 {
  font-size: 1.18rem;
  margin-bottom: 8px;
}
.step p {
  color: var(--muted);
  font-size: 0.95rem;
}
.section--green .step h3 {
  color: #fff;
}
.section--green .step p {
  color: #b7cabf;
}
.section--green .step-num {
  background: var(--gold);
  color: var(--green-900);
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.testi-quote-mark {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 0.6;
  color: var(--gold);
  height: 26px;
}
.testi-card p {
  font-size: 1.02rem;
  color: var(--ink);
  margin: 12px 0 22px;
  flex: 1;
}
.testi-who {
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.testi-name {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--green-900);
}
.testi-role {
  font-size: 0.85rem;
  color: var(--muted);
}

/* ==========================================================================
   Split / About preview
   ========================================================================== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3.4;
}
.split-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: rgba(12, 59, 46, 0.92);
  color: #fff;
  border-radius: var(--radius);
  padding: 16px 20px;
  backdrop-filter: blur(4px);
}
.split-badge .num {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--gold);
}
.split-badge .lbl {
  font-size: 0.8rem;
  color: #c8d9d0;
}
.split-body p {
  color: var(--muted);
  margin-top: 16px;
  font-size: 1.04rem;
}
.check-list {
  list-style: none;
  margin: 22px 0 0;
  display: grid;
  gap: 12px;
}
.check-list li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: 1rem;
}
.check-list li svg {
  flex: none;
  margin-top: 3px;
  color: var(--green-500);
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq {
  max-width: 800px;
  margin-inline: auto;
}
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  margin-bottom: 14px;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.faq-item.open {
  border-color: var(--green-300);
  box-shadow: var(--shadow-sm);
}
.faq-q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 20px 24px;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--green-900);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-icon {
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--paper-2);
  display: grid;
  place-items: center;
  color: var(--green-700);
  transition: transform 0.25s ease, background 0.2s ease;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--gold);
  color: var(--green-900);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-a p {
  padding: 0 24px 22px;
  color: var(--muted);
}

/* ==========================================================================
   Listings
   ========================================================================== */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}
.filter-btn {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  transition: all 0.18s ease;
}
.filter-btn:hover {
  border-color: var(--green-500);
}
.filter-btn.active {
  background: var(--green-900);
  border-color: var(--green-900);
  color: #fff;
}
.listing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.listing-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}
.listing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.listing-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.listing-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.listing-card:hover .listing-media img {
  transform: scale(1.06);
}
.listing-cat {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: rgba(12, 59, 46, 0.92);
  color: var(--gold);
  padding: 5px 11px;
  border-radius: 999px;
}
.listing-status {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 5px 11px;
  border-radius: 999px;
  background: var(--white);
}
.listing-status.awarded {
  color: var(--green-700);
  background: #dff0e7;
}
.listing-status.submitted {
  color: var(--gold-dark);
  background: var(--gold-soft);
}
.listing-body {
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.listing-ref {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}
.listing-body h3 {
  font-size: 1.12rem;
  margin: 8px 0 16px;
}
.listing-cta {
  margin-top: auto;
}
.listing-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--muted);
  padding: 50px 0;
}

/* ==========================================================================
   Contact
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-md);
}
.form-row {
  margin-bottom: 18px;
}
.form-row label {
  display: block;
  font-size: 0.86rem;
  font-weight: 600;
  margin-bottom: 7px;
  color: var(--green-900);
}
.form-row label .req {
  color: var(--gold-dark);
}
.form-row input,
.form-row textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: var(--ink);
  padding: 13px 15px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--paper);
  transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}
.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--green-500);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(22, 124, 91, 0.1);
}
.form-row textarea {
  resize: vertical;
  min-height: 130px;
}
.form-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 18px;
}
.form-alert {
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  margin-bottom: 18px;
}
.form-alert.ok {
  background: #dff0e7;
  color: var(--green-700);
  border: 1px solid #bfe0cf;
}
.form-alert.err {
  background: #fde8e4;
  color: #a3402c;
  border: 1px solid #f5cabf;
}

.contact-info {
  display: grid;
  gap: 16px;
}
.info-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}
.info-icon {
  flex: none;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--green-900);
  color: var(--gold);
  display: grid;
  place-items: center;
}
.info-card h3 {
  font-size: 1.05rem;
  margin-bottom: 3px;
}
.info-card a,
.info-card p {
  color: var(--muted);
  font-size: 0.98rem;
}
.info-card a:hover {
  color: var(--green-700);
}
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  margin-top: 4px;
}
.map-wrap iframe {
  width: 100%;
  height: 240px;
  border: 0;
  display: block;
}

/* ==========================================================================
   Page hero (inner pages)
   ========================================================================== */
.page-hero {
  background: radial-gradient(120% 140% at 90% -10%, var(--green-700), var(--green-900));
  color: #fff;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(70% 90% at 80% 0%, #000, transparent 75%);
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  padding-block: clamp(56px, 8vw, 96px);
  max-width: 720px;
}
.page-hero h1 {
  color: #fff;
  font-size: clamp(2.2rem, 4.6vw, 3.5rem);
  margin-top: 16px;
}
.page-hero p {
  color: #c8d9d0;
  margin-top: 18px;
  font-size: 1.1rem;
}
.crumb {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  color: var(--gold);
}
.crumb a {
  opacity: 0.8;
}
.crumb a:hover {
  opacity: 1;
}

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band {
  background: linear-gradient(120deg, var(--green-900), var(--green-700));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(36px, 6vw, 64px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(205, 163, 73, 0.28), transparent 70%);
  top: -90px;
  right: -60px;
}
.cta-band h2 {
  color: #fff;
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  position: relative;
}
.cta-band p {
  color: #c8d9d0;
  margin-top: 14px;
  max-width: 52ch;
  margin-inline: auto;
  position: relative;
}
.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 28px;
  position: relative;
}

/* ==========================================================================
   Floating WhatsApp
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s ease;
}
.whatsapp-float:hover {
  transform: scale(1.08);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--green-900);
  color: #b7cabf;
  padding-top: 64px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-tagline {
  margin-top: 16px;
  font-size: 0.95rem;
  max-width: 34ch;
  color: #9fb3a8;
}
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  color: #d9e6df;
  transition: background 0.2s ease, color 0.2s ease;
}
.footer-social a:hover {
  background: var(--gold);
  color: var(--green-900);
}
.footer-col h3 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 16px;
}
.footer-col ul {
  list-style: none;
  display: grid;
  gap: 10px;
}
.footer-col a {
  color: #9fb3a8;
  font-size: 0.94rem;
  transition: color 0.18s ease;
}
.footer-col a:hover {
  color: var(--gold);
}
.footer-contact li {
  margin-bottom: 12px;
}
.footer-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green-300);
  margin-bottom: 2px;
}
.footer-contact a {
  color: #e3eee8;
  font-size: 1rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-block: 22px;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-size: 0.82rem;
  color: #84988c;
}

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

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-card {
    max-width: 460px;
  }
  .split {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .step::before {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .nav {
    position: fixed;
    inset: 72px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    padding: 10px 22px 24px;
    transform: translateY(-130%);
    transition: transform 0.3s ease;
    visibility: hidden;
  }
  .nav.open {
    transform: translateY(0);
    visibility: visible;
  }
  .nav a:not(.btn) {
    padding: 14px 4px;
    border-bottom: 1px solid var(--line);
  }
  .nav a:not(.btn)::after {
    display: none;
  }
  .nav-cta {
    margin-top: 14px;
    margin-left: 0;
  }
  .menu-toggle {
    display: flex;
  }
  .benefit-grid,
  .service-grid,
  .testi-grid,
  .listing-grid {
    grid-template-columns: 1fr;
  }
  .service-detail {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
  .hero h1 {
    font-size: clamp(2.1rem, 9vw, 3rem);
  }
}

@media (max-width: 460px) {
  .steps {
    grid-template-columns: 1fr;
  }
  .cta-actions {
    flex-direction: column;
  }
  .cta-actions .btn {
    width: 100%;
  }
}

/* Accessibility */
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  border-radius: 4px;
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
