/* Eagle Mountain Trailer Rentals — Shared Stylesheet */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #1a2f4a;
  --navy-dark: #0f1e30;
  --blue: #2563eb;
  --blue-light: #dbeafe;
  --orange: #ea580c;
  --orange-light: #fff7ed;
  --green: #16a34a;
  --green-light: #dcfce7;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --white: #ffffff;
  --radius: 10px;
  --shadow: 0 2px 8px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.13);
  --max-w: 960px;
}

body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; background: var(--gray-50); color: var(--gray-800); line-height: 1.7; font-size: 16px; }

/* ── HEADER ─────────────────────────────── */
.site-header { background: var(--navy); color: white; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: 64px; position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 8px rgba(0,0,0,0.3); gap: 12px; }
.logo-wrap { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.logo-tagline { font-size: 11px; color: #93c5fd; }
.site-logo-img { height: 52px; width: auto; border-radius: 8px; display: block; }
.nav-links { display: flex; gap: 6px; align-items: center; }
.nav-links a { color: #bfdbfe; text-decoration: none; font-size: 13px; font-weight: 500; padding: 6px 10px; border-radius: 6px; transition: background 0.15s; white-space: nowrap; }
.nav-links a:hover { background: rgba(255,255,255,0.1); color: white; }
.nav-links a.active { color: white; background: rgba(255,255,255,0.12); }
.header-cta { background: var(--orange); color: white; text-decoration: none; padding: 8px 16px; border-radius: 8px; font-size: 13px; font-weight: 700; white-space: nowrap; transition: background 0.15s; flex-shrink: 0; }
.header-cta:hover { background: #c2410c; }
.open-badge { display: flex; align-items: center; gap: 5px; background: var(--green); color: white; font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 20px; white-space: nowrap; flex-shrink: 0; }
.pulse { width: 7px; height: 7px; background: #4ade80; border-radius: 50%; animation: pulse 1.8s infinite; flex-shrink: 0; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.3)} }
@media(max-width:720px){ .nav-links { display: none; } .open-badge { display: none; } }
@media(max-width:640px){ .site-logo-img { height: 40px; } }

/* ── HERO ─────────────────────────────── */
.hero { background: linear-gradient(rgba(10, 22, 38, 0.72), rgba(10, 22, 38, 0.82)), url('../images/hero-dump.jpg') center 40% / cover no-repeat; color: white; padding: 60px 24px 52px; text-align: center; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: #bfdbfe; font-size: 13px; padding: 5px 14px; border-radius: 20px; margin-bottom: 18px; }
.hero-eyebrow svg { width: 14px; height: 14px; }
.hero h1 { font-size: clamp(26px, 4.5vw, 44px); font-weight: 900; line-height: 1.12; margin-bottom: 16px; letter-spacing: -0.02em; }
.hero h1 em { color: #fbbf24; font-style: normal; }
.hero-sub { font-size: 17px; color: #93c5fd; max-width: 540px; margin: 0 auto 28px; }
.hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-hero-primary { background: var(--orange); color: white; text-decoration: none; padding: 14px 28px; border-radius: var(--radius); font-size: 16px; font-weight: 700; display: inline-flex; align-items: center; gap: 8px; transition: background 0.15s; }
.btn-hero-primary svg { width: 18px; height: 18px; }
.btn-hero-primary:hover { background: #c2410c; }
.btn-hero-secondary { background: rgba(255,255,255,0.1); border: 1.5px solid rgba(255,255,255,0.3); color: white; text-decoration: none; padding: 14px 28px; border-radius: var(--radius); font-size: 16px; font-weight: 600; display: inline-flex; align-items: center; gap: 8px; transition: all 0.15s; }
.btn-hero-secondary svg { width: 18px; height: 18px; }
.btn-hero-secondary:hover { background: rgba(255,255,255,0.18); }
.hero-badges { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-top: 28px; }
.hero-badge { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); color: #e2e8f0; padding: 6px 13px; border-radius: 20px; font-size: 12px; display: inline-flex; align-items: center; gap: 5px; }
.hero-badge svg { width: 13px; height: 13px; flex-shrink: 0; }

/* ── LAYOUT HELPERS ─────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }
.section { padding: 56px 0; }
.section-sm { padding: 36px 0; }
.section-title { font-size: clamp(22px, 3vw, 32px); font-weight: 800; color: var(--navy); margin-bottom: 10px; line-height: 1.2; }
.section-sub { font-size: 16px; color: var(--gray-600); max-width: 560px; margin-bottom: 32px; }
.text-center { text-align: center; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }
.divider { height: 1px; background: var(--gray-200); }

/* ── CARD GRIDS ─────────────────────────────── */
.card-grid-3 { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 24px; }
.card-grid-2 { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 20px; }
@media(max-width:640px){ .card-grid-3, .card-grid-2 { grid-template-columns: 1fr; } }

/* ── TRAILER CARDS ─────────────────────────────── */
.trailer-card-full { background: white; border-radius: 14px; overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--gray-100); transition: transform 0.15s, box-shadow 0.15s; }
.trailer-card-img { width: 100%; height: 180px; object-fit: cover; object-position: center; display: block; }
.trailer-card-full:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.trailer-card-header { background: var(--navy); color: white; padding: 16px 20px; display: flex; justify-content: space-between; align-items: flex-start; gap: 8px; }
.trailer-card-name { font-weight: 800; font-size: 16px; line-height: 1.3; color: white; }
.trailer-card-badge { background: var(--orange); color: white; font-size: 12px; font-weight: 700; padding: 4px 10px; border-radius: 20px; white-space: nowrap; flex-shrink: 0; }
.rate-bar { background: var(--gray-50); padding: 10px 20px; display: flex; gap: 20px; border-bottom: 1px solid var(--gray-100); }
.rate-item { display: flex; flex-direction: column; }
.rate-lbl { font-size: 10px; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.05em; }
.rate-val { font-size: 15px; font-weight: 700; color: var(--gray-800); }
.trailer-card-body { padding: 16px 20px 20px; }
.feature-list { list-style: none; padding: 0; margin: 0 0 16px; }
.feature-list li { padding: 6px 0; font-size: 14px; color: var(--gray-600); border-bottom: 1px solid var(--gray-100); display: flex; align-items: center; gap: 8px; }
.feature-list li:last-child { border-bottom: none; }
.feature-list li::before { content: "✓"; color: var(--green); font-weight: 700; font-size: 13px; flex-shrink: 0; }
.btn-book { display: flex; align-items: center; justify-content: center; gap: 7px; background: var(--blue); color: white; text-decoration: none; padding: 11px 20px; border-radius: 8px; font-size: 14px; font-weight: 700; transition: background 0.15s; }
.btn-book:hover { background: #1d4ed8; }
.btn-book svg { width: 15px; height: 15px; }
.btn-book-orange { background: var(--orange) !important; }
.btn-book-orange:hover { background: #c2410c !important; }

/* ── WHY CARDS ─────────────────────────────── */
.why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 16px; }
.why-card { background: white; border-radius: var(--radius); padding: 20px 16px; box-shadow: var(--shadow); border: 1px solid var(--gray-100); }
.why-icon { width: 42px; height: 42px; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 10px; }
.why-icon svg { width: 20px; height: 20px; }
.ic-blue { background: var(--blue-light); } .ic-blue svg { color: var(--blue); }
.ic-orange { background: var(--orange-light); } .ic-orange svg { color: var(--orange); }
.ic-green { background: var(--green-light); } .ic-green svg { color: var(--green); }
.ic-navy { background: #e0f2fe; } .ic-navy svg { color: var(--navy); }
.why-title { font-weight: 700; font-size: 14px; color: var(--gray-800); margin-bottom: 4px; }
.why-desc { font-size: 13px; color: var(--gray-600); line-height: 1.5; }

/* ── FAQ ─────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: white; border-radius: var(--radius); padding: 20px 22px; box-shadow: var(--shadow); border: 1px solid var(--gray-100); }
.faq-q { font-weight: 700; color: var(--navy); margin-bottom: 8px; font-size: 15px; }
.faq-a { font-size: 14px; color: var(--gray-600); line-height: 1.6; }
.faq-a a { color: var(--blue); }

/* ── AREA CHIPS ─────────────────────────────── */
.area-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.area-chip { background: white; border: 1.5px solid var(--gray-200); color: var(--gray-700); padding: 6px 13px; border-radius: 20px; font-size: 13px; font-weight: 600; display: inline-flex; align-items: center; gap: 5px; text-decoration: none; transition: border-color 0.15s, color 0.15s; }
.area-chip:hover { border-color: var(--orange); color: var(--orange); }
.area-chip svg { width: 12px; height: 12px; color: var(--orange); flex-shrink: 0; }

/* ── BREADCRUMB ─────────────────────────────── */
.breadcrumb { padding: 12px 0; font-size: 13px; color: var(--gray-400); display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.breadcrumb a { color: var(--blue); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb svg { width: 12px; height: 12px; color: var(--gray-300); }

/* ── CTA BANNER ─────────────────────────────── */
.cta-banner { background: var(--navy); color: white; padding: 48px 24px; text-align: center; }
.cta-banner h2 { font-size: clamp(22px, 3vw, 32px); font-weight: 800; margin-bottom: 10px; }
.cta-banner p { color: #93c5fd; font-size: 16px; margin-bottom: 24px; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-cta-primary { background: var(--orange); color: white; text-decoration: none; padding: 13px 26px; border-radius: var(--radius); font-size: 15px; font-weight: 700; display: inline-flex; align-items: center; gap: 8px; transition: background 0.15s; }
.btn-cta-primary:hover { background: #c2410c; }
.btn-cta-phone { background: rgba(255,255,255,0.1); border: 1.5px solid rgba(255,255,255,0.3); color: white; text-decoration: none; padding: 13px 26px; border-radius: var(--radius); font-size: 15px; font-weight: 600; display: inline-flex; align-items: center; gap: 8px; transition: all 0.15s; }
.btn-cta-phone:hover { background: rgba(255,255,255,0.18); }
.btn-cta-primary svg, .btn-cta-phone svg { width: 18px; height: 18px; }

/* ── REVIEWS STRIP ─────────────────────────────── */
.reviews-strip { background: var(--gray-50); border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); padding: 40px 0; }
.reviews-header { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; margin-bottom: 24px; }
.reviews-header-left { display: flex; align-items: center; gap: 10px; }
.google-icon { width: 24px; height: 24px; flex-shrink: 0; }
.reviews-header-title { font-size: 18px; font-weight: 800; color: var(--navy); }
.reviews-header-right { display: flex; align-items: center; gap: 6px; }
.reviews-overall-stars { color: #f59e0b; font-size: 18px; letter-spacing: 1px; }
.reviews-overall-score { font-size: 18px; font-weight: 800; color: var(--gray-800); }
.reviews-overall-count { font-size: 14px; color: var(--gray-400); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media(max-width:800px){ .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media(max-width:520px){ .reviews-grid { grid-template-columns: 1fr; } }
.review-card { background: white; border-radius: var(--radius); padding: 18px 20px; border: 1px solid var(--gray-100); box-shadow: var(--shadow); }
.review-stars { color: #f59e0b; font-size: 15px; margin-bottom: 8px; letter-spacing: 1px; }
.review-text { font-size: 14px; color: var(--gray-700); line-height: 1.6; margin-bottom: 10px; font-style: italic; }
.review-author { font-size: 13px; font-weight: 700; color: var(--gray-800); }
.review-location { font-size: 12px; color: var(--gray-400); margin-top: 2px; }

/* ── BLOG ─────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.blog-card { background: white; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--gray-100); box-shadow: var(--shadow); text-decoration: none; color: inherit; transition: transform 0.15s, box-shadow 0.15s; display: block; }
.blog-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.blog-card-tag { display: inline-block; background: var(--blue-light); color: var(--blue); font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 4px; text-transform: uppercase; letter-spacing: 0.05em; }
.blog-card-body { padding: 16px 18px; }
.blog-card-title { font-size: 16px; font-weight: 700; color: var(--navy); margin: 8px 0 6px; line-height: 1.4; }
.blog-card-excerpt { font-size: 13px; color: var(--gray-600); line-height: 1.5; }
.blog-card-meta { padding: 10px 18px; border-top: 1px solid var(--gray-100); font-size: 12px; color: var(--gray-400); }

/* ── ARTICLE (blog post) ─────────────────────────────── */
.article-layout { display: grid; grid-template-columns: 1fr 320px; gap: 48px; max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }
@media(max-width:900px){ .article-layout { grid-template-columns: 1fr; } .article-sidebar { display: none; } }
.article-wrap { max-width: 720px; margin: 0 auto; padding: 0 20px; }
.article-header { padding: 40px 0 24px; }
.article-tag { display: inline-block; background: var(--blue-light); color: var(--blue); font-size: 12px; font-weight: 700; padding: 3px 10px; border-radius: 4px; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 14px; }
.article-title { font-size: clamp(24px, 3.5vw, 38px); font-weight: 900; color: var(--navy); line-height: 1.15; margin-bottom: 14px; }
.article-meta { font-size: 13px; color: var(--gray-400); display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.article-body { padding-bottom: 48px; }
.article-body h2 { font-size: 22px; font-weight: 800; color: var(--navy); margin: 36px 0 12px; }
.article-body h3 { font-size: 18px; font-weight: 700; color: var(--gray-800); margin: 24px 0 8px; }
.article-body p { margin-bottom: 16px; color: var(--gray-700); line-height: 1.8; }
.article-body ul, .article-body ol { margin: 0 0 16px 20px; }
.article-body li { margin-bottom: 6px; color: var(--gray-700); line-height: 1.7; }
.article-body a { color: var(--blue); }
.article-body strong { color: var(--gray-800); }
.article-lead { font-size: 17px; color: var(--gray-700); line-height: 1.7; margin-bottom: 24px; border-left: 4px solid var(--orange); padding-left: 16px; }
.article-list { list-style: disc; padding-left: 24px; color: var(--gray-700); margin: 12px 0 20px; line-height: 1.7; }
.article-list li { margin-bottom: 8px; }
.article-tip { background: var(--blue-light); border-left: 4px solid var(--blue); padding: 14px 18px; border-radius: 0 8px 8px 0; margin: 20px 0; font-size: 14px; color: #1e3a5f; }
.article-cta-box { background: var(--navy); color: white; border-radius: 14px; padding: 28px 24px; margin: 36px 0; text-align: center; }
.article-cta-box h3 { font-size: 20px; font-weight: 800; margin-bottom: 8px; }
.article-cta-box p { color: #93c5fd; font-size: 14px; margin-bottom: 16px; }
.sidebar-card { background: white; border-radius: 14px; padding: 20px; box-shadow: var(--shadow); border: 1px solid var(--gray-100); }
.sidebar-card-title { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--gray-400); margin-bottom: 12px; }
.sidebar-trailer-link { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--gray-100); text-decoration: none; }
.sidebar-trailer-link:last-of-type { border-bottom: none; }
.sidebar-trailer-name { font-size: 14px; font-weight: 600; color: var(--navy); }
.sidebar-trailer-price { font-size: 14px; font-weight: 800; color: var(--orange); }
.sidebar-area-link { display: block; font-size: 14px; color: var(--blue); text-decoration: none; padding: 6px 0; border-bottom: 1px solid var(--gray-100); }
.sidebar-area-link:last-of-type { border-bottom: none; }
.sidebar-area-link:hover { color: var(--navy); }

/* ── TWO-COL LAYOUT ─────────────────────────────── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
@media(max-width:680px){ .two-col { grid-template-columns: 1fr; } }
.info-box { background: white; border-radius: 14px; padding: 28px; box-shadow: var(--shadow); border: 1px solid var(--gray-100); }
.info-box h3 { font-size: 18px; font-weight: 800; color: var(--navy); margin-bottom: 12px; }
.info-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--gray-100); font-size: 14px; gap: 12px; }
.info-row:last-child { border-bottom: none; }
.info-row-label { color: var(--gray-600); flex-shrink: 0; }
.info-row-value { font-weight: 700; color: var(--gray-800); text-align: right; }

/* ── FOOTER ─────────────────────────────── */
.site-footer { background: var(--navy-dark); color: white; padding: 48px 24px 24px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 32px; max-width: var(--max-w); margin: 0 auto 32px; }
.footer-logo-name { font-size: 16px; font-weight: 800; margin-bottom: 4px; }
.footer-logo-sub { font-size: 12px; color: #6b7280; margin-bottom: 12px; }
.footer-ai { display: inline-flex; align-items: center; gap: 5px; background: rgba(37,99,235,0.2); border: 1px solid rgba(96,165,250,0.3); color: #93c5fd; padding: 5px 12px; border-radius: 20px; font-size: 11px; }
.footer-ai svg { width: 12px; height: 12px; }
.footer-col-title { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--gray-400); margin-bottom: 12px; }
.footer-col a { display: block; color: #9ca3af; text-decoration: none; font-size: 14px; margin-bottom: 7px; transition: color 0.15s; }
.footer-col a:hover { color: white; }
.footer-bottom { border-top: 1px solid #374151; padding-top: 20px; text-align: center; font-size: 12px; color: #6b7280; max-width: var(--max-w); margin: 0 auto; }

/* ── TRAILER PHOTO GALLERY ─────────────────────────────── */
.photo-gallery-wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }
.photo-gallery-main-wrap { width: 100%; margin-bottom: 10px; }
.photo-gallery-single { width: 100%; }
.photo-gallery-main { width: 100%; height: 420px; object-fit: cover; object-position: center; border-radius: 16px; display: block; box-shadow: var(--shadow-lg); transition: opacity 0.2s; }
.photo-gallery-thumbs { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 10px; }
.photo-gallery-thumb { width: 100%; height: 110px; object-fit: cover; object-position: center; border-radius: 10px; cursor: pointer; border: 2px solid transparent; transition: border-color 0.15s, transform 0.15s; display: block; }
.photo-gallery-thumb:hover { border-color: var(--orange); transform: translateY(-2px); }
@media(max-width:640px){
  .photo-gallery-main { height: 240px; border-radius: 10px; }
  .photo-gallery-thumbs { grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); gap: 6px; }
  .photo-gallery-thumb { height: 80px; }
}

/* ── MOBILE STICKY CTA ─────────────────────────────── */
.sticky-mobile { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: var(--orange); color: white; text-align: center; font-weight: 700; font-size: 15px; padding: 14px 20px; z-index: 200; text-decoration: none; box-shadow: 0 -2px 12px rgba(0,0,0,0.2); }
@media(max-width:640px){ .sticky-mobile { display: block; } body { padding-bottom: 56px; } }
