/* =====================================================
   Auburn Camper Rentals — Main Stylesheet
   Camp. Chill. Repeat.
   ===================================================== */

:root {
  --navy:        #0b2842;
  --navy-dark:   #071a2e;
  --orange:      #E07840;
  --orange-dark: #C5612A;
  --cream:       #F5F0EB;
  --light:       #F8F7F4;
  --white:       #FFFFFF;
  --text-dark:   #111827;
  --text-mid:    #374151;
  --text-gray:   #6B7280;
  --border:      #E5E7EB;
  --shadow:      0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg:   0 8px 40px rgba(0,0,0,0.14);
  --radius:      8px;
  --radius-lg:   16px;
  --transition:  all 0.25s ease;
  --max-width:   1200px;
}

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* ============ TYPOGRAPHY ============ */
h1,h2,h3,h4,h5 { font-family: 'Montserrat', sans-serif; font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }
h4 { font-size: 1rem; }
p { margin-bottom: 1rem; color: var(--text-mid); }
p:last-child { margin-bottom: 0; }

/* ============ UTILITIES ============ */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section     { padding: 80px 0; }
.section-sm  { padding: 48px 0; }
.text-center { text-align: center; }
.text-orange { color: var(--orange); }
.text-navy   { color: var(--navy); }
.text-white  { color: var(--white) !important; }
.bg-navy     { background: var(--navy); }
.bg-orange   { background: var(--orange); }
.bg-cream    { background: var(--cream); }
.bg-light    { background: var(--light); }

.section-label {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}
.divider { width: 44px; height: 3px; background: var(--orange); margin: 14px 0; border-radius: 2px; }
.divider-center { margin: 14px auto; }
.section-header { margin-bottom: 52px; text-align: center; }
.section-header p { font-size: 1.05rem; color: var(--text-gray); max-width: 580px; margin: 0 auto; }
.section-header.centered { text-align: center; }
.section-header.centered p { margin: 0 auto; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius);
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 0.85rem; letter-spacing: 0.07em; text-transform: uppercase;
  border: 2px solid transparent; transition: var(--transition);
  white-space: nowrap;
}
.btn-primary  { background: var(--orange); color: var(--white); border-color: var(--orange); }
.btn-primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(224,120,64,0.4); }
.btn-outline  { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.7); }
.btn-outline:hover { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn-navy     { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-dark); border-color: var(--navy-dark); transform: translateY(-2px); }
.btn-lg { padding: 18px 36px; font-size: 0.95rem; }

/* ============ TOP BAR ============ */
.topbar {
  background: var(--orange); color: var(--white);
  text-align: center; padding: 9px 24px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
}
.topbar a { color: var(--white); text-decoration: underline; margin-left: 8px; }

/* ============ NAVBAR ============ */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  overflow: visible;   /* allow logo to overlap below */
  background: var(--navy);
  box-shadow: 0 2px 24px rgba(0,0,0,0.25);
  position: sticky; /* keep sticky */
}
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px; max-width: var(--max-width); margin: 0 auto;
}
.navbar-logo { display: flex; align-items: center; gap: 12px; }
.navbar-logo img { height: 54px; width: auto; }
.logo-text-wrap { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text-wrap .brand {
  font-family: 'Montserrat', sans-serif; font-weight: 900;
  font-size: 0.9rem; color: var(--white);
  text-transform: uppercase; letter-spacing: 0.05em;
}
.logo-text-wrap .tagline {
  font-family: 'Montserrat', sans-serif; font-size: 0.65rem;
  font-weight: 700; color: var(--orange);
  text-transform: uppercase; letter-spacing: 0.12em;
}
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  color: rgba(255,255,255,0.8);
  font-family: 'Montserrat', sans-serif; font-size: 0.72rem;
  font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase;
  padding: 8px 12px; border-radius: 6px; transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); background: rgba(255,255,255,0.1); }
.nav-right { display: flex; align-items: center; gap: 16px; }

/* Mobile nav open state */
.nav-links.open {
  display: flex; flex-direction: column; gap: 0;
  position: absolute; top: 100%; left: 0; right: 0;
  background: var(--navy-dark); padding: 16px 24px 24px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  z-index: 999;
}
.nav-links.open li a { display: block; padding: 14px 12px; font-size: 0.82rem; border-radius: 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.nav-links.open li:last-child a { border-bottom: none; }
.nav-phone { color: rgba(255,255,255,0.65); font-size: 0.82rem; font-family: 'Montserrat', sans-serif; font-weight: 700; }
.nav-phone a:hover { color: var(--orange); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }
.mobile-menu { display: none; background: var(--navy-dark); padding: 8px 24px 20px; }
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block; color: rgba(255,255,255,0.8);
  font-family: 'Montserrat', sans-serif; font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.07em; text-transform: uppercase;
  padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,0.07);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu .mobile-book { color: var(--orange); margin-top: 12px; font-size: 0.9rem; }

/* ============ HERO ============ */
.hero {
  position: relative;
  background: linear-gradient(135deg, #040f1c 0%, #0b2842 50%, #0f3357 100%);
  padding: 96px 24px 80px; overflow: hidden;
  min-height: 580px; display: flex; align-items: center;
}
.hero-bg-img {
  position: absolute; inset: 0;
  background: url('../images/hero-bg.jpg') center/cover no-repeat;
  opacity: 0.2;
}
.hero-content { position: relative; max-width: var(--max-width); margin: 0 auto; width: 100%; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(224,120,64,0.15); border: 1px solid rgba(224,120,64,0.4);
  color: var(--orange); padding: 6px 14px; border-radius: 20px;
  font-family: 'Montserrat', sans-serif; font-size: 0.72rem;
  font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 20px;
}
.hero h1 { color: var(--white); max-width: 720px; margin-bottom: 16px; font-weight: 900; }
.hero h1 em { color: var(--orange); font-style: normal; }
.hero-tagline {
  font-family: 'Montserrat', sans-serif; font-size: 1.15rem;
  font-weight: 700; color: var(--orange); letter-spacing: 0.06em;
  text-transform: uppercase; margin-bottom: 12px;
}
.hero-sub { font-size: 1.05rem; color: rgba(255,255,255,0.75); max-width: 540px; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 48px; margin-top: 56px;
  padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
}
.hero-stat .num {
  font-family: 'Montserrat', sans-serif; font-size: 1.9rem;
  font-weight: 900; color: var(--orange); line-height: 1;
}
.hero-stat .lbl {
  font-family: 'Montserrat', sans-serif; font-size: 0.7rem;
  font-weight: 700; color: rgba(255,255,255,0.5);
  text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px;
}

/* ============ ORANGE STRIP ============ */
.strip-orange { background: var(--orange); padding: 22px 24px; text-align: center; }
.strip-orange p {
  color: var(--white); font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem; font-weight: 700; letter-spacing: 0.04em; margin: 0;
}

/* ============ STEPS ============ */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step-card {
  text-align: center; padding: 36px 20px 28px;
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); position: relative;
}
.step-card:not(:last-child)::after {
  content: '→';
  position: absolute; right: -14px; top: 50%; transform: translateY(-50%);
  color: var(--orange); font-size: 1.4rem; font-weight: 900; z-index: 1;
}
.step-num {
  width: 56px; height: 56px; background: var(--orange);
  color: var(--white); border-radius: 50%;
  font-family: 'Montserrat', sans-serif; font-size: 1.4rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px; box-shadow: 0 4px 14px rgba(224,120,64,0.35);
}
.step-icon { font-size: 2rem; margin-bottom: 12px; }
.step-card h3 { color: var(--navy); font-size: 1rem; margin-bottom: 10px; }
.step-card p { font-size: 0.88rem; color: var(--text-gray); margin: 0; line-height: 1.6; }

/* ============ VALUE CARDS ============ */
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.value-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 36px 28px; box-shadow: var(--shadow);
  border-top: 4px solid var(--orange); transition: var(--transition);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.value-icon { font-size: 2.4rem; margin-bottom: 16px; }
.value-card h3 { color: var(--navy); margin-bottom: 10px; font-size: 1.05rem; }
.value-card p { font-size: 0.9rem; color: var(--text-gray); margin: 0; line-height: 1.7; }

/* ============ ABOUT ============ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-photo-wrap {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); aspect-ratio: 4/5;
  background: var(--navy);
}
.about-photo-wrap img { width: 100%; height: 100%; object-fit: cover; }
.about-photo-placeholder {
  width: 100%; height: 100%; min-height: 400px;
  background: linear-gradient(135deg, var(--navy) 0%, #0f3357 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px;
}
.about-photo-placeholder span { font-size: 4rem; }
.about-photo-placeholder p { color: rgba(255,255,255,0.5); font-size: 0.85rem; text-align: center; margin: 0; }
.about-content h2 { color: var(--navy); margin-bottom: 6px; }
.about-content > p { margin-top: 18px; }
.about-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 24px; }
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--cream); color: var(--navy);
  font-family: 'Montserrat', sans-serif; font-size: 0.72rem;
  font-weight: 800; letter-spacing: 0.07em; text-transform: uppercase;
  padding: 8px 14px; border-radius: 20px;
}

/* ============ TESTIMONIALS ============ */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px 28px; box-shadow: var(--shadow); position: relative;
}
.quote-mark {
  position: absolute; top: 18px; right: 22px;
  font-size: 4.5rem; color: var(--orange); opacity: 0.15;
  font-family: Georgia, serif; line-height: 1; pointer-events: none;
}
.stars { color: var(--orange); font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 14px; }
.testimonial-card blockquote {
  font-size: 0.92rem; color: var(--text-mid);
  line-height: 1.75; margin-bottom: 20px; font-style: italic;
}
.t-author { font-family: 'Montserrat', sans-serif; font-size: 0.8rem; font-weight: 800; color: var(--navy); text-transform: uppercase; letter-spacing: 0.06em; }
.t-source { font-size: 0.75rem; color: var(--text-gray); margin-top: 2px; margin-bottom: 0; }

/* ============ OWNER CTA ============ */
.owner-cta { background: var(--navy); padding: 88px 24px; }
.owner-cta-inner {
  max-width: var(--max-width); margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 72px; align-items: center;
}
.owner-cta h2 { color: var(--white); margin-bottom: 16px; }
.owner-cta p { color: rgba(255,255,255,0.72); }
.owner-points { margin: 24px 0; }
.owner-points li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 9px 0; color: rgba(255,255,255,0.78); font-size: 0.95rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.owner-points li:last-child { border-bottom: none; }
.check {
  width: 20px; height: 20px; background: var(--orange);
  color: var(--white); border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.65rem; font-weight: 900; flex-shrink: 0; margin-top: 2px;
}
.owner-box {
  background: rgba(255,255,255,0.05); border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.1); padding: 36px 32px;
}
.owner-box h3 { color: var(--white); font-size: 1rem; margin-bottom: 24px; text-transform: uppercase; letter-spacing: 0.08em; }
.owner-stat { padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
.owner-stat:last-of-type { border-bottom: none; }
.owner-stat .val { font-family: 'Montserrat', sans-serif; font-size: 1.9rem; font-weight: 900; color: var(--orange); line-height: 1; }
.owner-stat .desc { font-size: 0.82rem; color: rgba(255,255,255,0.5); margin-top: 3px; margin-bottom: 0; }

/* ============ SERVICE AREA ============ */
.area-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.area-card { background: var(--white); border-radius: var(--radius); padding: 24px; text-align: center; box-shadow: var(--shadow); }
.area-card .flag { font-size: 1.8rem; margin-bottom: 10px; }
.area-card h4 { color: var(--navy); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 8px; }
.area-card p { font-size: 0.82rem; color: var(--text-gray); line-height: 1.6; margin: 0; }

/* ============ CTA BAND ============ */
.cta-band { background: var(--orange); padding: 72px 24px; text-align: center; }
.cta-band h2 { color: var(--white); margin-bottom: 12px; }
.cta-band p { color: rgba(255,255,255,0.88); max-width: 500px; margin: 0 auto 32px; font-size: 1.05rem; }

/* ============ PAGE HERO ============ */
.page-hero { background: var(--navy); padding: 64px 24px; text-align: center; }
.page-hero .section-label { display: block; margin-bottom: 8px; }
.page-hero h1 { color: var(--white); margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,0.68); max-width: 540px; margin: 0 auto; font-size: 1.05rem; }

/* ============ WHEELBASE EMBED ============ */
.wheelbase-wrap {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); background: var(--white);
}
.wheelbase-wrap iframe { width: 100%; min-height: 920px; border: none; display: block; }

/* ============ FAQ ============ */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%; text-align: left; background: none; border: none;
  padding: 22px 0; font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem; font-weight: 700; color: var(--navy);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  transition: var(--transition);
}
.faq-question:hover { color: var(--orange); }
.faq-chevron {
  width: 26px; height: 26px; border-radius: 50%; background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; flex-shrink: 0; transition: var(--transition); color: var(--navy);
}
.faq-item.open .faq-chevron { background: var(--orange); color: var(--white); transform: rotate(180deg); }
.faq-answer { display: none; padding: 0 0 22px; color: var(--text-mid); font-size: 0.92rem; line-height: 1.8; }
.faq-item.open .faq-answer { display: block; }

/* ============ DELIVERY PAGE ============ */
.delivery-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: start; }
.delivery-features { margin-top: 28px; }
.d-feature { display: flex; gap: 16px; margin-bottom: 28px; }
.d-icon {
  width: 48px; height: 48px; background: var(--orange);
  color: var(--white); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0;
}
.d-feature h4 { color: var(--navy); margin-bottom: 4px; font-size: 0.95rem; }
.d-feature p { font-size: 0.88rem; color: var(--text-gray); margin: 0; }
.area-box { background: var(--cream); border-radius: var(--radius-lg); padding: 32px; }
.area-box h3 { color: var(--navy); margin-bottom: 20px; font-size: 1.05rem; }
.area-state { margin-bottom: 20px; }
.area-state h4 { font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.12em; color: var(--orange); margin-bottom: 10px; }
.area-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.area-tag {
  background: var(--white); color: var(--navy);
  font-family: 'Montserrat', sans-serif; font-size: 0.72rem; font-weight: 700;
  padding: 6px 12px; border-radius: 20px; box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.delivery-note {
  background: var(--navy); color: rgba(255,255,255,0.8);
  border-radius: var(--radius); padding: 16px 20px;
  margin-top: 24px; font-size: 0.88rem;
  display: flex; gap: 10px; align-items: flex-start;
}

/* ============ CONTACT ============ */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: start; }
.c-info h2 { color: var(--navy); margin-bottom: 8px; }
.c-detail { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 24px; }
.c-icon {
  width: 44px; height: 44px; background: var(--orange);
  color: var(--white); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.c-text h4 { color: var(--navy); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 3px; }
.c-text p { color: var(--text-mid); font-size: 0.92rem; margin: 0; }
.c-text a:hover { color: var(--orange); }
.form-group { margin-bottom: 18px; }
.form-label {
  display: block; font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--navy); margin-bottom: 6px;
}
.form-control {
  width: 100%; padding: 12px 14px; border: 2px solid var(--border);
  border-radius: var(--radius); font-family: 'Open Sans', sans-serif;
  font-size: 0.92rem; color: var(--text-dark); background: var(--white);
  transition: var(--transition); outline: none;
}
.form-control:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(224,120,64,0.1); }
textarea.form-control { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ============ RENT OUT PAGE ============ */
.steps-alt { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px; }
.step-alt {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px; box-shadow: var(--shadow);
  display: flex; gap: 20px; align-items: flex-start;
}
.step-alt-num {
  width: 40px; height: 40px; background: var(--orange);
  color: var(--white); border-radius: var(--radius);
  font-family: 'Montserrat', sans-serif; font-size: 1.1rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.step-alt h4 { color: var(--navy); margin-bottom: 6px; font-size: 0.95rem; }
.step-alt p { font-size: 0.88rem; color: var(--text-gray); margin: 0; }
.qualifications { background: var(--cream); border-radius: var(--radius-lg); padding: 32px; margin-top: 32px; }
.qualifications h3 { color: var(--navy); margin-bottom: 16px; font-size: 1rem; }
.qual-list li { display: flex; align-items: flex-start; gap: 10px; padding: 8px 0; border-bottom: 1px solid rgba(0,0,0,0.06); font-size: 0.9rem; color: var(--text-mid); }
.qual-list li:last-child { border-bottom: none; }

/* ============ HOW IT WORKS PAGE ============ */
.hiw-steps { max-width: 800px; margin: 0 auto; }
.hiw-step {
  display: flex; gap: 32px; align-items: flex-start;
  padding: 40px 0; border-bottom: 1px solid var(--border);
  position: relative;
}
.hiw-step:last-child { border-bottom: none; }
.hiw-num {
  width: 64px; height: 64px; background: var(--orange);
  color: var(--white); border-radius: 50%; flex-shrink: 0;
  font-family: 'Montserrat', sans-serif; font-size: 1.6rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(224,120,64,0.35);
}
.hiw-body h3 { color: var(--navy); margin-bottom: 10px; }
.hiw-body p { color: var(--text-mid); font-size: 0.95rem; margin-bottom: 10px; }
.hiw-detail {
  background: var(--cream); border-radius: var(--radius);
  padding: 14px 18px; margin-top: 14px; font-size: 0.85rem;
  color: var(--text-gray); line-height: 1.7;
}

/* ============ FOOTER ============ */
.footer { background: var(--navy-dark); padding: 64px 24px 28px; }
.footer-grid {
  max-width: var(--max-width); margin: 0 auto;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .f-logo {
  font-family: 'Montserrat', sans-serif; font-weight: 900;
  font-size: 1rem; color: var(--white);
  text-transform: uppercase; letter-spacing: 0.05em;
}
.footer-brand .f-tagline { font-size: 0.7rem; color: var(--orange); font-family: 'Montserrat', sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; }
.footer-brand p { margin-top: 14px; font-size: 0.84rem; color: rgba(255,255,255,0.5); line-height: 1.75; }
.footer-phone { display: inline-block; margin-top: 12px; font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1rem; color: var(--orange); letter-spacing: 0.03em; }
.footer-phone:hover { color: #f0954a; }
.footer-social { display: flex; gap: 8px; margin-top: 16px; }
.social-link {
  width: 34px; height: 34px; background: rgba(255,255,255,0.07);
  border-radius: 6px; display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; color: rgba(255,255,255,0.6); transition: var(--transition);
}
.social-link:hover { background: var(--orange); color: var(--white); }
.footer-col h4 {
  font-family: 'Montserrat', sans-serif; font-size: 0.7rem;
  font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--white); margin-bottom: 16px;
}
.footer-col li { margin-bottom: 9px; }
.footer-col a { font-size: 0.83rem; color: rgba(255,255,255,0.5); transition: var(--transition); }
.footer-col a:hover { color: var(--orange); }
.footer-bottom {
  max-width: var(--max-width); margin: 24px auto 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.78rem; flex-wrap: wrap; gap: 8px;
}
.footer-bottom p { margin: 0; color: rgba(255,255,255,0.3); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .step-card:nth-child(2)::after, .step-card:nth-child(4)::after { display: none; }
  .step-card:nth-child(1)::after, .step-card:nth-child(3)::after { display: none; }
  .step-card::after { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 900px) {
  .nav-links, .nav-phone { display: none; }
  .hamburger { display: flex; }
  .logo-img { height: 110px; margin-bottom: -55px; } /* mobile — navbar bottom aligns with logo center */
  .about-grid, .owner-cta-inner, .contact-grid, .delivery-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-grid-reverse { direction: ltr; }
  .value-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .area-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .owner-stats-row { grid-template-columns: 1fr; }
  .cta-band-inner { flex-direction: column; text-align: center; }
  .topbar-inner { justify-content: center; text-align: center; }
  .step-alt-num { width: 48px; height: 48px; font-size: 1.1rem; }
}
@media (max-width: 640px) {
  .section { padding: 56px 0; }
  .hero { padding: 64px 20px 48px; min-height: unset; }
  .hero-actions { flex-direction: column; }
  .hero-stats { gap: 28px; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .area-grid { grid-template-columns: 1fr; }
}
@media (max-width: 400px) {
  .steps-grid { grid-template-columns: 1fr; }
}

/* ============ SUPPLEMENTAL COMPONENT STYLES ============ */

/* Topbar two-column layout */
.topbar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.topbar-inner a { text-decoration: none; }
.topbar-inner a:hover { text-decoration: underline; }

/* Nav inner layout (used in HTML) */
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 0 24px; min-height: 75px; max-width: var(--max-width); margin: 0 auto; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; position: relative; z-index: 10; align-self: flex-start; }
.logo-img {
  height: 150px;
  width: auto;
  margin-bottom: -75px; /* exactly half — navbar bottom aligns with logo center line */
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.45));
  transition: transform 0.2s ease;
}
.logo-img:hover { transform: translateY(-2px) scale(1.04); }
.logo-text { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 1rem; color: var(--white); text-transform: uppercase; letter-spacing: 0.04em; }
.nav-cta { padding: 10px 20px !important; font-size: 0.75rem !important; }
.nav-phone { color: var(--orange); font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.82rem; }
.nav-phone:hover { color: #f09c60; }

/* Navbar scrolled state */
.navbar.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,0.38); }

/* Section utilities */
.bg-navy { background: var(--navy); }
.section-eyebrow {
  font-family: 'Montserrat', sans-serif; font-size: 0.7rem; font-weight: 800;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--orange); margin-bottom: 10px;
}
.section-header .section-eyebrow { display: block; }
.section-header .section-title { font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--navy); margin-bottom: 14px; }
.section-header .section-sub { color: var(--text-gray); max-width: 600px; margin: 8px auto 0; }
.section-header.light .section-title { color: var(--white); }
.section-header.light .section-sub  { color: rgba(255,255,255,0.65); }
.section-header.light .section-eyebrow { color: var(--orange); }
.section-cta { text-align: center; margin-top: 44px; }
.btn-secondary { background: var(--navy); color: var(--white); border-color: var(--navy); font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.85rem; letter-spacing: 0.07em; text-transform: uppercase; padding: 14px 28px; border-radius: var(--radius); display: inline-flex; align-items: center; transition: var(--transition); }
.btn-secondary:hover { background: var(--navy-dark); border-color: var(--navy-dark); transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.7); font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.85rem; letter-spacing: 0.07em; text-transform: uppercase; padding: 14px 28px; border-radius: var(--radius); display: inline-flex; align-items: center; transition: var(--transition); }
.btn-outline-white:hover { background: var(--white); color: var(--navy); border-color: var(--white); }

/* Page hero */
.page-hero-content h1 { color: var(--white); margin-bottom: 14px; font-size: clamp(1.8rem, 4vw, 2.8rem); }
.page-hero-content p  { color: rgba(255,255,255,0.72); max-width: 560px; margin: 0 auto; font-size: 1.05rem; }
.page-hero-content a  { color: var(--orange); }
.bg-navy-hero { background: linear-gradient(135deg, var(--navy-dark) 0%, #0f3357 100%); }

/* Hero section */
.hero {
  position: relative; background-size: cover; background-position: center;
  background-color: var(--navy); /* fallback when hero-bg.jpg is missing */
  background-image: linear-gradient(135deg, #071a2e 0%, #0b2842 40%, #0f3357 100%); /* CSS fallback */
  padding: 100px 24px 72px; min-height: 540px; display: flex; align-items: center; justify-content: center;
}
.hero::before { content: ''; position: absolute; inset: 0; background: rgba(15,28,51,0.55); }
.hero-content { position: relative; z-index: 1; text-align: center; max-width: 820px; margin: 0 auto; }
.hero-eyebrow { font-family: 'Montserrat', sans-serif; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; color: var(--orange); margin-bottom: 14px; }
.hero-title { font-size: clamp(2rem, 5vw, 3.2rem); color: var(--white); line-height: 1.15; margin-bottom: 20px; }
.hero-sub { font-size: 1.05rem; color: rgba(255,255,255,0.78); max-width: 620px; margin: 0 auto 36px; line-height: 1.75; }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 52px; }
.hero-stats { display: flex; gap: 48px; justify-content: center; flex-wrap: wrap; padding-top: 36px; border-top: 1px solid rgba(255,255,255,0.12); }
.stat-item { text-align: center; }
.stat-item strong { display: block; font-family: 'Montserrat', sans-serif; font-size: 2rem; font-weight: 900; color: var(--orange); line-height: 1; }
.stat-item span { font-size: 0.75rem; color: rgba(255,255,255,0.55); letter-spacing: 0.06em; text-transform: uppercase; font-family: 'Montserrat', sans-serif; }

/* Orange strip */
.orange-strip { background: var(--orange); padding: 20px 24px; text-align: center; color: var(--white); font-size: 0.92rem; }
.orange-strip strong { font-family: 'Montserrat', sans-serif; }

/* Steps grid */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 40px; }
.step-card { background: var(--white); border-radius: var(--radius-lg); padding: 32px 24px; box-shadow: var(--shadow); text-align: center; position: relative; }
.step-num { width: 32px; height: 32px; background: var(--orange); color: var(--white); border-radius: 50%; font-family: 'Montserrat', sans-serif; font-size: 0.8rem; font-weight: 900; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.step-icon { font-size: 2.4rem; margin-bottom: 12px; }
.step-card h3 { color: var(--navy); font-size: 1rem; margin-bottom: 8px; }
.step-card p { font-size: 0.88rem; color: var(--text-gray); margin: 0; }

/* Value cards */
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card { background: var(--white); border-radius: var(--radius-lg); padding: 36px 28px; box-shadow: var(--shadow); }
.value-icon { font-size: 2.2rem; margin-bottom: 16px; }
.value-card h3 { color: var(--navy); margin-bottom: 10px; font-size: 1.05rem; }
.value-card p { color: var(--text-mid); font-size: 0.92rem; line-height: 1.75; margin: 0; }

/* About grid */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-grid-reverse { direction: rtl; }
.about-grid-reverse > * { direction: ltr; }
.about-photo img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); object-fit: cover; max-height: 480px; }
.about-text h2 { color: var(--navy); margin-bottom: 14px; font-size: clamp(1.5rem, 3vw, 2rem); }
.about-text p { color: var(--text-mid); line-height: 1.8; margin-bottom: 16px; }

/* Testimonials */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { background: rgba(255,255,255,0.08); border-radius: var(--radius-lg); padding: 32px 28px; }
.testimonial-card .stars { color: var(--orange); font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 14px; }
.testimonial-card p { color: rgba(255,255,255,0.82); font-size: 0.92rem; line-height: 1.75; font-style: italic; margin-bottom: 16px; }
.reviewer { font-family: 'Montserrat', sans-serif; font-size: 0.78rem; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: 0.06em; }

/* Owner CTA section (homepage) */
.owner-cta-section { background: var(--navy); padding: 88px 0; }
.owner-cta-inner { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 72px; align-items: center; max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.owner-cta-text h2 { color: var(--white); margin-bottom: 16px; }
.owner-cta-text .section-eyebrow { color: var(--orange); }
.owner-cta-text p { color: rgba(255,255,255,0.72); margin-bottom: 14px; }
.owner-cta-text strong { color: var(--white); }
.owner-cta-visual {}
.owner-stat-box { background: rgba(255,255,255,0.06); border-radius: var(--radius-lg); border: 1px solid rgba(255,255,255,0.1); padding: 32px; }
.owner-stat-box .owner-stat { padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.07); display: flex; flex-direction: column; gap: 4px; }
.owner-stat-box .owner-stat:last-child { border-bottom: none; }
.owner-stat-box .owner-stat strong { font-family: 'Montserrat', sans-serif; font-size: 2rem; font-weight: 900; color: var(--orange); line-height: 1; }
.owner-stat-box .owner-stat span { font-size: 0.82rem; color: rgba(255,255,255,0.5); }

/* Owner stats row (rent-out page) */
.owner-stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 48px 0 0; text-align: center; }
.owner-stat-big { background: var(--white); border-radius: var(--radius-lg); padding: 40px 24px; box-shadow: var(--shadow); }
.owner-stat-big strong { display: block; font-family: 'Montserrat', sans-serif; font-size: 2.8rem; font-weight: 900; color: var(--orange); line-height: 1; margin-bottom: 10px; }
.owner-stat-big span { font-size: 0.9rem; color: var(--text-mid); line-height: 1.5; }

/* Area items (new style used in pages) */
.area-item { background: var(--white); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow); }
.area-item .area-state { display: inline-block; font-family: 'Montserrat', sans-serif; font-size: 0.7rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange); margin-bottom: 14px; }
.area-item ul { list-style: none; padding: 0; margin: 0; }
.area-item li { padding: 6px 0; font-size: 0.9rem; color: var(--text-mid); border-bottom: 1px solid var(--border); }
.area-item li:last-child { border-bottom: none; }
.area-note { text-align: center; margin-top: 32px; color: var(--text-mid); font-size: 0.92rem; }
.area-note a { color: var(--orange); font-weight: 600; }

/* CTA band inner */
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; max-width: var(--max-width); margin: 0 auto; }
.cta-band-inner h2 { color: var(--white); margin-bottom: 8px; font-size: 1.6rem; }
.cta-band-inner p  { color: rgba(255,255,255,0.85); margin: 0; }

/* Booking note */
.booking-note { background: var(--cream); border-radius: var(--radius); padding: 18px 24px; margin-top: 28px; font-size: 0.9rem; color: var(--text-mid); }
.booking-note a { color: var(--orange); font-weight: 600; }

/* Content list (how-it-works, delivery) */
.content-list { padding-left: 20px; margin: 16px 0; }
.content-list li { margin-bottom: 8px; color: var(--text-mid); line-height: 1.7; }

/* FAQ page specific */
.faq-container { max-width: 860px; margin: 0 auto; }
.faq-section-title { font-size: 1.2rem; color: var(--navy); margin: 52px 0 0; padding-bottom: 16px; border-bottom: 3px solid var(--orange); }
.faq-section-title:first-child { margin-top: 0; }
.faq-list + .faq-section-title { margin-top: 48px; }

/* FAQ answer — max-height animation fix */
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; padding: 0; }
.faq-item.open .faq-answer { padding: 0 0 22px; }

/* Delivery page */
.delivery-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: start; }
.delivery-text h2 { color: var(--navy); margin-bottom: 16px; }
.delivery-text p { color: var(--text-mid); margin-bottom: 14px; }
.delivery-info-box { background: var(--navy); border-radius: var(--radius-lg); padding: 36px 32px; }
.delivery-info-box h3 { color: var(--white); margin-bottom: 24px; font-size: 1.05rem; }
.delivery-stat { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.08); align-items: flex-start; }
.delivery-stat:last-child { border-bottom: none; }
.delivery-stat > span { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.delivery-stat div { color: rgba(255,255,255,0.72); font-size: 0.88rem; line-height: 1.6; }
.delivery-stat strong { display: block; color: var(--white); font-family: 'Montserrat', sans-serif; font-size: 0.9rem; margin-bottom: 2px; }
.delivery-stat a { color: var(--orange); }

/* Steps alt — full-width stacked (how-it-works, rent-out) */
.steps-alt { display: flex; flex-direction: column; gap: 0; max-width: 820px; margin: 0 auto; }
.step-alt-item { display: flex; gap: 32px; align-items: flex-start; padding: 40px 0; border-bottom: 1px solid var(--border); }
.step-alt-item:last-child { border-bottom: none; }
.step-alt-num { width: 64px; height: 64px; background: var(--orange); color: var(--white); border-radius: 50%; flex-shrink: 0; font-family: 'Montserrat', sans-serif; font-size: 1.4rem; font-weight: 900; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(224,120,64,0.3); }
.step-alt-body h2 { color: var(--navy); margin-bottom: 12px; font-size: 1.25rem; }
.step-alt-body p { color: var(--text-mid); margin-bottom: 12px; line-height: 1.8; }
.step-alt-body p:last-child { margin-bottom: 0; }
.step-alt-body a { color: var(--orange); font-weight: 600; }

/* Contact page */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: start; }
.contact-form-wrap h2 { color: var(--navy); margin-bottom: 8px; }
.contact-form-wrap > p { color: var(--text-mid); margin-bottom: 28px; }
.contact-form .form-group { margin-bottom: 20px; }
.contact-form label { display: block; font-family: 'Montserrat', sans-serif; font-size: 0.7rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--navy); margin-bottom: 6px; }
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%; padding: 12px 14px; border: 2px solid var(--border);
  border-radius: var(--radius); font-family: 'Open Sans', sans-serif;
  font-size: 0.92rem; color: var(--text-dark); background: var(--white);
  transition: var(--transition); outline: none; box-sizing: border-box;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(224,120,64,0.12); }
.contact-form textarea { min-height: 130px; resize: vertical; }
.contact-info h2 { color: var(--navy); margin-bottom: 24px; }
.contact-info-block { display: flex; gap: 16px; margin-bottom: 28px; align-items: flex-start; }
.contact-info-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.contact-info-block strong { display: block; font-family: 'Montserrat', sans-serif; font-size: 0.78rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--navy); margin-bottom: 4px; }
.contact-info-block p { color: var(--text-mid); font-size: 0.9rem; margin: 0 0 2px; }
.contact-info-block a { color: var(--orange); font-weight: 600; }
.contact-note { color: var(--text-gray) !important; font-size: 0.82rem !important; margin-top: 4px !important; }

/* Footer helpers used in HTML */
.footer-logo { height: 240px; width: auto; margin-bottom: 20px; }
.footer-tag { font-family: 'Montserrat', sans-serif; font-size: 0.7rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--orange); margin-top: 8px; margin-bottom: 0; }
.footer-brand p { font-size: 0.84rem; color: rgba(255,255,255,0.5); line-height: 1.75; margin-bottom: 0; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-social a { color: rgba(255,255,255,0.5); display: inline-flex; align-items: center; transition: var(--transition); }
.footer-social a:hover { color: var(--orange); }

/* ============ SCROLL REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ============ FORM STATES ============ */
input.error, textarea.error, select.error {
  border-color: #EF4444 !important;
  box-shadow: 0 0 0 3px rgba(239,68,68,0.12);
}
.form-success {
  text-align: center;
  padding: 48px 24px;
  background: var(--cream);
  border-radius: var(--radius);
}
.form-success h3 { color: var(--navy); margin-bottom: 12px; }
.form-success p  { color: var(--text-mid); }
.form-success a  { color: var(--orange); font-weight: 600; }

/* ============ HAMBURGER ANIMATION ============ */
.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
.hamburger span {
  transition: transform 0.25s ease, opacity 0.25s ease;
}
