/* ============================================
   GRUPETTO — Home Page Styles
   Stack: HTML / CSS / JS / Bootstrap 5
   ============================================ */

:root {
  --brand:        #FF5A00;
  --brand-hover:  #E04D00;
  --bg:           #0A0A0A;
  --bg-alt:       #111111;
  --card:         #141414;
  --card-line:    #1F1F1F;
  --text:         #FFFFFF;
  --text-muted:   #9A9A9A;
  --text-soft:    #C9C9C9;
  --line:         rgba(255, 255, 255, 0.08);

  --font-display: 'Anton', 'Bebas Neue', Impact, sans-serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --maxw: 1320px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container-xxl {
  max-width: var(--maxw);
  padding-left: 24px;
  padding-right: 24px;
}

a { color: inherit; text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--brand); }

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

/* ---------- Typography ---------- */
.eyebrow {
  color: var(--brand);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.display-headline {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(56px, 9vw, 132px);
  line-height: 0.92;
  letter-spacing: 1px;
  margin: 0 0 24px;
  text-transform: uppercase;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 0.95;
  letter-spacing: 1px;
  margin: 0;
  text-transform: uppercase;
}

.dot { color: var(--brand); }

.lead-text {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-soft);
  margin-bottom: 22px;
}

.text-brand { color: var(--brand); }

/* ---------- Buttons ---------- */
.btn-brand {
  background: var(--brand);
  color: #fff;
  border: 2px solid var(--brand);
  font-weight: 700;
  letter-spacing: 1.5px;
  font-size: 13px;
  padding: 14px 26px;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  transition: all .25s ease;
}
.btn-brand:hover {
  background: var(--brand-hover);
  border-color: var(--brand-hover);
  color: #fff;
  transform: translateY(-1px);
}

.btn-outline-light {
  border: 2px solid #fff;
  color: #fff;
  font-weight: 700;
  letter-spacing: 1.5px;
  font-size: 13px;
  padding: 14px 26px;
  border-radius: 2px;
  background: transparent;
  transition: all .25s ease;
}
.btn-outline-light:hover {
  background: #fff;
  color: var(--bg);
}

.link-arrow {
  color: var(--text);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1.5px;
  border-bottom: 2px solid var(--brand);
  padding-bottom: 6px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: gap .25s ease, color .2s ease;
}
.link-arrow:hover {
  color: var(--brand);
  gap: 14px;
}

/* ---------- Header ---------- */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: linear-gradient(180deg, rgba(0,0,0,0.55), rgba(0,0,0,0));
}

.brand-name {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 2px;
  color: #fff;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
}

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  padding: 8px 4px;
  position: relative;
}
.navbar-dark .navbar-nav .nav-link:hover {
  color: #fff;
}
.navbar-dark .navbar-nav .nav-link.active {
  color: #fff;
}
.navbar-dark .navbar-nav .nav-link.active::after {
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  bottom: 0;
  height: 2px;
  background: var(--brand);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-top: 160px;
  padding-bottom: 80px;
  min-height: 760px;
  overflow: hidden;
  background-color: var(--bg);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/home-hero-bg-jpg.jpeg') center / cover no-repeat;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(10, 10, 10, 0.91) 0%, rgba(10, 10, 10, 0.97) 35%, rgba(10, 10, 10, 0.81) 60%, rgba(10, 10, 10, 0.83) 100%);
  z-index: 1;
}

.hero > .container-xxl {
  position: relative;
  z-index: 2;
}

.hero-row {
  min-height: 540px;
}

.hero-content {
  padding-top: 40px;
}

.hero-text {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-soft);
  max-width: 540px;
  margin-bottom: 0;
}

.hero-side-card {
  padding: 30px 0;
  max-width: 380px;
  margin-left: auto;
  margin-bottom: 30px;
}
.hero-side-card .eyebrow { color: #fff; opacity: .8; }
.side-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.4vw, 34px);
  line-height: 1.05;
  letter-spacing: 1px;
  margin: 0 0 14px;
  text-transform: uppercase;
}
.side-text {
  color: var(--text-soft);
  font-size: 15px;
  margin: 0;
}

/* ---------- Stats ---------- */
.stats {
  background: #0E0E0E;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stats-row {
  /* divider lines between cells */
}

.stat-cell {
  padding: 36px 24px;
  text-align: center;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat-cell:last-child { border-right: none; }

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(36px, 3.5vw, 52px);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.stat-label {
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 500;
}

/* ---------- Sections (general padding) ---------- */
.section-pad {
  padding-top: 110px;
  padding-bottom: 110px;
}

.divider {
  height: 1px;
  background: var(--line);
  max-width: var(--maxw);
  margin: 0 auto;
}

/* ---------- Mission ---------- */
.mission { background: var(--bg); }

/* ---------- Features ---------- */
.features { background: var(--bg); }

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 18px;
  grid-template-areas:
    "local races"
    "local tri"
    "shops shops";
}

.feature-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--card-line);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 240px;
  overflow: hidden;
  transition: transform .35s ease, border-color .25s ease;
}

.feature-card > * {
  position: relative;
  z-index: 2;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 90, 0, 0.45);
  color: var(--text);
}

.feature-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  z-index: 1;
  transition: opacity .35s ease, transform .6s ease;
}
.feature-card:hover .feature-card-bg {
  opacity: 0.55;
  transform: scale(1.04);
}

.feature-card--local { grid-area: local; min-height: 540px; }
.feature-card--local .feature-card-bg { background-image: url('../images/local-rides.jpg'); }

.feature-card--small { min-height: 200px; }
.feature-card--small:nth-of-type(2) { grid-area: races; }
.feature-card--tri { grid-area: tri; min-height: 320px; }
.feature-card--tri .feature-card-bg { background-image: url('../images/tri.jpg'); opacity: 0.55; }

.feature-card--wide { grid-area: shops; min-height: 220px; }
.feature-card--shops .feature-card-bg { background-image: url('../images/shops.jpg'); opacity: 0.4; }

.feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 2.5px;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
}

.feature-icon {
  width: 34px;
  height: 34px;
  border: 1.5px solid var(--brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  font-size: 16px;
  border-radius: 2px;
}

.feature-body { margin-top: auto; }

.feature-title {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1;
  letter-spacing: 1px;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.feature-text {
  font-size: 14px;
  color: var(--text-soft);
  margin: 0;
  max-width: 420px;
}

/* ---------- Join CTA ---------- */
.join-cta {
  position: relative;
  padding: 110px 0;
  background: #0B0805;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.join-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/topo-bg.jpg') center / cover no-repeat;
  opacity: 0.55;
  z-index: 0;
}
.join-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(11,8,5,0.4), rgba(11,8,5,0.7));
}

.join-cta > .container-xxl {
  position: relative;
  z-index: 2;
}

.join-title {
  font-family: var(--font-display);
  font-size: clamp(56px, 7vw, 110px);
  line-height: 0.92;
  letter-spacing: 1px;
  margin: 0 0 20px;
  text-transform: uppercase;
}

.join-text {
  color: var(--text-soft);
  font-size: 17px;
  max-width: 520px;
  margin: 0;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px;
  border: 1.5px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.03);
  border-radius: 2px;
  color: #fff;
  transition: all .25s ease;
  min-width: 190px;
}
.store-btn:hover {
  border-color: var(--brand);
  background: rgba(255,90,0,0.06);
  color: #fff;
}
.store-icon {
  font-size: 26px;
  color: #fff;
}
.store-label {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-align: left;
}
.store-label small {
  font-size: 10px;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  text-transform: uppercase;
}
.store-label strong {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.available {
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg);
  padding-top: 70px;
  padding-bottom: 30px;
}

.footer-top {
  padding-bottom: 50px;
}

.footer-text {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
  max-width: 360px;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-list li { margin-bottom: 10px; }
.footer-list a {
  color: var(--text-soft);
  font-size: 14px;
  transition: color .2s ease;
}
.footer-list a:hover { color: var(--brand); }

.footer-email { color: var(--text-soft); }

.social-links {
  display: flex;
  gap: 14px;
}
.social-links a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-soft);
  border-radius: 2px;
  transition: all .25s ease;
}
.social-links a:hover {
  border-color: var(--brand);
  color: var(--brand);
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 25px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  text-transform: uppercase;
}

.footer-tag {
  font-family: var(--font-display);
  letter-spacing: 2px;
  color: var(--text-muted);
}

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

/* Tablet */
@media (max-width: 991.98px) {
  .site-header {
    background: rgba(10,10,10,0.95);
    backdrop-filter: blur(8px);
  }
  .navbar-collapse {
    padding: 18px 0;
  }
  .navbar-nav { margin-bottom: 16px; }
  .navbar-nav .nav-link { padding: 10px 0 !important; }

  .hero { padding-top: 120px; min-height: auto; }
  .hero-overlay {
    background: linear-gradient(90deg, rgba(10, 10, 10, 0.91) 0%, rgba(10, 10, 10, 0.97) 35%, rgba(10, 10, 10, 0.81) 60%, rgba(10, 10, 10, 0.83) 100%);
  }
  .hero-side-card {
    margin: 30px 0 0;
    max-width: 100%;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "local"
      "races"
      "tri"
      "shops";
  }
  .feature-card--local { min-height: 320px; }
  .feature-card--tri { min-height: 240px; }
}

/* Mobile */
@media (max-width: 575.98px) {
  .container-xxl { padding-left: 16px; padding-right: 16px; }

  .display-headline { font-size: 56px; }
  .section-title { font-size: 38px; }
  .join-title { font-size: 56px; }

  .section-pad { padding-top: 70px; padding-bottom: 70px; }
  .join-cta { padding: 70px 0; }

  .stat-cell {
    padding: 24px 12px;
    border-right: 1px solid var(--line);
  }
  .stat-cell:nth-child(2n) { border-right: none; }

  .btn-brand, .btn-outline-light { width: 100%; justify-content: center; }

  .store-btn { width: 100%; }
  .available { width: 100%; }

  .footer-bottom { flex-direction: column; align-items: flex-start; }
}


/* =====================================================
   ABOUT PAGE
   ===================================================== */
 
/* ---------- About Hero ---------- */
.about-hero {
  position: relative;
  padding-top: 180px;
  padding-bottom: 80px;
  min-height: 600px;
  overflow: hidden;
  background-color: var(--bg);
  border-bottom: 1px solid var(--line);
}
 
.about-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/about-bg.jpg') center / cover no-repeat;
  z-index: 0;
}
 
.about-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg,
    rgba(10,10,10,0.95) 0%,
    rgba(10,10,10,0.85) 45%,
    rgba(10,10,10,0.65) 75%,
    rgba(10,10,10,0.80) 100%);
  z-index: 1;
}
 
.about-hero > .container-xxl {
  position: relative;
  z-index: 2;
}
 
.about-hero-foot {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 24px;
  z-index: 2;
}
 
.copy-mini {
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  text-transform: uppercase;
  font-family: var(--font-body);
}
 
/* ---------- Story ---------- */
.story { background: var(--bg); }
 
/* ---------- Three Rules ---------- */
.rules { background: var(--bg); }
 
.rule-card {
  background: var(--card);
  border: 1px solid var(--card-line);
  padding: 32px 28px;
  height: 100%;
  transition: border-color .25s ease, transform .25s ease;
}
.rule-card:hover {
  border-color: rgba(255, 90, 0, 0.35);
  transform: translateY(-4px);
}
 
.rule-icon {
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  font-size: 18px;
  border-radius: 2px;
  margin-bottom: 30px;
}
 
.rule-title {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 1px;
  margin: 0 0 12px;
  text-transform: uppercase;
  color: var(--text);
}
 
.rule-text {
  font-size: 14px;
  color: var(--text-soft);
  margin: 0;
  line-height: 1.55;
}
 
/* ---------- Big Quote Band ---------- */
.quote-band {
  position: relative;
  padding: 100px 0;
  background: #0B0805;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
 
.quote-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(180deg, rgba(11, 8, 5, 0.83), rgba(11,8,5,0.85)), url(../images/topo-bg.jpg) center / cover no-repeat;
  opacity: 0.55;
  z-index: 0;
}
 
.big-quote {
  text-align: center;
  margin: 0 auto;
  max-width: 1080px;
}
 
.big-quote p {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 50px);
  line-height: 1.15;
  letter-spacing: 1px;
  color: var(--text);
  margin: 0 0 18px;
  text-transform: uppercase;
}
 
.big-quote cite {
  font-style: normal;
  font-size: 12px;
  letter-spacing: 2.5px;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 500;
}
 
/* ---------- Roll With Us CTA ---------- */
.roll-cta {
  background: var(--bg);
  padding: 60px 0;
  border-bottom: 1px solid var(--line);
}
 
.roll-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1;
  letter-spacing: 1px;
  margin: 0;
  text-transform: uppercase;
  color: var(--text);
}
 
/* ---------- About page mobile ---------- */
@media (max-width: 991.98px) {
  .about-hero {
    padding-top: 120px;
    padding-bottom: 60px;
    min-height: auto;
  }
  .about-hero-foot { display: none; }
 
  .quote-band { padding: 70px 0; }
  .roll-cta { padding: 50px 0; }
  .roll-cta .text-md-end { text-align: left !important; }
}
 
@media (max-width: 575.98px) {
  .rule-card { padding: 26px 22px; }
  .roll-cta .btn-brand { width: 100%; justify-content: center; }
}


/* =====================================================
   SERVICES PAGE
   ===================================================== */
 
/* ---------- Services Hero ---------- */
.services-hero {
  position: relative;
  padding-top: 180px;
  padding-bottom: 90px;
  overflow: hidden;
  background-color: var(--bg);
  border-bottom: 1px solid var(--line);
}
 
.services-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/topo-bg.jpg') center / cover no-repeat;
  opacity: 0.55;
  z-index: 0;
}
 
.services-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.85) 100%);
  z-index: 1;
}
 
.services-hero > .container-xxl {
  position: relative;
  z-index: 2;
}
 
/* ---------- Service Cards ---------- */
.services-list { background: var(--bg); }
 
.svc-card {
  background: var(--card);
  border: 1px solid var(--card-line);
  margin-bottom: 24px;
  overflow: hidden;
  transition: border-color .25s ease;
}
.svc-card:last-of-type { margin-bottom: 0; }
.svc-card:hover {
  border-color: rgba(255, 90, 0, 0.3);
}
 
.svc-body {
  padding: 50px 50px 50px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
 
.svc-num-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
}
 
.svc-num {
  font-family: var(--font-body);
  color: var(--brand);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 2px;
}
 
.svc-line {
  flex: 1;
  height: 1px;
  background: var(--line);
}
 
.svc-icon {
  width: 32px;
  height: 32px;
  border: 1.5px solid var(--brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  font-size: 14px;
  border-radius: 2px;
  flex-shrink: 0;
}
 
.svc-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 2.5vw, 38px);
  letter-spacing: 1px;
  margin: 0 0 18px;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1;
}
 
.svc-text {
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.65;
  margin: 0 0 24px;
  max-width: 540px;
}
 
.svc-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 36px;
}
.svc-bullets li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  color: var(--text-soft);
  flex-basis: 100%;
}
.svc-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  background: var(--brand);
  border-radius: 1px;
}
.svc-bullets--two-col li {
  flex-basis: calc(50% - 18px);
}
 
/* Image columns inside service cards */
.svc-img {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 360px;
}
.svc-img--local { background-image: url('../images/svc-local-rides.jpg'); }
.svc-img--tri   { background-image: url('../images/svc-triathlons.jpg'); }
.svc-img--shops { background-image: url('../images/svc-bike-shops.jpg'); }
 
/* Icon-only block for the RACES card */
.svc-icon-block {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0F0F0F;
  border-right: 1px solid var(--card-line);
  min-height: 360px;
}
.svc-bigicon {
  font-size: 64px;
  color: var(--brand);
  opacity: 0.85;
}
 
/* ---------- How It Works ---------- */
.how-it-works { background: var(--bg); }
 
.step-card {
  background: var(--card);
  border: 1px solid var(--card-line);
  padding: 32px 30px;
  height: 100%;
  transition: border-color .25s ease, transform .25s ease;
}
.step-card:hover {
  border-color: rgba(255, 90, 0, 0.35);
  transform: translateY(-4px);
}
 
.step-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  color: var(--brand);
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 600;
  text-transform: uppercase;
}
.step-tag i {
  font-size: 14px;
}
 
.step-title {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 1px;
  margin: 0 0 12px;
  text-transform: uppercase;
  color: var(--text);
}
 
.step-text {
  font-size: 14px;
  color: var(--text-soft);
  margin: 0;
  line-height: 1.55;
}
 
/* ---------- Services responsive ---------- */
@media (max-width: 991.98px) {
  .services-hero {
    padding-top: 130px;
    padding-bottom: 60px;
  }
  .svc-body { padding: 36px 28px; }
  .svc-img,
  .svc-icon-block {
    min-height: 240px;
    border-right: none;
    border-top: 1px solid var(--card-line);
  }
  .svc-bullets--two-col li { flex-basis: 100%; }
 
  /* Force image to come AFTER text on mobile, regardless of LTR/RTL flow */
  .svc-card .row > .order-lg-1 { order: 2; }
  .svc-card .row > .order-lg-2 { order: 1; }
}
 
@media (max-width: 575.98px) {
  .svc-body { padding: 30px 22px; }
  .svc-bullets { gap: 8px; }
}
 
 
@media (max-width: 991.98px) {
  .about-hero {
    padding-top: 120px;
    padding-bottom: 60px;
    min-height: auto;
  }
  .about-hero-foot { display: none; }
 
  .quote-band { padding: 70px 0; }
  .roll-cta { padding: 50px 0; }
  .roll-cta .text-md-end { text-align: left !important; }
}
 
@media (max-width: 575.98px) {
  .rule-card { padding: 26px 22px; }
  .roll-cta .btn-brand { width: 100%; justify-content: center; }
}

/* =====================================================
   CONTACT PAGE
   ===================================================== */

/* ---------- Contact Hero ---------- */
.contact-hero {
  position: relative;
  padding-top: 180px;
  padding-bottom: 90px;
  background-image: url('../images/contact-hero-bg.jpg');
  background-repeat: no-repeat  , no-repeat;
}

.contact-hero > .container-xxl {
  position: relative;
  z-index: 1;
}

/* ---------- Contact Body ---------- */
.contact-body { background: var(--bg); }

.info-block {
  margin-bottom: 50px;
}
.info-block:last-child { margin-bottom: 0; }

.info-icon {
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  font-size: 16px;
  border-radius: 2px;
  margin-bottom: 22px;
}

.info-label {
  font-size: 12px;
  letter-spacing: 2.5px;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 600;
  margin: 0 0 10px;
}

.info-value {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 1px;
  color: var(--text);
  text-transform: uppercase;
  margin: 0 0 8px;
  line-height: 1.1;
}
.info-value a {
  color: var(--text);
  text-decoration: none;
  transition: color .2s ease;
}
.info-value a:hover { color: var(--brand); }

.info-text {
  font-size: 14px;
  color: var(--text-soft);
  margin: 0;
  line-height: 1.55;
  max-width: 360px;
}

/* ---------- Form Card ---------- */
.form-card {
  background: var(--card);
  border: 1px solid var(--card-line);
  padding: 38px 38px 32px;
}

.form-label-mini {
  display: block;
  font-size: 11px;
  letter-spacing: 2.5px;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 8px;
}

.form-optional {
  color: var(--text-muted);
  opacity: 0.7;
  font-weight: 500;
}

.form-input {
  width: 100%;
  background: #0A0A0A;
  border: 1px solid #222;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  padding: 12px 14px;
  border-radius: 2px;
  transition: border-color .2s ease, background .2s ease;
}
.form-input::placeholder {
  color: #555;
  font-size: 13px;
}
.form-input:focus {
  outline: none;
  border-color: var(--brand);
  background: #0E0E0E;
}

.form-textarea {
  resize: vertical;
  min-height: 130px;
  font-family: var(--font-body);
  line-height: 1.5;
}

.form-foot { margin-top: 6px; }

.form-note {
  font-size: 13px;
  color: var(--text-muted);
}

.form-status {
  margin-top: 18px;
  font-size: 14px;
  padding: 0;
  min-height: 1px;
}
.form-status.is-success {
  color: #6ED77A;
  padding: 12px 14px;
  background: rgba(110, 215, 122, 0.08);
  border-left: 3px solid #6ED77A;
}
.form-status.is-error {
  color: #FF8484;
  padding: 12px 14px;
  background: rgba(255, 132, 132, 0.08);
  border-left: 3px solid #FF8484;
}

/* ---------- See You Band ---------- */
.see-you-band {
  position: relative;
  padding: 70px 0;
  background: #0B0805;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.see-you-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(180deg, rgba(11,8,5,0.55), rgba(11,8,5,0.85)),
    url('../images/topo-bg.jpg') center / cover no-repeat;
  z-index: 0;
}

.see-you-text {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.6vw, 36px);
  letter-spacing: 2px;
  color: var(--text);
  text-transform: uppercase;
  text-align: center;
  margin: 0;
}

/* ---------- Contact responsive ---------- */
@media (max-width: 991.98px) {
  .contact-hero {
    padding-top: 130px;
    padding-bottom: 60px;
  }
  .form-card { padding: 28px 22px 24px; }
  .info-block { margin-bottom: 40px; }
}

@media (max-width: 575.98px) {
  .form-foot { flex-direction: column; align-items: stretch !important; }
  .form-foot .btn-brand { width: 100%; justify-content: center; }
  .see-you-band { padding: 50px 0; }
}

/* Prevent body scroll when open */
body.mob-menu-open { overflow: hidden; }

/* ══════════════════════════════════════════
   FIX — Horizontal Scrollbar
══════════════════════════════════════════ */
html,
body {
    overflow-x: hidden !important;
    max-width: 100% !important;
}

/* Fix Bootstrap row negative margins causing overflow */
.row {
    --bs-gutter-x: 1.5rem;
    margin-right: 0 !important;
    margin-left: 0 !important;
}

/* Contain all sections */
section,
nav,
footer {
    overflow-x: hidden;
    max-width: 100vw;
}

/* Fix mob-drawer not causing overflow when closed */
.mob-drawer {
    overflow-x: hidden;
}
/* ══════════════════════════════════════════