/* =============================================
   MAPLE EXPEDITION RENTALS — Main Stylesheet
   ============================================= */

:root {
  --maple:     #C8401A;
  --maple-dk:  #A33214;
  --maple-lt:  #E8562A;
  --forest:    #1A2E1A;
  --forest-md: #243824;
  --gold:      #D4A843;
  --cream:     #F5F0E8;
  --white:     #FFFFFF;
  --dark:      #111410;
  --gray:      #6B7280;
  --gray-lt:   #E5E7EB;
  --font-head: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.14);
  --shadow-lg: 0 24px 64px rgba(0,0,0,0.22);
  --radius:    12px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 {
  font-family: var(--font-head);
  letter-spacing: 0.02em;
  line-height: 1.05;
}

h1 { font-size: clamp(3.5rem, 9vw, 7.5rem); }
h2 { font-size: clamp(2.2rem, 5vw, 4rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }

/* ===== UTILITY ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--maple);
  margin-bottom: 0.75rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 560px;
  margin: 1rem auto 0;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  padding: 0.85rem 2rem;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}

.btn-primary {
  background: var(--maple);
  color: var(--white);
  border-color: var(--maple);
}
.btn-primary:hover {
  background: var(--maple-dk);
  border-color: var(--maple-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,64,26,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(--maple);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-2px);
}

.btn-sm { padding: 0.6rem 1.4rem; font-size: 0.85rem; }
.btn-full { width: 100%; }

/* ===== NAVIGATION ===== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all var(--transition);
}

#navbar.scrolled {
  background: rgba(17, 20, 16, 0.96);
  backdrop-filter: blur(12px);
  padding: 0.85rem 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--white);
  flex-shrink: 0;
}

.logo-maple { font-size: 1.6rem; }

.logo-text {
  font-family: var(--font-head);
  font-size: 1.1rem;
  line-height: 1.1;
  letter-spacing: 0.05em;
}

.logo-text small {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.7;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: color var(--transition);
}

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

.nav-cta {
  background: var(--maple) !important;
  color: var(--white) !important;
  padding: 0.55rem 1.3rem;
  border-radius: 6px;
  border: 2px solid var(--maple);
  transition: all var(--transition) !important;
}
.nav-cta:hover {
  background: var(--maple-dk) !important;
  border-color: var(--maple-dk) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ===== HERO ===== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, #1A3A2A 0%, #0D1F0D 40%, #1A1008 70%, #2A0F05 100%);
  background-size: cover;
  background-position: center;
}

/* Decorative bokeh circles */
.hero-bg::before {
  content: '';
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,64,26,0.18) 0%, transparent 70%);
  top: -200px;
  right: -100px;
  animation: pulse 6s ease-in-out infinite;
}

.hero-bg::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,46,26,0.4) 0%, transparent 70%);
  bottom: -100px;
  left: -100px;
  animation: pulse 8s ease-in-out infinite reverse;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.7; }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.15) 0%,
    rgba(0,0,0,0.05) 50%,
    rgba(0,0,0,0.4) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 8rem 1.5rem 4rem;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--maple-lt);
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.3s;
}

.hero-title {
  color: var(--white);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.5s;
  text-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.8);
  max-width: 500px;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.7s;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.9s;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 1.2s;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.5; }
}

/* ===== MARQUEE ===== */
.marquee-strip {
  background: var(--maple);
  color: var(--white);
  padding: 0.9rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-block;
  animation: marquee 22s linear infinite;
}

.marquee-track span {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin: 0 1.5rem;
}

.marquee-track .sep {
  color: rgba(255,255,255,0.5);
  margin: 0 0.5rem;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===== FLEET ===== */
#fleet {
  padding: 6rem 0;
  background: var(--cream);
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.fleet-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}

.fleet-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.fleet-card.featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.fleet-card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  z-index: 3;
}

.fleet-card-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fleet-card.featured .fleet-card-img {
  aspect-ratio: auto;
  min-height: 340px;
}

.mastercraft {
  background:
    linear-gradient(160deg, #0A1F2E 0%, #1A3A4A 40%, #0D2535 70%, #08161F 100%);
}

.mastercraft::before {
  content: '⛵';
  font-size: 5rem;
  position: absolute;
  opacity: 0.12;
  transform: rotate(-15deg);
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}

.mastercraft::after {
  content: '';
  position: absolute;
  width: 200%;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(0,180,220,0.4), transparent);
  bottom: 35%;
  left: -50%;
  animation: waterLine 4s ease-in-out infinite;
}

@keyframes waterLine {
  0%, 100% { transform: translateX(-10%) skewX(-5deg); opacity: 0.4; }
  50% { transform: translateX(10%) skewX(5deg); opacity: 0.8; }
}

.rzr900 {
  background:
    linear-gradient(160deg, #1A1208 0%, #2E2210 40%, #3A2A0A 70%, #1A1005 100%);
}

.rzr900::before {
  content: '🏍️';
  font-size: 4rem;
  position: absolute;
  opacity: 0.2;
}

.ranger {
  background:
    linear-gradient(160deg, #0D1A0D 0%, #1A2E1A 40%, #152A15 70%, #0A1A0A 100%);
}

.ranger::before {
  content: '🚙';
  font-size: 4rem;
  position: absolute;
  opacity: 0.2;
}

.starlink-photo {
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trailer-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}

.trailer-visual {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}

.starlink-img {
  width: 85%;
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 1;
  padding: 1rem;
}

.fleet-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%);
}

.fleet-tag {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.2);
}

.fleet-card-body {
  padding: 1.75rem;
}

.fleet-card.featured .fleet-card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fleet-tagline {
  color: var(--gray);
  font-size: 0.9rem;
  margin: 0.4rem 0 1.25rem;
}

.fleet-specs {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

.fleet-specs li {
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.spec-icon { flex-shrink: 0; }

/* ===== TRAILER ===== */
#trailer {
  padding: 5rem 0;
  background: var(--forest);
}

.trailer-card {
  background: linear-gradient(135deg, var(--forest-md), #0D1A0D);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 3.5rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}

.trailer-content .section-label { color: var(--gold); }

.trailer-content h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.trailer-content p {
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  margin-bottom: 1.5rem;
}

.trailer-specs {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.trailer-specs li {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.trailer-visual {
  text-align: center;
}

.trailer-icon-wrap {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 2.5rem 3rem;
}

.trailer-icon { font-size: 4rem; margin-bottom: 0.75rem; }

.trailer-year {
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}

/* ===== PRICING ===== */
#pricing {
  padding: 6rem 0;
  background: var(--white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.pricing-card {
  border: 2px solid var(--gray-lt);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: all var(--transition);
}

.pricing-card:hover {
  border-color: var(--maple);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.pricing-card.featured-price {
  border-color: var(--maple);
  background: linear-gradient(160deg, rgba(200,64,26,0.04), rgba(200,64,26,0.01));
  position: relative;
}

.pricing-card.featured-price::before {
  content: 'Most Popular';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--maple);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 1rem;
  border-radius: 0 0 6px 6px;
}

.pricing-header {
  text-align: center;
}

.pricing-icon { font-size: 2.5rem; display: block; margin-bottom: 0.5rem; }

.pricing-sub {
  color: var(--gray);
  font-size: 0.85rem;
  margin-top: 0.25rem;
}

.pricing-body { flex: 1; display: flex; flex-direction: column; gap: 0.75rem; }

.pricing-rate {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  background: var(--cream);
  border-radius: 8px;
}

.pricing-rate.bundle {
  justify-content: center;
  gap: 0.5rem;
}

.rate-label { font-weight: 600; font-size: 0.9rem; }
.rate-note { font-size: 0.85rem; color: var(--maple); font-weight: 600; }
.rate-price { font-size: 1.1rem; font-weight: 700; color: var(--maple); }
.rate-deposit { font-size: 0.85rem; font-weight: 600; color: var(--gray); }
.pricing-rate.deposit { background: rgba(0,0,0,0.03); }

.pricing-includes {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 0.5rem;
}

.pricing-includes li {
  font-size: 0.85rem;
  color: var(--gray);
}

.utv-rates {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.utv-block { border-color: var(--forest); }
.starlink-block { border-color: #1a3a6a; background: #f0f4f9; }

/* ===== BOAT PRICING BLOCK ===== */
.pricing-block {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 2.5rem;
  margin-bottom: 3rem;
  border: 2px solid var(--maple);
}

.pricing-block-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}

.pricing-block-header .pricing-icon { font-size: 2.5rem; flex-shrink: 0; }
.pricing-block-header h3 { font-size: 1.6rem; margin-bottom: 0.2rem; }
.pricing-block-header p { color: var(--gray); font-size: 0.9rem; }
.pricing-block-header .btn { margin-left: auto; }

.rate-table-wrap { overflow-x: auto; margin-bottom: 2rem; }

.rate-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.rate-table th {
  background: var(--forest);
  color: var(--white);
  padding: 0.65rem 1rem;
  text-align: left;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rate-table td {
  padding: 0.6rem 1rem;
  border-bottom: 1px solid var(--gray-lt);
}

.rate-table tr:last-child td { border-bottom: none; }
.rate-table .highlight-row td { font-weight: 600; }
.rate-table .call-row td { color: var(--gray); font-style: italic; text-align: center; }

.rate-table .best-value td {
  background: rgba(200,64,26,0.06);
  font-weight: 700;
  color: var(--maple-dk);
}

.pricing-notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-lt);
}

.note-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--maple);
  margin-bottom: 0.5rem;
}

.pricing-note-group ul { display: flex; flex-direction: column; gap: 0.35rem; }
.pricing-note-group li { font-size: 0.85rem; color: var(--dark); }

/* ===== POLICIES ===== */
.policies-block {
  background: var(--forest);
  border-radius: var(--radius);
  padding: 2.5rem;
  margin-top: 3rem;
}

.policies-block h3 {
  color: var(--white);
  font-size: 1.6rem;
  margin-bottom: 1.75rem;
}

.policies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.policy-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.policy-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 0.1rem; }

.policy-item strong {
  display: block;
  color: var(--white);
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}

.policy-item p {
  color: rgba(255,255,255,0.65);
  font-size: 0.82rem;
  line-height: 1.55;
}

/* ===== DETAILS / WHY US ===== */
#details {
  padding: 6rem 0;
  background: var(--cream);
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.detail-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.detail-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.detail-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.detail-card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.65;
}

/* ===== CONTACT ===== */
#contact {
  padding: 6rem 0;
  background: var(--forest);
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.contact-info .section-label { color: var(--maple-lt); }

.contact-info h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.contact-info > p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 2rem;
  max-width: 420px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

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

.contact-icon { font-size: 1.1rem; flex-shrink: 0; }

.contact-item a {
  color: rgba(255,255,255,0.8);
  transition: color var(--transition);
}
.contact-item a:hover { color: var(--maple-lt); }

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  transition: all var(--transition);
}

.social-btn svg { width: 18px; height: 18px; }

.social-btn:hover {
  background: var(--maple);
  color: var(--white);
  transform: translateY(-2px);
}

/* ===== FORM ===== */
.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.1rem;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.03em;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--dark);
  background: var(--cream);
  border: 1.5px solid var(--gray-lt);
  border-radius: 6px;
  padding: 0.7rem 0.9rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--maple);
  box-shadow: 0 0 0 3px rgba(200,64,26,0.12);
  background: var(--white);
}

.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--gray);
  margin-top: 0.75rem;
}

.form-success {
  background: #F0FDF4;
  border: 1px solid #86EFAC;
  color: #166534;
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
  font-size: 0.9rem;
  margin-top: 1rem;
}

/* ===== FOOTER ===== */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.6);
  padding: 2.5rem 0 1.5rem;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
}

.footer-brand p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  margin-top: 0.1rem;
}

.footer-nav {
  display: flex;
  gap: 1.75rem;
  flex-wrap: wrap;
}

.footer-nav a {
  font-size: 0.85rem;
  transition: color var(--transition);
}

.footer-nav a:hover { color: var(--maple-lt); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-tagline {
  font-family: var(--font-head);
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: var(--maple);
}

/* ===== GALLERY HINT ===== */
.gallery-trigger { cursor: pointer; }

.gallery-hint {
  position: absolute;
  bottom: 2.8rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.55);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.25s ease;
  white-space: nowrap;
  z-index: 4;
  pointer-events: none;
}

.gallery-trigger:hover .gallery-hint { opacity: 1; }

/* ===== LIGHTBOX ===== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.94);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.lightbox.open { display: flex; }

.lb-img-wrap {
  max-width: 90vw;
  max-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lb-img-wrap img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 8px 60px rgba(0,0,0,0.7);
}

.lb-close {
  position: fixed;
  top: 1.25rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: white;
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.8;
  transition: opacity 0.2s;
  z-index: 10000;
}
.lb-close:hover { opacity: 1; }

.lb-prev, .lb-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  font-size: 1.5rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 10000;
}

.lb-prev { left: 1.5rem; }
.lb-next { right: 1.5rem; }
.lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,0.25); }

.lb-counter {
  margin-top: 1rem;
  color: rgba(255,255,255,0.55);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .fleet-card.featured {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
  }
  .fleet-card.featured .fleet-card-img { min-height: 260px; }

  .fleet-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .utv-rates { grid-template-columns: 1fr; }
  .details-grid { grid-template-columns: 1fr 1fr; }
  .contact-wrap { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    top: 60px;
    background: rgba(17,20,16,0.98);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.2rem; }
  .nav-toggle { display: flex; }

  .fleet-grid { grid-template-columns: 1fr; }
  .fleet-card.featured { grid-column: auto; }

  .trailer-card { grid-template-columns: 1fr; }
  .trailer-visual { display: none; }

  .details-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 1.75rem; }

  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { text-align: center; }
  .trailer-card { padding: 2rem 1.5rem; }
}
