/* ═══════════════════════════════════════
   US FREIGHT LINES – Stylesheet
   Red · Black · White
   ═══════════════════════════════════════ */

:root {
  --red: #e02020;
  --red-dark: #b01818;
  --red-glow: rgba(224,32,32,0.25);
  --black: #0d0d0d;
  --dark: #111111;
  --dark2: #1c1c1c;
  --dark3: #242424;
  --gray: #555;
  --light-gray: #f5f5f5;
  --white: #ffffff;
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --shadow: 0 4px 20px rgba(0,0,0,0.2);
  --shadow-heavy: 0 8px 40px rgba(0,0,0,0.4);
  --radius: 8px;
  --transition: 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--black); background: var(--white); line-height: 1.6; }
img { max-width: 100%; display: block; object-fit: cover; }
a { text-decoration: none; color: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.text-center { text-align: center; }
.text-white { color: var(--white); }
.accent { color: var(--red); }

.section-tag {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.section-tag.light { background: rgba(224,32,32,0.15); color: var(--red); }

h2 {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  text-transform: uppercase;
}
h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.section-intro { font-size: 1.05rem; color: var(--gray); max-width: 640px; margin: 0 auto 50px; }

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 13px 30px;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary { background: var(--red); color: var(--white); border-color: var(--red); }
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-2px); box-shadow: 0 6px 20px var(--red-glow); }
.btn-outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--black); }
.btn-fb { background: #1877F2; color: var(--white); border-color: #1877F2; }
.btn-fb:hover { background: #1465cc; border-color: #1465cc; color: var(--white); }
.btn-secondary { background: transparent; color: var(--red); border: 2px solid var(--red); }
.btn-secondary:hover { background: var(--red); color: var(--white); }
.btn-large { padding: 17px 44px; font-size: 1.1rem; width: 100%; margin-top: 10px; }

/* ═══ ADS ═══ */
.ad-banner { background: #f0f0f0; border-top: 1px solid #e0e0e0; border-bottom: 1px solid #e0e0e0; text-align: center; padding: 12px; min-height: 100px; display: flex; align-items: center; justify-content: center; }
.ad-placeholder { color: #999; font-size: 0.78rem; font-style: italic; padding: 20px; border: 1px dashed #ccc; min-width: 300px; }
.adsbygoogle + .ad-placeholder { display: none; }

/* ═══ HEADER ═══ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: linear-gradient(135deg, rgba(8,0,0,0.98) 0%, rgba(30,4,4,0.98) 50%, rgba(8,0,0,0.98) 100%);
  border-bottom: 3px solid var(--red);
  box-shadow: 0 2px 24px rgba(224,32,32,0.18);
  overflow: visible;
}
.header-inner {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  padding-top: 0;
  padding-bottom: 0;
  min-height: 68px;
}
.logo-block {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  padding: 10px 22px 18px 22px;
  border-radius: 0 0 16px 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35), 0 2px 8px rgba(0,0,0,0.2);
  margin-bottom: -16px;
  z-index: 10;
  position: relative;
  gap: 0;
}
@keyframes logoEntrance {
  0%   { opacity: 0; transform: scale(0.5) rotate(-6deg); }
  60%  { opacity: 1; transform: scale(1.1) rotate(2deg); }
  80%  { transform: scale(0.95) rotate(-1deg); }
  100% { opacity: 1; transform: scale(1) rotate(0deg); }
}
.logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
  display: block;
  cursor: pointer;
  transition: transform 0.12s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.15s ease;
  user-select: none;
}
.logo-img.logo-hidden { opacity: 0; }
.logo-img.logo-loaded { animation: logoEntrance 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) both; }
.logo-img:hover {
  transform: scale(1.07);
  filter: drop-shadow(0 4px 14px rgba(224,32,32,0.5));
}
.logo-img:active {
  transform: scale(0.92) rotate(-1deg);
  filter: drop-shadow(0 2px 6px rgba(224,32,32,0.3));
  transition: transform 0.07s ease, filter 0.07s ease;
}
.logo-text { display: none; }
.logo-main { display: none; }
.logo-sub { display: none; }
.main-nav { display: flex; align-items: center; gap: 22px; }
.main-nav a { color: #ccc; font-family: var(--font-heading); font-size: 0.88rem; letter-spacing: 1px; text-transform: uppercase; transition: var(--transition); }
.main-nav a:hover { color: var(--red); }
.main-nav .nav-cta { background: var(--red); color: var(--white); padding: 8px 18px; border-radius: var(--radius); }
.main-nav .nav-cta:hover { background: var(--red-dark); color: var(--white); }
.main-nav .nav-customers-btn { background: rgba(192,57,43,0.18); border: 1.5px solid rgba(192,57,43,0.5); color: #f87171; padding: 7px 16px; border-radius: var(--radius); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.5px; transition: background 0.2s, border-color 0.2s; }
.main-nav .nav-customers-btn:hover { background: var(--red); border-color: var(--red); color: var(--white); }
.main-nav .nav-login-btn { border: 1.5px solid rgba(255,255,255,0.35); color: var(--white); padding: 7px 16px; border-radius: var(--radius); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.5px; transition: background 0.2s, border-color 0.2s; }
.main-nav .nav-login-btn:hover { background: rgba(255,255,255,0.12); border-color: var(--white); color: var(--white); }
.main-nav .nav-login {
  border: 1.5px solid rgba(255,255,255,0.35); color: rgba(255,255,255,0.85);
  padding: 7px 16px; border-radius: var(--radius); font-size: 0.85rem;
  transition: all 0.2s;
}
.main-nav .nav-login:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,0.08); }
.nav-signout {
  background: none; border: 1.5px solid rgba(224,32,32,0.5); color: rgba(255,255,255,0.65);
  padding: 7px 14px; border-radius: var(--radius); font-size: 0.82rem; font-family: var(--font-heading);
  letter-spacing: 1px; text-transform: uppercase; cursor: pointer; transition: all 0.2s;
}
.nav-signout:hover { background: rgba(224,32,32,0.15); border-color: #e02020; color: #fff; }
.hamburger { display: none; background: none; border: none; color: var(--white); font-size: 1.5rem; cursor: pointer; }
.mobile-nav { display: none; flex-direction: column; background: var(--dark); padding: 16px 24px; gap: 8px; border-top: 1px solid #222; }
.mobile-nav a { color: #ccc; font-family: var(--font-heading); letter-spacing: 1px; text-transform: uppercase; padding: 10px 0; border-bottom: 1px solid #1e1e1e; }
.mobile-nav.open { display: flex; }

/* ═══ HERO ═══ */
.hero {
  min-height: 100vh;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  padding-top: 80px;
  overflow: hidden;
}
.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
}
.hero-slide.active { opacity: 0.5; }
.hero-slide-dots {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}
.slide-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: 2px solid rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.3s;
}
.slide-dot.active {
  background: var(--red);
  border-color: var(--red);
  transform: scale(1.3);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.82) 100%);
  z-index: 1;
}
.hero-content { position: relative; z-index: 2; max-width: 820px; }
.hero-badge {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 20px;
  margin-bottom: 18px;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(224,32,32,0.5); }
  50% { box-shadow: 0 0 0 12px rgba(224,32,32,0); }
}
.hero h1 { font-family: var(--font-heading); font-size: clamp(1.8rem, 5vw, 3.8rem); font-weight: 700; color: var(--white); text-transform: uppercase; line-height: 1.1; margin-bottom: 18px; white-space: nowrap; }
.hero-sub { color: #ddd; font-size: 1.2rem; margin-bottom: 22px; line-height: 1.8; }
.hero-sub strong { color: var(--red); }

.hero-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 30px;
}
.hero-logo-item {
  border-radius: var(--radius);
  padding: 10px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
  width: 130px;
  height: 72px;
  flex-shrink: 0;
}
.hero-logo-item:nth-child(1) { background: linear-gradient(135deg, #001240 0%, #003087 100%); } /* Volvo navy */
.hero-logo-item:nth-child(2) { background: linear-gradient(135deg, #0d0d0d 0%, #252525 100%); } /* Freightliner black */
.hero-logo-item:nth-child(3) { background: linear-gradient(135deg, #070f1e 0%, #0d2044 100%); } /* Western Star navy */
.hero-logo-item:nth-child(4) { background: linear-gradient(135deg, #2a0000 0%, #7a0010 100%); } /* Peterbilt deep red */
.hero-logo-item:nth-child(5) { background: linear-gradient(135deg, #6b0000 0%, #c0001a 100%); } /* Kenworth red */
.hero-logo-item:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(224,32,32,0.35); border-color: var(--red); }
.hero-logo-item img {
  max-height: 42px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  mix-blend-mode: screen;
}
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-scroll-hint { position: absolute; bottom: 28px; color: rgba(255,255,255,0.4); font-size: 0.8rem; letter-spacing: 2px; z-index: 2; animation: bounce 2s infinite; }
@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

/* ═══ TICKER ═══ */
.ticker-wrap { background: var(--red); overflow: hidden; padding: 12px 0; border-top: 3px solid var(--red-dark); border-bottom: 3px solid var(--red-dark); }
.ticker-track { display: flex; gap: 60px; width: max-content; animation: ticker 38s linear infinite; }
.ticker-track span { font-family: var(--font-heading); font-size: 0.9rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--white); white-space: nowrap; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ═══ ABOUT ═══ */
.about-section { background: var(--light-gray); }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-text p { color: var(--gray); margin-bottom: 16px; }
.about-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.about-tags span { background: var(--white); border: 1px solid #ddd; color: var(--black); font-size: 0.82rem; padding: 5px 12px; border-radius: 20px; font-weight: 600; }

.social-buttons { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 4px; }
.social-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 18px; border-radius: 24px;
  font-family: var(--font-heading); font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.5px; text-transform: uppercase;
  color: var(--white); transition: var(--transition);
}
.social-pill:hover { transform: translateY(-2px); opacity: 0.9; }
.social-pill.fb { background: #1877f2; }
.social-pill.ig { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-pill.yt { background: #ff0000; }
.social-pill.tg { background: #229ed9; }
.about-image { position: relative; }
.about-image img { width: 100%; height: 380px; border-radius: var(--radius); box-shadow: var(--shadow-heavy); }
.img-badge { position: absolute; bottom: -16px; right: -16px; background: var(--red); color: var(--white); font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700; padding: 12px 20px; border-radius: var(--radius); box-shadow: var(--shadow); }

/* ═══ PAY ═══ */
.pay-section { background: linear-gradient(135deg, #0a0000 0%, #1a0000 50%, #0d0d0d 100%); position: relative; overflow: hidden; }
.pay-section::before { content: ''; position: absolute; top: -80px; right: -80px; width: 350px; height: 350px; background: radial-gradient(circle, rgba(224,32,32,0.12) 0%, transparent 70%); }

.pay-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 40px; }
.pay-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 36px 28px;
  color: var(--white);
  transition: var(--transition);
}
.pay-card.featured { border-color: var(--red); background: rgba(224,32,32,0.08); }
.pay-card:hover { transform: translateY(-4px); box-shadow: 0 10px 40px rgba(224,32,32,0.25); border-color: var(--red); }
a.pay-card { display: block; text-decoration: none; cursor: pointer; }
.pay-card-cta { margin-top: 20px; display: inline-block; background: var(--red); color: var(--white); font-family: var(--font-heading); font-size: 0.85rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 10px 22px; border-radius: 6px; transition: var(--transition); }
a.pay-card:hover .pay-card-cta { background: #ff2222; }
.pay-card-label { font-family: var(--font-heading); font-size: 0.72rem; letter-spacing: 2px; color: var(--red); text-transform: uppercase; margin-bottom: 14px; }
.pay-big { font-family: var(--font-heading); font-size: 3.5rem; font-weight: 700; color: var(--white); line-height: 1; margin-bottom: 16px; }
.pay-big span { font-size: 1.4rem; color: rgba(255,255,255,0.6); }
.pay-card p { color: rgba(255,255,255,0.65); font-size: 0.9rem; margin-bottom: 18px; }
.pay-card ul { list-style: none; }
.pay-card ul li { color: rgba(255,255,255,0.8); font-size: 0.88rem; padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }

.pay-extras { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 32px; }
.pay-extra-item { display: flex; gap: 14px; align-items: flex-start; }
.pe-icon { font-size: 1.8rem; flex-shrink: 0; }
.pay-extra-item strong { display: block; color: var(--white); font-family: var(--font-heading); font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
.pay-extra-item p { color: rgba(255,255,255,0.55); font-size: 0.82rem; }

/* ═══ STATS ═══ */
.stats-section { background: var(--light-gray); }
.stats-section h2 { margin-bottom: 50px; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.stat-card {
  background: var(--white);
  border: 2px solid #eee;
  border-radius: var(--radius);
  padding: 36px 20px;
  text-align: center;
  transition: var(--transition);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.stat-card:hover { border-color: var(--red); transform: translateY(-4px); box-shadow: 0 8px 30px rgba(224,32,32,0.12); }
.miles-card { grid-column: span 3; }
.stat-number { font-family: var(--font-heading); font-size: 2.8rem; font-weight: 700; color: var(--red); line-height: 1; margin-bottom: 10px; }
.miles-number { font-size: 3.4rem; }
.stat-prefix { font-size: 1.1rem; font-weight: 600; color: var(--gray); display: block; margin-bottom: 2px; }
.stat-suffix { font-size: 1.6rem; }
.stat-label { font-size: 0.85rem; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.stat-note { display: block; font-size: 0.7rem; color: #aaa; text-transform: none; letter-spacing: 0; margin-top: 4px; font-style: italic; }

/* ═══ FLEET / GALLERY ═══ */
.fleet-section { background: var(--dark); }
.fleet-section .section-tag { background: var(--red); color: var(--white); }
.fleet-section h2 { color: var(--white); }
.fleet-section .section-intro { color: rgba(255,255,255,0.6); }

.brand-bar { display: flex; flex-wrap: nowrap; justify-content: center; gap: 16px; margin-bottom: 40px; overflow: visible; padding: 8px 0 12px; }
.brand-logo-card {
  border-radius: 14px;
  padding: 20px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  border: 2px solid rgba(255,255,255,0.08);
  box-shadow: 0 6px 28px rgba(0,0,0,0.35);
  width: 170px;
  height: 100px;
  flex-shrink: 0;
}
.brand-logo-card:nth-child(1) { background: linear-gradient(145deg, #001240 0%, #003087 100%); } /* Volvo navy */
.brand-logo-card:nth-child(2) { background: linear-gradient(145deg, #0d0d0d 0%, #252525 100%); } /* Freightliner black */
.brand-logo-card:nth-child(3) { background: linear-gradient(145deg, #070f1e 0%, #0d2044 100%); } /* Western Star navy */
.brand-logo-card:nth-child(4) { background: linear-gradient(145deg, #2a0000 0%, #7a0010 100%); } /* Peterbilt deep red */
.brand-logo-card:nth-child(5) { background: linear-gradient(145deg, #6b0000 0%, #c0001a 100%); } /* Kenworth red */
.brand-logo-card { cursor: pointer; }
.brand-logo-card.active {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(224,32,32,0.35), 0 14px 40px rgba(224,32,32,0.4);
  transform: translateY(-5px) scale(1.06);
}
.brand-logo-card:hover {
  border-color: rgba(255,255,255,0.3);
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(224,32,32,0.4);
}
.brand-logo-card img {
  max-height: 58px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  mix-blend-mode: screen;
}

.fleet-slideshow {
  position: relative;
  width: 100%;
  height: 480px;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 40px;
  background: #000;
}
.fleet-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}
.fleet-slide.active { opacity: 1; }
.fleet-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 20px;
  background: #0d0d0d;
  color: rgba(255,255,255,0.4);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.fleet-placeholder .fp-logo {
  max-height: 64px;
  max-width: 220px;
  opacity: 0.5;
  filter: brightness(3);
}
.fleet-slide-bg {
  position: absolute;
  inset: -20px;
  background-size: cover;
  background-position: center;
  filter: blur(18px) brightness(0.45);
  z-index: 0;
}
.fleet-slide img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  z-index: 1;
}
.fleet-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 14px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, transparent 100%);
  color: rgba(255,255,255,0.9);
  font-size: 0.82rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.fleet-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 5;
  transition: background 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.fleet-arrow:hover { background: var(--red); border-color: var(--red); }
.fleet-prev { left: 16px; }
.fleet-next { right: 16px; }
.fleet-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}
.fleet-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: 2px solid rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.3s;
}
.fleet-dot.active {
  background: var(--red);
  border-color: var(--red);
  transform: scale(1.3);
}
.gallery-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 20px 12px 10px;
  transform: translateY(100%);
  transition: var(--transition);
}
.gallery-item:hover .gallery-caption { transform: translateY(0); }

.fleet-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.ff-item { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); padding: 20px 16px; text-align: center; }
.ff-item span { font-size: 2rem; display: block; margin-bottom: 8px; }
.ff-item p { color: rgba(255,255,255,0.7); font-size: 0.85rem; }

/* ═══ REQUIREMENTS ═══ */
.requirements-section { background: var(--white); }
.req-list { list-style: none; margin-bottom: 18px; }
.req-list li { padding: 10px 0; border-bottom: 1px solid #eee; font-size: 0.95rem; color: var(--gray); }
.req-note { font-size: 0.88rem; color: var(--red); font-weight: 600; margin-bottom: 22px; background: rgba(224,32,32,0.07); padding: 10px 14px; border-radius: var(--radius); border-left: 3px solid var(--red); }
.req-image img { width: 100%; height: 420px; border-radius: var(--radius); box-shadow: var(--shadow-heavy); }

/* ═══ XPRESS SHOP ═══ */
.shop-section { background: var(--light-gray); }
.shop-image { position: relative; }
.shop-yard-img {
  width: 100%;
  height: 380px;
  border-radius: var(--radius);
  object-fit: cover;
  object-position: center;
  box-shadow: var(--shadow-heavy);
}
.shop-logo-overlay {
  position: absolute;
  bottom: -20px;
  right: -16px;
  background: transparent;
  border-radius: var(--radius);
  padding: 12px 16px;
}
.shop-logo-badge {
  height: 140px;
  width: 140px;
  object-fit: contain;
  display: block;
}
.shop-text h2 { font-size: clamp(1.4rem, 2.8vw, 2.2rem); white-space: nowrap; }
.shop-text p { color: var(--gray); margin-bottom: 16px; }
.shop-list { list-style: none; margin-bottom: 22px; }
.shop-list li { padding: 9px 0; border-bottom: 1px solid #e0e0e0; font-size: 0.92rem; color: var(--gray); }
/* ═══ APPLY ═══ */

.apply-section { background: linear-gradient(135deg, #0a0000 0%, #1a0000 100%); }
.apply-form { max-width: 820px; margin: 0 auto; background: rgba(255,255,255,0.04); border: 1px solid rgba(224,32,32,0.25); border-radius: 12px; padding: 40px; backdrop-filter: blur(10px); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full-width { margin-bottom: 20px; }
.form-group label { color: rgba(255,255,255,0.85); font-size: 0.82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.form-group input, .form-group select, .form-group textarea { padding: 12px 16px; border: 1px solid rgba(255,255,255,0.18); border-radius: var(--radius); background: rgba(255,255,255,0.07); color: var(--white); font-family: var(--font-body); font-size: 0.95rem; transition: var(--transition); outline: none; }
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group select option { background: #1a0000; color: var(--white); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--red); background: rgba(255,255,255,0.1); }
.form-check { display: flex !important; flex-direction: row !important; align-items: center; gap: 10px; }
.form-check input[type="checkbox"] { width: 18px; height: 18px; flex-shrink: 0; accent-color: var(--red); }
.form-check label { color: rgba(255,255,255,0.65) !important; font-size: 0.83rem !important; text-transform: none !important; letter-spacing: 0 !important; font-weight: 400 !important; }
.file-upload-box { position: relative; border: 2px dashed rgba(255,255,255,0.2); border-radius: var(--radius); background: rgba(255,255,255,0.04); transition: var(--transition); overflow: hidden; }
.file-upload-box:hover { border-color: var(--red); background: rgba(224,32,32,0.07); }
.file-input { position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%; z-index: 2; }
.file-upload-label { display: flex; align-items: center; gap: 14px; padding: 16px 20px; cursor: pointer; }
.file-icon { font-size: 1.6rem; flex-shrink: 0; }
.file-text { color: var(--white); line-height: 1.4; }
.file-text strong { font-size: 0.9rem; }
.file-text small { color: rgba(255,255,255,0.45); font-size: 0.78rem; }
.file-chosen { display: block; padding: 6px 20px 10px; font-size: 0.78rem; color: rgba(255,255,255,0.4); transition: color 0.2s; }
.file-chosen.has-file { color: #4caf50; font-weight: 600; }

.form-success { text-align: center; max-width: 500px; margin: 0 auto; color: var(--white); }
.success-icon { font-size: 4rem; margin-bottom: 16px; }
.form-success h3 { font-family: var(--font-heading); font-size: 1.8rem; color: var(--red); margin-bottom: 12px; }
.form-success p { color: rgba(255,255,255,0.75); margin-bottom: 24px; line-height: 1.7; }

/* ═══ FOOTER ═══ */
.site-footer { background: var(--black); color: #888; padding-top: 60px; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid #1e1e1e; }
.footer-logo-wrap {
  display: inline-block;
  margin-bottom: 16px;
}
.footer-logo-img { height: 70px; width: auto; object-fit: contain; display: block; mix-blend-mode: screen; }
.footer-tagline { font-size: 0.88rem; color: #aaa; margin-bottom: 18px; line-height: 1.6; }
.footer-tagline span { color: #666; font-size: 0.8rem; }

.footer-socials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.fsoc-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-radius: 10px;
  text-decoration: none;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.06);
}
.fsoc-card:hover { transform: translateY(-2px); filter: brightness(1.15); }
.fsoc-card.fb { background: #1877f2; }
.fsoc-card.ig { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.fsoc-card.yt { background: #ff0000; }
.fsoc-card.tg { background: #229ed9; }
.fsoc-icon { font-size: 1rem; color: #fff; font-weight: 700; width: 20px; text-align: center; flex-shrink: 0; }
.fsoc-label { font-size: 0.78rem; font-weight: 600; color: #fff; font-family: var(--font-heading); letter-spacing: 0.5px; text-transform: uppercase; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links h4, .footer-contact h4 { font-family: var(--font-heading); color: var(--white); font-size: 0.85rem; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 14px; }
.footer-links a { color: #888; font-size: 0.88rem; transition: var(--transition); }
.footer-links a:hover { color: var(--red); }
.footer-contact p { font-size: 0.88rem; margin-bottom: 8px; }
.footer-contact a { color: var(--red); }
.footer-bottom { text-align: center; padding: 20px; font-size: 0.78rem; color: #444; }
.footer-bottom a { color: #555; }
.footer-bottom a:hover { color: var(--red); }

/* ═══ FLOATING SIGN IN ═══ */
.floating-signin {
  position: fixed; bottom: 90px; right: 26px; z-index: 1000;
  background: #1a1a1a; color: #fff;
  font-family: var(--font-heading); font-size: 0.82rem; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 13px 20px; border-radius: 50px; text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.35);
  box-shadow: 0 4px 20px rgba(0,0,0,0.55);
  transition: background 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  display: flex; align-items: center; gap: 7px;
  opacity: 1; visibility: visible;
}
.floating-signin:hover { background: #2a2a2a; border-color: var(--red); color: #fff; transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,0.6); }

/* ═══ FLOATING CTA ═══ */
.floating-cta {
  position: fixed; bottom: 26px; right: 26px; z-index: 999;
  background: var(--red); color: var(--white);
  font-family: var(--font-heading); font-size: 0.88rem; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 14px 22px; border-radius: 50px;
  box-shadow: 0 6px 24px rgba(224,32,32,0.5);
  transition: var(--transition);
  animation: float-in 0.8s 1s both;
}
.floating-cta:hover { background: var(--red-dark); transform: translateY(-3px); box-shadow: 0 10px 32px rgba(224,32,32,0.6); }
@keyframes float-in { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* ═══ PODCAST ═══ */
.podcast-section { background: var(--white); }
.podcast-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
  margin-top: 40px;
}
.podcast-video-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.18);
  background: #000;
}
.podcast-video-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}
.podcast-badge {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.podcast-info h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--black);
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}
.podcast-info p { color: #555; line-height: 1.7; margin-bottom: 20px; }
.podcast-links-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.podcast-platform-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: 10px;
  text-decoration: none;
  font-family: 'Open Sans', sans-serif;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 2px solid transparent;
}
.podcast-platform-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }
.podcast-platform-btn.yt { background: #ff0000; color: #fff; }
.podcast-platform-btn.yt:hover { background: #cc0000; }
.podcast-platform-btn.share { background: #f0f0f0; color: var(--black); border-color: #ddd; }
.podcast-platform-btn.share:hover { background: #e4e4e4; }
.pp-icon { font-size: 1.4rem; flex-shrink: 0; width: 28px; text-align: center; }
.pp-text strong { display: block; font-size: 0.95rem; font-weight: 700; }
.pp-text small { font-size: 0.78rem; opacity: 0.8; }

/* ═══════════════════════════════════════
   RESPONSIVE — All Devices
   TV · Desktop · Tablet · Mobile · Small
   ═══════════════════════════════════════ */

/* ── TV / 4K (1920px+) ── */
@media (min-width: 1920px) {
  .container { max-width: 1600px; }
  .section { padding: 120px 0; }
  h2 { font-size: 3.2rem; }
  h3 { font-size: 1.6rem; }
  .hero h1 { font-size: clamp(3.8rem, 4vw, 5.5rem); white-space: normal; }
  .hero-sub { font-size: 1.6rem; }
  .hero-badge { font-size: 1rem; padding: 9px 28px; }
  .hero-logo-item { width: 180px; height: 100px; }
  .hero-logo-item img { max-height: 60px; }
  .stat-number { font-size: 4rem; }
  .miles-number { font-size: 5rem; }
  .pay-big { font-size: 5rem; }
  .section-intro { font-size: 1.3rem; max-width: 900px; }
  .main-nav { gap: 36px; }
  .main-nav a { font-size: 1rem; letter-spacing: 2px; }
  .fleet-slideshow { height: 700px; }
  .brand-logo-card { width: 220px; height: 130px; }
  .brand-logo-card img { max-height: 80px; }
  .logo-img { height: 80px; }
  .logo-block { padding: 14px 32px 24px; }
  .floating-cta { bottom: 40px; right: 40px; font-size: 1rem; padding: 18px 32px; }
  .btn { font-size: 1.1rem; padding: 16px 38px; }
  .apply-form { max-width: 1100px; padding: 56px 64px; }
  .form-group input, .form-group select, .form-group textarea { font-size: 1.1rem; padding: 16px 20px; }
  .footer-inner { gap: 60px; }
  .footer-logo-img { height: 100px; }
  .podcast-featured { gap: 80px; }
}

/* ── Large Desktop (1400–1919px) ── */
@media (min-width: 1400px) and (max-width: 1919px) {
  .container { max-width: 1320px; }
  .fleet-slideshow { height: 560px; }
}

/* ── Tablet landscape (1024–1279px) ── */
@media (max-width: 1279px) {
  .pay-extras { grid-template-columns: repeat(2, 1fr); }
  .fleet-features { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.large { grid-column: span 2; }
  .podcast-featured { gap: 32px; }
}

/* ── Tablet (768–1023px) ── */
@media (max-width: 1023px) {
  .main-nav { display: none; }
  .hamburger { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; }
  .section { padding: 64px 0; }
  .container { padding: 0 20px; }
  h2 { font-size: 2rem; }

  /* Header */
  .logo-img { height: 50px; }
  .logo-block { padding: 8px 16px 14px; }

  /* Hero */
  .hero h1 { font-size: clamp(1.7rem, 4.5vw, 3rem); white-space: normal; }
  .hero-sub { font-size: 1rem; }
  .hero-logo-item { width: 110px; height: 60px; padding: 8px 12px; }
  .hero-logo-item img { max-height: 34px; }

  /* Layout */
  .two-col { grid-template-columns: 1fr; gap: 36px; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .miles-card { grid-column: span 3; }

  /* Pay */
  .pay-extras { grid-template-columns: repeat(2, 1fr); }

  /* Fleet */
  .fleet-slideshow { height: 380px; }
  .brand-bar { gap: 12px; }
  .brand-logo-card { width: 140px; height: 84px; padding: 14px 20px; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: span 2; }

  /* Apply */
  .apply-form { padding: 28px 24px; }

  /* Shop */
  .shop-logo-badge { height: 110px; width: 110px; }
}

/* ── Tablet (768–1023px) ── */
/* ── Mobile large (600–767px) ── */
@media (max-width: 767px) {
  .section { padding: 52px 0; }
  .container { padding: 0 16px; }
  h2 { font-size: 1.75rem; }
  .section-intro { font-size: 0.95rem; margin-bottom: 32px; }
  /* Hero */
  .hero { min-height: 100svh; padding-top: 68px; }
  .hero h1 { font-size: clamp(1.6rem, 6vw, 2.6rem); white-space: normal; }
  .hero-sub { font-size: 0.95rem; margin-bottom: 16px; }
  .hero-badge { font-size: 0.72rem; letter-spacing: 2px; }
  .hero-logo-item { width: 96px; height: 54px; padding: 6px 10px; }
  .hero-logo-item img { max-height: 30px; }
  .hero-actions { flex-direction: column; align-items: center; width: 100%; }
  .hero-actions .btn { width: 100%; max-width: 320px; text-align: center; }
  .hero-slide-dots { bottom: 44px; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .miles-card { grid-column: span 3; }
  .stat-card { padding: 20px 10px; }
  .stat-number { font-size: 1.9rem; }
  .miles-number { font-size: 2.4rem; }
  .stat-prefix { font-size: 0.85rem; }
  .stat-suffix { font-size: 1.2rem; }

  /* Pay */
  .pay-cards { grid-template-columns: 1fr; }
  .pay-extras { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .pay-big { font-size: 2.8rem; }

  /* Fleet */
  .fleet-slideshow { height: 280px; border-radius: 10px; }
  .fleet-features { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .fleet-arrow { width: 36px; height: 36px; font-size: 1rem; }
  .brand-bar { display: flex; flex-wrap: nowrap; justify-content: center; gap: 7px; }
  .brand-logo-card { flex: 1 1 0; min-width: 0; height: 64px; padding: 8px 6px; }
  .brand-logo-card img { max-height: 38px; max-width: 100%; }

  /* About */
  .about-image img { height: 260px; }
  .img-badge { display: none; }
  .social-buttons { gap: 8px; }
  .social-pill { padding: 8px 14px; font-size: 0.78rem; }

  /* Shop */
  .shop-yard-img { height: 240px; }
  .shop-logo-overlay { bottom: -10px; right: -8px; }
  .shop-logo-badge { height: 90px; width: 90px; }
  .shop-text h2 { white-space: normal; font-size: 1.5rem; }

  /* Requirements */
  .req-image img { height: 280px; }

  /* Apply */
  .apply-form { padding: 22px 16px; border-radius: 10px; }
  .form-row { grid-template-columns: 1fr; gap: 14px; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .footer-brand { grid-column: unset; }
  .footer-socials-grid { grid-template-columns: 1fr 1fr; }

  /* Floating CTA + Sign In */
  .floating-cta { bottom: 14px; right: 14px; padding: 11px 18px; font-size: 0.82rem; }
  .floating-signin { bottom: 14px; left: 14px; padding: 11px 18px; font-size: 0.78rem; }

  /* Podcast */
  .podcast-featured { grid-template-columns: 1fr; gap: 28px; }

  /* Gallery */
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.large { grid-column: span 2; }
}

/* ── Mobile standard (480–599px) ── */
@media (max-width: 599px) {
  .hero-logos { gap: 6px; }
  .hero-logo-item { width: 84px; height: 48px; }
  .pay-extras { grid-template-columns: 1fr 1fr; }
  .fleet-features { grid-template-columns: 1fr 1fr; }
}

/* ── Mobile small (<480px) ── */
@media (max-width: 479px) {
  .container { padding: 0 14px; }
  h2 { font-size: 1.55rem; }

  /* Header */
  .logo-img { height: 44px; }
  .logo-block { padding: 6px 12px 12px; }
  .header-inner { min-height: 58px; }

  /* Hero */
  .hero { padding-top: 58px; }
  .hero h1 { font-size: clamp(1.4rem, 7.5vw, 2rem); }
  .hero-content { padding: 0 8px; }
  .hero-logos { gap: 5px; }
  .hero-logo-item { width: 74px; height: 44px; padding: 5px 8px; }
  .hero-logo-item img { max-height: 26px; }
  .hero-badge { font-size: 0.65rem; letter-spacing: 1.5px; padding: 5px 14px; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(3, 1fr); gap: 6px; }
  .miles-card { grid-column: span 3; }
  .stat-card { padding: 14px 6px; }
  .stat-number { font-size: 1.5rem; }
  .miles-number { font-size: 1.9rem; }
  .stat-label { font-size: 0.68rem; letter-spacing: 0; }
  .stat-prefix { font-size: 0.72rem; }
  .stat-suffix { font-size: 1rem; }

  /* Pay */
  .pay-big { font-size: 2.4rem; }
  .pay-extras { grid-template-columns: 1fr; }
  .pay-card { padding: 24px 18px; }

  /* Fleet */
  .fleet-slideshow { height: 220px; }
  .brand-bar { display: flex; flex-wrap: nowrap; justify-content: center; gap: 5px; }
  .brand-logo-card { flex: 1 1 0; min-width: 0; height: 56px; padding: 6px 4px; }
  .fleet-features { grid-template-columns: repeat(3, 1fr); gap: 6px; }
  .ff-item { padding: 12px 6px; }
  .ff-item span { font-size: 1.4rem; }
  .ff-item p { font-size: 0.72rem; }

  /* Apply */
  .apply-form { padding: 18px 12px; }
  .form-group input, .form-group select, .form-group textarea { padding: 10px 12px; font-size: 0.9rem; }
  .btn-large { padding: 15px 24px; font-size: 1rem; }
  .file-upload-label { padding: 12px 14px; gap: 10px; }
  .file-icon { font-size: 1.3rem; }

  /* Gallery */
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.large { grid-column: span 1; }

  /* Footer */
  .footer-socials-grid { grid-template-columns: 1fr; }
  .footer-logo-img { height: 56px; }
  .floating-cta { bottom: 10px; right: 10px; padding: 10px 16px; font-size: 0.78rem; }
  .floating-signin { bottom: 10px; left: 10px; padding: 10px 14px; font-size: 0.72rem; }

  /* Podcast */
  .podcast-platform-btn { padding: 12px 14px; gap: 10px; }
  .pp-icon { font-size: 1.2rem; width: 22px; }
}

/* ── Extra small (<360px) ── */
@media (max-width: 359px) {
  .hero h1 { font-size: 1.3rem; }
  .hero-logo-item { width: 64px; height: 40px; padding: 4px 6px; }
  .hero-logo-item img { max-height: 22px; }
  .stat-number { font-size: 1.6rem; }
  .pay-big { font-size: 2rem; }
  .fleet-slideshow { height: 190px; }
  .brand-logo-card { width: 88px; height: 54px; }
}

/* ── Touch targets (iOS/Android min 44px) ── */
@media (hover: none) and (pointer: coarse) {
  .btn, .nav-cta, .floating-cta { min-height: 44px; }
  .hamburger { min-width: 44px; min-height: 44px; }
  .fleet-arrow { width: 44px; height: 44px; }
  .slide-dot, .fleet-dot { width: 14px; height: 14px; }
  .social-pill { min-height: 44px; }
  .fsoc-card { min-height: 44px; }
  .nav-btn-mobile { min-height: 48px; }
  .pay-card:hover { transform: none; }
  .stat-card:hover { transform: none; }
  a.pay-card:hover .pay-card-cta { background: var(--red); }
}

/* ── Dark mode respect ── */
@media (prefers-color-scheme: dark) {
  .about-section { background: #1a1a1a; }
  .about-section h2, .about-section p, .about-section .about-text { color: #eee; }
  .about-tags span { background: #2a2a2a; border-color: #333; color: #eee; }
  .stats-section { background: #181818; }
  .stat-card { background: #222; border-color: #333; }
  .stat-card .stat-number { color: var(--red); }
  .stat-card .stat-label { color: #bbb; }
  .stat-prefix { color: #999; }
  .shop-section { background: #1a1a1a; }
  .shop-section h2, .shop-section p { color: #eee; }
  .pay-section .pay-card-title, .pay-section .pay-card-body { color: #eee; }
  .req-section h2, .req-section p, .req-list li { color: #eee; }
  .apply-section { background: #111; }
  .apply-section h2, .apply-form label { color: #eee; }
  .apply-form input, .apply-form select, .apply-form textarea {
    background: #2a2a2a; border-color: #444; color: #eee;
  }
  .section-tag { color: #fff; }
  body { background: #111; color: #eee; }
  .site-header { background: rgba(10,10,10,0.97); }
}

/* ── NEWS SECTION ── */
.news-section { background: var(--light-gray, #f5f5f5); }
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.news-loading { color: #888; font-size: 0.9rem; padding: 24px 0; }
.news-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 0;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  text-decoration: none;
  color: inherit;
}
.news-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,0.12); }
.news-thumb, .news-thumb-placeholder { flex-shrink: 0; width: 100%; }
.news-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  background: #111;
}
.news-thumb-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #1a0505, #2d0a0a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}
.news-body { padding: 18px 20px 20px; flex: 1; display: flex; flex-direction: column; }
.news-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; flex-wrap: wrap; }
.news-pinned {
  background: #fff3cd;
  color: #856404;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 9px;
  border-radius: 20px;
  letter-spacing: 0.3px;
  white-space: nowrap;
}
.news-date { font-size: 0.78rem; color: #888; }
.news-title {
  font-family: var(--font-heading, 'Oswald', sans-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black, #111);
  margin-bottom: 8px;
  line-height: 1.3;
  text-transform: uppercase;
}
.news-text {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.6;
  word-break: break-word;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  margin-bottom: 10px;
}
.news-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid #f0f0f0;
  flex-shrink: 0;
  gap: 8px;
  flex-wrap: wrap;
}
.news-author { font-size: 0.78rem; color: #999; font-weight: 600; }
.news-link-row {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--red, #c0392b);
  white-space: nowrap;
}
.news-card:hover .news-link-row { text-decoration: underline; }

/* ── GOOGLE REVIEWS ── */
.reviews-section { background: #f8f9fa; }
.reviews-google-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid #e8eaed;
  border-radius: 14px;
  padding: 16px 24px;
  max-width: 480px;
  margin: 0 auto 40px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  flex-wrap: wrap;
  justify-content: center;
}
.g-logo { width: 32px; height: 32px; flex-shrink: 0; }
.g-rating-summary { display: flex; flex-direction: column; align-items: center; line-height: 1.2; }
.g-rating-number { font-size: 1.5rem; font-weight: 800; color: #202124; }
.g-stars-row { color: #fbbc04; font-size: 1rem; letter-spacing: 2px; }
.g-rating-label { font-size: 0.7rem; color: #70757a; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.g-write-review {
  margin-left: auto;
  font-size: 0.8rem;
  font-weight: 700;
  color: #1a73e8;
  text-decoration: none;
  border: 1px solid #1a73e8;
  border-radius: 20px;
  padding: 6px 14px;
  white-space: nowrap;
  transition: background 0.15s;
}
.g-write-review:hover { background: #e8f0fe; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

@media (max-width: 900px) {
  .reviews-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
}
.review-card {
  background: #fff;
  border: 1px solid #e8eaed;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.review-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.1); transform: translateY(-2px); }
.rc-header { display: flex; align-items: center; gap: 12px; }
.rc-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  color: #fff; font-weight: 700; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.rc-info { flex: 1; min-width: 0; }
.rc-name { font-weight: 700; font-size: 0.9rem; color: #202124; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rc-meta { font-size: 0.72rem; color: #70757a; margin-top: 1px; }
.rc-google-icon { width: 18px; height: 18px; flex-shrink: 0; }
.rc-stars { color: #fbbc04; font-size: 1rem; letter-spacing: 2px; line-height: 1; }
.rc-text { font-size: 0.86rem; color: #3c4043; line-height: 1.65; margin: 0; flex: 1; }
.reviews-cta { text-align: center; }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border: 2px solid #dadce0;
  border-radius: 8px;
  background: #fff;
  color: #3c4043;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.btn-outline:hover { border-color: #1a73e8; box-shadow: 0 2px 10px rgba(26,115,232,0.15); }

/* ── Landscape phones ── */
@media (max-height: 500px) and (orientation: landscape) {
  .hero { min-height: 100vw; padding-top: 58px; }
  .hero h1 { font-size: clamp(1.3rem, 5vw, 2rem); }
  .hero-content { padding: 0 16px; }
  .hero-logos { display: none; }
  .hero-slide-dots { bottom: 12px; }
  .section { padding: 40px 0; }
}

