:root {
  --background: #061728;
  --surface: #0d2341;
  --surface-alt: #112b4c;
  --text: #f5f8ff;
  --muted: #b3c2d6;
  --accent: #ff7a1a;
  --accent-soft: rgba(255, 122, 26, 0.12);
  --border: rgba(255, 255, 255, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: linear-gradient(180deg, #04101f 0%, #08172c 100%);
  color: var(--text);
  line-height: 1.7;
}

img {
  max-width: 100%;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 24px 32px;
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(6, 23, 40, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo {
  width: 72px;
  height: auto;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  padding: 10px;
}

.eyebrow {
  margin: 0;
  color: var(--accent);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.site-header h1 {
  margin: 0;
  font-size: 1.2rem;
}

.top-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.top-nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
}

.top-nav a:hover {
  color: var(--text);
}

.hero {
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 32px;
  background: radial-gradient(circle at top left, rgba(255, 122, 26, 0.12), transparent 35%),
    radial-gradient(circle at bottom right, rgba(255, 122, 26, 0.08), transparent 24%);
}

.hero-copy {
  max-width: 780px;
  text-align: center;
}

.badge {
  display: inline-block;
  background: var(--accent-soft);
  color: var(--accent);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 3vw, 3.4rem);
  letter-spacing: -0.04em;
}

.hero-copy p {
  margin: 0 0 28px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  color: var(--muted);
  font-size: 1.05rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: white;
  padding: 16px 28px;
  border: none;
  border-radius: 999px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(255, 122, 26, 0.2);
}

.section {
  padding: 64px 32px;
}

.section-light {
  background: #071526;
}

.section-dark {
  background: #0b2d4a;
}

.section-header {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-header h2,
.section-header h3 {
  margin: 0;
  font-size: 2rem;
}

.underline {
  width: 72px;
  height: 4px;
  background: var(--accent);
  margin-top: 14px;
  border-radius: 999px;
}

p {
  color: var(--muted);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.grid-2 h3 {
  color: var(--text);
  margin-bottom: 16px;
}

.services-section .services-grid,
.coverage-grid,
.contact-grid {
  display: grid;
  gap: 24px;
}

.services-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.service-card,
.coverage-card,
.contact-info,
.contact-form {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 28px;
}

.service-card h4,
.coverage-card h3,
.contact-info h3 {
  margin-top: 0;
  color: var(--text);
}

.service-card p,
.coverage-card p,
.contact-info p {
  margin: 0.9rem 0 0;
}

.service-summary {
  margin-top: 18px;
  max-width: 900px;
}

.coverage-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.coverage-card ul {
  margin: 16px 0 0;
  padding-left: 20px;
  color: var(--text);
}

.coverage-card li {
  margin-bottom: 10px;
}

.coverage-figure {
  margin: 24px 0 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.coverage-figure img {
  display: block;
  width: 100%;
  height: auto;
}

.coverage-figure object.coverage-img {
  display: block;
  width: 100%;
  height: auto;
}

.coverage-figure figcaption {
  margin: 0;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 0.95rem;
  text-align: center;
}

.coverage-content {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.coverage-list {
  flex: 1 1 360px;
}

.coverage-figure {
  flex: 0 0 420px;
  margin: 0;
}

.coverage-figure img {
  display: block;
  width: 100%;
  height: auto;
}

.map-note {
  margin-top: 22px;
  color: var(--muted);
  font-size: 0.98rem;
  max-width: 840px;
}

.contact-grid {
  grid-template-columns: 1.1fr 1.4fr;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-info a {
  color: var(--accent);
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.contact-form label {
  display: block;
  margin-bottom: 18px;
  color: var(--muted);
  font-weight: 500;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 14px 16px;
  border-radius: 16px;
  font-size: 0.98rem;
  margin-top: 10px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(255, 122, 26, 0.35);
  outline-offset: 2px;
}

.contact-form button {
  width: 100%;
  margin-top: 6px;
}

.form-status {
  margin-top: 16px;
  color: var(--accent);
}

.footer {
  text-align: center;
  padding: 24px 32px;
  color: var(--muted);
}

@media (max-width: 980px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .top-nav {
    width: 100%;
    justify-content: flex-start;
  }

  .grid-2,
  .contact-grid,
  .coverage-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .hero {
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .hero-copy h2 {
    font-size: 2.3rem;
  }

  .contact-form label {
    margin-bottom: 16px;
  }
}

/* WhatsApp floating button */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 64px;
  height: 64px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 34px rgba(0,0,0,0.35);
  z-index: 1200;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(0,0,0,0.36);
}

.whatsapp-float svg { display: block; }

@media (max-width: 480px) {
  .whatsapp-float { width: 56px; height: 56px; right: 14px; bottom: 14px; }
}
