/* ================================
   Eclipse Restoration - Core Styles
   ================================ */

:root {
  --teal: #20d7d2;
  --teal-dark: #10b6b2;
  --bg-dark: #0b0f14;
  --bg-card: #111820;
  --border: rgba(255,255,255,0.1);
  --text-main: #ffffff;
  --text-muted: rgba(255,255,255,0.75);
  --radius: 18px;
  --shadow: 0 20px 50px rgba(0,0,0,0.35);
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background: linear-gradient(180deg, #070b10, #0b0f14);
  color: var(--text-main);
}

/* ================================
   Layout Helpers
   ================================ */

.container {
  width: min(1150px, 92%);
  margin: 0 auto;
}

.section {
  padding: 60px 0;
}

.section.dark {
  background: linear-gradient(135deg, rgba(32,215,210,0.12), rgba(255,255,255,0.03));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.muted {
  color: var(--text-muted);
  line-height: 1.6;
}

/* ================================
   Header / Navigation
   ================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7,11,16,0.75);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background:
    radial-gradient(circle at 30% 30%, var(--teal), rgba(32,215,210,0.2) 60%, transparent 62%),
    linear-gradient(135deg, rgba(32,215,210,0.35), rgba(255,255,255,0.05));
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 0 25px rgba(32,215,210,0.35);
}

.brand-text {
  font-weight: 800;
  letter-spacing: 0.4px;
}

.brand-text span {
  font-weight: 600;
  opacity: 0.85;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  opacity: 0.9;
}

.nav a:hover {
  opacity: 1;
}

@media (max-width: 900px) {
  .nav {
    display: none;
  }
}

/* ================================
   Buttons
   ================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 14px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: all 0.15s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: #061416;
  box-shadow: 0 12px 30px rgba(32,215,210,0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(255,255,255,0.08);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: #fff;
}

/* ================================
   Hero Section
   ================================ */

.hero {
  padding: 70px 0 40px;
  background: radial-gradient(900px 500px at 15% 15%, rgba(32,215,210,0.2), transparent 60%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}

.pill {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(32,215,210,0.15);
  border: 1px solid rgba(32,215,210,0.3);
  font-weight: 700;
  font-size: 13px;
}

h1 {
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.05;
  margin: 18px 0;
}

.lead {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 600px;
}

.cta-row {
  display: flex;
  gap: 14px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.trust-row {
  display: flex;
  gap: 18px;
  margin-top: 18px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  flex-wrap: wrap;
}

/* ================================
   Hero Card (Van Image)
   ================================ */

.hero-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

@media (max-width: 900px) {
  .hero-img {
    height: 260px;
  }
}

.hero-card-footer {
  padding: 16px;
  border-top: 1px solid var(--border);
}

.hero-card-footer span {
  color: var(--text-muted);
  font-size: 14px;
}

/* ================================
   Services Cards
   ================================ */

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

@media (max-width: 900px) {
  .cards {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  text-decoration: none;
  color: #fff;
  transition: all 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(32,215,210,0.4);
}

.card h3 {
  margin-top: 0;
}

/* ================================
   Split Layout / Why Choose Us
   ================================ */

.split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
}

@media (max-width: 900px) {
  .split {
    grid-template-columns: 1fr;
  }
}

.checklist {
  padding-left: 18px;
}

.checklist li {
  margin-bottom: 12px;
  color: var(--text-muted);
}

/* ================================
   Callout Box
   ================================ */

.callout {
  background: rgba(0,0,0,0.45);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}

/* ================================
   Service Areas (Homepage)
   ================================ */

.areas-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
}

@media (max-width: 900px) {
  .areas-grid {
    grid-template-columns: 1fr;
  }
}

.areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.area-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.area-chip:hover {
  border-color: rgba(32,215,210,0.45);
  transform: translateY(-1px);
}

.area-chip small {
  color: rgba(255,255,255,0.7);
  font-weight: 600;
}

.areas-note {
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}

/* ================================
   Footer
   ================================ */

.site-footer {
  padding: 50px 0;
  background: rgba(0,0,0,0.25);
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr 0.6fr;
  gap: 30px;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-grid a {
  color: #fff;
  text-decoration: none;
}

.footer-grid a:hover {
  text-decoration: underline;
}

.fineprint {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}
