/* ==========================================================================
   I.J. Lynn & Sons Ltd — Custom Stylesheet
   Bootstrap 5.3 Enhancement Layer
   Version: 1.0 | Built: 2025
   ========================================================================== */

/* -------------------------------------------------------------------------
   1. CSS Custom Properties (Brand Tokens)
   -------------------------------------------------------------------------- */
:root {
  --ij-red:        #C8102E;
  --ij-red-dark:   #a50e24;
  --ij-black:      #0d0d0d;
  --ij-dark:       #111111;
  --ij-grey:       #6D6E71;
  --ij-light:      #f6f6f6;
  --ij-yellow:     #F5A623;
  --ij-white:      #ffffff;

  --font-heading:  "Arial Black", "Franklin Gothic Medium", Arial, sans-serif;
  --font-body:     Arial, Helvetica, sans-serif;

  --ease:          cubic-bezier(0.16, 1, 0.3, 1);
  --radius:        0px; /* brand = square */

  --section-pad:   5rem 0;
  --container-max: 1400px;
}

/* --------------------------------------------------------------------------
   2. Base & Typography
   -------------------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ij-black);
  background: var(--ij-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a   { text-decoration: none; color: inherit; }

::selection { background: var(--ij-red); color: #fff; }

.container-xl { max-width: var(--container-max); }

h1, h2, h3, h4, h5, h6,
.fw-black {
  font-family: var(--font-heading);
  font-weight: 900;
}

/* Eyebrow label */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ij-red);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: "";
  display: block;
  width: 2rem;
  height: 1.5px;
  background: var(--ij-red);
  flex-shrink: 0;
}
.eyebrow-center {
  justify-content: center;
}
.eyebrow-center::before { display: none; }

/* --------------------------------------------------------------------------
   3. Scroll Progress Bar
   -------------------------------------------------------------------------- */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0;
  background: var(--ij-red);
  z-index: 9999;
  transition: width 0.1s linear;
}

/* --------------------------------------------------------------------------
   4. Navigation
   -------------------------------------------------------------------------- */
#mainNav {
  padding: 5px 0;
  transition: all 0.5s var(--ease);
  z-index: 1000;
  background: rgba(10, 10, 10,0.4)
}
#mainNav.scrolled {
  background: rgba(10, 10, 10, 0.97) !important;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}

/* Brand */
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav-brand-text .brand-name {
  display: block;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.12em;
  line-height: 1.1;
}
.nav-brand-text .brand-sub {
  display: block;
  font-size: 0.5rem;
  color: var(--ij-red);
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

/* Nav links */
.navbar-nav .nav-link {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6) !important;
  padding: 0.25rem 0 !important;
  position: relative;
  transition: color 0.3s;
}
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1.5px;
  background: var(--ij-red);
  transition: width 0.35s var(--ease);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #fff !important;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 100%;
}

/* Dropdown */
.dropdown-menu {
  background: #111;
  border: none;
  border-top: 2px solid var(--ij-red);
  border-radius: 0;
  padding: 0;
  min-width: 220px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
  margin-top: 0.75rem !important;
}
.dropdown-item {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  padding: 0.7rem 1.2rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: all 0.25s;
}
.dropdown-item:last-child { border-bottom: none; }
.dropdown-item:hover,
.dropdown-item:focus {
  background: rgba(200,16,46,0.12);
  color: #fff;
  padding-left: 1.7rem;
}
.dropdown-item.active-sub {
  color: var(--ij-red) !important;
  background: rgba(200,16,46,0.08);
}

/* Nav CTA button */
.nav-phone {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.06em;
  transition: color 0.3s;
}
.nav-phone:hover { color: #fff; }

.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--ij-red);
  color: #fff !important;
  padding: 0.6rem 1.4rem;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 0;
  transition: all 0.3s;
  white-space: nowrap;
}
.btn-nav-cta::after { display: none !important; }
.btn-nav-cta:hover {
  background: var(--ij-red-dark) !important;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(200,16,46,0.4);
}

/* Toggler */
.navbar-toggler {
  border: none;
  padding: 0;
}
.navbar-toggler:focus { box-shadow: none; }
.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%28255,255,255,0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* --------------------------------------------------------------------------
   5. Buttons (Global)
   -------------------------------------------------------------------------- */
.btn-ij-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--ij-red);
  color: #fff;
  padding: 0.9rem 1.9rem;
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-ij-primary:hover {
  background: var(--ij-red-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(200,16,46,0.4);
}

.btn-ij-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--ij-black);
  padding: 0.9rem 1.9rem;
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1.5px solid var(--ij-black);
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-ij-outline:hover {
  background: var(--ij-black);
  color: #fff;
}

.btn-ij-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  color: var(--ij-red);
  padding: 0.9rem 1.9rem;
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-ij-white:hover {
  background: var(--ij-black);
  color: #fff;
  transform: translateY(-2px);
}

.btn-ij-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: rgba(255,255,255,0.7);
  padding: 0.9rem 1.9rem;
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-ij-ghost:hover {
  border-color: #fff;
  color: #fff;
  background: rgba(255,255,255,0.06);
}

/* --------------------------------------------------------------------------
   6. Hero — Homepage (Carousel)
   -------------------------------------------------------------------------- */
#hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  overflow: hidden;
}

.hero-carousel { height: 100%; }

.carousel-inner,
.carousel-item { height: 100%; }

.hero-slide {
  position: relative;
  height: 100%;
  background-size: cover;
  background-position: center;
  animation: kenBurns 14s ease-in-out infinite;
}
.carousel-item:nth-child(even) .hero-slide {
  animation-name: kenBurnsAlt;
}
@keyframes kenBurns {
  0%   { transform: scale(1); }
  100% { transform: scale(1.07); }
}
@keyframes kenBurnsAlt {
  0%   { transform: scale(1.07); }
  100% { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,10,10,0.97) 0%,
    rgba(10,10,10,0.55) 55%,
    rgba(10,10,10,0.2) 100%
  );
}

.hero-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding-bottom: 6rem;
}

.hero-content .hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(200,16,46,0.15);
  border: 1px solid rgba(200,16,46,0.35);
  padding: 0.5rem 1.1rem;
  margin-bottom: 1.25rem;
}
.hero-content .hero-tag span {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ij-red);
}
.hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 900;
  color: #fff;
  line-height: 0.93;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.hero-content h1 em {
  color: var(--ij-red);
  font-style: normal;
}
.hero-content .hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 2rem;
}
.hero-content .hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Carousel controls */
.carousel-control-prev,
.carousel-control-next {
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  top: auto;
  bottom: 6rem;
  transition: background 0.3s;
  opacity: 1;
}
.carousel-control-prev { right: 7rem; left: auto; }
.carousel-control-next { right: 2rem; }
.carousel-control-prev:hover,
.carousel-control-next:hover { background: var(--ij-red); }
.carousel-control-prev-icon,
.carousel-control-next-icon { width: 16px; height: 16px; }

/* Carousel indicators */
.carousel-indicators {
  justify-content: flex-start;
  left: 0;
  padding-left: 2.5rem;
  margin-bottom: 2rem;
}
.carousel-indicators [data-bs-target] {
  width: 32px;
  height: 2px;
  border: none;
  background: rgba(255,255,255,0.3);
  border-radius: 0;
  margin: 0 3px;
  transition: all 0.4s;
}
.carousel-indicators .active {
  background: var(--ij-red);
  width: 56px;
}

/* Hero scroll indicator */
.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.3);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero-scroll-hint .scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* --------------------------------------------------------------------------
   7. Page Hero (Inner Pages)
   -------------------------------------------------------------------------- */
.page-hero {
  position: relative;
  height: 72vh;
  min-height: 540px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  animation: kenBurns 14s ease-in-out infinite;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,10,10,0.97) 0%,
    rgba(10,10,10,0.55) 55%,
    rgba(10,10,10,0.2) 100%
  );
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 5rem;
  width: 100%;
}
.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.3s forwards;
}
.breadcrumb-nav a { color: rgba(255,255,255,0.4); transition: color 0.3s; }
.breadcrumb-nav a:hover { color: #fff; }
.breadcrumb-nav .sep { color: rgba(255,255,255,0.2); }
.breadcrumb-nav .current { color: var(--ij-red); }
.page-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(200,16,46,0.15);
  border: 1px solid rgba(200,16,46,0.35);
  padding: 0.5rem 1.1rem;
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.35s forwards;
}
.page-hero-badge span {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ij-red);
}
.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.5s forwards;
}
.page-hero-title em { color: var(--ij-red); font-style: normal; }
.page-hero-sub {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.7s forwards;
}
.page-hero-sub-line { width: 3rem; height: 1.5px; background: var(--ij-red); flex-shrink: 0; }
.page-hero-sub p {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  max-width: 540px;
  line-height: 1.75;
}

/* --------------------------------------------------------------------------
   8. Stats Bar
   -------------------------------------------------------------------------- */
.stats-bar { background: var(--ij-black); }
.stats-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.stat-item {
  text-align: center;
  padding: 2.25rem 1.5rem;
  border-right: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(200,16,46,0.06); }
.stat-number {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.stat-number em { color: var(--ij-red); font-style: normal; }
.stat-label {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-top: 0.3rem;
}

/* --------------------------------------------------------------------------
   9. Red Intro Band
   -------------------------------------------------------------------------- */
.intro-band { background: var(--ij-red); padding: 2rem 0; }
.intro-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.intro-band-inner p {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.25;
  max-width: 700px;
}

/* --------------------------------------------------------------------------
   10. About Split Section
   -------------------------------------------------------------------------- */
.about-split { padding: var(--section-pad); background: var(--ij-black); }
.about-img-wrap { position: relative; }
.about-img-main { width: 100%; height: 600px; object-fit: cover; display: block; }
.about-img-accent {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 220px;
  height: 165px;
  object-fit: cover;
  border: 5px solid var(--ij-black);
  box-shadow: 0 16px 50px rgba(0,0,0,0.4);
}
.about-text { padding-left: 2rem; }
.about-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.about-text h2 em { color: var(--ij-red); font-style: normal; }
.about-text p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}
.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
}
.pillar-item {
  padding: 1rem;
  background: rgba(0,0,0,1);
  border-left: 2px solid var(--ij-red);
}
.pillar-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.08em;
  margin-bottom: 0.25rem;
}
.pillar-item span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
}

/* --------------------------------------------------------------------------
   11. Red Marquee Ticker
   -------------------------------------------------------------------------- */
.marquee-band {
  background: var(--ij-red);
  padding: 0.9rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-block;
  animation: marqueeScroll 22s linear infinite;
}
@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  margin-right: 3rem;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
.marquee-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   12. Services Section
   -------------------------------------------------------------------------- */
.services-section { padding: var(--section-pad); background: var(--ij-black); }
.services-section .section-head { margin-bottom: 3.5rem; }
.services-section .section-head h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
}
.services-section .section-head h2 em { color: var(--ij-red); font-style: normal; }
.services-section .section-head p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.4);
  margin-top: 0.75rem;
}
.service-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: block;
}
.service-card-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
  display: block;
}
.service-card:hover .service-card-img { transform: scale(1.06); }
.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.3) 60%, transparent 100%);
  transition: background 0.4s;
}
.service-card:hover .service-card-overlay {
  background: linear-gradient(to top, rgba(200,16,46,0.9) 0%, rgba(10,10,10,0.4) 70%, transparent 100%);
}
.service-card-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.75rem;
}
.service-card-body .service-num {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ij-red);
  margin-bottom: 0.5rem;
  display: block;
  transition: color 0.3s;
}
.service-card:hover .service-num { color: rgba(255,255,255,0.7); }
.service-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}
.service-card-body p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}
.service-card-arrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ij-red);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.3s;
}
.service-card:hover .service-card-arrow { color: #fff; gap: 0.7rem; }

/* --------------------------------------------------------------------------
   13. Projects Section (Homepage Scroll)
   -------------------------------------------------------------------------- */
.projects-section { padding: var(--section-pad); }
.project-scroll-wrap {
  overflow-x: auto;
  padding-bottom: 1rem;
  scrollbar-width: thin;
  scrollbar-color: var(--ij-red) #f0f0f0;
}
.project-scroll-wrap::-webkit-scrollbar { height: 3px; }
.project-scroll-wrap::-webkit-scrollbar-track { background: #f0f0f0; }
.project-scroll-wrap::-webkit-scrollbar-thumb { background: var(--ij-red); }
.project-scroll-inner {
  display: flex;
  gap: 1.5rem;
  width: max-content;
}
.project-scroll-card {
  width: 360px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.project-scroll-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
  display: block;
}
.project-scroll-card:hover img { transform: scale(1.05); }
.project-scroll-body { padding: 1.25rem 0 0; }
.project-badge {
  display: inline-block;
  background: var(--ij-red);
  color: #fff;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  margin-bottom: 0.6rem;
}
.project-scroll-body h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 900;
  color: var(--ij-black);
  margin-bottom: 0.3rem;
}
.project-scroll-body .project-meta {
  font-size: 0.72rem;
  color: var(--ij-grey);
  display: flex;
  gap: 1rem;
}

/* --------------------------------------------------------------------------
   14. Fleet Carousel
   -------------------------------------------------------------------------- */
.fleet-section { padding: var(--section-pad); background: var(--ij-black); }
.fleet-section .section-head h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
}
.fleet-section .section-head h2 em { color: var(--ij-red); font-style: normal; }
.fleet-card { position: relative; overflow: hidden; }
.fleet-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
  display: block;
}
.fleet-card:hover img { transform: scale(1.05); }
.fleet-card-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
  padding: 1.5rem 1rem 0.75rem;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.05em;
}

/* --------------------------------------------------------------------------
   15. Why Choose Us
   -------------------------------------------------------------------------- */
.why-section { padding: var(--section-pad); }
.why-img-wrap { position: relative; }
.why-img-wrap img { width: 100%; height: 580px; object-fit: cover; display: block; }
.why-img-badge {
  position: absolute;
  top: 2rem; right: -2rem;
  background: var(--ij-red);
  color: #fff;
  padding: 1.5rem 2rem;
  text-align: center;
}
.why-img-badge .badge-big {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
}
.why-img-badge .badge-sm {
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.85;
}
.why-content { padding-left: 2rem; }
.why-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  color: var(--ij-black);
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.why-content h2 em { color: var(--ij-red); font-style: normal; }
.why-content > p {
  font-size: 0.92rem;
  color: var(--ij-grey);
  line-height: 1.85;
  margin-bottom: 2rem;
}
.why-items { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid #eee;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.why-item:hover {
  border-color: var(--ij-red);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.why-item .wi-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--ij-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.why-item:hover .wi-icon { background: rgba(200,16,46,0.08); }
.why-item h5 {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 900;
  margin-bottom: 0.25rem;
}
.why-item p { font-size: 0.75rem; color: var(--ij-grey); line-height: 1.5; margin: 0; }

/* --------------------------------------------------------------------------
   16. Testimonials
   -------------------------------------------------------------------------- */
.testimonials-section {
  padding: var(--section-pad);
  background: var(--ij-black);
}
.testimonials-section .section-head h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
}
.testimonials-section .section-head h2 em { color: var(--ij-red); font-style: normal; }
.testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 2rem 1.75rem;
  height: 100%;
  transition: border-color 0.3s, background 0.3s;
}
.testimonial-card:hover {
  border-color: rgba(200,16,46,0.3);
  background: rgba(200,16,46,0.04);
}
.stars {
  color: var(--ij-yellow);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}
.testimonial-card blockquote {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1.5rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--ij-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 900;
  color: #fff;
  flex-shrink: 0;
}
.author-info strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 900;
  color: #fff;
}
.author-info span { font-size: 0.68rem; color: var(--ij-red); }

/* --------------------------------------------------------------------------
   17. Client Ticker
   -------------------------------------------------------------------------- */
.clients-ticker {
  padding: 2.5rem 0;
  overflow: hidden;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  background: #fff;
}
.clients-ticker-inner {
  padding: 1rem 0 0;
  text-align: center;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ij-red);
  margin-bottom: 1.5rem;
}
.ticker-mask {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}
.ticker-track {
  display: flex;
  animation: tickerScroll 28s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker-item {
  flex-shrink: 0;
  padding: 0 2.5rem;
  border-right: 1px solid #eee;
  display: flex;
  align-items: center;
  min-height: 56px;
}
.ticker-item span {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ccc;
  white-space: nowrap;
  transition: color 0.3s;
}
.ticker-item:hover span { color: var(--ij-red); }

/* --------------------------------------------------------------------------
   18. Industries
   -------------------------------------------------------------------------- */
.industries-section { padding: var(--section-pad); background: var(--ij-light); }
.industries-section .section-head h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.02em;
}
.industries-section .section-head h2 em { color: var(--ij-red); font-style: normal; }
.industry-card {
  background: #fff;
  border-bottom: 3px solid transparent;
  padding: 2rem 1.75rem;
  height: 100%;
  transition: all 0.35s var(--ease);
}
.industry-card:hover {
  border-bottom-color: var(--ij-red);
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(0,0,0,0.1);
}
.industry-icon { font-size: 2rem; margin-bottom: 1rem; }
.industry-card h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
}
.industry-card p { font-size: 0.78rem; color: var(--ij-grey); line-height: 1.65; margin: 0; }

/* --------------------------------------------------------------------------
   19. Certifications Band
   -------------------------------------------------------------------------- */
.certs-band { background: var(--ij-red); padding: 1.75rem 0; }
.cert-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0 2rem;
  border-right: 1px solid rgba(255,255,255,0.2);
}
.cert-item:last-child { border-right: none; }
.cert-item .cert-icon { font-size: 1.5rem; color: #fff; }
.cert-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.05em;
}
.cert-item span { font-size: 0.65rem; color: rgba(255,255,255,0.7); }

/* --------------------------------------------------------------------------
   20. CTA Section
   -------------------------------------------------------------------------- */
.cta-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 55vh;
}
.cta-img {
  position: relative;
  overflow: hidden;
}
.cta-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
  display: block;
}
.cta-img:hover img { transform: scale(1.03); }
.cta-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.3);
}
.cta-text {
  background: var(--ij-black);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 4.5rem;
}
.cta-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.1rem;
}
.cta-text h2 em { color: var(--ij-red); font-style: normal; }
.cta-text p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 380px;
}
.cta-btns { display: flex; flex-direction: column; gap: 0.85rem; max-width: 280px; }

/* --------------------------------------------------------------------------
   21. Footer
   -------------------------------------------------------------------------- */
#footer { background: #060606; padding: 5rem 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.footer-brand .brand-name {
  display: block;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.12em;
  margin: 0.75rem 0 0.2rem;
}
.footer-brand .brand-sub {
  display: block;
  font-size: 0.55rem;
  color: var(--ij-red);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.footer-brand p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.8;
  max-width: 280px;
  margin-bottom: 1.5rem;
}
.footer-social { display: flex; gap: 0.5rem; }
.footer-social a {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  font-size: 0.75rem;
  font-weight: 700;
  transition: all 0.3s;
}
.footer-social a:hover { background: var(--ij-red); border-color: var(--ij-red); color: #fff; }
.footer-col h5 {
  font-family: var(--font-heading);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ij-red);
  margin-bottom: 1.5rem;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  transition: color 0.3s, padding-left 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.footer-col a::before {
  content: "";
  display: block;
  width: 10px; height: 1px;
  background: var(--ij-red);
  opacity: 0;
  flex-shrink: 0;
  transition: opacity 0.3s;
}
.footer-col a:hover { color: #fff; }
.footer-col a:hover::before { opacity: 1; }
.footer-contact p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
  margin-bottom: 0.65rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.footer-contact .ci { color: var(--ij-red); flex-shrink: 0; margin-top: 0.1rem; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.5rem 0;
}
.footer-bottom p { font-size: 0.7rem; color: rgba(255,255,255,0.2); margin: 0; }
.footer-bottom-links { display: flex; gap: 2rem; }
.footer-bottom-links a {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.2);
  transition: color 0.3s;
}
.footer-bottom-links a:hover { color: rgba(255,255,255,0.6); }

/* --------------------------------------------------------------------------
   22. About Page — Timeline
   -------------------------------------------------------------------------- */
.timeline-section { padding: var(--section-pad); background: var(--ij-light); }
.timeline { position: relative; }
.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 1px;
  background: var(--ij-red);
  transform: translateX(-50%);
}
.timeline-item { position: relative; margin-bottom: 3rem; }
.timeline-item::after { content: ""; display: table; clear: both; }
.timeline-dot {
  position: absolute;
  left: 50%;
  top: 1.5rem;
  width: 14px; height: 14px;
  background: var(--ij-red);
  border: 3px solid #fff;
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 1;
  box-shadow: 0 0 0 4px rgba(200,16,46,0.2);
}
.timeline-content {
  width: 44%;
  background: #fff;
  padding: 1.5rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  transition: box-shadow 0.3s;
}
.timeline-content:hover { box-shadow: 0 8px 36px rgba(0,0,0,0.12); }
.timeline-item:nth-child(odd) .timeline-content  { float: left; }
.timeline-item:nth-child(even) .timeline-content { float: right; }
.timeline-year {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--ij-red);
  margin-bottom: 0.25rem;
}
.timeline-content h4 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 900;
  margin-bottom: 0.4rem;
}
.timeline-content p { font-size: 0.8rem; color: var(--ij-grey); line-height: 1.6; margin: 0; }

/* --------------------------------------------------------------------------
   23. About Page — Values & Board
   -------------------------------------------------------------------------- */
.values-section { padding: var(--section-pad); }
.value-card {
  text-align: center;
  padding: 2.5rem 1.75rem;
  border: 1px solid #eee;
  height: 100%;
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}
.value-card::before {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--ij-red);
  transform: scaleX(0);
  transition: transform 0.35s var(--ease);
}
.value-card:hover { transform: translateY(-6px); box-shadow: 0 16px 50px rgba(0,0,0,0.1); }
.value-card:hover::before { transform: scaleX(1); }
.value-icon { font-size: 2.5rem; margin-bottom: 1.25rem; }
.value-card h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
}
.value-card p { font-size: 0.8rem; color: var(--ij-grey); line-height: 1.65; margin: 0; }

.board-section { padding: var(--section-pad); background: var(--ij-black); }
.board-section .section-head h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
}
.board-section .section-head h2 em { color: var(--ij-red); font-style: normal; }
.board-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 2rem 1.75rem;
  height: 100%;
  transition: all 0.35s var(--ease);
}
.board-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(200,16,46,0.3);
  transform: translateY(-4px);
}
.board-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--ij-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 1rem;
}

.ceo-img img{
  width: 90px; height: 90px; float:left;
  border-radius: 50%; margin-right: 20px;
}


.board-card h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 0.1rem;
}
.board-role { font-size: 0.7rem; color: var(--ij-red); font-weight: 700; margin-bottom: 0.75rem; display: block; }
.board-card p { font-size: 0.78rem; color: rgba(255,255,255,0.4); line-height: 1.65; margin: 0; }

/* --------------------------------------------------------------------------
   24. Projects Page — Filter & Grid
   -------------------------------------------------------------------------- */
.filter-bar {
  position: sticky;
  top: 70px;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 1rem 0;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.filter-btns {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.1rem;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1.5px solid #ddd;
  background: transparent;
  color: var(--ij-grey);
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 0;
}
.filter-btn .count {
  font-size: 0.58rem;
  background: #eee;
  color: var(--ij-grey);
  padding: 0.1rem 0.4rem;
  transition: all 0.3s;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--ij-red);
  border-color: var(--ij-red);
  color: #fff;
}
.filter-btn:hover .count,
.filter-btn.active .count {
  background: rgba(255,255,255,0.25);
  color: #fff;
}
.view-toggle { margin-left: auto; display: flex; gap: 0.35rem; }
.view-btn {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid #ddd;
  background: transparent;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--ij-grey);
  transition: all 0.3s;
  border-radius: 0;
}
.view-btn.active { background: var(--ij-black); border-color: var(--ij-black); color: #fff; }

.projects-count-bar {
  padding: 0.75rem 0;
  font-size: 0.72rem;
  color: var(--ij-grey);
  border-bottom: 1px solid #eee;
}
.projects-count-bar strong { color: var(--ij-black); }

.projects-grid { padding: 3rem 0 5rem; }
.project-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid #eee;
  transition: all 0.35s var(--ease);
}
.project-card:hover {
  border-color: transparent;
  box-shadow: 0 16px 50px rgba(0,0,0,0.12);
  transform: translateY(-4px);
}
.project-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
  display: block;
}
.project-card:hover img { transform: scale(1.05); }
.project-card-body { padding: 1.25rem; }
.project-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.6rem;
}
.project-card h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 900;
  margin-bottom: 0.35rem;
}
.project-card p { font-size: 0.78rem; color: var(--ij-grey); line-height: 1.6; margin: 0; }
.project-card-loc {
  font-size: 0.65rem;
  color: var(--ij-grey);
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

/* List view */
.project-card.list-view {
  display: grid;
  grid-template-columns: 280px 1fr;
}
.project-card.list-view img { height: 100%; min-height: 160px; }

/* --------------------------------------------------------------------------
   25. Contact Page
   -------------------------------------------------------------------------- */
.contact-band { background: var(--ij-red); padding: 2rem 0; }
.contact-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.2);
  transition: background 0.3s;
}
.contact-tile:last-child { border-right: none; }
.contact-tile:hover { background: rgba(255,255,255,0.08); }
.contact-tile .ct-icon { font-size: 1.75rem; color: #fff; margin-bottom: 0.5rem; }
.contact-tile strong { display: block; font-family: var(--font-heading); font-size: 0.75rem; font-weight: 900; color: #fff; letter-spacing: 0.08em; margin-bottom: 0.2rem; }
.contact-tile a { font-size: 0.8rem; color: rgba(255,255,255,0.75); transition: color 0.3s; }
.contact-tile a:hover { color: #fff; }

.contact-layout { padding: var(--section-pad); }
.contact-details-panel {
  background: var(--ij-black);
  padding: 3rem 2.5rem;
  height: 100%;
}
.contact-details-panel h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 0.5rem;
}
.contact-details-panel > p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 2rem;
}
.contact-detail-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.contact-detail-card:first-of-type { padding-top: 0; }
.contact-detail-card .cdc-icon {
  width: 44px; height: 44px;
  background: rgba(200,16,46,0.15);
  border: 1px solid rgba(200,16,46,0.25);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}
.contact-detail-card strong { display: block; font-family: var(--font-heading); font-size: 0.72rem; font-weight: 900; color: rgba(255,255,255,0.4); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.2rem; }
.contact-detail-card a,
.contact-detail-card span { font-size: 0.88rem; color: #fff; transition: color 0.3s; }
.contact-detail-card a:hover { color: var(--ij-red); }

.hours-table { width: 100%; font-size: 0.8rem; }
.hours-table td { padding: 0.35rem 0; color: rgba(255,255,255,0.4); }
.hours-table td:last-child { text-align: right; }
.hours-table .open  { color: #4ade80; font-weight: 700; }
.hours-table .emerg { color: var(--ij-yellow); font-weight: 700; }
.hours-table .closed { color: rgba(255,255,255,0.25); }

/* Contact form panel */
.contact-form-panel { padding: 0 0 0 2rem; }
.contact-form-panel h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
}
.contact-form-panel > p { font-size: 0.85rem; color: var(--ij-grey); margin-bottom: 2rem; }

.form-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ij-black);
  margin-bottom: 0.4rem;
  display: block;
}
.form-control,
.form-select {
  border: 1.5px solid #ddd;
  border-radius: 0;
  font-size: 0.88rem;
  padding: 0.75rem 1rem;
  color: var(--ij-black);
  background: #fff;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.form-control:focus,
.form-select:focus {
  border-color: var(--ij-red);
  box-shadow: 0 0 0 3px rgba(200,16,46,0.1);
  outline: none;
}
.form-control.is-invalid { border-color: var(--ij-red); }
.invalid-feedback { font-size: 0.7rem; color: var(--ij-red); }
.form-check-input:checked { background-color: var(--ij-red); border-color: var(--ij-red); }
.form-check-label { font-size: 0.82rem; }
.form-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
  background: rgba(74,222,128,0.06);
  border: 1.5px solid rgba(74,222,128,0.25);
}
.form-success .success-icon { font-size: 3rem; margin-bottom: 1rem; }
.form-success h4 { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 900; color: #166534; margin-bottom: 0.5rem; }
.form-success p { font-size: 0.85rem; color: #4ade80; margin: 0; }

/* Map section */
.location-section { padding: var(--section-pad); background: var(--ij-light); }
.map-placeholder {
  position: relative;
  height: 400px;
  background-image:url('../images/map.png');
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.map-pin {
  font-size: 3rem;
  animation: mapBounce 1.5s ease-in-out infinite;
  filter: drop-shadow(0 8px 16px rgba(200,16,46,0.5));
}
@keyframes mapBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}
.map-label {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  color: #fff;
  padding: 0.75rem 1.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   26. Service Pages
   -------------------------------------------------------------------------- */
.service-main { padding: var(--section-pad); }
.service-img-wrap { position: relative; }
.service-img-main { width: 100%; height: 580px; object-fit: cover; display: block; }
.service-img-accent {
  position: absolute;
  bottom: -2.5rem; right: -2.5rem;
  width: 240px; height: 180px;
  object-fit: cover;
  border: 5px solid #fff;
  box-shadow: 0 16px 50px rgba(0,0,0,0.18);
}
.service-img-tag {
  position: absolute;
  top: 2rem; left: 2rem;
  background: var(--ij-red);
  padding: 1.25rem 1.75rem;
  color: #fff;
}
.service-img-tag .tag-big { display: block; font-family: var(--font-heading); font-size: 2.2rem; font-weight: 900; line-height: 1; }
.service-img-tag .tag-sm { font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.8; }
.service-text-col h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.service-text-col h2 em { color: var(--ij-red); font-style: normal; }
.service-text-col .intro-p { font-size: 1.05rem; line-height: 1.85; margin-bottom: 1.25rem; }
.service-text-col .body-p { font-size: 0.92rem; color: var(--ij-grey); line-height: 1.85; margin-bottom: 1.25rem; }
.service-divider { width: 100%; height: 2px; background: var(--ij-red); margin: 2rem 0; }
.services-list-title {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.services-list-title::before { content: ""; display: block; width: 1.5rem; height: 2px; background: var(--ij-red); }
.services-list-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem 0.75rem; margin-bottom: 2.5rem; }
.service-list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: var(--ij-black);
  line-height: 1.5;
  padding: 0.5rem 0;
  border-bottom: 1px solid #f0f0f0;
}
.service-list-item::before {
  content: "";
  display: block;
  width: 6px; height: 6px;
  background: var(--ij-red);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.45rem;
}

.why-band-section { padding: var(--section-pad); background: var(--ij-light); }
.why-band-card {
  background: #fff;
  padding: 2rem 1.75rem;
  height: 100%;
  border-bottom: 3px solid transparent;
  transition: all 0.35s var(--ease);
}
.why-band-card:hover {
  border-bottom-color: var(--ij-red);
  transform: translateY(-5px);
  box-shadow: 0 16px 50px rgba(0,0,0,0.1);
}
.why-band-card .wbc-icon { font-size: 2rem; margin-bottom: 1rem; }
.why-band-card h4 { font-family: var(--font-heading); font-size: 0.95rem; font-weight: 900; margin-bottom: 0.5rem; }
.why-band-card p { font-size: 0.78rem; color: var(--ij-grey); line-height: 1.65; margin: 0; }

.other-services-section { padding: var(--section-pad); background: var(--ij-black); }
.other-services-section .section-head h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
}
.other-service-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 1.75rem 1.5rem;
  height: 100%;
  transition: all 0.35s var(--ease);
  display: block;
}
.other-service-card:hover {
  background: rgba(200,16,46,0.12);
  border-color: rgba(200,16,46,0.3);
  transform: translateY(-4px);
}
.other-service-card .osc-icon { font-size: 1.75rem; margin-bottom: 0.9rem; }
.other-service-card h4 { font-family: var(--font-heading); font-size: 0.88rem; font-weight: 900; color: #fff; margin-bottom: 0.35rem; letter-spacing: -0.01em; }
.other-service-card p { font-size: 0.72rem; color: rgba(255,255,255,0.4); line-height: 1.5; margin-bottom: 0.75rem; }
.other-service-card .osc-arrow { font-size: 0.7rem; color: var(--ij-red); display: block; transition: transform 0.3s; }
.other-service-card:hover .osc-arrow { transform: translateX(4px); }

/* --------------------------------------------------------------------------
   27. Floating Elements
   -------------------------------------------------------------------------- */
#back-to-top {
  position: fixed;
  bottom: 7rem; right: 2rem;
  width: 46px; height: 46px;
  background: var(--ij-red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s var(--ease);
  z-index: 900;
  font-size: 1.2rem;
  border: none;
}
#back-to-top.visible { opacity: 1; transform: translateY(0); }
#back-to-top:hover { background: var(--ij-red-dark); }

#whatsapp-float {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 54px; height: 54px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  box-shadow: 0 4px 24px rgba(37,211,102,0.45);
  transition: transform 0.3s;
}
#whatsapp-float:hover { transform: scale(1.1); }
#whatsapp-float svg { width: 28px; height: 28px; fill: #fff; }

/* --------------------------------------------------------------------------
   28. AOS (Animate on Scroll)
   -------------------------------------------------------------------------- */
[data-aos] {
  opacity: 0;
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
[data-aos="fade-up"]    { transform: translateY(40px); }
[data-aos="fade-right"] { transform: translateX(-44px); }
[data-aos="fade-left"]  { transform: translateX(44px); }
[data-aos="zoom-in"]    { transform: scale(0.92); }
[data-aos].aos-in       { opacity: 1; transform: none; }

/* --------------------------------------------------------------------------
   29. Keyframe Animations
   -------------------------------------------------------------------------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------------------
   30. Responsive — Tablet (≤992px)
   -------------------------------------------------------------------------- */
@media (max-width: 992px) {
  .cta-section        { grid-template-columns: 1fr; }
  .cta-img            { height: 360px; }
  .cta-img img        { position: relative; }
  .cta-text           { padding: 4rem 2.5rem; }
  .cta-btns           { max-width: 100%; flex-direction: row; flex-wrap: wrap; }
  .footer-grid        { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .about-text         { padding-left: 0; margin-top: 3rem; }
  .about-img-accent   { display: none; }
  .service-img-main   { height: 440px; }
  .service-img-accent { display: none; }
  .why-content        { padding-left: 0; margin-top: 3rem; }
  .why-img-badge      { right: 0; }
  .timeline::before   { left: 2rem; }
  .timeline-dot       { left: 2rem; }
  .timeline-content   { width: calc(100% - 5rem); float: right !important; margin-left: 5rem; }
  .stats-bar-grid     { grid-template-columns: repeat(2, 1fr); }
}

/* --------------------------------------------------------------------------
   31. Responsive — Mobile (≤768px)
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
  :root { --section-pad: 3rem 0; }
  .hero-content h1    { font-size: clamp(2.5rem, 10vw, 4rem); }
  .page-hero          { height: 60vh; min-height: 420px; }
  .page-hero-title    { font-size: clamp(2.2rem, 8vw, 3.5rem); }
  .about-pillars      { grid-template-columns: 1fr; }
  .why-items          { grid-template-columns: 1fr; }
  .services-list-grid { grid-template-columns: 1fr; }
  .footer-grid        { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom      { flex-direction: column; text-align: center; }
  .stats-bar-grid     { grid-template-columns: repeat(2, 1fr); }
  .cert-item          { padding: 0 1rem; }
  .cert-item span     { display: none; }
  .certs-band .d-flex { flex-wrap: wrap; gap: 1rem; justify-content: center; }
  .carousel-control-prev,
  .carousel-control-next { display: none; }
  .hero-btns          { flex-direction: column; }
  .hero-btns .btn-ij-primary,
  .hero-btns .btn-ij-ghost { width: 100%; justify-content: center; }
  .contact-form-panel { padding-left: 0; margin-top: 2rem; }
  .intro-band-inner   { flex-direction: column; text-align: center; }
}

/* --------------------------------------------------------------------------
   32. Accessibility & Print
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

:focus-visible {
  outline: 2px solid var(--ij-red);
  outline-offset: 3px;
}

@media print {
  #mainNav, #back-to-top, #whatsapp-float, .marquee-band,
  .clients-ticker, #scroll-progress { display: none !important; }
  body { font-size: 12pt; }
  .page-hero { height: auto; min-height: 0; }
  .page-hero-bg { position: static; animation: none; }
}

/* ---- Counter & Stat Helpers ---- */

/* Counter suffix — sits inline next to the animated number */
.stat-number {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0;
}
.stat-num-suffix {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--ij-red);
  line-height: 1;
}
.stat-static {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--ij-red);
  line-height: 1;
}
[data-counter] {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--ij-white);
  line-height: 1;
}
.dropdown-toggle::after{

  border: unset;
}