/* Go Direct Home Services - Multipage Website Draft */

:root {
  --navy: #0F172A;
  --steel: #475569;
  --white: #FFFFFF;
  --soft: #F1F5F9;
  --orange: #F97316;
  --charcoal: #111827;
  --border: #E2E8F0;
  --muted: #64748B;
  --success: #16A34A;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  --radius: 20px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--steel);
  background: var(--white);
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.site-header {
  background: var(--navy);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.2);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--orange);
  color: var(--white);
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(249, 115, 22, 0.25);
}

.brand-text {
  display: grid;
  line-height: 1.05;
}

.brand-text span:first-child {
  font-size: 1.05rem;
}

.brand-text span:last-child {
  font-size: 0.78rem;
  color: #CBD5E1;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  color: #E2E8F0;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 10px 12px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.nav-cta {
  margin-left: 8px;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 5px auto;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

body.nav-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.nav-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

body.nav-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 13px 20px;
  font-weight: 800;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(249, 115, 22, 0.24);
}

.btn-primary:hover {
  box-shadow: 0 16px 30px rgba(249, 115, 22, 0.32);
}

.btn-secondary {
  background: var(--white);
  color: var(--navy);
  border-color: #CBD5E1;
}

.btn-light {
  background: var(--white);
  color: var(--navy);
}

.btn-wide {
  width: 100%;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(249, 115, 22, 0.18), transparent 34%),
    linear-gradient(135deg, var(--navy) 0%, #172554 58%, #111827 100%);
  color: var(--white);
  padding: 86px 0 70px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 52px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #FED7AA;
  background: rgba(249, 115, 22, 0.12);
  border: 1px solid rgba(249, 115, 22, 0.35);
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 800;
  font-size: 0.9rem;
  margin-bottom: 18px;
}

h1,
h2,
h3,
h4 {
  color: var(--navy);
  line-height: 1.1;
  margin: 0;
  letter-spacing: -0.04em;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.45rem, 5vw, 4.8rem);
  max-width: 820px;
}

.hero p {
  color: #CBD5E1;
  font-size: clamp(1.03rem, 1.7vw, 1.22rem);
  max-width: 680px;
  margin: 22px 0 0;
}

.highlight {
  color: var(--orange);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.hero-checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
  color: #E2E8F0;
  font-weight: 700;
}

.hero-checks span,
.check-item {
  display: flex;
  gap: 9px;
  align-items: center;
}

.check,
.check-item::before,
.hero-checks span::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 999px;
  background: rgba(22, 163, 74, 0.16);
  color: #86EFAC;
  font-weight: 900;
}

.hero-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 30px;
  padding: 24px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.hero-visual {
  min-height: 440px;
  background:
    linear-gradient(rgba(15, 23, 42, 0.1), rgba(15, 23, 42, 0.28)),
    url("data:image/svg+xml,%3Csvg width='900' height='680' viewBox='0 0 900 680' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='900' height='680' fill='%23f1f5f9'/%3E%3Crect x='95' y='85' width='710' height='510' rx='36' fill='%23ffffff' stroke='%23cbd5e1' stroke-width='10'/%3E%3Crect x='150' y='140' width='270' height='180' rx='18' fill='%230f172a'/%3E%3Crect x='480' y='140' width='270' height='54' rx='12' fill='%23e2e8f0'/%3E%3Crect x='480' y='224' width='210' height='38' rx='10' fill='%23cbd5e1'/%3E%3Crect x='150' y='370' width='600' height='46' rx='14' fill='%23f97316'/%3E%3Crect x='150' y='454' width='170' height='74' rx='18' fill='%23e2e8f0'/%3E%3Crect x='365' y='454' width='170' height='74' rx='18' fill='%23e2e8f0'/%3E%3Crect x='580' y='454' width='170' height='74' rx='18' fill='%23e2e8f0'/%3E%3Ccircle cx='690' cy='215' r='88' fill='%23f97316' opacity='.18'/%3E%3Cpath d='M635 218h110M690 163v110' stroke='%23f97316' stroke-width='22' stroke-linecap='round'/%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.floating-card {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  background: var(--white);
  color: var(--navy);
  border-radius: 22px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.floating-card strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.floating-card p {
  color: var(--steel);
  margin: 0;
  font-size: 0.95rem;
}

.section {
  padding: 78px 0;
}

.section-soft {
  background: var(--soft);
}

.section-dark {
  background: var(--navy);
  color: #CBD5E1;
}

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.section-header {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-header.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-kicker {
  color: var(--orange);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  margin-bottom: 10px;
}

.section h2,
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.25rem);
}

.section-header p,
.page-hero p {
  font-size: 1.08rem;
  color: var(--steel);
  margin: 14px 0 0;
}

.section-dark .section-header p,
.section-dark p {
  color: #CBD5E1;
}

.grid {
  display: grid;
  gap: 22px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
}

.card.soft {
  background: var(--soft);
  border-color: transparent;
}

.service-card h3,
.card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.icon {
  width: 48px;
  height: 48px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  color: var(--orange);
  background: rgba(249, 115, 22, 0.12);
  margin-bottom: 16px;
  font-size: 1.4rem;
  font-weight: 900;
}

.service-list {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: grid;
  gap: 9px;
}

.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
}

.service-list li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--orange);
  margin-top: 10px;
  min-width: 7px;
}

.cta-band {
  background: var(--navy);
  color: var(--white);
  border-radius: 30px;
  padding: 36px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  box-shadow: var(--shadow);
}

.cta-band h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.65rem);
}

.cta-band p {
  color: #CBD5E1;
  margin: 12px 0 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: 42px;
  align-items: center;
}

.about-panel {
  background: var(--soft);
  border-radius: 30px;
  padding: 28px;
  border: 1px solid var(--border);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.stat {
  background: var(--white);
  border-radius: 18px;
  padding: 20px;
  border: 1px solid var(--border);
}

.stat strong {
  display: block;
  color: var(--navy);
  font-size: 1.35rem;
  line-height: 1.1;
}

.stat span {
  display: block;
  color: var(--steel);
  margin-top: 5px;
  font-weight: 700;
  font-size: 0.92rem;
}

.page-hero {
  background: var(--soft);
  padding: 72px 0 54px;
  border-bottom: 1px solid var(--border);
}

.page-hero .breadcrumbs {
  color: var(--orange);
  font-weight: 900;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
}

.page-hero-content {
  max-width: 820px;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: start;
}

.sticky-box {
  position: sticky;
  top: 105px;
}

.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-field {
  display: grid;
  gap: 7px;
}

.form-field.full {
  grid-column: 1 / -1;
}

label {
  color: var(--navy);
  font-weight: 800;
  font-size: 0.94rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #CBD5E1;
  border-radius: 14px;
  padding: 13px 14px;
  font: inherit;
  color: var(--navy);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

textarea {
  resize: vertical;
  min-height: 130px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.12);
}

.form-note {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 12px 0 0;
}

.notice {
  background: #FFF7ED;
  border: 1px solid #FDBA74;
  color: #9A3412;
  border-radius: 18px;
  padding: 16px;
  font-weight: 700;
}

.contact-card {
  display: grid;
  gap: 18px;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--white);
}

.contact-row .mini-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(249, 115, 22, 0.12);
  color: var(--orange);
  font-weight: 900;
}

.contact-row strong {
  color: var(--navy);
  display: block;
}

.contact-row span {
  color: var(--steel);
}

.faq {
  display: grid;
  gap: 14px;
}

.faq details {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px 20px;
}

.faq summary {
  cursor: pointer;
  color: var(--navy);
  font-weight: 900;
}

.faq p {
  margin: 12px 0 0;
}

.service-detail {
  display: grid;
  gap: 22px;
}

.service-detail-card {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 20px;
  align-items: start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 24px;
}

.service-detail-card .icon {
  margin: 0;
  width: 58px;
  height: 58px;
}

.site-footer {
  background: var(--charcoal);
  color: #CBD5E1;
  padding: 52px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 28px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-grid h3,
.footer-grid h4 {
  color: var(--white);
  margin-bottom: 13px;
}

.footer-grid p {
  margin: 0;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a {
  color: #CBD5E1;
}

.footer-links a:hover {
  color: var(--orange);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  font-size: 0.9rem;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.badge {
  display: inline-flex;
  border-radius: 999px;
  padding: 7px 11px;
  background: rgba(15, 23, 42, 0.06);
  color: var(--navy);
  font-weight: 800;
  font-size: 0.85rem;
}

.section-dark .badge {
  background: rgba(255,255,255,0.1);
  color: #E2E8F0;
}

@media (max-width: 920px) {
  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    inset: 78px 0 auto 0;
    background: var(--navy);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 18px 16px 24px;
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

  body.nav-open .nav-menu {
    display: flex;
  }

  .nav-link {
    padding: 14px 16px;
    border-radius: 14px;
  }

  .nav-cta {
    margin-left: 0;
  }

  .hero-grid,
  .about-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 62px;
  }

  .hero-visual {
    min-height: 360px;
  }

  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-band {
    grid-template-columns: 1fr;
  }

  .sticky-box {
    position: static;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 22px, var(--max));
  }

  .section {
    padding: 56px 0;
  }

  .hero-checks,
  .grid-2,
  .grid-3,
  .grid-4,
  .form-grid,
  .stat-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-card,
  .cta-band,
  .form-card {
    border-radius: 22px;
    padding: 22px;
  }

  .service-detail-card {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
