/* ==========================================================================
   Easylift Removals — modernised stylesheet
   ========================================================================== */

:root {
  --color-primary: #e05f03;
  --color-primary-dark: #b94b02;
  --color-secondary: #1ba3dd;
  --color-ink: #212429;
  --color-text: #3b3f45;
  --color-muted: #6b7280;
  --color-bg: #ffffff;
  --color-bg-alt: #f7f5f2;
  --color-border: #eae7e2;

  --font-heading: "Poppins", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;

  --radius: 12px;
  --shadow-sm: 0 2px 10px rgba(33, 20, 0, 0.06);
  --shadow-md: 0 12px 30px rgba(33, 20, 0, 0.1);

  --container: 1140px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg-alt);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto; /* keep aspect ratio when width/height attributes are scaled down */
  display: block;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  color: var(--color-primary-dark);
}

::selection {
  background: rgba(224, 95, 3, 0.25);
}

:focus-visible {
  outline: 3px solid var(--color-secondary);
  outline-offset: 2px;
}

/* Keep anchored content clear of the sticky header */
#main {
  scroll-margin-top: 100px;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--color-ink);
  line-height: 1.25;
  margin: 0 0 16px;
  text-wrap: balance;
}

h3 {
  font-size: 1.6rem;
  font-weight: 600;
}

p {
  margin: 0 0 16px;
}

ul {
  margin: 0 0 16px;
  padding-left: 1.2em;
}

li {
  margin-bottom: 8px;
}

hr {
  border: none;
  height: 4px;
  width: 64px;
  background: linear-gradient(90deg, var(--color-primary), #f7a04b);
  border-radius: 999px;
  margin: 0 0 18px;
}

/* ---- Skip link ---------------------------------------------------- */

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--color-primary);
  color: #fff;
  padding: 10px 16px;
  z-index: 1000;
}

.skip-link:focus {
  left: 0;
}

/* ---- Header --------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.5px;
  color: var(--color-primary);
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-tagline {
  font-size: 0.8rem;
  color: var(--color-muted);
  letter-spacing: 0.5px;
}

.nav-toggle {
  display: none;
  border: none;
  background: var(--color-primary);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  font-size: 1.3rem;
  cursor: pointer;
}

.main-nav ul {
  display: flex;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
  white-space: nowrap;
}

.main-nav a {
  display: block;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 500;
  color: var(--color-ink);
}

.main-nav a:hover,
.main-nav a.active {
  background: var(--color-primary);
  color: #fff;
}

.header-cta {
  display: none;
}

.header-cta .btn {
  white-space: nowrap;
}

@media (min-width: 900px) {
  .header-cta {
    display: block;
  }
}

/* ---- Buttons ---------------------------------------------------------- */

.btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 8px;
  font-weight: 600;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
  transition: background-color 0.15s ease, box-shadow 0.15s ease;
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  color: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.btn-outline {
  border-color: #ffffff;
  color: #ffffff;
  background: transparent;
  transition: background-color 0.15s ease;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

/* ---- Hero -------------------------------------------------------------- */

.hero {
  background:
    radial-gradient(640px 420px at 85% 15%, rgba(224, 95, 3, 0.22), transparent 70%),
    radial-gradient(520px 360px at 5% 95%, rgba(224, 95, 3, 0.1), transparent 70%),
    linear-gradient(120deg, #241d17, #33261c);
  color: #fff;
  padding: 72px 0;
}

.hero .container {
  max-width: 900px;
  text-align: center;
}

.hero h1 {
  color: #fff;
  font-size: 2.4rem;
  margin-bottom: 12px;
}

.hero p.lead {
  font-size: 1.15rem;
  color: #d7d3cc;
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 24px;
}

/* ---- Page header (non-home pages) ------------------------------------- */

.page-header {
  background:
    radial-gradient(480px 220px at 25% 0%, rgba(255, 255, 255, 0.16), transparent 70%),
    linear-gradient(120deg, var(--color-primary), var(--color-primary-dark));
  color: #fff;
  padding: 52px 0;
  text-align: center;
}

.page-header h1 {
  color: #fff;
  margin-bottom: 8px;
}

.page-header p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

/* ---- Main layout ------------------------------------------------------- */

.page-body {
  padding: 56px 0 64px;
}

.layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 900px) {
  .layout {
    grid-template-columns: 2fr 1fr;
  }
}

.content-card {
  background: var(--color-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 36px;
}

.content-card > *:last-child {
  margin-bottom: 0;
}

.content-card h3:not(:first-child) {
  margin-top: 28px;
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Sidebar images sit in a white, rounded, clipped card that matches the
   site's card treatment (white surface, soft shadow, subtle border,
   uniform corner radius) and blends the flyer's pale background into the
   page. A gentle hover lift echoes the interactive cards elsewhere. */
.sidebar-figure {
  margin: 0;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  line-height: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sidebar-figure:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.sidebar-figure img {
  display: block;
  width: 100%;
}

.sidebar .call-box {
  background: linear-gradient(135deg, #2b2e34, var(--color-ink));
  color: #fff;
  border-radius: var(--radius);
  border-top: 4px solid var(--color-primary);
  padding: 24px;
}

.sidebar .call-box h3 {
  color: #fff;
  font-size: 1.2rem;
}

.sidebar .call-box a {
  color: var(--color-primary);
  font-weight: 600;
}

/* ---- Feature grid (Why choose us) -------------------------------------- */

.feature-grid {
  list-style: none;
  padding: 0;
  margin: 0 0 8px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 620px) {
  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.feature-grid li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 0;
  padding: 13px 14px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.feature-grid li:hover {
  border-color: rgba(224, 95, 3, 0.45);
  box-shadow: var(--shadow-sm);
}

.feature-grid .icon {
  flex: none;
  width: 26px;
  height: 26px;
  padding: 6px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50%;
}

/* ---- Coverage chips ----------------------------------------------------- */

.chip-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 8px;
}

.chip-list li {
  margin: 0;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.92rem;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.chip-list li:hover {
  border-color: var(--color-primary);
  color: var(--color-primary-dark);
}

/* ---- Testimonial placeholder --------------------------------------------- */

.placeholder-banner {
  text-align: center;
  margin: 24px 0 0;
}

.placeholder-banner img {
  margin: 0 auto;
  border-radius: var(--radius);
}

/* ---- Contact page -------------------------------------------------------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 8px;
}

@media (min-width: 620px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-detail {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 24px;
}

.contact-detail h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.contact-detail address {
  font-style: normal;
  color: var(--color-text);
}

.map-frame {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-top: 24px;
}

.map-frame iframe {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
}

/* ---- Reviews -------------------------------------------------------------- */

.reviews-section {
  margin-top: 48px;
}

.reviews-summary {
  background: var(--color-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 32px;
  text-align: center;
  margin-bottom: 32px;
}

.reviews-summary .stars {
  color: #f5a623;
  font-size: 1.6rem;
  letter-spacing: 2px;
}

.reviews-summary h2 {
  font-size: 1.9rem;
  margin: 10px 0 8px;
}

.reviews-summary p {
  color: var(--color-muted);
  max-width: 52ch;
  margin: 0 auto 24px;
}

.review-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.review-links .btn-google {
  background: #ffffff;
  color: #3c4043;
  border: 1px solid #dadce0;
}

.review-links .btn-google:hover {
  background: #f7f8f8;
}

.review-links .btn-facebook {
  background: #1877f2;
  color: #fff;
  border: 1px solid #1877f2;
}

.review-links .btn-facebook:hover {
  background: #0f63d6;
}

.review-links .btn svg {
  width: 18px;
  height: 18px;
  vertical-align: -3px;
  margin-right: 8px;
}

.review-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) {
  .review-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1000px) {
  .review-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.review-card {
  position: relative;
  background: var(--color-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* Oversized decorative quote mark */
.review-card::after {
  content: "\201C";
  position: absolute;
  top: 8px;
  right: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.5rem;
  line-height: 1;
  color: rgba(224, 95, 3, 0.14);
  pointer-events: none;
}

.review-card .stars {
  color: #f5a623;
  font-size: 1.05rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.review-card blockquote {
  margin: 0 0 18px;
  padding: 0;
  border: none;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  white-space: pre-line;
}

.review-card .reviewer {
  margin-top: auto;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-ink);
}

/* ---- Footer --------------------------------------------------------------- */

.site-footer {
  background: var(--color-ink);
  color: #cfd2d6;
}

/* Brand accent strip along the top of the footer, matching the hr bars */
.site-footer::before {
  content: "";
  display: block;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), #f7a04b);
}

.footer-top {
  /* top/bottom only — the .container class on the same element supplies
     the horizontal padding, and a `padding` shorthand here would wipe it */
  padding-top: 48px;
  padding-bottom: 48px;
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .footer-top {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

.footer-top h3 {
  color: #fff;
  font-size: 1.1rem;
}

.site-footer a {
  color: #cfd2d6;
}

.site-footer a:hover {
  color: var(--color-primary);
}

.footer-top ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-top li {
  margin-bottom: 10px;
}

.footer-brand .brand-name {
  color: var(--color-primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 20px;
  text-align: center;
  font-size: 0.85rem;
  color: #9a9ea3;
}

/* ---- Mobile nav ------------------------------------------------------------ */

@media (max-width: 780px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-bg);
    box-shadow: var(--shadow-md);
    display: none;
  }

  .main-nav.open {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    padding: 12px;
    gap: 4px;
  }

  .main-nav a {
    padding: 12px 16px;
  }
}
