/* ============================================================
   Toelle Trucking LLC — Main Stylesheet
   Palette: Navy #0B1F33 | Steel #315C7D | Orange #F97316
            Off-white #F7F8FA | Dark gray #1F2933 | Light gray #E5E7EB
   ============================================================ */

:root {
  --navy:   #0B1F33;
  --steel:  #315C7D;
  --orange: #F97316;
  --offwhite: #F7F8FA;
  --dark:   #1F2933;
  --light:  #E5E7EB;
  --white:  #ffffff;
  --text:   #1a1a1a;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

img { max-width: 100%; }
em  { font-style: normal; }

h1, h2, h3, h4, h5, h6, p { margin: 0; padding: 0; }

h1 { font-size: 64px; }
h2 { font-size: 48px; font-weight: 700; text-transform: uppercase; }
h3 { font-size: 36px; font-weight: 700; }
h4 { font-size: 28px; font-weight: 600; }
h5 { font-size: 24px; font-weight: 600; }
h6 { font-size: 20px; font-weight: 500; }

h1 em, h2 em { color: var(--steel); }

p { line-height: 1.75; }
p:last-child { margin-bottom: 0; }

body {
  margin: 0;
  font-weight: 500;
  font-family: 'Montserrat', 'Inter', sans-serif;
  color: var(--text);
}

a { transition: color .2s; }

button {
  outline: none;
  text-decoration: none;
  margin: 0;
  padding: 0;
  border: none;
  cursor: pointer;
}

/* ---------- Utility ---------- */
.color-orange { color: var(--orange); }
.color-steel  { color: var(--steel); }
.bg-navy   { background: var(--navy); }
.bg-steel  { background: var(--steel); }
.bg-orange { background: var(--orange); }
.section-pad { padding: 90px 0; }

/* ---------- Global btn ---------- */
.btn {
  text-decoration: none;
  display: inline-block;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 30px;
  border: 2px solid var(--navy);
  line-height: normal;
  transition: background .2s, color .2s, border-color .2s;
}
.btn-main {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-main:hover {
  background: transparent;
  color: var(--navy);
}
.btn-orange-solid {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-orange-solid:hover {
  background: transparent;
  color: var(--orange);
}
.btn-blue {
  color: var(--steel);
  border-color: var(--steel);
}
.btn-blue:hover {
  background: var(--steel);
  color: var(--white);
}
.btn-orange {
  color: var(--orange);
  border-color: var(--orange);
}
.btn-orange:hover {
  background: var(--orange);
  color: var(--white);
}

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
  background: var(--navy);
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 10px;
  padding-bottom: 10px;
}
.top-bar ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0;
}
.top-bar ul li:not(:last-child) {
  margin-right: 15px;
  padding-right: 15px;
  border-right: 1px solid rgba(255,255,255,.3);
}
.top-bar ul li a {
  text-decoration: none;
  font-size: 15px;
  color: var(--white);
}
.top-bar ul li a:hover { color: var(--orange); }
.top-bar .top-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.top-bar .email-link a {
  text-decoration: none;
  font-size: 14px;
  color: rgba(255,255,255,.85);
}
.top-bar .email-link a:hover { color: var(--orange); }
.top-bar .email-link i { margin-right: 6px; }

/* ============================================================
   HEADER
   ============================================================ */
header .logo-wrapper {
  padding: 16px 0;
  background: var(--white);
  text-align: center;
}
header .logo-wrapper a { display: inline-block; }
header .logo-wrapper img { max-height: 80px; width: auto; }

header .nav-wrapper {
  background: #000000;
}
header .nav-wrapper .container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-top: 0;
  padding-bottom: 0;
  min-height: 50px;
}
header nav { width: 100%; }
header nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
header nav ul li:not(:last-child) { margin-right: 36px; }
header nav ul li.btn-nav a {
  background: var(--orange);
  color: var(--white);
  border-radius: 30px;
  padding: 8px 22px;
  font-size: 15px;
}
header nav ul li.btn-nav a:hover { background: var(--steel); color: var(--white); }
header nav ul li a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  display: block;
  padding: 16px 0;
  position: relative;
}
header nav ul li a:hover { color: var(--orange); }
header nav ul li.active > a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 80%;
  height: 3px;
  background: var(--white);
}

/* Hamburger / mobile menu */
.hamburger {
  display: none;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 28px;
  padding: 8px;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}
.hamburger .bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px 0;
  background: var(--white);
  border-radius: 3px;
  transition: all .3s;
}
.mobile-menu {
  display: none;
  background: var(--offwhite);
  width: 100%;
  z-index: 100;
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
}
.mobile-menu nav ul {
  flex-direction: column;
  align-items: flex-start;
  padding: 16px 24px;
  gap: 4px;
}
.mobile-menu nav ul li { margin: 0; }
.mobile-menu nav ul li a {
  color: var(--navy);
  font-size: 16px;
  padding: 10px 0;
  display: block;
}
.mobile-menu nav ul li a:hover { color: var(--orange); }
.mobile-menu nav ul li.btn-nav a {
  background: var(--orange);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 30px;
  display: inline-block;
  margin: 6px 0;
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb-bar {
  background: var(--offwhite);
  padding: 12px 0;
  border-bottom: 1px solid var(--light);
}
.breadcrumb-bar ol {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: 14px;
}
.breadcrumb-bar ol li:not(:last-child)::after {
  content: "\F285";
  font-family: "bootstrap-icons";
  margin: 0 8px;
  color: #999;
  font-size: 11px;
}
.breadcrumb-bar ol li a {
  text-decoration: none;
  color: var(--steel);
}
.breadcrumb-bar ol li a:hover { color: var(--orange); }
.breadcrumb-bar ol li:last-child { color: #666; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  padding: 60px 0 0;
  background: #071626 url(../images/footer-bg.png) no-repeat center center/cover;
  position: relative;
}
.footer-logo-bg {
  padding: 30px 0;
  margin-bottom: 40px;
  background-image: url(../images/footer-img.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.footer-logo-bg a { display: inline-block; }
.footer-logo-bg img { max-height: 75px; width: auto; }

footer .wrap h5 {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
}
footer .wrap ul {
  list-style: none;
  margin: 0; padding: 0;
}
footer .wrap ul li:not(:last-child) { margin-bottom: 12px; }
footer .wrap ul li i { margin-right: 8px; color: var(--white); }
footer .wrap ul li a, footer .wrap ul li span {
  text-decoration: none;
  color: rgba(255,255,255,.8);
  font-size: 14px;
}
footer .wrap ul li a:hover { color: var(--orange); }

.scroll-top {
  text-decoration: none;
  display: none;
  font-size: 14px;
  font-weight: 500;
  background: var(--orange);
  color: var(--white);
  padding: 8px 20px 8px 12px;
  border: 1px solid var(--orange);
  border-radius: 5px 0 0 5px;
  position: fixed;
  right: 0;
  bottom: 50px;
  z-index: 999;
  cursor: pointer;
}
.scroll-top:hover { background: var(--steel); border-color: var(--steel); color: var(--white); }

.copyright {
  margin-top: 40px;
  padding: 16px 0;
  background: #000000;
}
.copyright .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.copyright p { margin: 0; color: rgba(255,255,255,.7); font-size: 13px; }
.copyright p a { text-decoration: none; color: rgba(255,255,255,.7); }
.copyright p a:hover { color: var(--orange); }
.copyright p span { margin: 0 10px; color: #555; }

/* ============================================================
   HERO BANNER
   ============================================================ */
.hero-banner {
  background: var(--navy) url(../images/hero-banner-bg.png) no-repeat center center/cover;
  padding: 80px 0 130px;
  overflow: hidden;
  position: relative;
}
.hero-banner .content { position: relative; z-index: 1; }
.hero-banner .content h1 {
  font-size: 64px;
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-banner .content h1 em { color: var(--orange); display: inline; }
.hero-banner .content p {
  font-size: 18px;
  color: rgba(255,255,255,.85);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-banner .btn-group { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-banner .triangle {
  position: absolute;
  top: 0; right: 0;
  z-index: 0;
}
.hero-banner .img-wrapper { position: relative; z-index: 1; text-align: center; }

/* ============================================================
   SECTION INTRO
   ============================================================ */
.section-intro { margin-bottom: 50px; }
.section-intro h2 span { color: var(--steel); }

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section {
  padding: 90px 0;
  background: var(--offwhite);
}
.service-card {
  background: var(--white);
  border-radius: 10px;
  padding: 36px 28px;
  height: 100%;
  box-shadow: 0 2px 16px rgba(0,0,0,.07);
  border-top: 4px solid var(--steel);
  transition: transform .2s, box-shadow .2s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,.13); }
.service-card .icon {
  font-size: 36px;
  color: var(--orange);
  margin-bottom: 18px;
}
.service-card h5 { margin-bottom: 12px; font-size: 18px; color: var(--navy); }
.service-card p { font-size: 14px; color: #555; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-choose { padding: 90px 0; }
.why-choose .intro { margin-bottom: 50px; }
.why-card {
  text-align: center;
  padding: 30px 20px;
}
.why-card .icon {
  font-size: 48px;
  color: var(--orange);
  margin-bottom: 20px;
}
.why-card h5 { margin-bottom: 12px; color: var(--navy); text-transform: uppercase; font-size: 16px; }
.why-card p { font-size: 14px; color: #555; }

/* ============================================================
   NEW/FEATURED LISTINGS (homepage)
   ============================================================ */
.new-listings { padding: 90px 0; }
.new-listings .intro { margin-bottom: 50px; }

.new-listings .item .thumbnail {
  display: block;
  position: relative;
  line-height: 0;
  overflow: hidden;
}
.new-listings .item .thumbnail img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform .3s;
}
.new-listings .item:hover .thumbnail img { transform: scale(1.03); }
.new-listings .item .flag {
  position: absolute;
  top: 12px; left: 10px;
  padding: 6px 14px;
  background: var(--orange);
  color: var(--white);
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
}
.new-listings .item .price {
  position: absolute;
  right: 0; bottom: 0;
  padding: 14px 18px;
  background: var(--steel);
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .5px;
}
.new-listings .item-content {
  padding: 15px;
  box-shadow: 0 3px 20px rgba(0,0,0,.10);
  min-height: 200px;
}
.new-listings .item-content .meta { font-size: 13px; color: #555; }
.new-listings .item-content .meta i { color: var(--steel); margin-right: 4px; }
.new-listings .title {
  text-decoration: none;
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: .5px;
  min-height: 72px;
  margin: 10px 0;
  overflow: hidden;
}
.new-listings .title:hover { color: var(--orange); }
.new-listings .item .actions .btn {
  padding: 5px 12px;
  font-size: 13px;
  letter-spacing: 0;
}
.new-listings .btn-main { background: var(--navy); color: var(--white); border-color: var(--navy); }
.new-listings .btn-main:hover { background: transparent; color: var(--navy); }

/* ============================================================
   PRODUCT WRAPPER (find-equipment page)
   ============================================================ */
.product-wrapper { padding: 50px 0; }
.product-wrapper .item {
  height: 100%;
  box-shadow: 0 3px 20px rgba(0,0,0,.12);
  border-radius: 6px;
  overflow: hidden;
  transition: transform .2s;
}
.product-wrapper .item:hover { transform: translateY(-3px); }
.product-wrapper .item .thumbnail {
  display: block;
  position: relative;
  line-height: 0;
  overflow: hidden;
}
.product-wrapper .item .thumbnail img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform .3s;
}
.product-wrapper .item:hover .thumbnail img { transform: scale(1.04); }
.product-wrapper .item .flag {
  position: absolute;
  top: 12px; left: 10px;
  padding: 5px 14px;
  background: var(--orange);
  color: var(--white);
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
}
.product-wrapper .item .price {
  position: absolute;
  right: 0; bottom: 0;
  padding: 12px 16px;
  background: var(--steel);
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
}
.product-wrapper .item-content { padding: 14px; }
.product-wrapper .item-content .meta { font-size: 13px; color: #555; }
.product-wrapper .item-content .meta i { color: var(--steel); margin-right: 4px; }
.product-wrapper .item-content .meta .row > div { margin-bottom: 6px; }
.product-wrapper .item-content .title {
  text-decoration: none;
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: .5px;
  min-height: 60px;
  margin: 10px 0;
  overflow: hidden;
}
.product-wrapper .item-content .title:hover { color: var(--orange); }
.product-wrapper .item .actions { margin-top: 10px; }
.product-wrapper .item .actions .btn {
  padding: 5px 12px;
  font-size: 13px;
  letter-spacing: 0;
}

/* ============================================================
   SIDEBAR
   ============================================================ */
.sidebar-wrapper { background: #F6F6F6; border-radius: 6px; overflow: hidden; }
.sidebar-wrapper .widget { margin-bottom: 0; border-bottom: 1px solid var(--light); }
.sidebar-wrapper .widget:last-child { border-bottom: none; }
.sidebar-wrapper .widget-title {
  padding: 12px 15px;
  background: var(--navy);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sidebar-wrapper .widget-title::after {
  content: "\F282";
  font-family: "bootstrap-icons";
  transition: transform .3s;
}
.sidebar-wrapper .widget-title.open::after { transform: rotate(180deg); }
.sidebar-wrapper .widget-body { padding: 14px; display: none; }
.sidebar-wrapper .widget-body.show { display: block; }

.sidebar-wrapper input[type="search"],
.sidebar-wrapper input[type="text"],
.sidebar-wrapper input[type="number"] {
  width: 100%;
  padding: 9px 12px;
  font-size: 14px;
  border: 1px solid #C2C2C2;
  border-radius: 5px;
  background: var(--white);
  outline: none;
  margin-bottom: 8px;
}
.sidebar-wrapper .search-btn {
  width: 100%;
  padding: 9px;
  background: var(--steel);
  color: var(--white);
  border: none;
  border-radius: 5px;
  font-size: 14px;
  cursor: pointer;
}
.sidebar-wrapper .search-btn:hover { background: var(--navy); }

/* Price range */
.price-inputs { display: flex; gap: 8px; align-items: center; }
.price-inputs input { flex: 1; margin-bottom: 0; }
.price-inputs span { color: #888; font-size: 13px; }

/* Category list */
.sidebar-wrapper .cat-list {
  list-style: none;
  margin: 0; padding: 0;
}
.sidebar-wrapper .cat-list li {
  padding: 6px 0;
  border-bottom: 1px solid var(--light);
  font-size: 13px;
}
.sidebar-wrapper .cat-list li:last-child { border-bottom: none; }
.sidebar-wrapper .cat-list li a {
  text-decoration: none;
  color: var(--text);
  display: flex;
  justify-content: space-between;
}
.sidebar-wrapper .cat-list li a:hover { color: var(--orange); }
.sidebar-wrapper .cat-list li a.active { color: var(--orange); font-weight: 700; }

/* Tag cloud */
.tagcloud { display: flex; flex-wrap: wrap; gap: 6px; }
.tagcloud a {
  text-decoration: none;
  font-size: 12px !important;
  padding: 4px 10px;
  border: 1px solid var(--light);
  border-radius: 20px;
  color: #555;
}
.tagcloud a:hover { border-color: var(--orange); color: var(--orange); }

/* ============================================================
   FILTER RESULTS BAR
   ============================================================ */
.results-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  margin-bottom: 20px;
  font-size: 14px;
  color: #555;
}
#no-results {
  display: none;
  padding: 40px;
  text-align: center;
  color: #666;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: var(--navy) url(../images/cta-bg.png) no-repeat center center/cover;
  padding: 60px 0;
  text-align: center;
}
.cta-section h2 { color: var(--white); margin-bottom: 16px; font-size: 36px; }
.cta-section p { color: rgba(255,255,255,.85); margin-bottom: 32px; }
.cta-section .btn-group { justify-content: center; display: flex; gap: 16px; flex-wrap: wrap; }
.cta-section .btn-steel { background: var(--steel); color: var(--white); border-color: var(--steel); text-transform: uppercase; }
.cta-section .btn-steel:hover { background: transparent; border-color: var(--white); color: var(--white); }
.cta-section .btn-orange-cta { background: var(--orange); color: var(--white); border-color: var(--orange); text-transform: uppercase; }
.cta-section .btn-orange-cta:hover { background: transparent; border-color: var(--white); color: var(--white); }

/* ============================================================
   LISTING CATEGORIES CAROUSEL
   ============================================================ */
.listing-cat {
  padding: 90px 0;
  background: var(--offwhite);
}
.listing-cat .intro { margin-bottom: 50px; }
.listing-cat .cat-item {
  text-align: center;
  padding: 20px 10px;
  cursor: pointer;
}
.listing-cat .cat-item img { width: 100px; margin: 0 auto 12px; display: block; }
.listing-cat .cat-item p {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--navy);
  font-weight: 600;
}

/* ============================================================
   MANUFACTURERS STRIP
   ============================================================ */
.manufacturers {
  padding: 50px 0;
  background: var(--white);
  border-top: 1px solid var(--light);
}
.manufacturers img {
  max-height: 50px;
  width: auto;
  filter: grayscale(100%);
  opacity: .6;
  transition: filter .2s, opacity .2s;
  display: block;
  margin: 0 auto;
}
.manufacturers img:hover { filter: none; opacity: 1; }
.manufacturers .mfr-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

/* ============================================================
   ABOUT PAGE / INNER PAGE HERO
   ============================================================ */
.page-hero {
  background: var(--navy);
  padding: 60px 0;
  text-align: center;
}
.page-hero h1 { color: var(--white); font-size: 40px; margin-bottom: 10px; }
.page-hero h1 em { color: var(--orange); }
.page-hero p { color: rgba(255,255,255,.8); font-size: 16px; }

/* ============================================================
   CONTACT / FORM PAGES
   ============================================================ */
.form-section { padding: 80px 0; }
.form-card {
  background: var(--white);
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 4px 30px rgba(0,0,0,.10);
}
.form-card h3 { margin-bottom: 24px; color: var(--navy); }
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.form-label sup { color: #e00; }
.form-control {
  width: 100%;
  padding: 11px 14px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background: #fafafa;
  outline: none;
  transition: border-color .2s;
  font-family: inherit;
}
.form-control:focus { border-color: var(--steel); background: var(--white); }
.form-control.error { border-color: #e00; }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-hint { font-size: 11px; color: #888; margin-top: 4px; }
.form-honeypot { display: none; }
.form-submit { margin-top: 24px; }
.form-submit .btn { padding: 14px 40px; font-size: 16px; }

/* alert messages */
.alert-success {
  background: #d1fae5;
  border: 1px solid #6ee7b7;
  color: #065f46;
  padding: 16px 20px;
  border-radius: 8px;
  margin-bottom: 20px;
}
.alert-error {
  background: #fee2e2;
  border: 1px solid #fca5a5;
  color: #991b1b;
  padding: 16px 20px;
  border-radius: 8px;
  margin-bottom: 20px;
}
.alert-local {
  background: #fef3c7;
  border: 1px solid #fcd34d;
  color: #92400e;
  padding: 16px 20px;
  border-radius: 8px;
  margin-bottom: 20px;
}

/* ============================================================
   SELL EQUIPMENT PAGE
   ============================================================ */
.sell-page .info-col {
  background: var(--navy);
  border-radius: 10px;
  padding: 40px 32px;
  color: var(--white);
}
.sell-page .info-col h4 { margin-bottom: 20px; color: var(--white); }
.sell-page .info-col p { color: rgba(255,255,255,.8); margin-bottom: 16px; font-size: 14px; }
.sell-page .info-col ul { list-style: none; padding: 0; margin: 0; }
.sell-page .info-col ul li { padding: 8px 0; color: rgba(255,255,255,.85); font-size: 14px; border-bottom: 1px solid rgba(255,255,255,.15); }
.sell-page .info-col ul li i { color: var(--orange); margin-right: 8px; }

/* ============================================================
   TRANSPORTATION SERVICES PAGE
   ============================================================ */
.transport-services { padding: 80px 0; }
.transport-card {
  border-radius: 10px;
  padding: 36px 28px;
  height: 100%;
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
  border-left: 5px solid var(--orange);
  background: var(--white);
}
.transport-card .icon { font-size: 40px; color: var(--orange); margin-bottom: 16px; }
.transport-card h4 { color: var(--navy); margin-bottom: 12px; font-size: 20px; }
.transport-card p { color: #555; font-size: 14px; line-height: 1.7; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-section { padding: 80px 0; }
.about-section .about-img { border-radius: 10px; overflow: hidden; }
.about-section .about-img img { width: 100%; height: 400px; object-fit: cover; border-radius: 10px; }
.about-section h2 { margin-bottom: 20px; }
.about-section h2 span { color: var(--steel); }
.about-section p { margin-bottom: 16px; color: #444; line-height: 1.8; }

/* ============================================================
   PRIVACY / TERMS PAGES
   ============================================================ */
.legal-section { padding: 80px 0; }
.legal-content h3 { margin: 30px 0 12px; color: var(--navy); font-size: 20px; }
.legal-content p { margin-bottom: 16px; color: #444; line-height: 1.8; }
.legal-content ul { margin: 0 0 16px 24px; }
.legal-content ul li { margin-bottom: 8px; color: #444; line-height: 1.7; }

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination-wrapper {
  padding: 30px 0 0;
}
.pagination-wrapper nav { display: flex; justify-content: center; }
.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  margin: 0 3px;
  border-radius: 50%;
  border: 1px solid var(--light);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  color: var(--navy);
  transition: all .2s;
}
.page-numbers.current, .page-numbers:hover {
  background: var(--steel);
  color: var(--white);
  border-color: var(--steel);
}
.page-numbers.next, .page-numbers.prev { width: auto; padding: 0 14px; border-radius: 20px; }

/* ============================================================
   MODAL
   ============================================================ */
.modal .modal-header {
  background: var(--navy);
  color: var(--white);
  border-bottom: none;
}
.modal .modal-title { font-weight: 700; }
.modal .btn-close { filter: invert(1); }
.modal .modal-footer { border-top: 1px solid var(--light); }
.modal .listing-info {
  background: var(--offwhite);
  border-radius: 6px;
  padding: 12px 16px;
  margin-bottom: 20px;
  font-size: 13px;
  color: #555;
}
.modal .listing-info strong { display: block; color: var(--navy); margin-bottom: 4px; font-size: 14px; }

/* ============================================================
   PRODUCT DETAIL MODAL
   ============================================================ */
.product-wrapper .item .thumbnail,
.new-listings .item .thumbnail {
  cursor: zoom-in;
}
.product-wrapper .item .thumbnail::after {
  content: "\F52A";
  font-family: "bootstrap-icons";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  font-size: 36px;
  color: #fff;
  background: rgba(11,31,51,.7);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 64px;
  text-align: center;
  transition: transform .2s;
  pointer-events: none;
}
.product-wrapper .item:hover .thumbnail::after {
  transform: translate(-50%, -50%) scale(1);
}

/* ============================================================
   FLOATING BTNS (desktop only)
   ============================================================ */
.floating-btns {
  position: fixed;
  top: 40%;
  right: 0;
  z-index: 200;
}
.floating-btns .float-btn {
  display: block;
  margin: 8px 0 8px 8px;
  padding: 5px 14px 5px 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  background: var(--orange);
  border-radius: 30px 0 0 30px;
  transition: background .2s;
}
.floating-btns .float-btn:hover { background: var(--steel); }
.floating-btns .icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: inherit;
  margin-right: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,.2);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1199px) {
  header nav { display: none !important; }
  .hamburger { display: block !important; }
  .floating-btns { display: none; }

  .product-wrapper .item .thumbnail img { height: 200px; }
  .new-listings .item .thumbnail img { height: 220px; }

  .hero-banner { padding: 60px 0 90px; }
  .hero-banner .content h1 { font-size: 48px; }
  .hero-banner .triangle { display: none; }
}

@media (max-width: 991px) {
  h2 { font-size: 36px; }
  h3 { font-size: 28px; }
  .hero-banner .content h1 { font-size: 40px; }
  .form-card { padding: 28px 20px; }
}

@media (max-width: 767px) {
  h2 { font-size: 28px; }
  .section-pad, .new-listings, .services-section, .why-choose, .listing-cat,
  .about-section, .form-section, .transport-services, .legal-section { padding: 60px 0; }
  .product-wrapper { padding: 30px 0; }
  .hero-banner { padding: 50px 0 70px; }
  .hero-banner .content h1 { font-size: 32px; }
  .hero-banner .content p { font-size: 15px; }
  .sidebar-wrapper { margin-bottom: 30px; }
  .copyright .container { flex-direction: column; text-align: center; }
  .results-bar { flex-direction: column; align-items: flex-start; gap: 6px; }
}

@media (max-width: 575px) {
  .hero-banner .content h1 { font-size: 28px; }
  .btn { font-size: 14px; padding: 12px 22px; }
  .form-card { padding: 20px 14px; }
}
