:root {
  --navy: #061735;
  --navy-2: #0b2d68;
  --blue: #0b56b8;
  --green: #8cc63f;
  --white: #ffffff;
  --light: #f4f8ff;
  --light-blue-gray: #eef4fa;
  --dark: #031027;
  --text: #172033;
  --muted: #64748b;
  --border: #dce6f0;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--dark);
  color: var(--white);
}

a {
  text-decoration: none;
}

.top-bar {
  background: rgba(6, 23, 53, 0.96);
  color: var(--white);
  text-align: center;
  padding: 9px 7%;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.2px;
}

.top-bar p {
  margin: 0;
}

.site-header {
  position: relative;
  min-height: 780px;
  background:
    linear-gradient(90deg, rgba(3, 16, 39, 0.94) 0%, rgba(3, 16, 39, 0.82) 42%, rgba(3, 16, 39, 0.58) 100%),
    linear-gradient(180deg, rgba(3, 16, 39, 0.72) 0%, rgba(3, 16, 39, 0.38) 50%, rgba(3, 16, 39, 0.9) 100%),
    url("images/greenville-hero.png") center center / cover no-repeat;
  padding: 20px 7% 74px;
  overflow: hidden;
}

.site-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(6, 23, 53, 0.24);
  pointer-events: none;
}

.navbar {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 12px 18px;
  background: rgba(3, 16, 39, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--white);
  min-width: 0;
}

.brand-logo {
  width: clamp(72px, 7vw, 96px);
  height: clamp(72px, 7vw, 96px);
  object-fit: contain;
  border-radius: 8px;
  flex: 0 0 auto;
}

.brand strong {
  display: block;
  font-size: clamp(21px, 2vw, 28px);
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1;
}

.brand span {
  display: block;
  color: var(--green);
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 2px;
  font-size: clamp(12px, 1vw, 14px);
  line-height: 1.2;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-links a {
  color: var(--white);
  font-weight: 800;
  font-size: 14px;
  opacity: 0.92;
}

.nav-links a:hover {
  color: var(--green);
}

.nav-actions {
  display: flex;
  gap: 10px;
}

.nav-btn {
  padding: 11px 16px;
  border-radius: 6px;
  font-weight: 900;
}

.call-btn {
  background: var(--green);
  color: var(--navy);
}

.text-btn {
  background: var(--blue);
  color: var(--white);
}

.hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.72fr);
  gap: 48px;
  align-items: center;
  max-width: 1240px;
  min-height: 590px;
  margin: 44px auto 0;
}

.eyebrow {
  color: var(--green);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
}

.eyebrow.dark {
  color: var(--blue);
}

.hero h1 {
  max-width: 660px;
  font-size: 70px;
  line-height: 0.98;
  margin: 12px 0 20px;
  text-shadow: 0 5px 22px rgba(0, 0, 0, 0.42);
}

.hero h1 span {
  color: var(--green);
}

.hero-subtitle {
  font-size: 21px;
  line-height: 1.55;
  max-width: 690px;
  color: rgba(255, 255, 255, 0.93);
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.42);
}

.btn,
button {
  display: inline-block;
  border: 0;
  cursor: pointer;
  padding: 16px 24px;
  border-radius: 6px;
  font-weight: 900;
  font-size: 15px;
  transition: 0.2s ease;
}

.btn:hover,
button:hover {
  transform: translateY(-2px);
}

.hero-buttons,
.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.primary-btn,
.call-now {
  background: var(--green);
  color: var(--navy);
}

.secondary-btn {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(8px);
}

.text-now {
  background: var(--blue);
  color: var(--white);
}

.service-area {
  max-width: 760px;
  margin-top: 24px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.46);
}

.service-area strong {
  display: block;
  color: var(--green);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
}

.service-area span,
.service-area em {
  display: block;
}

.service-area em {
  margin-top: 3px;
  font-style: normal;
  color: rgba(255, 255, 255, 0.76);
}

.hero-card {
  background: rgba(3, 16, 39, 0.72);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 32px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(16px);
}

.card-eyebrow {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-card h2 {
  margin: 0;
  font-size: 34px;
  line-height: 1.08;
}

.hero-card-copy {
  margin: 16px 0 22px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
}

.hero-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.hero-card-grid div {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 16px;
}

.hero-card-grid strong {
  display: block;
  font-size: 27px;
  color: var(--green);
}

.hero-card-grid span {
  display: block;
  font-weight: 900;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
}

.hero-card-list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.hero-card-list li {
  position: relative;
  padding: 12px 0 12px 26px;
  color: rgba(255, 255, 255, 0.88);
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  line-height: 1.45;
}

.hero-card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  background: #f8fbff;
  color: var(--navy);
  padding: 22px 7%;
}

.trust-strip div {
  background: var(--white);
  padding: 20px;
  border-radius: 16px;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: 0 10px 28px rgba(6, 23, 53, 0.07);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  font-size: 20px;
}

.trust-strip span {
  color: var(--muted);
  font-weight: 800;
  margin-top: 4px;
}

.section {
  padding: 58px 7%;
}

.light-section {
  background: var(--light-blue-gray);
  color: var(--navy);
}

.faq-section,
.reviews-section {
  background: var(--white);
  color: var(--navy);
}

.section-heading {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px;
}

.section-heading h2 {
  font-size: 38px;
  margin: 10px 0;
}

.section-heading p {
  color: var(--muted);
  font-size: 17px;
}

.section-heading.light h2,
.section-heading.light p {
  color: var(--white);
}

.quote-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  max-width: 1280px;
  margin: 0 auto;
}

.quote-card,
.services-preview {
  background: var(--white);
  color: var(--navy);
  border-radius: 24px;
  padding: 28px;
  border: 1px solid rgba(11, 45, 104, 0.1);
  box-shadow: 0 18px 44px rgba(6, 23, 53, 0.12);
}

.quote-card h3,
.services-preview h3 {
  margin-top: 0;
  font-size: 26px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.form-group {
  margin-bottom: 14px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

label {
  display: block;
  font-weight: 900;
  font-size: 13px;
  margin-bottom: 7px;
  color: var(--text);
}

input,
select,
textarea {
  width: 100%;
  padding: 13px;
  border: 1px solid #cbd6e2;
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(140, 198, 63, 0.4);
  border-color: var(--green);
}

.quote-total {
  margin-top: 18px;
  background: var(--navy);
  color: var(--white);
  border-radius: 18px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.quote-total span {
  display: block;
  opacity: 0.85;
  font-weight: 800;
}

.quote-total strong {
  display: block;
  color: var(--green);
  font-size: 38px;
  margin-top: 4px;
}

.quote-total button,
.submit-btn,
.wizard-next,
.review-btn {
  background: var(--green);
  color: var(--navy);
}

.quote-note {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px;
}

.service-card {
  background: #f7fbff;
  border: 1px solid rgba(11, 45, 104, 0.1);
  border-radius: 16px;
  padding: 18px;
  text-align: center;
  font-weight: 900;
  font-size: 28px;
  box-shadow: 0 8px 22px rgba(6, 23, 53, 0.06);
}

.service-card span {
  display: block;
  color: var(--navy);
  font-size: 14px;
  margin-top: 8px;
}

.reviews-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 20px;
}

.review-card {
  position: relative;
  background: #f8fbff;
  border: 1px solid rgba(11, 45, 104, 0.1);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 14px 34px rgba(6, 23, 53, 0.09);
  overflow: hidden;
}

.review-card::before {
  content: "";
  display: block;
  width: 42px;
  height: 4px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: var(--green);
}

.featured-review {
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: var(--white);
  border-color: rgba(140, 198, 63, 0.24);
  box-shadow: 0 18px 42px rgba(6, 23, 53, 0.18);
}

.stars {
  color: var(--green);
  font-size: 20px;
  letter-spacing: 2px;
}

.review-card p {
  margin: 0;
  line-height: 1.65;
}

.review-card strong {
  display: block;
  margin-top: 18px;
  color: var(--navy);
}

.featured-review strong {
  color: var(--white);
}

.review-btn {
  width: max-content;
  margin: 26px auto 0;
}

.booking-section {
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
}

.booking-wizard {
  max-width: 980px;
  margin: 0 auto;
  background: var(--white);
  color: var(--navy);
  border-radius: 28px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.wizard-progress {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-bottom: 28px;
}

.progress-step {
  background: #e8eef6;
  color: var(--navy);
  border-radius: 999px;
  padding: 10px;
  text-align: center;
  font-weight: 900;
  font-size: 13px;
}

.progress-step.active {
  background: var(--green);
}

.wizard-step {
  display: none;
}

.wizard-step.active {
  display: block;
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 24px 0;
}

.option-card {
  background: var(--light);
  color: var(--navy);
  border: 2px solid var(--border);
  border-radius: 18px;
  padding: 22px;
}

.option-card.selected {
  background: #eef9df;
  border-color: var(--green);
}

.wizard-buttons {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.wizard-back {
  background: #dce7f3;
  color: var(--navy);
}

.booking-summary {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
  line-height: 1.8;
}

.form-status {
  margin-top: 16px;
  font-weight: 900;
  line-height: 1.5;
}

.form-status.success {
  color: #3d7d1f;
}

.form-status.error {
  color: #b42318;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

details {
  background: #f8fbff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px 20px;
  margin-bottom: 12px;
  box-shadow: 0 8px 24px rgba(6, 23, 53, 0.06);
}

summary {
  cursor: pointer;
  font-weight: 900;
}

details p {
  color: var(--muted);
  line-height: 1.6;
}

.site-footer {
  background: var(--dark);
  padding: 40px 7%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
}

.site-footer h3 {
  color: var(--green);
}

.site-footer p,
.site-footer a {
  display: block;
  color: var(--white);
  line-height: 1.7;
}

.floating-contact {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.floating-contact a {
  background: var(--green);
  color: var(--navy);
  padding: 12px 15px;
  border-radius: 999px;
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.26);
}

@media (max-width: 980px) {
  .hero,
  .quote-layout,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  .hero h1 {
    font-size: 52px;
  }

  .trust-strip,
  .form-grid,
  .wizard-progress,
  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding-left: 5%;
    padding-right: 5%;
  }

  .navbar {
    align-items: center;
    gap: 14px;
  }

  .brand-logo {
    width: 66px;
    height: 66px;
  }

  .brand strong {
    font-size: 20px;
  }

  .nav-actions {
    flex-direction: column;
  }

  .hero {
    margin-top: 46px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .hero-card-grid,
  .service-grid,
  .option-grid {
    grid-template-columns: 1fr;
  }

  .quote-total,
  .wizard-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .floating-contact {
    right: 12px;
    bottom: 12px;
  }
}
