/* Suffolk Removals Direct — shared stylesheet */

:root {
  --navy: #0d2b45;
  --navy-dark: #081b2d;
  --orange: #ff7a30;
  --orange-dark: #e0631f;
  --grey-bg: #f5f7f9;
  --text: #1e2a33;
  --muted: #5b6b76;
  --white: #ffffff;
  --border: #e1e6ea;
  --radius: 10px;
  --max-width: 1140px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

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

a { color: var(--navy); }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Top bar */
.top-bar {
  background: var(--navy-dark);
  color: var(--white);
  font-size: 0.85rem;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 6px;
  padding-bottom: 6px;
  flex-wrap: wrap;
  gap: 6px;
}
.top-bar a { color: var(--white); text-decoration: none; }
.top-bar a:hover { text-decoration: underline; }

/* Header */
header.site-header {
  background: var(--navy);
  color: var(--white);
  padding: 18px 0;
}
header.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.2px;
}
.logo span { color: var(--orange); }

nav.main-nav ul {
  list-style: none;
  display: flex;
  gap: 22px;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}
nav.main-nav a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
}
nav.main-nav a:hover { color: var(--orange); }

.header-cta {
  background: var(--orange);
  color: var(--white);
  padding: 10px 18px;
  border-radius: var(--radius);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
.header-cta:hover { background: var(--orange-dark); }

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #14395a 100%);
  color: var(--white);
  padding: 64px 0 56px;
}
.hero h1 {
  font-size: 2.4rem;
  margin: 0 0 14px;
  max-width: 780px;
}
.hero p.lead {
  font-size: 1.15rem;
  color: #d7e2ea;
  max-width: 620px;
  margin: 0 0 26px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: var(--radius);
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
}
.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: var(--orange-dark); }
.btn-secondary { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.6); }
.btn-secondary:hover { border-color: var(--white); }

.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}
.trust-strip ul {
  list-style: none;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 600;
}

/* Sections */
section { padding: 56px 0; }
section.alt { background: var(--grey-bg); }

h2 {
  font-size: 1.8rem;
  margin: 0 0 10px;
}
.section-intro {
  color: var(--muted);
  max-width: 700px;
  margin: 0 0 34px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
@media (max-width: 820px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
}
.card h3 { margin-top: 0; font-size: 1.15rem; }
.card p { color: var(--muted); margin-bottom: 0; }
.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  margin-bottom: 14px;
}

.hero-media {
  max-width: 340px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .hero-media { display: none; }
}

/* Town grid */
.town-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 900px) {
  .town-grid { grid-template-columns: repeat(2, 1fr); }
}
.town-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  text-decoration: none;
  color: var(--text);
  transition: box-shadow 0.15s, transform 0.15s;
}
.town-card:hover {
  box-shadow: 0 8px 20px rgba(13,43,69,0.12);
  transform: translateY(-2px);
}
.town-card h3 { margin: 0 0 6px; color: var(--navy); }
.town-card span.volume { color: var(--muted); font-size: 0.85rem; }

/* FAQ */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-item h3 { margin: 0 0 8px; font-size: 1.05rem; }
.faq-item p { margin: 0; color: var(--muted); }

/* Breadcrumb */
.breadcrumb {
  font-size: 0.85rem;
  color: var(--muted);
  padding: 14px 0;
}
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

/* Contact form */
.contact-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
}
.contact-panel form { display: grid; gap: 14px; }
.contact-panel label { font-weight: 600; font-size: 0.9rem; display: block; margin-bottom: 6px; }
.contact-panel input, .contact-panel select, .contact-panel textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
}
.contact-panel .row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 600px) { .contact-panel .row-2 { grid-template-columns: 1fr; } }

.placeholder-note {
  background: #fff4e8;
  border: 1px dashed var(--orange);
  color: #7a4a1c;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.85rem;
  margin-bottom: 18px;
}

/* Footer */
footer.site-footer {
  background: var(--navy-dark);
  color: #b9c8d3;
  padding: 44px 0 28px;
  font-size: 0.9rem;
}
footer.site-footer .grid-3 { margin-bottom: 26px; }
footer.site-footer h4 { color: var(--white); margin: 0 0 12px; font-size: 1rem; }
footer.site-footer ul { list-style: none; margin: 0; padding: 0; }
footer.site-footer li { margin-bottom: 8px; }
footer.site-footer a { color: #b9c8d3; text-decoration: none; }
footer.site-footer a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 20px;
  padding-top: 18px;
  font-size: 0.8rem;
  color: #8296a3;
}

.town-list-inline a { color: var(--navy); font-weight: 600; }
