/* ============================================================
   Got Junk SD — Main Stylesheet
   Version: 1.0.0
   ============================================================ */

/* ────────────────────────────────────────────────────────────
   CSS VARIABLES
──────────────────────────────────────────────────────────── */
:root {
  --navy:       #1B3A6B;
  --orange:     #F26522;
  --white:      #ffffff;
  --light-gray: #f5f5f5;
  --dark:       #222222;
  --border:     #dddddd;
  --shadow:     0 2px 12px rgba(0, 0, 0, 0.08);

  --navy-dark:   #142d56;
  --orange-dark: #d9561a;
  --font-stack:  -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --radius:      8px;
  --radius-lg:   12px;
  --transition:  0.2s ease;
}

/* ────────────────────────────────────────────────────────────
   GLOBAL / RESET
──────────────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  margin: 0;
  padding-top: 84px; /* offset for fixed header */
  font-family: var(--font-stack);
  color: var(--dark);
  background-color: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

a:hover,
a:focus {
  color: var(--orange);
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

p {
  margin: 0 0 1rem;
}

p:last-child {
  margin-bottom: 0;
}

em {
  font-style: italic;
}

/* ────────────────────────────────────────────────────────────
   TYPOGRAPHY
──────────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  margin: 0 0 0.75rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.2rem; }
h5 { font-size: 1.05rem; }
h6 { font-size: 1rem; }

/* ────────────────────────────────────────────────────────────
   CONTAINER
──────────────────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* ────────────────────────────────────────────────────────────
   SECTIONS
──────────────────────────────────────────────────────────── */
.section {
  padding: 70px 0;
}

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

.section-heading {
  font-size: 2.2rem;
  color: var(--dark);
  margin-bottom: 12px;
}

.section-subheading {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.text-center  { text-align: center; }
.text-white   { color: var(--white) !important; }
.text-white-muted { color: rgba(255, 255, 255, 0.8) !important; }

/* ────────────────────────────────────────────────────────────
   BUTTONS
──────────────────────────────────────────────────────────── */
.btn-primary,
.btn-outline,
.btn-white-navy,
.btn-submit {
  display: inline-block;
  font-family: var(--font-stack);
  font-size: 1rem;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
  text-align: center;
  line-height: 1.4;
  white-space: nowrap;
}

/* Primary: orange fill */
.btn-primary {
  background-color: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--orange-dark);
  border-color: var(--orange-dark);
  color: var(--white);
  transform: translateY(-1px);
}

/* Outline: white border / white text */
.btn-outline {
  background-color: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover,
.btn-outline:focus {
  background-color: var(--white);
  color: var(--navy);
  transform: translateY(-1px);
}

/* White button with navy text */
.btn-white-navy {
  background-color: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-white-navy:hover,
.btn-white-navy:focus {
  background-color: var(--light-gray);
  color: var(--navy-dark);
  border-color: var(--light-gray);
  transform: translateY(-1px);
}

/* ────────────────────────────────────────────────────────────
   SITE HEADER
──────────────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--white);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
}

/* Top Bar */
.top-bar {
  background-color: var(--navy);
  color: var(--white);
  padding: 6px 0;
  font-size: 0.85rem;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.top-bar-tagline {
  color: rgba(255, 255, 255, 0.8);
}

.top-bar-phone {
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color var(--transition);
}

.top-bar-phone:hover {
  color: var(--orange);
}

/* Header Main Row */
.header-main {
  background-color: var(--white);
  padding: 12px 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.site-logo {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.5px;
  white-space: nowrap;
  flex-shrink: 0;
}

.site-logo:hover {
  color: var(--navy);
}

.logo-accent {
  color: var(--orange);
}

/* Primary Navigation */
.primary-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: nowrap;
}

.primary-nav ul li a {
  color: var(--navy);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 8px 12px;
  border-radius: 4px;
  display: block;
  transition: color var(--transition), background-color var(--transition);
}

.primary-nav ul li a:hover {
  color: var(--orange);
  background-color: rgba(242, 101, 34, 0.06);
}

/* CTA button in nav */
.nav-cta {
  background-color: var(--orange) !important;
  color: var(--white) !important;
  border-radius: 6px !important;
  padding: 10px 20px !important;
  font-weight: 700 !important;
}

.nav-cta:hover {
  background-color: var(--orange-dark) !important;
  color: var(--white) !important;
}

/* Hamburger Button */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 2px solid var(--navy);
  border-radius: 6px;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
  transition: border-color var(--transition);
}

.hamburger:hover {
  border-color: var(--orange);
}

.hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--navy);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition), background-color var(--transition);
}

.hamburger:hover .hamburger-line {
  background-color: var(--orange);
}

/* Hamburger active state */
.hamburger.active .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}
.hamburger.active .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ────────────────────────────────────────────────────────────
   HERO SECTIONS
──────────────────────────────────────────────────────────── */
.hero {
  background-color: var(--navy);
  color: var(--white);
  padding: 100px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 3.5rem;
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 800;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 700px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-inner {
  padding: 80px 20px 70px;
}

.hero-inner h1 {
  font-size: 2.8rem;
}

.hero-book {
  padding-bottom: 80px;
}

/* Trust Badges */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 8px;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 100px;
}

/* ────────────────────────────────────────────────────────────
   3-STEP PROCESS
──────────────────────────────────────────────────────────── */
.how-it-works .section-heading {
  margin-bottom: 8px;
}

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

.step-card {
  background-color: var(--white);
  box-shadow: var(--shadow);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.step-number {
  width: 64px;
  height: 64px;
  background-color: var(--orange);
  color: var(--white);
  font-size: 1.75rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.step-card h3 {
  color: var(--navy);
  margin-bottom: 10px;
}

.step-card p {
  color: #555;
  font-size: 0.975rem;
  line-height: 1.6;
}

/* ────────────────────────────────────────────────────────────
   ITEMS / ICON GRID
──────────────────────────────────────────────────────────── */
.items-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}

.item-card {
  background-color: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  cursor: default;
}

.item-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.item-icon {
  font-size: 2.5rem;
  margin-bottom: 10px;
  line-height: 1;
  display: block;
}

.item-card h3 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.item-card p {
  font-size: 0.85rem;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

.see-full-list {
  margin-top: 8px;
}

.see-more-link {
  color: var(--orange);
  font-weight: 700;
  font-size: 1.05rem;
  border-bottom: 2px solid transparent;
  transition: border-color var(--transition);
}

.see-more-link:hover {
  color: var(--orange-dark);
  border-bottom-color: var(--orange-dark);
}

/* ────────────────────────────────────────────────────────────
   REVIEWS SECTION
──────────────────────────────────────────────────────────── */
.reviews-section .section-heading {
  color: var(--white);
  margin-bottom: 8px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.review-card {
  background-color: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.stars {
  color: #f59e0b;
  font-size: 1.2rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.review-text {
  color: var(--dark);
  font-size: 0.975rem;
  line-height: 1.65;
  flex: 1;
  font-style: italic;
}

.reviewer-name {
  font-weight: 700;
  color: var(--navy);
  margin-top: 16px;
  margin-bottom: 2px;
  font-size: 0.95rem;
}

.reviewer-location {
  font-size: 0.85rem;
  color: #888;
  margin: 0;
}

/* ────────────────────────────────────────────────────────────
   CTA SECTION (Orange)
──────────────────────────────────────────────────────────── */
.cta-section {
  padding: 80px 0;
}

.cta-heading {
  font-size: 2.4rem;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-subtext {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.92);
  max-width: 600px;
  margin: 0 auto 32px;
}

/* ────────────────────────────────────────────────────────────
   PRICING PAGE
──────────────────────────────────────────────────────────── */
/* Philosophy Columns */
.pricing-philosophy {
  max-width: 960px;
  margin: 0 auto;
}

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

.philosophy-col {
  text-align: center;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--light-gray);
}

.philosophy-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
  display: block;
}

.philosophy-col h3 {
  color: var(--navy);
  margin-bottom: 8px;
}

/* Pricing Table */
.table-scroll-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.pricing-table {
  border-collapse: collapse;
  width: 100%;
  min-width: 540px;
  background: var(--white);
  font-size: 0.975rem;
}

.pricing-table thead tr {
  background-color: var(--navy);
  color: var(--white);
}

.pricing-table th {
  padding: 16px 20px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.pricing-table td {
  padding: 14px 20px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.pricing-table tbody tr:nth-child(even) {
  background-color: var(--light-gray);
}

.pricing-table tbody tr:hover {
  background-color: rgba(242, 101, 34, 0.06);
}

.pricing-table-highlight {
  background-color: rgba(27, 58, 107, 0.06) !important;
  font-weight: 700;
}

.pricing-table-highlight td {
  border-bottom: 2px solid var(--navy);
}

.table-cta-link {
  color: var(--orange);
  font-weight: 700;
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition);
}

.table-cta-link:hover {
  color: var(--orange-dark);
  border-bottom-color: var(--orange-dark);
}

/* Single Item Cards */
.single-item-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.single-item-card {
  background-color: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.single-item-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow);
}

.single-item-icon {
  font-size: 2.2rem;
  display: block;
  margin-bottom: 10px;
}

.single-item-card h3 {
  color: var(--navy);
  font-size: 1rem;
  margin-bottom: 12px;
}

.single-item-cta {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--orange);
  border: 1px solid var(--orange);
  padding: 6px 16px;
  border-radius: 4px;
  transition: background-color var(--transition), color var(--transition);
}

.single-item-cta:hover {
  background-color: var(--orange);
  color: var(--white);
}

/* What's Included */
.included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 800px;
  margin: 36px auto 0;
}

.included-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.975rem;
  color: var(--dark);
  font-weight: 600;
}

.included-check {
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* Free Estimate CTA Box */
.estimate-cta-box {
  background-color: var(--light-gray);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  max-width: 640px;
  margin: 0 auto;
}

.estimate-cta-box h2 {
  color: var(--navy);
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.estimate-cta-box p {
  color: #555;
  margin-bottom: 24px;
  font-size: 1.05rem;
}

.estimate-or {
  margin-top: 18px;
  font-size: 0.95rem;
  color: #666;
}

.estimate-or a {
  color: var(--orange);
  font-weight: 700;
}

/* ────────────────────────────────────────────────────────────
   WHAT WE TAKE PAGE
──────────────────────────────────────────────────────────── */
.what-we-take-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.take-category-card {
  background-color: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.take-category-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow);
}

.take-category-icon {
  font-size: 2.2rem;
  display: block;
  margin-bottom: 10px;
}

.take-category-card h3 {
  color: var(--navy);
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.take-list {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
}

.take-list li {
  font-size: 0.875rem;
  color: #555;
  padding: 3px 0;
  padding-left: 14px;
  position: relative;
}

.take-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

.take-note {
  font-size: 0.8rem;
  color: #888;
  margin-top: 8px;
  padding: 8px;
  background: var(--light-gray);
  border-radius: 4px;
  border-left: 3px solid var(--orange);
}

/* Can't Take Section */
.cant-take-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 36px 0 20px;
}

.cant-take-card {
  background-color: var(--white);
  border: 2px solid #ffb3b3;
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
}

.cant-take-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 10px;
}

.cant-take-card h3 {
  color: #c0392b;
  font-size: 1rem;
  margin-bottom: 8px;
}

.cant-take-card p {
  font-size: 0.875rem;
  color: #666;
  margin: 0;
}

.cant-take-note {
  font-size: 0.975rem;
  color: #555;
  margin-top: 8px;
}

.cant-take-note a {
  color: var(--orange);
  font-weight: 700;
}

/* ────────────────────────────────────────────────────────────
   SERVICE AREAS PAGE
──────────────────────────────────────────────────────────── */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.area-card {
  background-color: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 22px;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.area-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.area-pin-icon {
  font-size: 1.6rem;
  display: block;
  margin-bottom: 6px;
}

.area-name {
  color: var(--navy);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.area-card p {
  font-size: 0.925rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 12px;
}

.area-book-link {
  color: var(--orange);
  font-weight: 700;
  font-size: 0.9rem;
}

.area-book-link:hover {
  color: var(--orange-dark);
}

.areas-coverage-note {
  margin-top: 36px;
  padding: 20px 24px;
  background: var(--light-gray);
  border-radius: var(--radius);
  font-size: 1rem;
  color: #444;
}

.areas-coverage-note a {
  color: var(--orange);
  font-weight: 700;
}

/* ────────────────────────────────────────────────────────────
   ABOUT US PAGE
──────────────────────────────────────────────────────────── */
/* Story Section */
.story-section {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
}

.story-text h2 {
  color: var(--navy);
  margin-bottom: 20px;
}

.story-lead {
  font-size: 1.2rem;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 16px;
}

.story-text p {
  color: #555;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 14px;
}

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

.story-stat {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.story-stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}

.story-stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.value-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 2px solid transparent;
  transition: border-color var(--transition), transform var(--transition);
}

.value-card:hover {
  border-color: var(--orange);
  transform: translateY(-3px);
}

.value-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 16px;
}

.value-card h3 {
  color: var(--navy);
  margin-bottom: 10px;
}

.value-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.65;
}

/* Recycling Partners */
.recycling-content {
  max-width: 960px;
  margin: 0 auto;
}

.recycling-text {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 36px;
}

.recycling-text p {
  color: #555;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 14px;
}

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

.partner-card {
  background: var(--light-gray);
  border-radius: var(--radius);
  padding: 24px 18px;
  text-align: center;
  border: 2px solid var(--border);
  transition: border-color var(--transition);
}

.partner-card:hover {
  border-color: var(--orange);
}

.partner-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 10px;
}

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

.partner-card p {
  font-size: 0.825rem;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

/* ────────────────────────────────────────────────────────────
   BOOK NOW / LEAD FORM PAGE
──────────────────────────────────────────────────────────── */
.book-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
}

/* Form Wrapper */
.lead-form-wrapper {
  background-color: var(--white);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
}

.form-heading {
  color: var(--navy);
  font-size: 1.6rem;
  margin-bottom: 6px;
}

.form-subheading {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 28px;
}

.lead-form .form-group {
  margin-bottom: 20px;
}

.lead-form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dark);
}

.required {
  color: #e74c3c;
  margin-left: 2px;
}

.optional {
  color: #999;
  font-weight: 400;
  font-size: 0.85rem;
  margin-left: 4px;
}

.lead-form input[type="text"],
.lead-form input[type="tel"],
.lead-form input[type="date"],
.lead-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: 6px;
  font-size: 1rem;
  font-family: var(--font-stack);
  color: var(--dark);
  background-color: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
  appearance: none;
}

.lead-form input:focus,
.lead-form textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(242, 101, 34, 0.15);
}

.lead-form textarea {
  resize: vertical;
  min-height: 110px;
}

/* Form message states */
#form-message {
  display: none;
  padding: 14px 18px;
  border-radius: 6px;
  margin-bottom: 16px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.form-success {
  background-color: #27ae60;
  color: var(--white);
}

.form-error {
  background-color: #e74c3c;
  color: var(--white);
}

/* Submit Button */
.btn-submit {
  width: 100%;
  background-color: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 6px;
  padding: 16px 32px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background-color var(--transition), transform var(--transition);
  margin-top: 4px;
}

.btn-submit:hover:not(:disabled) {
  background-color: var(--orange-dark);
  transform: translateY(-1px);
}

.btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.form-disclaimer {
  font-size: 0.8rem;
  color: #999;
  text-align: center;
  margin-top: 12px;
}

/* Info Column */
.why-book-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 2px solid var(--border);
  margin-bottom: 20px;
}

.why-book-box h2 {
  color: var(--navy);
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.why-book-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.why-book-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.why-check {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.why-book-list li strong {
  display: block;
  color: var(--navy);
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.why-book-list li p {
  font-size: 0.875rem;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

.contact-alt-box {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 24px 22px;
  text-align: center;
  margin-bottom: 20px;
}

.contact-alt-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
}

.contact-alt-phone {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 6px;
}

.contact-alt-phone:hover {
  color: #ff8c47;
}

.contact-alt-hours {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 6px;
}

.contact-alt-email {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.contact-alt-email a {
  color: rgba(255, 255, 255, 0.9);
}

.contact-alt-email a:hover {
  color: var(--orange);
}

.guarantee-box {
  background: var(--light-gray);
  border-radius: var(--radius);
  padding: 24px 22px;
  text-align: center;
  border: 2px solid var(--border);
}

.guarantee-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 10px;
}

.guarantee-box h3 {
  color: var(--navy);
  margin-bottom: 8px;
}

.guarantee-box p {
  font-size: 0.9rem;
  color: #555;
  margin: 0;
  line-height: 1.6;
}

/* ────────────────────────────────────────────────────────────
   FOOTER
──────────────────────────────────────────────────────────── */
.site-footer {
  background-color: var(--navy);
  color: var(--white);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 48px;
}

.footer-heading {
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
}

.footer-about-text {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 10px;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  font-style: italic;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  transition: color var(--transition);
  padding: 2px 0;
}

.footer-links a:hover {
  color: var(--orange);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.footer-contact-item svg {
  flex-shrink: 0;
  color: var(--orange);
}

.footer-contact-item a {
  color: rgba(255, 255, 255, 0.85);
}

.footer-contact-item a:hover {
  color: var(--orange);
}

.footer-hours {
  align-items: flex-start;
}

.footer-cta-btn {
  display: inline-block;
  padding: 10px 22px;
  font-size: 0.9rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 48px;
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom a:hover {
  color: var(--orange);
}

/* ────────────────────────────────────────────────────────────
   PAGE CONTENT (generic page.php)
──────────────────────────────────────────────────────────── */
.page-content.container {
  padding-top: 48px;
  padding-bottom: 64px;
  max-width: 860px;
}

.page-header {
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--border);
}

.page-title {
  color: var(--navy);
  font-size: 2rem;
}

.page-body {
  color: #444;
  line-height: 1.75;
}

.page-body h2, .page-body h3 {
  color: var(--navy);
  margin-top: 28px;
}

.page-body a {
  color: var(--orange);
  text-decoration: underline;
}

/* Generic page article extra padding */
.page-article {
  padding-bottom: 16px;
}

/* No content fallback */
.no-content {
  text-align: center;
  padding: 60px 0;
}

.no-content h1 {
  color: var(--navy);
  margin-bottom: 16px;
}

/* ────────────────────────────────────────────────────────────
   RESPONSIVE — TABLET & MOBILE (max-width: 1024px)
──────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 1.9rem; }

  .what-we-take-grid { grid-template-columns: repeat(2, 1fr); }
  .partners-grid     { grid-template-columns: repeat(2, 1fr); }
  .cant-take-grid    { grid-template-columns: repeat(2, 1fr); }

  .story-section {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .book-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .footer-grid .footer-col:last-child {
    grid-column: 1 / -1;
  }
}

/* ────────────────────────────────────────────────────────────
   RESPONSIVE — MOBILE (max-width: 768px)
──────────────────────────────────────────────────────────── */
@media (max-width: 768px) {

  /* Body offset for smaller header */
  body {
    padding-top: 72px;
  }

  /* Typography scale */
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  h3 { font-size: 1.2rem; }

  .section { padding: 48px 0; }

  /* Header */
  .top-bar-tagline {
    display: none;
  }

  .header-main {
    padding: 10px 0;
  }

  /* Hamburger */
  .hamburger {
    display: flex;
  }

  /* Nav collapse */
  .primary-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-top: 2px solid var(--border);
    z-index: 999;
    padding: 8px 0 16px;
  }

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

  .primary-nav ul {
    flex-direction: column;
    gap: 0;
    padding: 0 16px;
  }

  .primary-nav ul li a {
    display: block;
    padding: 12px 8px;
    border-bottom: 1px solid var(--border);
    font-size: 1rem;
  }

  .primary-nav ul li:last-child a {
    border-bottom: none;
    margin-top: 8px;
    text-align: center;
  }

  /* Hero */
  .hero { padding: 64px 20px; }
  .hero h1 { font-size: 2.2rem; }
  .hero-subtitle { font-size: 1rem; }
  .hero-inner { padding: 56px 20px 48px; }
  .hero-inner h1 { font-size: 2rem; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-buttons a { width: 100%; max-width: 320px; }
  .trust-badges { gap: 8px; }
  .trust-badge { font-size: 0.8rem; padding: 5px 12px; }

  /* Steps */
  .steps-grid { grid-template-columns: 1fr; }

  /* Items grid */
  .items-grid { grid-template-columns: repeat(2, 1fr); }

  /* Reviews */
  .reviews-grid { grid-template-columns: 1fr; }

  /* CTA */
  .cta-heading { font-size: 1.8rem; }

  /* Pricing */
  .philosophy-columns { grid-template-columns: 1fr; }
  .single-item-grid   { grid-template-columns: repeat(2, 1fr); }
  .included-grid      { grid-template-columns: 1fr 1fr; }
  .estimate-cta-box   { padding: 32px 24px; }

  /* What We Take */
  .what-we-take-grid { grid-template-columns: 1fr; }
  .cant-take-grid    { grid-template-columns: 1fr 1fr; }

  /* Service Areas */
  .areas-grid { grid-template-columns: 1fr; }

  /* About */
  .values-grid { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: 1fr 1fr; }
  .story-highlights { grid-template-columns: 1fr 1fr; }

  /* Book Now */
  .lead-form-wrapper { padding: 28px 20px; }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-grid .footer-col:last-child {
    grid-column: auto;
  }

  /* Table scrolling */
  .table-scroll-wrapper {
    margin-left: -20px;
    margin-right: -20px;
    border-radius: 0;
  }
}

/* ────────────────────────────────────────────────────────────
   RESPONSIVE — SMALL MOBILE (max-width: 480px)
──────────────────────────────────────────────────────────── */
@media (max-width: 480px) {
  .hero h1         { font-size: 1.8rem; }
  .hero-inner h1   { font-size: 1.75rem; }
  .section-heading { font-size: 1.5rem; }

  .items-grid      { grid-template-columns: 1fr 1fr; }
  .single-item-grid { grid-template-columns: 1fr 1fr; }
  .included-grid   { grid-template-columns: 1fr; }
  .cant-take-grid  { grid-template-columns: 1fr; }
  .partners-grid   { grid-template-columns: 1fr; }
  .story-highlights { grid-template-columns: 1fr 1fr; }

  .cta-heading     { font-size: 1.5rem; }
  .cta-subtext     { font-size: 1rem; }
}
