/* ============================================================
   SEAGULL LOGISTICS — MAIN STYLESHEET
   Brand: #bb1d2b (red) | #231f20 (black)
   ============================================================ */

:root {
  --sg-red:    #bb1d2b;
  --sg-red-dk: #8e1520;
  --sg-red-lt: #d9232f;
  --sg-black:  #231f20;
  --sg-dark:   #1a1718;
  --sg-gray:   #4a4548;
  --sg-light:  #f8f5f5;
  --sg-white:  #ffffff;
  --sg-border: #e2dcdd;
  --sg-accent: #e8d5d7;
  --font-main: 'Manrope', 'Segoe UI', sans-serif;
  --font-head: 'Manrope', 'Segoe UI', sans-serif;
  --transition: .3s ease;
  --radius: 8px;
  --shadow: 0 4px 24px rgba(35,31,32,.12);
  --shadow-hover: 0 8px 36px rgba(35,31,32,.22);
}

/* ── Base ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html { font-size: 14.5px; }

body {
  font-family: var(--font-main);
  color: var(--sg-black);
  background: var(--sg-white);
  margin: 0;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
}

a { transition: color var(--transition); }
img { max-width: 100%; height: auto; }

/* ── Topbar ───────────────────────────────────────────────── */
.sg-topbar {
  background: var(--sg-black);
  color: rgba(255,255,255,.75);
  font-size: .78rem;
  padding: 6px 0;
  letter-spacing: .02em;
}
.sg-topbar a { color: rgba(255,255,255,.75); text-decoration: none; }
.sg-topbar a:hover { color: var(--sg-red); }
.sg-topbar-social {
  display: flex;
  align-items: center;
  gap: 2px;
  border-left: 1px solid rgba(255,255,255,.15);
  padding-left: 12px;
  margin-left: 4px;
}
.sg-topbar-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.7);
  font-size: .8rem;
  transition: all var(--transition);
  text-decoration: none;
}
.sg-topbar-social a:hover {
  background: var(--sg-red);
  color: #fff;
  transform: translateY(-1px);
}
.sg-topbar .badge-flag {
  background: var(--sg-red);
  color: #fff;
  border-radius: 3px;
  padding: 2px 6px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .05em;
}

/* ── Navbar ───────────────────────────────────────────────── */
.sg-navbar {
  background: var(--sg-black) !important;
  border-bottom: 3px solid var(--sg-red);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1050;
  box-shadow: 0 2px 20px rgba(0,0,0,.4);
}
.sg-navbar .navbar-brand {
  padding: 4px 0;
}
.sg-navbar-logo {
  height: 32px;
  width: auto;
  background: #fff;
  border-radius: 4px;
  padding: 2px 6px;
  display: block;
}
.sg-navbar .nav-link {
  color: rgba(255,255,255,.82) !important;
  font-weight: 500;
  font-size: .88rem;
  letter-spacing: .03em;
  padding: 24px 14px !important;
  position: relative;
  transition: color var(--transition);
}
.sg-navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 14px; right: 14px;
  height: 3px;
  background: var(--sg-red);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.sg-navbar .nav-link:hover,
.sg-navbar .nav-link.active {
  color: #fff !important;
}
.sg-navbar .nav-link:hover::after,
.sg-navbar .nav-link.active::after { transform: scaleX(1); }

.sg-navbar .dropdown-menu {
  background: var(--sg-dark);
  border: 1px solid rgba(187,29,43,.35);
  border-top: 3px solid var(--sg-red);
  border-radius: 0 0 var(--radius) var(--radius);
  min-width: 220px;
  padding: 8px 0;
  margin-top: 0 !important;
}
.sg-navbar .dropdown-item {
  color: rgba(255,255,255,.82);
  font-size: .86rem;
  padding: 10px 20px;
  transition: background var(--transition), color var(--transition);
}
.sg-navbar .dropdown-item:hover {
  background: var(--sg-red);
  color: #fff;
}
.sg-navbar .btn-rfq {
  background: var(--sg-red);
  color: #fff !important;
  border-radius: var(--radius);
  padding: 10px 20px !important;
  margin: 10px 0;
  font-weight: 600;
  letter-spacing: .04em;
}
.sg-navbar .btn-rfq:hover { background: var(--sg-red-dk); color: #fff !important; }
.sg-navbar .btn-rfq::after { display: none; }
.navbar-toggler { border-color: rgba(255,255,255,.3); }
.navbar-toggler-icon { filter: invert(1); }

/* ── Hero Carousel ─────────────────────────────────────────── */
.sg-hero-carousel { position: relative; background: var(--sg-black); }
.sg-hero-carousel .carousel-item { min-height: 88vh; overflow: hidden; }
.sg-hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.06);
  transition: transform 8s ease-out;
}
.sg-hero-carousel .carousel-item.active .sg-hero-slide-bg { transform: scale(1.01); }
.sg-hero-slide-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.sg-hero-slide-content {
  position: relative;
  z-index: 2;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 110px 0 90px;
}
.sg-hero-eyebrow {
  display: inline-block;
  background: var(--sg-red);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 40px;
  margin-bottom: 20px;
}
.sg-hero-slide-content h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: #fff;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}
.sg-hero-slide-content h1 span { color: var(--sg-red); }
.sg-hero-slide-content .lead {
  color: rgba(255,255,255,.78);
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.75;
}
.sg-hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.sg-hero-stat .stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--sg-red);
  font-family: var(--font-head);
  display: block;
  line-height: 1;
}
.sg-hero-stat .stat-label {
  font-size: .72rem;
  color: rgba(255,255,255,.58);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: 4px;
  display: block;
}
/* Slide text animation */
.carousel-item .slide-anim {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .72s ease, transform .72s ease;
}
.carousel-item.active .slide-anim            { opacity: 1; transform: none; transition-delay: .1s; }
.carousel-item.active .slide-anim:nth-child(2){ transition-delay: .22s; }
.carousel-item.active .slide-anim:nth-child(3){ transition-delay: .34s; }
.carousel-item.active .slide-anim:nth-child(4){ transition-delay: .46s; }
.carousel-item.active .slide-anim:nth-child(5){ transition-delay: .58s; }
/* Carousel Controls */
.sg-hero-carousel .carousel-control-prev,
.sg-hero-carousel .carousel-control-next {
  width: 52px;
  height: 52px;
  background: rgba(187,29,43,.78);
  border-radius: 50%;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  margin: 0 20px;
  opacity: 1;
  transition: all var(--transition);
}
.sg-hero-carousel .carousel-control-prev:hover,
.sg-hero-carousel .carousel-control-next:hover {
  background: var(--sg-red);
  box-shadow: 0 4px 22px rgba(187,29,43,.55);
  transform: translateY(-50%) scale(1.08);
}
.sg-hero-carousel .carousel-indicators { bottom: 28px; gap: 6px; margin: 0; }
.sg-hero-carousel .carousel-indicators [data-bs-target] {
  width: 28px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,.35);
  border-top: none;
  border-bottom: none;
  transition: all .4s;
}
.sg-hero-carousel .carousel-indicators .active {
  background: var(--sg-red);
  width: 52px;
}
/* Slide badge overlay (bottom-right info card) */
.sg-slide-badge {
  position: absolute;
  bottom: 60px;
  right: 24px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: 18px 22px;
  color: #fff;
  z-index: 3;
  min-width: 200px;
}
.sg-slide-badge .badge-val {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--sg-red);
  line-height: 1;
  display: block;
}
.sg-slide-badge .badge-label {
  font-size: .75rem;
  color: rgba(255,255,255,.6);
  letter-spacing: .06em;
  margin-top: 4px;
  display: block;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn-sg-primary {
  background: var(--sg-red);
  color: #fff;
  border: 2px solid var(--sg-red);
  border-radius: var(--radius);
  padding: 13px 30px;
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .04em;
  transition: all var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-sg-primary:hover {
  background: var(--sg-red-dk);
  border-color: var(--sg-red-dk);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(187,29,43,.4);
}
.btn-sg-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.5);
  border-radius: var(--radius);
  padding: 13px 30px;
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .04em;
  transition: all var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-sg-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: #fff;
  color: #fff;
  transform: translateY(-2px);
}
.btn-sg-dark {
  background: var(--sg-black);
  color: #fff;
  border: 2px solid var(--sg-black);
  border-radius: var(--radius);
  padding: 12px 28px;
  font-weight: 600;
  font-size: .9rem;
  transition: all var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-sg-dark:hover {
  background: #111;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

/* ── Section Utilities ────────────────────────────────────── */
.sg-section { padding: 90px 0; }
.sg-section-sm { padding: 60px 0; }
.sg-section-dark { background: var(--sg-black); }
.sg-section-light { background: var(--sg-light); }
.sg-section-red { background: var(--sg-red); }

.sg-badge {
  display: inline-block;
  background: rgba(187,29,43,.12);
  color: var(--sg-red);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 40px;
  border: 1px solid rgba(187,29,43,.25);
  margin-bottom: 14px;
}
.sg-badge-white {
  background: rgba(255,255,255,.15);
  color: rgba(255,255,255,.9);
  border-color: rgba(255,255,255,.25);
}

.sg-heading {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--sg-black);
  margin-bottom: 12px;
}
.sg-heading span { color: var(--sg-red); }
.sg-heading-white { color: #fff; }
.sg-subheading {
  font-size: 1.05rem;
  color: var(--sg-gray);
  max-width: 580px;
  line-height: 1.7;
}
.sg-subheading-white { color: rgba(255,255,255,.72); }
.sg-divider {
  width: 56px;
  height: 4px;
  background: var(--sg-red);
  border-radius: 2px;
  margin: 16px 0 28px;
}
.sg-divider-center { margin: 16px auto 28px; }

/* ── Cards ────────────────────────────────────────────────── */
.sg-card {
  background: #fff;
  border: 1px solid var(--sg-border);
  border-radius: 16px;
  padding: 32px;
  transition: all var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.sg-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--sg-red);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.sg-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-6px);
  border-color: rgba(187,29,43,.3);
}
.sg-card:hover::before { transform: scaleX(1); }
.sg-card-icon {
  width: 60px; height: 60px;
  background: rgba(187,29,43,.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--sg-red);
  margin-bottom: 20px;
  transition: all var(--transition);
}
.sg-card:hover .sg-card-icon {
  background: var(--sg-red);
  color: #fff;
  transform: scale(1.08);
}
.sg-card h4, .sg-card h5 { font-weight: 700; margin-bottom: 10px; color: var(--sg-black); }
.sg-card p { color: var(--sg-gray); font-size: .9rem; line-height: 1.7; margin: 0; }

/* Dark card */
.sg-card-dark {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.1);
  color: #fff;
}
.sg-card-dark::before { background: var(--sg-red); }
.sg-card-dark h4, .sg-card-dark h5 { color: #fff; }
.sg-card-dark p { color: rgba(255,255,255,.65); }
.sg-card-dark .sg-card-icon {
  background: rgba(187,29,43,.25);
  color: var(--sg-red);
}
.sg-card-dark:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(187,29,43,.4);
}
.sg-card-dark:hover .sg-card-icon {
  background: var(--sg-red);
  color: #fff;
}

/* ── Product Card ─────────────────────────────────────────── */
.sg-product-card {
  background: #fff;
  border: 1px solid var(--sg-border);
  border-radius: 16px;
  overflow: hidden;
  transition: all var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.sg-product-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-5px);
  border-color: rgba(187,29,43,.3);
}
.sg-product-img {
  height: 200px;
  background: linear-gradient(135deg, var(--sg-light), var(--sg-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}
.sg-product-img .availability-badge {
  position: absolute;
  top: 12px; right: 12px;
  font-size: .7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: .04em;
}
.badge-in-stock { background: #198754; color: #fff; }
.badge-on-demand { background: var(--sg-red); color: #fff; }
.badge-limited { background: #fd7e14; color: #fff; }
.sg-product-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.sg-product-cat {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--sg-red);
  margin-bottom: 6px;
}
.sg-product-body h5 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--sg-black); }
.sg-product-body p { font-size: .84rem; color: var(--sg-gray); line-height: 1.6; flex: 1; }
.sg-product-footer { padding: 0 20px 20px; display: flex; gap: 10px; }

/* ── Industry Badge ───────────────────────────────────────── */
.sg-industry-card {
  background: #fff;
  border: 1px solid var(--sg-border);
  border-radius: 16px;
  padding: 36px 24px;
  text-align: center;
  transition: all var(--transition);
  cursor: pointer;
  height: 100%;
}
.sg-industry-card:hover {
  background: var(--sg-black);
  border-color: var(--sg-red);
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.sg-industry-card .industry-icon {
  font-size: 3rem;
  margin-bottom: 18px;
  display: block;
  transition: transform var(--transition);
}
.sg-industry-card:hover .industry-icon { transform: scale(1.15); }
.sg-industry-card h5 {
  font-size: .98rem;
  font-weight: 700;
  color: var(--sg-black);
  margin-bottom: 8px;
  transition: color var(--transition);
}
.sg-industry-card:hover h5 { color: #fff; }
.sg-industry-card p {
  font-size: .82rem;
  color: var(--sg-gray);
  margin: 0;
  transition: color var(--transition);
}
.sg-industry-card:hover p { color: rgba(255,255,255,.65); }

/* ── Process Steps ────────────────────────────────────────── */
.sg-step {
  display: flex;
  gap: 24px;
  padding: 32px;
  background: #fff;
  border: 1px solid var(--sg-border);
  border-radius: 16px;
  transition: all var(--transition);
  margin-bottom: 20px;
}
.sg-step:hover { box-shadow: var(--shadow); border-color: rgba(187,29,43,.3); }
.sg-step-num {
  min-width: 56px; height: 56px;
  background: var(--sg-red);
  color: #fff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  font-family: var(--font-head);
  flex-shrink: 0;
}
.sg-step-body h5 { font-weight: 700; color: var(--sg-black); margin-bottom: 8px; }
.sg-step-body p { color: var(--sg-gray); font-size: .88rem; margin: 0; line-height: 1.65; }

/* ── Testimonials ─────────────────────────────────────────── */
.sg-testimonial {
  background: #fff;
  border: 1px solid var(--sg-border);
  border-radius: 16px;
  padding: 32px;
  position: relative;
}
.sg-testimonial::before {
  content: '\201C';
  font-size: 5rem;
  color: var(--sg-red);
  opacity: .2;
  font-family: Georgia, serif;
  position: absolute;
  top: 10px; left: 24px;
  line-height: 1;
}
.sg-testimonial blockquote {
  font-size: .95rem;
  color: var(--sg-gray);
  line-height: 1.75;
  margin: 0 0 20px;
  position: relative;
  z-index: 1;
}
.sg-testimonial .author-name { font-weight: 700; font-size: .9rem; color: var(--sg-black); }
.sg-testimonial .author-role { font-size: .78rem; color: var(--sg-red); letter-spacing: .04em; }

/* ── Stats Bar ────────────────────────────────────────────── */
.sg-stats-bar { background: var(--sg-black); }
.sg-stat-item {
  text-align: center;
  padding: 40px 20px;
  border-right: 1px solid rgba(255,255,255,.08);
}
.sg-stat-item:last-child { border-right: none; }
.sg-stat-item .stat-number {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--sg-red);
  font-family: var(--font-head);
  display: block;
  line-height: 1;
}
.sg-stat-item .stat-label {
  font-size: .8rem;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-top: 8px;
  display: block;
}

/* ── Clients / Partners Marquee ──────────────────────────── */
.sg-partners-section {
  background: #fff;
  padding: 32px 0 28px;
  border-bottom: 1px solid var(--sg-border);
  overflow: hidden;
}
.sg-partners-eyebrow {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--sg-red);
  margin-bottom: 20px;
  text-align: center;
}
.sg-marquee-wrap {
  position: relative;
  overflow: hidden;
  /* fade edges */
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.sg-marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: sg-marquee 28s linear infinite;
}
.sg-marquee-track:hover { animation-play-state: paused; }
@keyframes sg-marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.sg-partner-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px 10px 12px;
  background: #fff;
  border: 1.5px solid var(--sg-border);
  border-radius: 40px;
  white-space: nowrap;
  cursor: default;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.sg-partner-chip:hover {
  border-color: var(--sg-red);
  box-shadow: 0 4px 16px rgba(187,29,43,.12);
  transform: translateY(-2px);
}
.sg-partner-chip-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.sg-partner-chip-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .82rem;
  color: var(--sg-black);
  letter-spacing: .04em;
}

/* ── Contact ──────────────────────────────────────────────── */
.sg-contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px;
  background: var(--sg-light);
  border-radius: 12px;
  margin-bottom: 16px;
}
.sg-contact-info-item .info-icon {
  width: 48px; height: 48px;
  background: var(--sg-red);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.sg-contact-info-item h6 { font-weight: 700; color: var(--sg-black); margin-bottom: 4px; }
.sg-contact-info-item p { color: var(--sg-gray); font-size: .88rem; margin: 0; }

/* ── Form Styles ──────────────────────────────────────────── */
.sg-form .form-control,
.sg-form .form-select {
  border: 1.5px solid var(--sg-border);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: .9rem;
  color: var(--sg-black);
  background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.sg-form .form-control:focus,
.sg-form .form-select:focus {
  border-color: var(--sg-red);
  box-shadow: 0 0 0 3px rgba(187,29,43,.12);
  outline: none;
}
.sg-form label { font-weight: 600; font-size: .85rem; color: var(--sg-black); margin-bottom: 6px; }
.sg-form .form-card {
  background: #fff;
  border: 1px solid var(--sg-border);
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--shadow);
}

/* RFQ Steps */
.rfq-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 40px;
  flex-wrap: nowrap;
  overflow-x: auto;
}
.rfq-step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  flex: 1;
  min-width: 80px;
}
.rfq-step-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 22px;
  left: 50%;
  right: -50%;
  height: 2px;
  background: var(--sg-border);
  z-index: 0;
}
.rfq-step-item.active:not(:last-child)::after,
.rfq-step-item.done:not(:last-child)::after {
  background: var(--sg-red);
}
.rfq-step-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .9rem;
  border: 2px solid var(--sg-border);
  background: #fff;
  color: var(--sg-gray);
  position: relative;
  z-index: 1;
  transition: all var(--transition);
}
.rfq-step-item.active .rfq-step-num {
  background: var(--sg-red);
  border-color: var(--sg-red);
  color: #fff;
}
.rfq-step-item.done .rfq-step-num {
  background: var(--sg-black);
  border-color: var(--sg-black);
  color: #fff;
}
.rfq-step-label {
  font-size: .7rem;
  font-weight: 600;
  color: var(--sg-gray);
  margin-top: 8px;
  text-align: center;
  letter-spacing: .04em;
}
.rfq-step-item.active .rfq-step-label { color: var(--sg-red); }
.rfq-step-item.done .rfq-step-label { color: var(--sg-black); }

/* ── Page Hero ────────────────────────────────────────────── */
.sg-page-hero {
  background: linear-gradient(135deg, var(--sg-black) 0%, #2d2628 100%);
  border-bottom: 4px solid var(--sg-red);
  padding: 36px 0 28px;
  position: relative;
  overflow: hidden;
}
.sg-page-hero::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(187,29,43,.15) 0%, transparent 65%);
  pointer-events: none;
}
.sg-page-hero h1 {
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 6px;
}
.sg-page-hero .breadcrumb { background: transparent; padding: 0; margin: 0; }
.sg-page-hero .breadcrumb-item { color: rgba(255,255,255,.6); font-size: .85rem; }
.sg-page-hero .breadcrumb-item a { color: rgba(255,255,255,.6); text-decoration: none; }
.sg-page-hero .breadcrumb-item a:hover { color: var(--sg-red); }
.sg-page-hero .breadcrumb-item.active { color: var(--sg-red); }
.sg-page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.3); }

/* ── Blog ─────────────────────────────────────────────────── */
.sg-blog-card {
  background: #fff;
  border: 1px solid var(--sg-border);
  border-radius: 16px;
  overflow: hidden;
  transition: all var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.sg-blog-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-5px); }
.sg-blog-img {
  height: 200px;
  object-fit: cover;
  width: 100%;
}
.sg-blog-img-placeholder {
  height: 200px;
  background: linear-gradient(135deg, var(--sg-black), #3a3436);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
}
.sg-blog-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.sg-blog-meta { font-size: .75rem; color: var(--sg-gray); margin-bottom: 12px; display: flex; gap: 16px; flex-wrap: wrap; }
.sg-blog-meta span { display: flex; align-items: center; gap: 5px; }
.sg-blog-cat { font-size: .7rem; font-weight: 700; color: var(--sg-red); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 8px; }
.sg-blog-body h5 { font-weight: 700; color: var(--sg-black); margin-bottom: 10px; font-size: 1rem; }
.sg-blog-body p { color: var(--sg-gray); font-size: .86rem; flex: 1; line-height: 1.65; }
.sg-blog-footer { padding: 0 24px 24px; }
.sg-blog-read-more { color: var(--sg-red); font-weight: 600; font-size: .86rem; text-decoration: none; display: flex; align-items: center; gap: 6px; }
.sg-blog-read-more:hover { color: var(--sg-red-dk); gap: 10px; }

/* ── Coverage Map ─────────────────────────────────────────── */
.sg-map-container {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.sg-region-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--sg-border);
  border-radius: 40px;
  padding: 8px 16px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--sg-black);
  margin: 4px;
  transition: all var(--transition);
}
.sg-region-badge:hover, .sg-region-badge.active {
  background: var(--sg-red);
  border-color: var(--sg-red);
  color: #fff;
}
.sg-region-badge .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--sg-red);
  display: inline-block;
  transition: background var(--transition);
}
.sg-region-badge:hover .dot,
.sg-region-badge.active .dot { background: #fff; }

/* ── Nav Pills Override ───────────────────────────────────── */
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  background-color: var(--sg-red) !important;
  color: #fff !important;
  border-color: var(--sg-red) !important;
}

/* ── Accordion ────────────────────────────────────────────── */
.sg-accordion .accordion-item {
  border: 1px solid var(--sg-border);
  border-radius: var(--radius) !important;
  margin-bottom: 10px;
  overflow: hidden;
}
.sg-accordion .accordion-button {
  font-weight: 600;
  font-size: .92rem;
  color: var(--sg-black);
  background: #fff;
}
.sg-accordion .accordion-button:not(.collapsed) {
  background: var(--sg-black);
  color: #fff;
  box-shadow: none;
}
.sg-accordion .accordion-button::after {
  filter: none;
}
.sg-accordion .accordion-button:not(.collapsed)::after {
  filter: invert(1);
}

/* ── Timeline ─────────────────────────────────────────────── */
.sg-timeline { position: relative; padding-left: 40px; }
.sg-timeline::before {
  content: '';
  position: absolute;
  left: 16px; top: 0; bottom: 0;
  width: 2px;
  background: var(--sg-border);
}
.sg-timeline-item {
  position: relative;
  margin-bottom: 32px;
  padding-left: 20px;
}
.sg-timeline-item::before {
  content: '';
  position: absolute;
  left: -32px;
  top: 3px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--sg-red);
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--sg-red);
}
.sg-timeline-item h6 { font-weight: 700; color: var(--sg-black); margin-bottom: 6px; }
.sg-timeline-item p { color: var(--sg-gray); font-size: .86rem; margin: 0; line-height: 1.6; }
.sg-timeline-item .year {
  font-size: .72rem;
  font-weight: 800;
  color: var(--sg-red);
  letter-spacing: .1em;
  margin-bottom: 4px;
  display: block;
}

/* ── Footer ───────────────────────────────────────────────── */
.sg-footer {
  background: var(--sg-dark);
  border-top: 4px solid var(--sg-red);
  color: rgba(255,255,255,.7);
  padding: 80px 0 0;
}
.sg-footer .footer-brand .brand-logo {
  width: 56px; height: 56px;
  background: var(--sg-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 14px;
}
.sg-footer .footer-brand .brand-name {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  display: block;
}
.sg-footer .footer-brand .brand-tag {
  font-size: .65rem;
  color: var(--sg-red);
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
}
.sg-footer p { font-size: .86rem; line-height: 1.7; }
.sg-footer h6 {
  color: #fff;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}
.sg-footer h6::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 28px; height: 2px;
  background: var(--sg-red);
  border-radius: 2px;
}
.sg-footer ul { list-style: none; padding: 0; margin: 0; }
.sg-footer ul li { margin-bottom: 10px; }
.sg-footer ul li a {
  color: rgba(255,255,255,.62);
  font-size: .86rem;
  text-decoration: none;
  transition: color var(--transition), padding-left var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.sg-footer ul li a .bi { font-size: .7rem; color: var(--sg-red); }
.sg-footer ul li a:hover { color: #fff; padding-left: 4px; }
.sg-footer-social a {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  transition: all var(--transition);
  margin-right: 8px;
  text-decoration: none;
}
.sg-footer-social a:hover {
  background: var(--sg-red);
  border-color: var(--sg-red);
  color: #fff;
  transform: translateY(-3px);
}
.sg-footer-bottom {
  background: rgba(0,0,0,.3);
  padding: 18px 0;
  margin-top: 60px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.sg-footer-bottom p { margin: 0; font-size: .8rem; color: rgba(255,255,255,.45); }
.sg-footer-bottom a { color: var(--sg-red); text-decoration: none; }

/* ── Back to Top ──────────────────────────────────────────── */
#backToTop {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 48px; height: 48px;
  background: var(--sg-red);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 18px rgba(187,29,43,.5);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  z-index: 999;
}
#backToTop.visible { opacity: 1; visibility: visible; }
#backToTop:hover { background: var(--sg-red-dk); transform: translateY(-3px); }

/* ── Newsletter ───────────────────────────────────────────── */
.sg-newsletter {
  background: linear-gradient(135deg, var(--sg-black) 0%, #2d2628 100%);
  border-top: 4px solid var(--sg-red);
  border-bottom: 4px solid var(--sg-red);
}
.sg-newsletter .newsletter-form .input-group {
  max-width: 520px;
}
.sg-newsletter .form-control {
  border: 1.5px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.08);
  color: #fff;
  border-radius: 8px 0 0 8px !important;
  padding: 14px 18px;
}
.sg-newsletter .form-control::placeholder { color: rgba(255,255,255,.4); }
.sg-newsletter .form-control:focus {
  background: rgba(255,255,255,.1);
  border-color: var(--sg-red);
  box-shadow: none;
  color: #fff;
}
.sg-newsletter .btn { border-radius: 0 8px 8px 0 !important; }

/* ── Animate on scroll ────────────────────────────────────── */
[data-aos] { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
[data-aos].aos-animate { opacity: 1; transform: none; }
[data-aos][data-delay="100"] { transition-delay: .1s; }
[data-aos][data-delay="200"] { transition-delay: .2s; }
[data-aos][data-delay="300"] { transition-delay: .3s; }
[data-aos][data-delay="400"] { transition-delay: .4s; }
[data-aos][data-delay="500"] { transition-delay: .5s; }

/* ── Utilities ────────────────────────────────────────────── */
.text-red { color: var(--sg-red) !important; }
.text-sg-gray { color: var(--sg-gray) !important; }
.bg-sg-red { background: var(--sg-red) !important; }
.bg-sg-black { background: var(--sg-black) !important; }
.border-sg { border-color: var(--sg-border) !important; }

/* Search & Filter Bar */
.sg-filter-bar {
  background: var(--sg-light);
  border: 1px solid var(--sg-border);
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 36px;
}
.sg-filter-bar .form-control,
.sg-filter-bar .form-select {
  border: 1.5px solid var(--sg-border);
  border-radius: var(--radius);
  font-size: .88rem;
  padding: 10px 14px;
}
.sg-filter-bar .form-control:focus,
.sg-filter-bar .form-select:focus {
  border-color: var(--sg-red);
  box-shadow: 0 0 0 3px rgba(187,29,43,.1);
}
.sg-search-icon {
  background: var(--sg-red);
  color: #fff;
  border: none;
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 10px 18px;
}

/* Compliance card */
.sg-compliance-card {
  background: #fff;
  border: 1px solid var(--sg-border);
  border-left: 4px solid var(--sg-red);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all var(--transition);
  margin-bottom: 16px;
}
.sg-compliance-card:hover { box-shadow: var(--shadow); transform: translateX(4px); }
.sg-compliance-card .doc-icon {
  width: 52px; height: 52px;
  background: rgba(187,29,43,.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sg-red);
  font-size: 1.4rem;
  flex-shrink: 0;
}
.sg-compliance-card h6 { font-weight: 700; color: var(--sg-black); margin-bottom: 4px; }
.sg-compliance-card p { color: var(--sg-gray); font-size: .82rem; margin: 0; }
.sg-compliance-card .btn-download {
  margin-left: auto;
  background: transparent;
  color: var(--sg-red);
  border: 1.5px solid var(--sg-red);
  border-radius: var(--radius);
  padding: 8px 16px;
  font-size: .8rem;
  font-weight: 600;
  flex-shrink: 0;
  text-decoration: none;
  transition: all var(--transition);
}
.sg-compliance-card .btn-download:hover { background: var(--sg-red); color: #fff; }

/* Tracking UI */
.sg-tracking-box {
  background: var(--sg-black);
  border-radius: 16px;
  padding: 40px;
  color: #fff;
}
.sg-tracking-box .form-control {
  background: rgba(255,255,255,.1);
  border: 1.5px solid rgba(255,255,255,.2);
  color: #fff;
  border-radius: 8px 0 0 8px !important;
  padding: 14px 18px;
  font-size: 1rem;
}
.sg-tracking-box .form-control::placeholder { color: rgba(255,255,255,.4); }
.sg-tracking-box .form-control:focus {
  background: rgba(255,255,255,.15);
  border-color: var(--sg-red);
  box-shadow: none;
  color: #fff;
}
.sg-tracking-result {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  padding: 28px;
  margin-top: 24px;
}

/* Responsive Tweaks */
@media (max-width: 992px) {
  .sg-navbar .nav-link { padding: 12px 16px !important; }
  .sg-navbar .nav-link::after { display: none; }
  .sg-stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .sg-stat-item:last-child { border-bottom: none; }
}
@media (max-width: 768px) {
  .sg-hero { min-height: 70vh; }
  .sg-hero-stats { gap: 20px; }
  .sg-section { padding: 60px 0; }
  .sg-form .form-card { padding: 24px; }
  .sg-tracking-box { padding: 24px; }
}
@media (max-width: 576px) {
  .rfq-steps { gap: 4px; }
  .rfq-step-label { display: none; }
  .sg-compliance-card { flex-direction: column; align-items: flex-start; }
  .sg-compliance-card .btn-download { margin-left: 0; }
}
