/* ============================================
   Steve Loves Junk — Demo Site Styles
   Mobile-first responsive design
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --green: #2D5016;
  --green-light: #3a6b1e;
  --green-dark: #1e3a0e;
  --green-bg: #f0f5ec;
  --white: #ffffff;
  --charcoal: #1A1A2E;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --warm-gray: #f5f3f0;
  --gold: #d4a017;
  --bws-blue: #1a56db;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.04);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.04);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --banner-height: 70px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--banner-height) + 72px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  padding-top: calc(var(--banner-height) + 64px);
}

body.banner-dismissed {
  --banner-height: 0px;
  padding-top: 64px;
}

body.banner-dismissed .site-header {
  top: 0;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

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

/* --- Fade-in Animation --- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Header --- */
.site-header {
  position: fixed;
  top: var(--banner-height);
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  transition: top 0.3s ease;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 64px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 18px;
  color: var(--green);
  white-space: nowrap;
}

.logo-icon {
  font-size: 24px;
}

.nav-links {
  display: none;
  gap: 32px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--green);
}

.nav-cta {
  display: none;
  padding: 8px 20px;
  background: var(--green);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--green-light);
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.nav-links.open {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: calc(var(--banner-height) + 64px);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  padding: 32px 24px;
  gap: 0;
  z-index: 999;
  animation: slideDown 0.3s ease;
}

.nav-links.open li {
  border-bottom: 1px solid var(--gray-100);
}

.nav-links.open a {
  display: block;
  padding: 16px 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--charcoal);
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- Hero --- */
.hero {
  background: linear-gradient(165deg, var(--green-bg) 0%, var(--white) 60%, var(--warm-gray) 100%);
  padding: 48px 20px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(45,80,22,0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-layout {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-truck {
  text-align: center;
  margin-top: 8px;
  margin-bottom: -12px;
}

.hero-truck img {
  max-width: 260px;
  width: 80%;
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.12));
}

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(45,80,22,0.1);
  color: var(--green);
  font-size: 13px;
  font-weight: 600;
  border-radius: 100px;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.hero h1 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 17px;
  color: var(--gray-600);
  max-width: 560px;
  margin: 0 auto 28px;
  line-height: 1.6;
}

.hero-sub strong {
  color: var(--green);
  font-weight: 600;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  margin-bottom: 48px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(45,80,22,0.3);
}

.btn-primary:hover {
  background: var(--green-light);
  box-shadow: 0 4px 12px rgba(45,80,22,0.35);
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--white);
  color: var(--green);
  border: 2px solid var(--green);
}

.btn-secondary:hover {
  background: var(--green-bg);
}

.btn-full {
  width: 100%;
}

.btn svg {
  flex-shrink: 0;
}

/* Trust Bar */
.trust-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--gray-200);
  border-top: 1px solid var(--gray-200);
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 20px 12px;
  background: var(--white);
  text-align: center;
}

.trust-icon {
  font-size: 22px;
  line-height: 1;
}

.trust-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-600);
}

/* --- Sections --- */
.section {
  padding: 64px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.section-header h2 {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.section-header p {
  font-size: 16px;
  color: var(--gray-500);
  max-width: 520px;
  margin: 0 auto;
}

/* --- Services --- */
.services {
  background: var(--gray-50);
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid var(--gray-200);
  transition: all 0.25s ease;
}

.service-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.service-icon {
  width: 52px;
  height: 52px;
  background: var(--green-bg);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--green);
}

.service-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--charcoal);
}

.service-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
}

/* --- Why Us --- */
.why-us {
  background: var(--white);
}

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

.feature-block {
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
}

.feature-icon-wrap {
  width: 48px;
  height: 48px;
  background: var(--green);
  color: var(--white);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.feature-block h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.feature-block p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.65;
}

.feature-block p strong {
  color: var(--green);
}

/* --- Reviews --- */
.reviews {
  background: var(--green-bg);
}

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

.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid var(--gray-200);
  position: relative;
}

.review-stars {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.review-card blockquote {
  font-size: 15px;
  line-height: 1.7;
  color: var(--charcoal);
  font-style: normal;
  margin-bottom: 12px;
}

.review-source {
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-400);
}

/* --- Service Area --- */
.area {
  background: var(--white);
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.area-col h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--green-bg);
}

.area-col ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.area-col li {
  font-size: 14px;
  color: var(--gray-600);
  padding: 3px 0;
}

.area-col li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
}

/* --- Contact --- */
.contact {
  background: var(--gray-50);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

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

.contact-block h3 {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-400);
  margin-bottom: 6px;
}

.contact-phone {
  font-size: 28px;
  font-weight: 700;
  color: var(--green);
  display: block;
  line-height: 1.3;
}

.contact-note {
  font-size: 14px;
  color: var(--gray-500);
  margin-top: 2px;
}

.contact-email {
  font-size: 16px;
  font-weight: 500;
  color: var(--green);
}

.contact-email:hover,
.contact-phone:hover {
  text-decoration: underline;
}

.contact-address {
  font-size: 16px;
  color: var(--charcoal);
  display: block;
  line-height: 1.5;
}

.contact-address:hover {
  color: var(--green);
}

.hours-table {
  width: 100%;
  max-width: 320px;
  border-collapse: collapse;
}

.hours-table td {
  padding: 6px 0;
  font-size: 15px;
  color: var(--charcoal);
}

.hours-table td:first-child {
  font-weight: 500;
  padding-right: 16px;
}

.hours-table td.closed {
  color: var(--gray-400);
  font-weight: 500;
}

.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.payment-badge {
  display: inline-block;
  padding: 4px 10px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-600);
}

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-md);
}

.contact-form h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--charcoal);
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 16px;
  color: var(--charcoal);
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(45,80,22,0.12);
  background: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236b7280' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

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

.form-disclaimer {
  font-size: 12px;
  color: var(--gray-400);
  text-align: center;
  margin-top: 12px;
}

.contact-form .btn {
  margin-top: 8px;
}

/* --- Footer --- */
.site-footer {
  background: var(--charcoal);
  color: var(--gray-300);
  padding: 48px 0 24px;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 18px;
  color: var(--white);
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--gray-400);
  max-width: 320px;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}

.footer-links ul,
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a,
.footer-contact a {
  font-size: 14px;
  color: var(--gray-400);
  transition: color 0.2s;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--white);
}

.footer-contact li {
  font-size: 14px;
  color: var(--gray-400);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--gray-500);
}

.powered-by a {
  color: var(--gray-400);
  text-decoration: underline;
  transition: color 0.2s;
}

.powered-by a:hover {
  color: var(--white);
}

/* --- Mobile Sticky Bar --- */
.mobile-sticky-bar {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  box-shadow: 0 -4px 12px rgba(0,0,0,0.08);
  padding: 8px;
  gap: 8px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.mobile-sticky-bar.visible {
  transform: translateY(0);
}

.sticky-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-md);
  min-height: 48px;
  text-align: center;
}

.sticky-btn-call {
  background: var(--green);
  color: var(--white);
}

.sticky-btn-book {
  background: var(--charcoal);
  color: var(--white);
}

/* Extra spacing at bottom on mobile to account for sticky bar */
.site-footer {
  padding-bottom: 100px;
}

/* ============================================
   Tablet (640px+)
   ============================================ */
@media (min-width: 640px) {
  .hero h1 {
    font-size: 44px;
  }

  .hero-ctas {
    flex-direction: row;
    justify-content: center;
  }

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

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

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

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

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

  .form-row {
    grid-template-columns: 1fr 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* ============================================
   Desktop (1024px+)
   ============================================ */
@media (min-width: 1024px) {
  body {
    padding-top: calc(var(--banner-height) + 72px);
  }

  body.banner-dismissed {
    padding-top: 72px;
  }

  .nav-container {
    height: 72px;
  }

  .nav-links {
    display: flex;
  }

  .nav-cta {
    display: inline-flex;
  }

  .hamburger {
    display: none;
  }

  .nav-links.open {
    position: static;
    flex-direction: row;
    background: none;
    padding: 0;
    gap: 32px;
    animation: none;
  }

  .nav-links.open li {
    border-bottom: none;
  }

  .nav-links.open a {
    display: inline;
    padding: 0;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-600);
  }

  .hero {
    padding: 80px 20px 0;
  }

  .hero-layout {
    display: flex;
    align-items: center;
    gap: 40px;
  }

  .hero-content {
    flex: 1;
    text-align: left;
    margin: 0;
  }

  .hero-content .hero-badge {
    margin-left: 0;
  }

  .hero-sub {
    margin-left: 0;
    margin-right: 0;
    font-size: 19px;
  }

  .hero-ctas {
    justify-content: flex-start;
  }

  .hero-truck {
    flex: 0 0 auto;
    margin-top: 0;
    margin-bottom: 0;
  }

  .hero-truck img {
    max-width: 480px;
  }

  .hero h1 {
    font-size: 52px;
  }

  .section {
    padding: 96px 0;
  }

  .section-header {
    margin-bottom: 56px;
  }

  .section-header h2 {
    font-size: 38px;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .features-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .reviews-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .area-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 28px;
  }

  .contact-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 56px;
  }

  .contact-form-wrap {
    padding: 40px 36px;
  }

  .contact-phone {
    font-size: 32px;
  }

  /* Hide mobile sticky bar on desktop */
  .mobile-sticky-bar {
    display: none;
  }

  .site-footer {
    padding-bottom: 24px;
  }

  html {
    scroll-padding-top: calc(var(--banner-height) + 80px);
  }
}