:root {
  --navy: #0f2d4a;
  --blue: #1a5f9e;
  --blue-light: #2e86c1;
  --accent: #e8a13d;
  --gray-bg: #f4f6f8;
  --text: #1f2933;
  --muted: #5b6b79;
  --white: #ffffff;
  --radius: 8px;
  --shadow: 0 4px 18px rgba(15, 45, 74, 0.08);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Segoe UI", Roboto, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

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

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

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 2px 10px rgba(15, 45, 74, 0.08);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--navy);
}

.brand .brand-logo { height: 46px; width: auto; border-radius: 0; }

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 8px;
}

.main-nav a {
  display: inline-block;
  padding: 10px 16px;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.3px;
  color: var(--navy);
  border-radius: var(--radius);
  transition: background 0.15s ease, color 0.15s ease;
}

.main-nav a:hover,
.main-nav a.active {
  background: var(--blue);
  color: var(--white);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--navy);
  cursor: pointer;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  color: var(--white);
  padding: 90px 0;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero h1 {
  font-size: 2.4rem;
  line-height: 1.25;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 28px;
  max-width: 46ch;
}

.hero-image img {
  border-radius: var(--radius);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  background: var(--accent);
  color: var(--navy);
  font-weight: 700;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  font-size: 0.98rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.18); }

.btn-outline {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
  margin-left: 12px;
}

.btn-outline-navy {
  background: transparent;
  border: 2px solid var(--blue);
  color: var(--blue);
}

.btn-outline-navy:hover { background: var(--blue); color: var(--white); }

/* Value props */
.value-props {
  padding: 60px 0;
  background: var(--gray-bg);
}

.value-props .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.value-card {
  background: var(--white);
  padding: 32px 26px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}

.value-card .icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 16px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
}

.value-card h3 { font-size: 1.05rem; margin-bottom: 8px; color: var(--navy); }
.value-card p { color: var(--muted); font-size: 0.95rem; }

/* Section generic */
.section { padding: 72px 0; }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 44px; }
.section-header h2 { font-size: 2rem; color: var(--navy); margin-bottom: 12px; }
.section-header p { color: var(--muted); }

/* Services grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.15s ease;
}

.service-card:hover { transform: translateY(-4px); }

.service-card img { height: 170px; object-fit: cover; width: 100%; }

.service-card .body { padding: 22px; }
.service-card h3 { font-size: 1.08rem; color: var(--navy); margin-bottom: 10px; }
.service-card p { color: var(--muted); font-size: 0.93rem; }

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.service-tags span {
  background: var(--gray-bg);
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
}

/* CTA band */
.cta-band {
  background: var(--navy);
  color: var(--white);
  padding: 56px 0;
  text-align: center;
}

.cta-band h2 { font-size: 1.7rem; margin-bottom: 12px; }
.cta-band p { color: rgba(255,255,255,0.85); margin-bottom: 26px; }

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.about-grid img { border-radius: var(--radius); box-shadow: var(--shadow); }

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.stat { text-align: center; padding: 20px; background: var(--gray-bg); border-radius: var(--radius); }
.stat strong { display: block; font-size: 1.5rem; color: var(--blue); }
.stat span { font-size: 0.85rem; color: var(--muted); }

ul.check-list { list-style: none; margin-top: 18px; }
ul.check-list li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 10px;
  color: var(--text);
}
ul.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
}

/* Contact */
.contact-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
}

.contact-info .item {
  display: flex;
  gap: 16px;
  margin-bottom: 26px;
}

.contact-info .icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.contact-info h4 { color: var(--navy); font-size: 0.95rem; margin-bottom: 4px; }
.contact-info p, .contact-info a { color: var(--muted); font-size: 0.95rem; }

form.contact-form {
  background: var(--gray-bg);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }

.field input,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d6dde3;
  border-radius: 6px;
  font-size: 0.95rem;
  font-family: inherit;
  background: var(--white);
}

.field textarea { resize: vertical; min-height: 120px; }

/* Terms */
.terms-content h2 { color: var(--navy); margin: 28px 0 12px; font-size: 1.2rem; }
.terms-content p, .terms-content li { color: var(--muted); margin-bottom: 10px; }
.terms-content ol, .terms-content ul { padding-left: 22px; margin-bottom: 14px; }

/* Footer */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.footer-grid h4 { color: var(--white); margin-bottom: 14px; font-size: 0.95rem; }
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 8px; font-size: 0.9rem; }
.footer-grid a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 20px;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
}

/* Quote hub */
.quote-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}

.quote-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px 32px;
  text-align: center;
  transition: transform 0.15s ease;
}

.quote-card:hover { transform: translateY(-4px); }

.quote-card .emoji { font-size: 2.6rem; margin-bottom: 14px; }
.quote-card h3 { color: var(--navy); font-size: 1.2rem; margin-bottom: 10px; }
.quote-card p { color: var(--muted); font-size: 0.95rem; margin-bottom: 22px; }

/* Estimate calculator */
.calc-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px;
  max-width: 720px;
  margin: 0 auto 32px;
}

.calc-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #eef1f4;
}

.calc-row:last-child { border-bottom: none; }

.calc-row-label { flex: 1; }
.calc-row-label strong { display: block; color: var(--navy); font-size: 0.98rem; }
.calc-row-label span { color: var(--muted); font-size: 0.85rem; }

.qty-stepper {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--gray-bg);
  border-radius: 8px;
  padding: 6px 8px;
}

.qty-stepper button {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  border: none;
  background: var(--white);
  color: var(--navy);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

.qty-stepper input {
  width: 42px;
  text-align: center;
  border: none;
  background: transparent;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
}

.estimate-result {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  color: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  max-width: 720px;
  margin: 0 auto 32px;
}

.estimate-result .range { font-size: 2.2rem; font-weight: 800; margin: 6px 0; }
.estimate-result p { color: rgba(255,255,255,0.85); font-size: 0.9rem; }

.disclaimer {
  max-width: 720px;
  margin: 0 auto 32px;
  background: var(--gray-bg);
  border-left: 4px solid var(--accent);
  padding: 14px 18px;
  border-radius: 6px;
  color: var(--muted);
  font-size: 0.88rem;
}

/* File upload */
.file-drop {
  border: 2px dashed #c7d2db;
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  background: var(--gray-bg);
  color: var(--muted);
  cursor: pointer;
  transition: border-color 0.15s ease;
}

.file-drop:hover { border-color: var(--blue); }
.file-drop input { display: none; }

.thumb-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.thumb-grid img {
  width: 100%;
  height: 90px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

/* Thank you */
.thankyou-card {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 48px 36px;
}

.thankyou-card .emoji { font-size: 3rem; margin-bottom: 16px; }
.thankyou-card h1 { color: var(--navy); margin-bottom: 12px; }
.thankyou-card p { color: var(--muted); margin-bottom: 24px; }

/* Dark eye-catching section band (e.g. "Who We Work With") */
.section-dark {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  padding-top: 36px;
}

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

.section-dark .section-header h2 {
  display: inline-block;
  font-size: 2.4rem;
  letter-spacing: 0.5px;
  padding-bottom: 14px;
  position: relative;
}

.section-dark .section-header h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 90px;
  height: 5px;
  border-radius: 3px;
  background: var(--accent);
}

.section-dark .section-header p { color: rgba(255, 255, 255, 0.85); }

@media (max-width: 680px) {
  .section-dark .section-header h2 { font-size: 1.9rem; }
}

/* Scrolling services marquee (homepage) */
.marquee-wrap {
  overflow: hidden;
  position: relative;
  padding: 12px 0 8px;
}

.marquee-wrap::before,
.marquee-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 90px;
  z-index: 2;
  pointer-events: none;
}

.marquee-wrap::before { left: 0; background: linear-gradient(90deg, var(--white), rgba(255,255,255,0)); }
.marquee-wrap::after { right: 0; background: linear-gradient(270deg, var(--white), rgba(255,255,255,0)); }

.marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marqueeScroll 45s linear infinite;
}

.marquee-wrap:hover .marquee-track { animation-play-state: paused; }

.marquee-card {
  flex: 0 0 auto;
  width: 220px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.15s ease;
}

.marquee-card:hover { transform: translateY(-4px); }
.marquee-card img { width: 100%; height: 120px; object-fit: cover; }
.marquee-card .mc-body { padding: 12px 14px; }
.marquee-card h4 { font-size: 0.92rem; color: var(--navy); font-weight: 700; }

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 680px) {
  .marquee-card { width: 160px; }
  .marquee-card img { height: 90px; }
  .marquee-wrap::before, .marquee-wrap::after { width: 40px; }
}

/* Hero "Instant Estimate" CTA — sits inside the dark blue hero band, near the top of the page */
.hero-estimate-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  background: var(--accent);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 24px;
  border-radius: 50px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  animation: heroPulse 2.6s ease-in-out infinite;
}

.hero-estimate-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.26);
}

@keyframes heroPulse {
  0%, 100% { box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2); }
  50% { box-shadow: 0 10px 24px rgba(232, 161, 61, 0.65); }
}

@media (max-width: 680px) {
  .hero-estimate-btn { padding: 12px 20px; font-size: 0.88rem; }
}

/* Responsive */
@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; }
  .value-props .grid,
  .services-grid,
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid, .contact-wrap { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .main-nav { position: fixed; inset: 78px 0 0 0; background: var(--white); display: none; flex-direction: column; padding: 20px; }
  .main-nav.open { display: flex; }
  .main-nav ul { flex-direction: column; }
  .nav-toggle { display: block; }
  .value-props .grid, .services-grid, .footer-grid, .stats-row { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.8rem; }
  .quote-grid { grid-template-columns: 1fr; }
}
