/* =====================================================
   MOHAMMED JEMAL MOHAMMED FOREIGN EMPLOYMENT AGENCY
   BRIGHT LIGHT + GREEN THEME
   ===================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:     #16a34a;
  --green-lt:  #22c55e;
  --green-dk:  #0d5c2e;
  --green-glow:rgba(22,163,74,.2);
  --accent:    #15803d;
  --bg:        #f0fdf4;
  --bg2:       #dcfce7;
  --bg3:       #ffffff;
  --bg4:       #f8fafc;
  --gray:      #4b7a5e;
  --text:      #0f2d1a;
  --text-lt:   #2d5a3d;
  --light:     #bbf7d0;
  --white:     #ffffff;
  --radius:    12px;
  --shadow:    0 4px 24px rgba(22,163,74,.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- TYPOGRAPHY ---- */
h1 { font-size: clamp(2rem, 5vw, 3.6rem); font-weight: 900; line-height: 1.1; color: var(--text); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); font-weight: 800; color: var(--text); }
h3 { font-size: 1.1rem; font-weight: 700; color: var(--text); }

.section-eyebrow {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: .5rem;
}

.section-sub {
  color: var(--gray);
  font-size: .95rem;
  max-width: 560px;
  margin: .5rem 0 2.5rem;
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  font-weight: 700;
  font-size: .9rem;
  padding: .7rem 1.5rem;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 18px var(--green-glow);
  transition: background .2s, transform .15s, box-shadow .2s;
}
.btn-primary:hover {
  background: var(--green-lt);
  transform: translateY(-2px);
  box-shadow: 0 0 28px rgba(22,163,74,.35);
}

.btn-outline {
  display: inline-block;
  border: 2px solid rgba(255,255,255,.8);
  color: var(--white);
  font-weight: 700;
  font-size: .9rem;
  padding: .65rem 1.4rem;
  border-radius: 6px;
  transition: background .2s, border-color .2s, color .2s;
}
.btn-outline:hover { background: rgba(255,255,255,.15); border-color: var(--white); }

.btn-ghost {
  display: inline-block;
  color: rgba(255,255,255,.85);
  font-weight: 600;
  font-size: .9rem;
  padding: .65rem 1.2rem;
  border-radius: 6px;
  transition: color .2s;
}
.btn-ghost:hover { color: #bbf7d0; }

.btn-large { font-size: 1rem; padding: .9rem 2rem; width: 100%; }

.btn-white {
  display: inline-block;
  background: var(--white);
  color: var(--green-dk);
  font-weight: 700;
  padding: .75rem 1.6rem;
  border-radius: 6px;
  transition: background .2s;
}
.btn-white:hover { background: var(--light); }

.btn-outline-white {
  display: inline-block;
  border: 2px solid rgba(255,255,255,.8);
  color: var(--white);
  font-weight: 700;
  padding: .7rem 1.6rem;
  border-radius: 6px;
  transition: background .2s, border-color .2s;
}
.btn-outline-white:hover { background: rgba(255,255,255,.15); border-color: var(--white); }

/* ---- TOP BANNER ---- */
.top-banner {
  background: linear-gradient(90deg, var(--green-dk) 0%, var(--green) 100%);
  color: var(--white);
  text-align: center;
  font-size: .8rem;
  font-weight: 600;
  padding: .5rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.top-banner a { color: var(--white); font-weight: 700; }
.btn-banner {
  background: var(--white);
  color: var(--green-dk) !important;
  padding: .25rem .85rem;
  border-radius: 4px;
  font-size: .78rem;
  font-weight: 800;
}

/* ---- NAVBAR ---- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(22,163,74,.2);
  box-shadow: 0 2px 12px rgba(22,163,74,.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 68px;
}

/* Logo */
.logo-wrap {
  display: flex;
  align-items: center;
  gap: .65rem;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo {
  height: 46px;
  width: 46px;
  object-fit: contain;
  border-radius: 8px;
  border: 1px solid rgba(22,163,74,.3);
  background: var(--bg2);
}
.logo-text {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--text);
  letter-spacing: .02em;
  white-space: nowrap;
  line-height: 1.2;
}
.logo-sub {
  color: var(--green);
  font-weight: 600;
}

/* Legacy .logo fallback (footer) */
.logo {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--text);
  letter-spacing: .02em;
  white-space: nowrap;
}
.logo span { color: var(--green); font-weight: 600; }

.nav-links {
  display: flex;
  gap: 1.6rem;
  margin-left: auto;
}
.nav-links a {
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-lt);
  transition: color .2s;
}
.nav-links a:hover { color: var(--green); }

.nav-cta { margin-left: 1rem; }

.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
  margin-left: auto;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 1rem 1.5rem 1.5rem;
  gap: .75rem;
  background: var(--white);
  border-top: 1px solid rgba(22,163,74,.15);
}
.mobile-menu a { font-size: .95rem; font-weight: 500; color: var(--text); }
.mobile-menu.open { display: flex; }

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Background photo */
.hero-bg-img {
  position: absolute;
  inset: 0;
  background: url('Assets/Addis.jpg') center center / cover no-repeat;
  z-index: 0;
}

/* Dark green tint overlay so text stays readable */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(5,30,15,.93) 0%, rgba(13,92,46,.82) 60%, rgba(5,30,15,.90) 100%);
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 80px 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.4);
  color: #bbf7d0;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  padding: .45rem 1.1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.hero-content h1 { margin-bottom: 1.2rem; color: var(--white); }
.hero-content h1 span {
  background: linear-gradient(90deg, #86efac, #bbf7d0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,.85);
  max-width: 580px;
  margin-bottom: 2rem;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}
.hero-badges-row span {
  font-size: .72rem;
  font-weight: 600;
  color: rgba(255,255,255,.65);
  letter-spacing: .08em;
}

.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  font-size: .72rem;
  letter-spacing: .2em;
  color: rgba(255,255,255,.5);
  animation: bounce 2s infinite;
  z-index: 3;
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(6px); }
}

/* ---- STATS ---- */
.stats {
  background: var(--bg3);
  padding: 80px 0;
  text-align: center;
  border-top: 1px solid rgba(22,163,74,.15);
  border-bottom: 1px solid rgba(22,163,74,.15);
}
.stats h2 { margin-bottom: .4rem; }

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.stat-card {
  background: var(--bg);
  border: 1px solid rgba(22,163,74,.22);
  border-radius: var(--radius);
  padding: 2rem 2.5rem;
  min-width: 170px;
  flex: 1;
  max-width: 210px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(22,163,74,.08);
}
.stat-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(22,163,74,.05) 0%, transparent 60%);
  pointer-events: none;
}

.stat-num {
  font-size: 2.8rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--green), var(--green-lt));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-unit {
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--green), var(--green-lt));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-card p { font-size: .95rem; font-weight: 600; margin-top: .5rem; color: var(--text); }
.stat-card small { font-size: .72rem; color: var(--gray); letter-spacing: .1em; }

/* ---- SERVICES ---- */
.services {
  padding: 90px 0;
  background: var(--bg);
}
.services h2 { margin-bottom: .3rem; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid rgba(22,163,74,.18);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .25s, transform .25s, box-shadow .25s;
  box-shadow: 0 2px 10px rgba(22,163,74,.06);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  border-color: var(--green);
  transform: translateY(-5px);
  box-shadow: 0 8px 32px rgba(22,163,74,.18);
}

.service-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.service-body {
  padding: 1.5rem 2rem 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-icon { font-size: 2rem; margin-bottom: .6rem; }
.service-card h3 { margin-bottom: .5rem; }
.service-card p { color: var(--gray); font-size: .9rem; margin-bottom: 1rem; flex: 1; }
.service-card a { color: var(--green); font-weight: 600; font-size: .88rem; }
.service-card a:hover { text-decoration: underline; }

/* ---- HOW IT WORKS ---- */
.how-it-works {
  padding: 90px 0;
  background: var(--bg2);
}
.how-it-works h2 { margin-bottom: .3rem; }

.steps-grid {
  display: flex;
  align-items: stretch;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2.5rem;
}

.step-card {
  background: var(--white);
  border: 1px solid rgba(22,163,74,.18);
  border-radius: var(--radius);
  padding: 2rem;
  flex: 1;
  min-width: 200px;
  max-width: 240px;
  text-align: center;
  transition: border-color .25s, box-shadow .25s;
  box-shadow: 0 2px 10px rgba(22,163,74,.06);
}
.step-card:hover {
  border-color: var(--green);
  box-shadow: 0 6px 24px rgba(22,163,74,.16);
}
.step-icon { font-size: 2.2rem; margin-bottom: .75rem; }
.step-label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .15em;
  color: var(--green);
  margin-bottom: .5rem;
}
.step-card h3 { margin-bottom: .5rem; }
.step-card p { color: var(--gray); font-size: .88rem; }

.step-arrow {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  color: var(--green);
  padding: 0 .5rem;
  align-self: center;
}

/* ---- WHY US ---- */
.why-us {
  padding: 90px 0;
  background: var(--bg3);
}
.why-us h2 { margin-bottom: 2rem; }

.why-grid { display: flex; flex-direction: column; gap: 1rem; }
.why-row { display: flex; flex-wrap: wrap; gap: 1rem; }

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--bg);
  border: 1px solid rgba(22,163,74,.15);
  border-radius: var(--radius);
  padding: 1.2rem 1.5rem;
  flex: 1;
  min-width: 260px;
  transition: border-color .2s, box-shadow .2s;
}
.why-item:hover { border-color: var(--green); box-shadow: 0 4px 16px rgba(22,163,74,.12); }
.why-check { font-size: 1.5rem; flex-shrink: 0; }
.why-item strong { display: block; font-size: .95rem; margin-bottom: .2rem; color: var(--text); }
.why-item > div { font-size: .85rem; color: var(--gray); }

/* ---- JOBS ---- */
.jobs {
  padding: 90px 0;
  background: var(--bg2);
}
.jobs h2 { margin-bottom: .3rem; }

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.job-card {
  background: var(--white);
  border: 1px solid rgba(22,163,74,.18);
  border-radius: var(--radius);
  padding: 1.5rem;
  position: relative;
  transition: border-color .25s, transform .25s, box-shadow .25s;
  box-shadow: 0 2px 10px rgba(22,163,74,.06);
}
.job-card:hover {
  border-color: var(--green);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(22,163,74,.16);
}

.job-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  background: rgba(22,163,74,.1);
  color: var(--green-dk);
  padding: .25rem .7rem;
  border-radius: 4px;
  margin-bottom: .75rem;
}

.job-status {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  font-size: .7rem;
  font-weight: 700;
  padding: .2rem .6rem;
  border-radius: 4px;
}
.job-status.available {
  background: rgba(22,163,74,.12);
  color: var(--green-dk);
}

.job-card h3 { font-size: 1.1rem; margin-bottom: .6rem; color: var(--text); }

.job-meta {
  display: flex;
  gap: .8rem;
  font-size: .82rem;
  color: var(--gray);
  margin-bottom: 1rem;
}

.job-salary {
  font-size: 1.4rem;
  font-weight: 800;
  background: linear-gradient(90deg, var(--green), var(--green-lt));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.2rem;
}
.job-salary span {
  font-size: .85rem;
  font-weight: 500;
  color: var(--gray);
  -webkit-text-fill-color: var(--gray);
}

.job-btn { width: 100%; text-align: center; }

/* ---- DESTINATIONS ---- */
.destinations {
  padding: 90px 0;
  background: var(--bg);
}
.destinations h2 { margin-bottom: .3rem; }

.dest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.dest-card {
  background: var(--white);
  border: 1px solid rgba(22,163,74,.18);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
  transition: border-color .25s, transform .25s, box-shadow .25s;
  box-shadow: 0 2px 10px rgba(22,163,74,.06);
}
.dest-card:hover {
  border-color: var(--green);
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(22,163,74,.16);
}

.dest-flag-img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
}

.dest-card h3 {
  margin: 1rem 1rem .4rem;
  color: var(--text);
}
.dest-card p {
  color: var(--gray);
  font-size: .85rem;
  padding: 0 1rem 1.25rem;
}

/* ---- SOLUTIONS ---- */
.solutions {
  padding: 90px 0;
  background: var(--bg2);
}
.solutions h2 { margin-bottom: 2rem; }

.solutions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.solutions-col {
  background: var(--white);
  border: 1px solid rgba(22,163,74,.18);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(22,163,74,.07);
}
.solutions-header {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--green);
  margin-bottom: 1.5rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid rgba(22,163,74,.2);
}

.sol-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
  align-items: flex-start;
}
.sol-icon {
  width: 40px;
  height: 40px;
  background: rgba(22,163,74,.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.sol-item strong { display: block; font-size: .9rem; margin-bottom: .25rem; color: var(--text); }
.sol-item p { color: var(--gray); font-size: .83rem; margin: 0; }

/* ---- TESTIMONIALS ---- */
.testimonials {
  padding: 90px 0;
  background: var(--bg);
}
.testimonials h2 { margin-bottom: 2rem; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid rgba(22,163,74,.18);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  box-shadow: 0 2px 12px rgba(22,163,74,.07);
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-size: 4rem;
  color: rgba(22,163,74,.18);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-text {
  color: var(--text-lt);
  font-size: .9rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  padding-top: 1rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.testimonial-avatar {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--green), var(--green-lt));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .85rem;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: .88rem; color: var(--text); }
.testimonial-author span { font-size: .78rem; color: var(--gray); }

/* ---- MISSION ---- */
.mission {
  padding: 90px 0;
  background: var(--bg2);
}
.mission h2 { margin-bottom: .3rem; }

.mission-stats {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2.5rem;
  max-width: 620px;
}

.progress-bar {
  height: 8px;
  background: rgba(22,163,74,.15);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: .5rem;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green-dk), var(--green-lt));
  border-radius: 100px;
  width: 0;
  transition: width 1.5s ease;
  box-shadow: 0 0 10px rgba(22,163,74,.35);
}

.mission-label {
  display: flex;
  justify-content: space-between;
  font-size: .88rem;
  color: var(--text-lt);
}
.mission-label span { color: var(--green); font-weight: 700; }

/* ---- CTA BANNER ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--green-dk) 0%, var(--green) 60%, var(--green-lt) 100%);
  border-top: none;
  border-bottom: none;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(255,255,255,.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner h2 { margin-bottom: .75rem; position: relative; color: var(--white); }
.cta-banner p { color: rgba(255,255,255,.85); margin-bottom: 2rem; position: relative; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }

/* ---- APPLY FORM ---- */
.apply {
  padding: 90px 0;
  background: var(--bg);
}
.apply h2 { margin-bottom: .3rem; }

.apply-form {
  background: var(--white);
  border: 1px solid rgba(22,163,74,.2);
  border-radius: var(--radius);
  padding: 2.5rem;
  margin-top: 2rem;
  box-shadow: 0 4px 20px rgba(22,163,74,.08);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.form-group.full { margin-bottom: 1.5rem; }

label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-lt);
}

input, select, textarea {
  background: var(--bg);
  border: 1px solid rgba(22,163,74,.25);
  border-radius: 6px;
  color: var(--text);
  font-size: .9rem;
  font-family: inherit;
  padding: .7rem 1rem;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  width: 100%;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(22,163,74,.12);
}
select option { background: var(--white); color: var(--text); }
textarea { resize: vertical; }

.form-success {
  margin-top: 1.5rem;
  padding: 1rem 1.5rem;
  background: rgba(22,163,74,.08);
  border: 1px solid rgba(22,163,74,.3);
  border-radius: var(--radius);
  color: var(--green-dk);
  font-weight: 600;
}
.hidden { display: none; }

/* ---- CONTACT ---- */
.contact {
  padding: 90px 0;
  background: var(--bg2);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact h2 { margin-bottom: 1.5rem; }

.contact-item {
  font-size: .95rem;
  margin-bottom: .75rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  color: var(--text);
}
.contact-item a { color: var(--green); }
.contact-item a:hover { text-decoration: underline; }

.contact-hours {
  margin-top: 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  border: 1px solid rgba(22,163,74,.18);
  box-shadow: 0 2px 10px rgba(22,163,74,.06);
}
.contact-hours strong { color: var(--green); display: block; margin-bottom: .5rem; }
.contact-hours p { font-size: .88rem; color: var(--gray); }

/* ---- FOOTER ---- */
.footer {
  background: var(--green-dk);
  border-top: none;
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-brand p {
  color: rgba(255,255,255,.7);
  font-size: .85rem;
  margin: .75rem 0 1rem;
  line-height: 1.7;
}

/* Footer logo */
.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: .65rem;
  margin-bottom: .25rem;
}
.footer-logo-img {
  height: 48px;
  width: 48px;
  object-fit: contain;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.3);
  background: rgba(255,255,255,.1);
}
.footer-logo-text {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
}
.footer-logo-text span { color: var(--light); font-weight: 600; }

.footer-lic {
  font-size: .72rem;
  color: var(--light);
  font-weight: 600;
  letter-spacing: .1em;
  margin-bottom: .75rem;
}

.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  font-size: .85rem;
}
.footer-contacts a { color: rgba(255,255,255,.75); transition: color .2s; }
.footer-contacts a:hover { color: var(--white); }

.footer-address { color: rgba(255,255,255,.6); font-size: .85rem; margin-top: .5rem; }

.footer h4 {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .15em;
  color: var(--light);
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer ul li { margin-bottom: .5rem; }
.footer ul a { color: rgba(255,255,255,.6); font-size: .88rem; transition: color .2s; }
.footer ul a:hover { color: var(--white); }

.footer p { color: rgba(255,255,255,.5); font-size: .85rem; }

.footer-cta { margin-top: 1.5rem; text-align: center; display: block; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 1.25rem 0;
  text-align: center;
}

/* ---- WHATSAPP FLOAT ---- */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: transform .2s, box-shadow .2s;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.65); }

/* ---- CONTACT BADGE ---- */
.contact-badge {
  display: inline-block;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .08em;
  background: rgba(22,163,74,.12);
  color: var(--green-dk);
  padding: .1rem .45rem;
  border-radius: 4px;
  margin-left: .4rem;
  vertical-align: middle;
  text-transform: uppercase;
}
.contact-badge.secondary {
  background: rgba(0,0,0,.06);
  color: var(--gray);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: block; }

  .solutions-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }

  .steps-grid { gap: 1rem; }
  .step-arrow { display: none; }
  .step-card { max-width: 100%; min-width: 220px; }
}

@media (max-width: 640px) {
  .hero-content { padding: 60px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .why-row { flex-direction: column; }
  .stats-grid { flex-direction: column; align-items: center; }
  .stat-card { max-width: 100%; width: 100%; }
  .hero-btns { flex-direction: column; }
  .cta-btns { flex-direction: column; align-items: center; }
}
