/* ============================================================
   Theme Three – Vendor Profile Theme
   Based on Design-7 (CarServ) style
   Bootstrap 5.3 override layer
   Color palette: #0a0b0e (bg) · #D32F2F (accent/red) · #1b1d23 (surface)
   ============================================================ */

/* ── ROOT VARIABLES ──────────────────────────────────────── */
:root {
  --c-bg:       #0a0b0e;
  --c-surface:  #111318;
  --c-surface2: #181b22;
  --c-line:     #252830;
  --c-accent:   #D32F2F;
  --c-accent-d: #b71c1c;
  --c-accent-l: #ef5350;
  --c-text:     #dde2ef;
  --c-muted:    #7c8499;
  --c-white:    #ffffff;
  --font-h:     'Barlow', sans-serif;
  --font-b:     'Ubuntu', sans-serif;
  --radius:     8px;
  --radius-lg:  14px;
  --r-lg:       14px;
  --shadow:     0 8px 32px rgba(0,0,0,0.45);
}

/* ── RESET & BASE ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--font-b);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-h); margin-top: 0; }
img { max-width: 100%; display: block; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--c-bg); }
::-webkit-scrollbar-thumb { background: var(--c-line); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--c-accent); }

/* ── UTILITY CLASSES ─────────────────────────────────────── */
.text-accent    { color: var(--c-accent) !important; }
.bg-accent      { background: var(--c-accent) !important; }
.bg-surface     { background: var(--c-surface) !important; }
.bg-surface2    { background: var(--c-surface2) !important; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-h);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 0.45rem;
}

.sec-title {
  font-family: var(--font-h);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--c-white);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.divider {
  width: 52px;
  height: 3px;
  background: var(--c-accent);
  border-radius: 2px;
  margin: 0.85rem 0 1.4rem;
}
.divider-center { margin-left: auto; margin-right: auto; }

.section { padding: 5.5rem 0; }
.section-sm { padding: 4rem 0; }
.section-dark   { background: var(--c-surface); }
.section-dark2  { background: var(--c-surface2); }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn-accent {
  background: var(--c-accent);
  color: #ffffff;
  font-family: var(--font-h);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  padding: 0.78rem 1.8rem;
  transition: background .22s, transform .18s, box-shadow .22s;
}
.btn-accent:hover {
  background: var(--c-accent-l);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(211,47,47,.35);
}
.btn-accent:active { transform: translateY(0); }

.btn-outline-w {
  border: 2px solid rgba(255,255,255,0.38);
  color: var(--c-white);
  font-family: var(--font-h);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: transparent;
  border-radius: var(--radius);
  padding: 0.76rem 1.8rem;
  transition: border-color .22s, color .22s, transform .18s;
}
.btn-outline-w:hover {
  border-color: var(--c-accent);
  color: var(--c-accent);
  transform: translateY(-2px);
}

/* ── TOP BAR ─────────────────────────────────────────────── */
.topbar {
  background: var(--c-surface);
  border-bottom: 1px solid var(--c-line);
  padding: 0.38rem 0;
  font-size: 0.8rem;
  color: var(--c-muted);
}
.topbar a { color: var(--c-muted); transition: color .18s; }
.topbar a:hover { color: var(--c-accent); }
.topbar .pipe { margin: 0 0.6rem; opacity: 0.35; }

/* ── NAVBAR ──────────────────────────────────────────────── */
.site-navbar {
  background: rgba(10,11,14,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--c-line);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 200;
  transition: box-shadow .3s;
}
.site-navbar.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.6); }
.site-navbar .container { min-height: 72px; }

.brand-logo {
  font-family: var(--font-h);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--c-white);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.brand-logo .logo-icon {
  color: var(--c-accent);
  font-size: 1.8rem;
  margin-right: 0.3rem;
}
.brand-logo .logo-box {
  background: var(--c-accent);
  color: #ffffff;
  padding: 0.14rem 0.55rem;
  border-radius: 5px;
  font-weight: 700;
}

.main-nav .nav-link {
  font-family: var(--font-h);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--c-muted) !important;
  padding: 1.5rem 0.9rem !important;
  position: relative;
  transition: color .2s;
}
.main-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0.9rem; right: 0.9rem;
  height: 2px;
  background: var(--c-accent);
  transform: scaleX(0);
  transition: transform .25s;
  border-radius: 2px;
}
.main-nav .nav-link:hover,
.main-nav .nav-link.active { color: var(--c-white) !important; }
.main-nav .nav-link:hover::after,
.main-nav .nav-link.active::after { transform: scaleX(1); }

.navbar-toggler {
  border: 1px solid var(--c-line);
  padding: 0.4rem 0.65rem;
  border-radius: var(--radius);
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.75)' stroke-width='2' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ── HERO CAROUSEL ───────────────────────────────────────── */
#heroCarousel .carousel-item {
  height: 90vh;
  min-height: 560px;
}
.hero-slide-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroKenBurns 14s ease-in-out infinite alternate;
}
@keyframes heroKenBurns {
  from { transform: scale(1); }
  to   { transform: scale(1.06); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(10,11,14,0.88) 35%, rgba(10,11,14,0.45));
}
.hero-caption {
  position: relative;
  z-index: 2;
  max-width: 740px;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--c-accent);
  color: #ffffff;
  font-family: var(--font-h);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 4px;
  margin-bottom: 1.2rem;
}
.hero-caption h1 {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  color: var(--c-white);
  margin-bottom: 1rem;
}
.hero-caption h1 span { color: var(--c-accent); }
.hero-caption p {
  font-size: 1rem;
  color: rgba(221,226,239,0.8);
  max-width: 560px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* Carousel controls */
#heroCarousel .carousel-control-prev,
#heroCarousel .carousel-control-next {
  width: 54px; height: 54px;
  top: 50%; transform: translateY(-50%);
  bottom: auto;
  background: rgba(211,47,47,0.18);
  border: 2px solid var(--c-accent);
  border-radius: 50%;
  opacity: 1;
  margin: 0 1.5rem;
  transition: background .2s;
}
#heroCarousel .carousel-control-prev:hover,
#heroCarousel .carousel-control-next:hover { background: var(--c-accent); }
#heroCarousel .carousel-control-prev-icon,
#heroCarousel .carousel-control-next-icon { width: 18px; height: 18px; }

#heroCarousel .carousel-indicators {
  bottom: 1.8rem;
  gap: 0.5rem;
}
#heroCarousel .carousel-indicators [data-bs-target] {
  width: 30px; height: 3px;
  border: none;
  border-radius: 2px;
  background: rgba(255,255,255,0.3);
  transition: background .3s, width .3s;
}
#heroCarousel .carousel-indicators .active {
  background: var(--c-accent);
  width: 48px;
}

/* ── FEATURES STRIP ──────────────────────────────────────── */
.feat-strip {
  background: var(--c-accent);
}
.feat-item {
  padding: 1.4rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  border-right: 1px solid rgba(255,255,255,0.18);
}
.feat-item:last-child { border-right: none; }
.feat-item .fi-icon {
  font-size: 1.8rem;
  color: #ffffff;
  flex-shrink: 0;
}
.feat-item h6 {
  font-family: var(--font-h);
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.feat-item small { font-size: 0.78rem; color: rgba(255,255,255,0.75); }

/* ── STATS BAND ──────────────────────────────────────────── */
.stat-card {
  text-align: center;
  padding: 1.5rem 1rem;
}
.stat-card .num {
  font-family: var(--font-h);
  font-size: 3rem;
  font-weight: 700;
  color: var(--c-accent);
  line-height: 1;
  display: block;
}
.stat-card .lbl {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-muted);
}

/* ── ABOUT / COMPANY PROFILE ─────────────────────────────── */
.about-img-wrap { position: relative; }
.about-img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.about-badge {
  position: absolute;
  bottom: -1.8rem;
  right: -1.5rem;
  background: var(--c-accent);
  border-radius: var(--radius-lg);
  padding: 1.6rem 2rem;
  text-align: center;
  box-shadow: 0 10px 36px rgba(211,47,47,0.4);
  line-height: 1.15;
}
.about-badge .big-num {
  font-family: var(--font-h);
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  display: block;
}
.about-badge .ab-lbl {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.85);
}

.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.7rem;
  color: var(--c-muted);
  font-size: 0.92rem;
}
.check-list li i {
  color: var(--c-accent);
  font-size: 0.95rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.cert-badges { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.6rem; }
.cert-badge {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid var(--c-line);
  border-radius: 6px;
  padding: 0.4rem 0.85rem;
  font-size: 0.8rem;
  color: var(--c-muted);
  transition: border-color .2s, color .2s;
}
.cert-badge:hover { border-color: var(--c-accent); color: var(--c-accent); }
.cert-badge i { color: var(--c-accent); }

/* ── SERVICE / WHY-US CARDS ──────────────────────────────── */
.svc-card {
  background: var(--c-surface2);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  padding: 2rem 1.6rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--c-accent);
  transform: scaleX(0);
  transition: transform .3s;
}
.svc-card:hover {
  border-color: rgba(211,47,47,0.45);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.svc-card:hover::before { transform: scaleX(1); }
.svc-icon {
  width: 60px; height: 60px;
  border-radius: 12px;
  background: rgba(211,47,47,0.1);
  border: 1px solid rgba(211,47,47,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: var(--c-accent);
  margin-bottom: 1.2rem;
  transition: background .25s;
}
.svc-card:hover .svc-icon { background: rgba(211,47,47,0.18); }
.svc-card h5 {
  font-family: var(--font-h);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--c-white);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.svc-card p { color: var(--c-muted); font-size: 0.88rem; margin: 0; }

/* ── PRODUCT CARDS ───────────────────────────────────────── */
.prod-card {
  background: var(--c-surface2);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.prod-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--c-accent);
  transform: scaleX(0);
  transition: transform .3s;
}
.prod-card:hover {
  border-color: rgba(211,47,47,0.45);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.prod-card:hover::before { transform: scaleX(1); }
.prod-img { overflow: hidden; }
.prod-img img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform .35s;
}
.prod-card:hover .prod-img img { transform: scale(1.05); }
.prod-body {
  padding: 1.4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.prod-body h5 {
  font-family: var(--font-h);
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-white);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 0.55rem;
}
.prod-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--c-line);
}

/* ── PRODUCT DETAIL ──────────────────────────────────────── */
.prod-detail-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--c-line);
}
.prod-detail-img-wrap img {
  width: 100%;
  height: auto;
  min-height: 380px;
  object-fit: cover;
}
.prod-detail-badge {
  display: inline-block;
  background: rgba(76,175,80,0.12);
  border: 1px solid rgba(76,175,80,0.28);
  color: #81c784;
  font-family: var(--font-h);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  margin-bottom: 0.8rem;
}

/* Specifications table */
.spec-table {
  width: 100%;
  border-collapse: collapse;
}
.spec-table tr { border-bottom: 1px solid var(--c-line); }
.spec-table td {
  padding: 0.6rem 0.8rem;
  font-size: 0.86rem;
}
.spec-table td:first-child {
  color: var(--c-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  width: 40%;
}
.spec-table td:last-child { color: var(--c-text); }

/* ── WHY CHOOSE US ───────────────────────────────────────── */
.why-img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.why-point {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.6rem;
}
.wp-icon {
  width: 52px; height: 52px;
  flex-shrink: 0;
  background: rgba(211,47,47,0.1);
  border: 1px solid rgba(211,47,47,0.22);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--c-accent);
}
.why-point h6 {
  font-family: var(--font-h);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--c-white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}
.why-point p { font-size: 0.86rem; color: var(--c-muted); margin: 0; }

/* progress bars */
.skill-row { margin-bottom: 1.1rem; }
.skill-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  font-family: var(--font-h);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--c-text);
  margin-bottom: 0.4rem;
}
.skill-bar {
  height: 6px;
  background: var(--c-line);
  border-radius: 4px;
  overflow: hidden;
}
.skill-fill {
  height: 100%;
  background: var(--c-accent);
  border-radius: 4px;
  width: 0;
  transition: width 1.4s ease;
}

/* ── BUSINESS INFO TABLE ─────────────────────────────────── */
.info-table-wrap {
  background: var(--c-surface2);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.info-table {
  width: 100%;
  margin: 0;
}
.info-table tr { border-bottom: 1px solid var(--c-line); }
.info-table tr:last-child { border-bottom: none; }
.info-table td {
  padding: 0.85rem 1.4rem;
  font-size: 0.88rem;
  vertical-align: middle;
}
.info-table td:first-child {
  color: var(--c-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  width: 40%;
}
.info-table td:last-child { color: var(--c-text); }

/* ── ENQUIRY / CONTACT FORM ──────────────────────────────── */
.form-card {
  background: var(--c-surface2);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  padding: 2.8rem;
}
.form-card .form-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--c-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 0.38rem;
}
.form-card .form-control,
.form-card .form-select {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  color: var(--c-text);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  font-family: var(--font-b);
  font-size: 0.9rem;
  transition: border-color .2s, box-shadow .2s;
}
.form-card .form-control::placeholder { color: var(--c-muted); opacity: 0.7; }
.form-card .form-control:focus,
.form-card .form-select:focus {
  background: var(--c-surface);
  border-color: var(--c-accent);
  color: var(--c-text);
  box-shadow: 0 0 0 3px rgba(211,47,47,0.18);
  outline: none;
}
.form-card .form-select option { background: var(--c-surface); }
.form-card textarea.form-control { resize: vertical; min-height: 120px; }

/* ── CONTACT INFO BOX ────────────────────────────────────── */
.contact-info-box {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.6rem;
}
.cib-icon {
  width: 48px; height: 48px;
  flex-shrink: 0;
  background: rgba(211,47,47,0.1);
  border: 1px solid rgba(211,47,47,0.22);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--c-accent);
}
.cib-body h6 {
  font-family: var(--font-h);
  font-size: 0.88rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--c-white);
  margin-bottom: 0.2rem;
}
.cib-body p { font-size: 0.85rem; color: var(--c-muted); margin: 0; line-height: 1.55; }

/* ── INFO BOX (contact page) ─────────────────────────────── */
.info-box {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  padding: 2rem 1.4rem;
  height: 100%;
  transition: border-color .25s, transform .25s;
}
.info-box:hover {
  border-color: rgba(211,47,47,0.45);
  transform: translateY(-4px);
}
.info-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(211,47,47,0.1);
  border: 1px solid rgba(211,47,47,0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--c-accent);
  margin-bottom: 1rem;
}
.info-box h6 {
  font-family: var(--font-h);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--c-white);
  margin-bottom: 0.4rem;
}
.info-box p { color: var(--c-muted); font-size: 0.86rem; margin: 0; line-height: 1.55; }

/* ── PAGE HERO (INNER PAGES) ─────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, #0a0b0e 0%, #111318 100%);
  padding: 5rem 0 3.5rem;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--c-line);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background: center/cover no-repeat;
  opacity: .07;
}

/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer {
  background: var(--c-surface);
  border-top: 1px solid var(--c-line);
}
.footer-body { padding: 4.5rem 0 2rem; }
.footer-brand-name {
  font-family: var(--font-h);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--c-white);
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.9rem;
}

.footer-desc { font-size: 0.86rem; color: var(--c-muted); max-width: 290px; line-height: 1.7; margin-bottom: 1.2rem; }
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 8px;
  border: 1px solid var(--c-line);
  color: var(--c-muted);
  font-size: 1rem;
  margin-right: 0.4rem;
  transition: .2s;
}
.footer-social a:hover { background: var(--c-accent); border-color: var(--c-accent); color: #ffffff; }

.footer-col h6 {
  font-family: var(--font-h);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-white);
  margin-bottom: 1.1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--c-line);
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 0.55rem; }
.footer-col ul li a {
  font-size: 0.86rem;
  color: var(--c-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color .18s, gap .18s;
}
.footer-col ul li a:hover { color: var(--c-accent); gap: 0.65rem; }
.footer-col ul li a i { font-size: 0.75rem; }

/* ── FOOTER ENQUIRY FORM ─────────────────────────────────── */
.footer-enq-title {
  font-family: var(--font-h);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-white);
  margin-bottom: 1.1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--c-line);
}
.footer-enq-wrap .form-control {
  background: var(--c-surface2);
  border: 1px solid var(--c-line);
  color: var(--c-text);
  border-radius: var(--radius);
  padding: 0.55rem 0.8rem;
  font-size: 0.85rem;
}
.footer-enq-wrap .form-control::placeholder { color: var(--c-muted); opacity: 0.6; }
.footer-enq-wrap .form-control:focus {
  border-color: var(--c-accent);
  box-shadow: 0 0 0 2px rgba(211,47,47,0.15);
  outline: none;
}

.footer-bottom {
  border-top: 1px solid var(--c-line);
  padding: 1.1rem 0;
  font-size: 0.8rem;
  color: var(--c-muted);
}
.footer-bottom a { color: var(--c-accent); }

/* ── SCROLL TO TOP ───────────────────────────────────────── */
#scrollTop {
  position: fixed;
  bottom: 1.8rem;
  right: 1.8rem;
  width: 44px; height: 44px;
  background: var(--c-accent);
  color: #ffffff;
  border: none;
  border-radius: 50%;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .3s, transform .3s;
  box-shadow: 0 4px 18px rgba(211,47,47,0.35);
}
#scrollTop.show { opacity: 1; transform: translateY(0); }
#scrollTop:hover { background: var(--c-accent-l); }

/* ── PAGINATION (Bootstrap override) ─────────────────────── */
.pagination .page-link {
  background: var(--c-surface2);
  border-color: var(--c-line);
  color: var(--c-muted);
  font-family: var(--font-h);
  font-size: 0.85rem;
  font-weight: 600;
}
.pagination .page-link:hover {
  background: var(--c-accent);
  border-color: var(--c-accent);
  color: #ffffff;
}
.pagination .active .page-link {
  background: var(--c-accent);
  border-color: var(--c-accent);
  color: #ffffff;
}

/* ── RESPONSIVE TWEAKS ───────────────────────────────────── */
@media (max-width: 991.98px) {
  #heroCarousel .carousel-item { height: 76vh; min-height: 500px; }
  .about-badge { right: 0.5rem; bottom: 0.5rem; }
}
@media (max-width: 767.98px) {
  .hero-caption h1 { font-size: clamp(1.9rem, 7vw, 2.8rem); }
  #heroCarousel .carousel-item { height: 70vh; min-height: 460px; }
  .feat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.18); }
  .feat-item:last-child { border-bottom: none; }
  .form-card { padding: 1.6rem; }
  .about-badge { display: none; }
}
