/* ============================================
   Brensus Truck Parking — styles.css
   Colors: Navy #14213D | Orange #FCA311 | White #FFF | Slate #5C677D
   Fonts: Oswald (headlines), Inter (body)
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1a1a1a;
  background: #fff;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #FCA311; text-decoration: none; transition: color 0.2s; }
a:hover { color: #e8950f; }
ul { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #14213D;
}
h1 { font-size: 2.8rem; margin-bottom: 1rem; }
h2 { font-size: 2rem; margin-bottom: 0.75rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
p { margin-bottom: 1rem; }

/* --- Layout --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.section { padding: 60px 0; }
.section--gray { background: #f5f5f5; }
.section--navy { background: #14213D; color: #fff; }
.section--navy h2, .section--navy h3 { color: #fff; }
.section--navy p { color: #ccc; }
.text-center { text-align: center; }

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary {
  background: #FCA311;
  color: #fff;
}
.btn--primary:hover { background: #e8950f; color: #fff; }
.btn--outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.btn--outline:hover { background: rgba(255,255,255,0.1); color: #fff; }
.btn--navy {
  background: #14213D;
  color: #fff;
}
.btn--navy:hover { background: #1b2d52; color: #fff; }

/* --- Sticky Header --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #14213D;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 76px;
}
.header__logo {
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}
.header__logo:hover { color: #FCA311; }
.header__address {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  color: #ccc;
  letter-spacing: 0;
  text-transform: none;
  margin-top: 2px;
}
.header__phone {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #FCA311;
  white-space: nowrap;
}
.header__phone:hover { color: #e8950f; }

/* --- Navigation --- */
.nav { display: flex; align-items: center; gap: 0; }
.nav__list { display: flex; align-items: center; gap: 0; }
.nav__item { position: relative; }
.nav__link {
  display: block;
  padding: 24px 14px;
  color: #ccc;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}
.nav__link:hover, .nav__link--active { color: #FCA311; }

/* Dropdown */
.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #14213D;
  min-width: 200px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s;
  z-index: 1001;
}
.nav__item:hover .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav__dropdown a {
  display: block;
  padding: 12px 20px;
  color: #ccc;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.nav__dropdown a:hover { color: #FCA311; background: rgba(255,255,255,0.05); }

/* Hamburger */
.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  transition: all 0.3s;
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 76px;
}
.hero__video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}
.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 40px 20px;
}
.hero__content .container { padding: 0; }
.hero h1 { color: #fff; font-size: 3rem; margin-bottom: 0.5rem; }
.hero__address {
  color: #FCA311;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.hero__sub {
  color: #ddd;
  font-size: 1.15rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero__ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 2rem; }
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  color: #ccc;
  font-size: 0.9rem;
}
.hero__trust span::before {
  content: "·";
  margin-right: 8px;
  color: #FCA311;
  font-weight: bold;
}
.hero__trust span:first-child::before { display: none; }

/* --- Trust Bar --- */
.trust-bar {
  background: #FCA311;
  padding: 16px 0;
  overflow: hidden;
}
.trust-bar__inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 32px;
}
.trust-bar__item {
  color: #14213D;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

/* --- Cards Grid --- */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 32px 24px;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.1); transform: translateY(-4px); }
.card__icon {
  font-size: 3rem;
  margin-bottom: 16px;
}
.card h3 { margin-bottom: 12px; }
.card p { color: #5C677D; font-size: 0.95rem; margin-bottom: 20px; }
.card .btn { width: 100%; }

/* --- Photo Break --- */
.photo-break {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* --- Icon Grid (Why Choose) --- */
.icon-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.icon-grid__item { display: flex; align-items: flex-start; gap: 16px; }
.icon-grid__icon {
  font-size: 2rem;
  flex-shrink: 0;
  width: 50px;
  text-align: center;
}
.icon-grid__text h3 { font-size: 1.15rem; margin-bottom: 4px; }
.icon-grid__text p { color: #5C677D; font-size: 0.95rem; margin-bottom: 0; }

/* --- Split Section (text + image) --- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.split__img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 8px;
}
.split__text h2 { margin-bottom: 16px; }
.split__text p { color: #5C677D; }

/* --- Map Section --- */
.map-embed {
  width: 100%;
  height: 350px;
  border: 0;
  border-radius: 8px;
}

/* --- Rates Table --- */
.rates-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
}
.rates-table th, .rates-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
}
.rates-table th {
  background: #14213D;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.rates-table tr:nth-child(even) { background: #f9f9f9; }
.rates-table td { color: #333; }

/* --- Steps --- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; text-align: center; }
.step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #FCA311;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 16px;
}
.step h3 { margin-bottom: 8px; }
.step p { color: #5C677D; font-size: 0.95rem; }

/* --- FAQ --- */
.faq__item {
  border-bottom: 1px solid #e0e0e0;
  padding: 20px 0;
}
.faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: 'Oswald', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #14213D;
  padding: 0;
}
.faq__question::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 300;
  color: #FCA311;
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 0.2s;
}
.faq__item.active .faq__question::after {
  content: "−";
}
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq__answer p {
  padding-top: 12px;
  color: #5C677D;
}
.faq__item.active .faq__answer {
  max-height: 200px;
}

/* --- CTA Section --- */
.cta-section {
  text-align: center;
  padding: 60px 0;
}
.cta-section h2 { color: #fff; margin-bottom: 16px; }
.cta-section p { color: #ccc; margin-bottom: 32px; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-section .btn { margin: 0 8px; }

/* --- Forms --- */
.form { max-width: 600px; margin: 0 auto; }
.form__group { margin-bottom: 20px; }
.form__label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #14213D;
  font-size: 0.95rem;
}
.form__input, .form__select, .form__textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  transition: border-color 0.2s;
}
.form__input:focus, .form__select:focus, .form__textarea:focus {
  outline: none;
  border-color: #FCA311;
}
.form__textarea { min-height: 120px; resize: vertical; }

/* --- Footer --- */
.footer {
  background: #14213D;
  color: #ccc;
  padding: 60px 0 30px;
}
.footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}
.footer h4 {
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.footer a { color: #ccc; font-size: 0.9rem; }
.footer a:hover { color: #FCA311; }
.footer ul li { margin-bottom: 8px; }
.footer__nap { font-size: 0.9rem; line-height: 1.8; }
.footer__nap a { color: #FCA311; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
  color: #888;
}
.footer__bottom a { color: #888; margin: 0 8px; }
.footer__bottom a:hover { color: #FCA311; }

/* --- Mobile Sticky Call Button --- */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #FCA311;
  color: #fff;
  text-align: center;
  padding: 16px;
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 999;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}
.mobile-cta:hover { background: #e8950f; color: #fff; }

/* --- Page Header (inner pages) --- */
.page-header {
  background: #14213D;
  padding: 100px 0 50px;
  margin-top: 76px;
  text-align: center;
}
.page-header h1 { color: #fff; margin-bottom: 12px; }
.page-header p { color: #ccc; font-size: 1.1rem; }

/* --- Service Page Content --- */
.service-content { padding: 60px 0; }
.service-content h2 { margin-top: 40px; margin-bottom: 16px; }
.service-content p { color: #5C677D; max-width: 800px; }
.service-content ul { margin: 16px 0 16px 20px; list-style: disc; }
.service-content ul li { color: #5C677D; margin-bottom: 8px; }

/* --- Internal Links Section --- */
.internal-links {
  background: #f5f5f5;
  padding: 40px 0;
  text-align: center;
}
.internal-links h3 { margin-bottom: 20px; }
.internal-links a {
  display: inline-block;
  margin: 6px 10px;
  padding: 10px 24px;
  background: #14213D;
  color: #fff;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.internal-links a:hover { background: #FCA311; color: #fff; }

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 992px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .icon-grid { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .split__img { height: 280px; }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .hero { min-height: 70vh; }
  .hero h1 { font-size: 2.2rem; }
  .hero__sub { font-size: 1rem; }
  .section { padding: 40px 0; }

  /* Mobile Nav */
  .nav__toggle { display: block; }
  .nav__list {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    width: 100%;
    background: #14213D;
    flex-direction: column;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .nav__list.active { display: flex; }
  .nav__link { padding: 16px 20px; }
  .nav__dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    display: none;
    background: #0d1729;
  }
  .nav__item.dropdown-open .nav__dropdown { display: block; }
  .nav__dropdown a { padding: 12px 32px; }
  .header__phone { display: none; }

  /* Mobile CTA */
  .mobile-cta { display: block; }
  body { padding-bottom: 56px; }

  .cards { grid-template-columns: 1fr; }
  .icon-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 24px; }
  .photo-break { height: 250px; }
  .footer__grid { grid-template-columns: 1fr; }
  .rates-table { font-size: 0.9rem; }
  .rates-table th, .rates-table td { padding: 12px; }

  .page-header { padding: 80px 0 40px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.8rem; }
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { width: 100%; text-align: center; }
  .cta-section .btn { display: block; margin: 8px auto; width: 80%; }
}
