/* =============================
   READY ADJUSTING - STYLES
   Dark navy theme, gold accents
   ============================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy-900: #0b1120;
  --navy-800: #111827;
  --navy-700: #1a2535;
  --navy-600: #1e2d45;
  --navy-500: #243352;
  --gold:     #f5a623;
  --gold-dark:#d4891a;
  --blue-accent: #4fa3e3;
  --white:    #ffffff;
  --gray-100: #f3f4f6;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --text-body: #c9d3e0;
  --text-muted: #7a8fa8;
  --radius:   8px;
  --radius-lg: 14px;
  --shadow:   0 4px 24px rgba(0,0,0,0.35);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--navy-900);
  color: var(--text-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

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

a { color: var(--blue-accent); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold); }

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .2s ease;
  letter-spacing: .01em;
  text-align: center;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy-900);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--navy-900);
}
.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.35);
  color: var(--white);
}
.btn-outline:hover {
  border-color: var(--white);
  color: var(--white);
  background: rgba(255,255,255,0.08);
}
.btn-dark {
  background: var(--navy-900);
  color: var(--white);
  border-color: var(--navy-900);
}
.btn-dark:hover {
  background: var(--navy-700);
  color: var(--white);
}
.btn-outline-dark {
  background: transparent;
  border-color: var(--navy-700);
  color: var(--navy-800);
}
.btn-outline-dark:hover {
  background: var(--navy-700);
  color: var(--white);
  border-color: var(--navy-700);
}
.btn-large { padding: 15px 34px; font-size: 16px; }
.btn-full { width: 100%; }

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(11,17,32,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: box-shadow .3s;
}
.nav.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.5); }
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo img { height: 44px; width: auto; background: #f0f0f0; padding: 4px 8px; border-radius: 6px; }
.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.nav-links a {
  color: var(--gray-300);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .02em;
}
.nav-links a:hover { color: var(--white); }
.nav-cta { margin-left: 16px; padding: 9px 20px; font-size: 14px; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  padding: 6px;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .25s;
}
.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 16px 24px 20px;
  gap: 14px;
  border-top: 1px solid rgba(255,255,255,0.07);
  background: var(--navy-900);
}
.nav-mobile a { color: var(--gray-300); font-size: 15px; font-weight: 500; }
.nav-mobile a:hover { color: var(--white); }
.nav-mobile .btn { align-self: flex-start; margin-top: 4px; }
.nav-mobile.open { display: flex; }

/* ---- EYEBROW / SECTION TITLES ---- */
.eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.eyebrow-center { text-align: center; }

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-title.center { text-align: center; }

.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 580px;
  margin-bottom: 48px;
}
.section-sub.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* ---- SECTIONS ---- */
.section { padding: 96px 0; }
.section-dark { background: var(--navy-800); }
.section-mid  { background: var(--navy-700); }

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 68px;
  overflow: hidden;
}
.hero-img-placeholder {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, #0d2a4a 0%, #0b1a30 40%, #0a1520 100%);
  /* Replace with: background-image: url('hero-bg.jpg'); background-size: cover; */
}
/* Subtle texture overlay */
.hero-img-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 70% 50%, rgba(79,163,227,0.08) 0%, transparent 60%),
    radial-gradient(circle at 20% 80%, rgba(245,166,35,0.06) 0%, transparent 50%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(11,17,32,0.92) 50%, rgba(11,17,32,0.55) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 48px;
  padding-bottom: 80px;
  max-width: 680px;
}
.hero-content h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(40px, 6vw, 68px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 22px;
}
.accent-blue { color: var(--blue-accent); }
.hero-sub {
  font-size: 18px;
  color: var(--text-body);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--gray-300);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 13px;
  border-radius: 100px;
}

/* ---- SERVICES ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--navy-700);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.service-photo {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}
.placeholder-photo {
  background: linear-gradient(135deg, #1a2d45, #1e3a5a);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.photo-label {
  color: var(--text-muted);
  font-size: 12px;
  font-style: italic;
  padding: 8px;
  text-align: center;
  border: 1px dashed rgba(255,255,255,0.15);
  border-radius: 6px;
}
.service-body { padding: 22px; }
.service-body h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.service-body p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ---- COVERAGE ---- */
.coverage-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.coverage-text h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 18px;
}
.coverage-text p {
  color: var(--text-body);
  font-size: 16px;
  margin-bottom: 14px;
}
.coverage-text strong { color: var(--white); }
.coverage-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}
.coverage-cities span {
  background: rgba(245,166,35,0.1);
  border: 1px solid rgba(245,166,35,0.25);
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
}
.coverage-map-placeholder {
  background: linear-gradient(135deg, #152338, #1a2e48);
  border: 1px solid rgba(79,163,227,0.15);
  border-radius: var(--radius-lg);
  height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.map-label {
  font-size: 12px;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 20px;
}
.map-radius-ring {
  width: 180px; height: 180px;
  border-radius: 50%;
  border: 2px dashed rgba(79,163,227,0.3);
  position: absolute;
}
.map-dot {
  width: 14px; height: 14px;
  background: var(--gold);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 6px rgba(245,166,35,0.2);
  position: absolute;
}
.map-sub {
  position: absolute;
  bottom: 20px;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ---- WHY US ---- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.why-card {
  background: var(--navy-700);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color .25s;
}
.why-card:hover { border-color: rgba(79,163,227,0.3); }
.why-icon { font-size: 28px; margin-bottom: 14px; }
.why-card h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.why-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* ---- CTA GOLD BAND ---- */
.section-gold {
  background: var(--gold);
  padding: 72px 0;
}
.cta-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-text h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 10px;
}
.cta-text p {
  color: rgba(11,17,32,0.75);
  font-size: 16px;
  max-width: 520px;
}
.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.btn-outline-dark {
  border-color: rgba(11,17,32,0.3);
  color: var(--navy-800);
}
.btn-outline-dark:hover {
  background: rgba(11,17,32,0.08);
  color: var(--navy-900);
}

/* ---- CONTACT ---- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 72px;
  align-items: start;
}
.contact-info h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 14px;
}
.contact-info > p { color: var(--text-muted); margin-bottom: 30px; }
.contact-details { display: flex; flex-direction: column; gap: 16px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-body);
}
.contact-icon { font-size: 18px; flex-shrink: 0; }
.contact-item a { color: var(--blue-accent); }
.contact-item a:hover { color: var(--gold); }

/* FORM */
.contact-form {
  background: var(--navy-800);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 18px;
}
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-300);
  letter-spacing: .03em;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--navy-700);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 11px 14px;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  transition: border-color .2s;
  outline: none;
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-accent);
}
.form-group select option { background: var(--navy-700); }
.form-note {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px;
}

/* ---- FOOTER ---- */
.footer {
  background: var(--navy-900);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 64px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-logo img { height: 50px; margin-bottom: 16px; }
.footer-logo p { font-size: 14px; color: var(--text-muted); max-width: 220px; }
.footer-links, .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links h5, .footer-contact h5 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 4px;
}
.footer-links a { font-size: 14px; color: var(--text-muted); }
.footer-links a:hover { color: var(--white); }
.footer-contact a { font-size: 14px; color: var(--blue-accent); }
.footer-contact a:hover { color: var(--gold); }
.footer-contact p { font-size: 14px; color: var(--text-muted); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p { font-size: 13px; color: var(--text-muted); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .hero-content { max-width: 100%; }
  .hero-content h1 { font-size: 40px; }

  .services-grid { grid-template-columns: 1fr; }
  .coverage-layout { grid-template-columns: 1fr; }
  .coverage-map-placeholder { height: 240px; }
  .why-grid { grid-template-columns: 1fr; }
  .cta-layout { flex-direction: column; align-items: flex-start; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .section { padding: 64px 0; }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 34px; }
  .hero-sub { font-size: 16px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; text-align: center; }
  .contact-form { padding: 24px; }
}

.coverage-map-img {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
  max-height: 320px;
}
