/* ============================================================
   REGIONAL CLEAN — MANUS-STYLE REDESIGN
   Palette: Dark navy bg · Orange accents · White text
   ============================================================ */

:root {
  --orange:    #f59e0b;
  --orange-dk: #d97706;
  --navy:      #0d1b2a;
  --navy-mid:  #1a2d42;
  --navy-card: #1e3a52;
  --white:     #ffffff;
  --light:     #f4f6f9;
  --muted:     #94a3b8;
  --text:      #1e293b;
  --font:      'Inter', sans-serif;
  --radius:    12px;
  --shadow:    0 4px 24px rgba(0,0,0,0.18);
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); background: var(--white); line-height: 1.6; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { width: min(1200px, 92%); margin-inline: auto; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-orange  { background: var(--orange); color: #000; border-color: var(--orange); }
.btn-orange:hover { background: var(--orange-dk); border-color: var(--orange-dk); }
.btn-dark    { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-dark:hover { background: #162436; }
.btn-outline-white { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline-white:hover { background: rgba(255,255,255,0.12); }
.btn-lg { padding: 14px 32px; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; margin-top: 20px; }
.arrow { font-size: 1.2rem; line-height: 1; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13, 27, 42, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.4); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-icon {
  width: 36px; height: 36px;
  background: var(--orange);
  color: #000;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 1rem;
}
.nav-logo-text { color: var(--white); font-weight: 700; font-size: 1.1rem; }

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: rgba(255,255,255,0.85); font-weight: 500; font-size: 0.95rem; transition: color 0.2s; }
.nav-links a:hover { color: var(--orange); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }

/* Mobile nav */
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: var(--navy);
    flex-direction: column;
    gap: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .nav-links.open { max-height: 400px; padding: 12px 0 20px; }
  .nav-links a { padding: 12px 24px; width: 100%; }
  .nav-links .btn { margin: 8px 24px 0; width: calc(100% - 48px); justify-content: center; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 68px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    120deg,
    rgba(10, 20, 35, 0.88) 0%,
    rgba(10, 20, 35, 0.65) 60%,
    rgba(10, 20, 35, 0.3) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding-block: 80px;
}
.hero-badge {
  display: inline-block;
  background: rgba(245, 158, 11, 0.2);
  border: 1px solid rgba(245, 158, 11, 0.5);
  color: var(--orange);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
  letter-spacing: 0.03em;
}
.hero-content h1 {
  font-size: clamp(2.6rem, 6vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}
.text-orange { color: var(--orange); }
.hero-content p {
  color: rgba(255,255,255,0.82);
  font-size: 1.1rem;
  max-width: 560px;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ============================================================
   TRUST RIBBON
   ============================================================ */
.trust-ribbon {
  background: var(--orange);
  padding: 20px 0;
}
.trust-ribbon-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 16px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  color: #000;
}
.trust-item svg { width: 22px; height: 22px; flex-shrink: 0; }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 90px 0; }
.section-dark { background: var(--navy); }

.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
}
.section-header p { color: #64748b; font-size: 1.05rem; }
.section-header.light h2 { color: var(--white); }
.section-header.light p { color: var(--muted); }

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
  border: 1px solid #e2e8f0;
}
.service-card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(0,0,0,0.15); }
.service-card-img { height: 200px; overflow: hidden; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.service-card:hover .service-card-img img { transform: scale(1.04); }
.service-card-body { padding: 24px; }
.service-card-body h3 { font-size: 1.25rem; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.service-card-body p { color: #64748b; font-size: 0.9rem; margin-bottom: 16px; }

.check-list { display: flex; flex-direction: column; gap: 8px; }
.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text);
}
.check-list li::before {
  content: '';
  display: inline-flex;
  width: 18px; height: 18px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f59e0b' stroke-width='2.5'%3E%3Cpath d='M22 11.08V12a10 10 0 11-5.93-9.14'/%3E%3Cpath d='M22 4L12 14.01l-3-3'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

/* ============================================================
   WHY US
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.why-card {
  background: var(--navy-mid);
  border-radius: var(--radius);
  padding: 32px 24px;
  border: 1px solid rgba(255,255,255,0.07);
  transition: border-color 0.25s, transform 0.25s;
}
.why-card:hover { border-color: var(--orange); transform: translateY(-4px); }
.why-icon {
  width: 52px; height: 52px;
  background: rgba(245,158,11,0.15);
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  color: var(--orange);
}
.why-icon svg { width: 26px; height: 26px; }
.why-card h4 { color: var(--white); font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.why-card p { color: var(--muted); font-size: 0.9rem; line-height: 1.6; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  position: relative;
}
.step { text-align: center; padding: 0 16px; }
.step-number {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--orange);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 8px;
}
.step h4 { font-size: 1.1rem; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.step p { color: #64748b; font-size: 0.9rem; }

/* ============================================================
   SERVICE AREA
   ============================================================ */
.area-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.area-tags span {
  background: rgba(245,158,11,0.15);
  border: 1px solid rgba(245,158,11,0.35);
  color: var(--orange);
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section { background: var(--navy); }

.contact-info-bar {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 48px;
}
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.contact-icon {
  width: 48px; height: 48px;
  background: rgba(245,158,11,0.15);
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--orange);
  flex-shrink: 0;
}
.contact-icon svg { width: 22px; height: 22px; }
.contact-info-item strong {
  display: block;
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
}
.contact-info-item span { color: var(--muted); font-size: 0.9rem; }

.cta-box {
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 56px 48px;
  text-align: left;
}
.cta-box h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}
.cta-box p {
  color: var(--muted);
  font-size: 1rem;
  max-width: 600px;
  margin-bottom: 32px;
}
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #060e17;
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-copy { color: var(--muted); font-size: 0.85rem; }
.footer-email a { color: var(--orange); font-size: 0.85rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 640px) {
  .section { padding: 60px 0; }
  .hero-content { padding-block: 60px; }
  .cta-box { padding: 36px 24px; }
  .cta-box h2 { font-size: 1.6rem; }
  .footer-inner { flex-direction: column; text-align: center; }
  .contact-info-bar { flex-direction: column; align-items: flex-start; padding: 0 8px; }
  .trust-ribbon-inner { justify-content: flex-start; gap: 20px; padding: 0 16px; }
}
