@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

/* =============================================
   DESIGN TOKENS — Untex Industrial Palette (Updated)
   ============================================= */
:root {
  --yellow: #EFC74C;
  --dark:   #111318;
  --dark2:  #1B1F27;
  --navy:   #0D1B2A;
  --white:  #FFFFFF;
  --light:  #F7F8FA;
  --gray:   #4B5563;
  --border: #E5E7EB;
}

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

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: #111318;
  background-color: var(--white);
}

h1,h2,h3,h4,h5,h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--dark);
  line-height: 1.15;
}

a { text-decoration: none; color: inherit; transition: all .25s; }
img { max-width: 100%; display: block; }

/* =============================================
   NAVBAR (Transparent to White on Scroll)
   ============================================= */
.site-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: transparent;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
}

.site-navbar.scrolled {
  background-color: var(--white);
  padding: 12px 0;
  box-shadow: 0 4px 25px rgba(0,0,0,0.05);
  border-bottom: 1px solid var(--border);
}

.site-navbar .navbar-brand {
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.navbar-logo {
  height: 45px;
  width: auto;
  transition: all 0.3s ease;
  filter: brightness(0) invert(1); /* White logo for dark background */
}

.site-navbar.scrolled .navbar-logo {
  height: 40px;
  filter: none; /* Original colors for white background */
}

.site-navbar .nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  padding: 10px 16px;
  text-transform: capitalize;
  transition: color 0.3s ease;
}

.site-navbar.scrolled .nav-link {
  color: #111318;
}

.site-navbar .nav-link:hover,
.site-navbar .nav-link.active,
.site-navbar.scrolled .nav-link:hover,
.site-navbar.scrolled .nav-link.active {
  color: var(--yellow);
}

/* Dropdown Styles */
.dropdown-menu {
  border: none;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  border-radius: 12px;
  padding: 12px;
  background-color: var(--white);
  margin-top: 10px;
}

.dropdown-item {
  border-radius: 8px;
  padding: 10px 18px;
  font-weight: 500;
  font-size: 0.95rem;
  color: #374151;
  transition: all 0.2s;
}

.dropdown-item:hover, .dropdown-item:focus {
  background-color: var(--light);
  color: var(--yellow);
}

.btn-quote {
  background-color: var(--yellow);
  color: var(--dark);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 11px 24px;
  border: none;
  border-radius: 4px;
  white-space: nowrap;
  display: inline-block;
  transition: all .25s;
}

.btn-quote:hover {
  background-color: #d4a72c;
  color: var(--dark);
}

/* =============================================
   HERO CAROUSEL
   ============================================= */
.hero-carousel {
  position: relative;
  height: 100vh;
  min-height: 600px;
  background-color: var(--dark);
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11,15,25,0.85) 0%, rgba(11,15,25,0.3) 100%);
}

.hero-body {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 18px;
}

.hero-title {
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 28px;
  line-height: 1.1;
}

.hero-desc {
  color: rgba(255,255,255,.8);
  font-size: 1.1rem;
  margin-bottom: 40px;
  max-width: 550px;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--yellow);
  color: var(--dark);
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 36px;
  border-radius: 6px;
}

.btn-hero:hover {
  background-color: var(--white);
  color: var(--dark);
}

/* Hero partner badge */
.hero-badge {
  position: absolute;
  bottom: 40px;
  right: 60px;
  z-index: 2;
  background-color: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  padding: 15px 25px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 8px;
}
.hero-badge span { color: var(--yellow); }

/* Custom Carousel Controls */
.carousel-control-prev, .carousel-control-next {
  width: 8%;
  opacity: 0.8;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 3rem;
  height: 3rem;
  background-color: rgba(255,255,255,0.1);
  border-radius: 50%;
  backdrop-filter: blur(5px);
  background-size: 50%;
  transition: background-color 0.3s;
}
.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
  background-color: var(--yellow);
}

/* =============================================
   ABOUT SECTION
   ============================================= */
.about-section {
  padding: 120px 0;
  background-color: var(--white);
}

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 15px;
}

.section-heading {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0;
}

.about-images {
  position: relative;
  padding-bottom: 40px;
}

.about-img-main {
  width: 75%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 12px;
}

.about-img-secondary {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  aspect-ratio: 0.9;
  object-fit: cover;
  border: 8px solid var(--white);
  border-radius: 16px;
}

.experience-badge {
  position: absolute;
  top: 30px;
  left: 30px;
  background-color: var(--yellow);
  color: var(--dark);
  padding: 20px 25px;
  text-align: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.experience-badge .num {
  font-size: 2.8rem;
  line-height: 1;
  display: block;
}

.experience-badge .lbl {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.feature-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.feature-icon {
  flex-shrink: 0;
  width: 55px;
  height: 55px;
  background-color: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--yellow);
  border-radius: 12px;
}

.feature-item h5 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark);
}

.feature-item p {
  font-size: 0.95rem;
  color: var(--gray);
  margin: 0;
}

.btn-outline-dark-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--dark);
  color: var(--dark);
  padding: 14px 32px;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 6px;
  background: transparent;
  transition: all .25s;
}

.btn-outline-dark-custom:hover {
  background-color: var(--dark);
  color: var(--white);
}

/* =============================================
   OUR IMPACT — Stats Section
   ============================================= */
.impact-section {
  padding: 120px 0;
  background-color: var(--light);
}

.impact-intro {
  margin-bottom: 70px;
}

.stat-item {
  padding: 35px 25px;
  border-left: 4px solid var(--yellow);
  background-color: var(--white);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray);
}

.premium-desc { color: var(--dark); }
.premium-desc.text-light-alt { color: rgba(255,255,255,0.8); }


/* =============================================
   NEW: EXACT DESIGN MOCKUP GRID
   ============================================= */
.product-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}

.product-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e1e4e8;
  border-radius: 50px;
  padding: 18px 20px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: #435263;
  background-color: var(--white);
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none !important;
}
.product-pill:hover {
  background-color: var(--light);
  border-color: var(--navy);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.04);
}
.product-pill-dark {
  border: 1px solid var(--dark);
  color: var(--dark);
}
.product-pill-dark:hover {
  background-color: var(--dark);
  color: var(--white);
}

.usage-grid-container {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0,0,0,0.06);
  background-color: var(--white);
  border: 1px solid #e1e4e8;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) {
  .usage-grid-container { grid-template-columns: repeat(4, 1fr); }
}

.usage-box {
  background-color: var(--white);
  transition: all 0.3s ease;
  aspect-ratio: 1.15;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-right: 1px solid #e1e4e8;
  border-bottom: 1px solid #e1e4e8;
}
.usage-grid-container > .usage-box:nth-child(4n) { border-right: none; }
.usage-grid-container > .usage-box:nth-last-child(-n+4) { border-bottom: none; }
@media (max-width: 767px) {
  .usage-grid-container > .usage-box:nth-child(2n) { border-right: none; }
  .usage-grid-container > .usage-box:nth-last-child(-n+2) { border-bottom: none; }
  .usage-grid-container > .usage-box:nth-last-child(3),
  .usage-grid-container > .usage-box:nth-last-child(4) { border-bottom: 1px solid #e1e4e8; }
}

.usage-box:hover {
  background-color: var(--light);
}
.usage-box i {
  color: var(--navy);
  font-size: 2.2rem;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}
.usage-box h6 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
  margin: 0;
}
.usage-box:hover i {
  transform: scale(1.1);
}

.usage-box.highlight {
  background-color: var(--yellow);
}
.usage-box.highlight i, .usage-box.highlight h6 {
  color: var(--dark);
}

.element-badge {
  width: 80px;
  height: 80px;
  border: 2px solid var(--dark);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--white);
  font-family: 'Outfit', sans-serif;
  line-height: 1;
  box-shadow: 0 10px 20px rgba(0,0,0,0.03);
}
.element-badge .num {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}
.element-badge .sym {
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark);
}


/* =============================================
   TEAM SECTION (Dark Background)
   ============================================= */
.team-section {
  background-color: var(--dark2);
  padding: 120px 0;
  color: var(--white);
}

.team-section .section-heading {
  color: var(--white);
}

.team-section .section-label {
  color: rgba(255,255,255,.5);
}

.team-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  filter: grayscale(40%);
  transition: filter .35s, transform 0.3s;
  border-radius: 12px;
}

.team-card:hover img {
  filter: grayscale(0%);
  transform: scale(1.02);
}

.team-card-info {
  padding: 18px 0;
}

.team-card-info h5 {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.team-card-info span {
  font-size: 0.85rem;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* =============================================
   REQUEST QUOTE / CONTACT
   ============================================= */
.quote-section {
  padding: 100px 0;
  background-color: var(--light);
}

.contact-info-block {
  background-color: var(--dark);
  padding: 60px 50px;
  height: 100%;
  color: var(--white);
  border-radius: 16px 0 0 16px;
}

.contact-info-block h2 {
  color: var(--white);
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.contact-info-block p {
  color: rgba(255,255,255,.65);
  margin-bottom: 45px;
  font-size: 1.05rem;
}

.contact-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  align-items: flex-start;
}

.contact-detail-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background-color: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  border-radius: 12px;
}

.contact-detail-text strong {
  display: block;
  color: var(--white);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.contact-detail-text span {
  color: rgba(255,255,255,.7);
  font-size: 0.95rem;
}

.quote-form-block {
  padding: 60px 50px;
  background-color: var(--white);
  height: 100%;
  border-radius: 0 16px 16px 0;
  box-shadow: 10px 0 40px rgba(0,0,0,0.03);
}

.quote-form-block h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 30px;
}

.quote-form-block .form-control,
.quote-form-block .form-select {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px 20px;
  background-color: var(--light);
  font-size: 0.95rem;
  box-shadow: none;
  transition: all 0.3s;
}

.quote-form-block .form-control:focus,
.quote-form-block .form-select:focus {
  border-color: var(--yellow);
  background-color: var(--white);
  box-shadow: 0 0 0 4px rgba(239, 199, 76, 0.1);
}

.btn-submit {
  background-color: var(--yellow);
  color: var(--dark);
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 40px;
  border: none;
  border-radius: 8px;
  transition: all .25s;
  cursor: pointer;
  width: 100%;
}

.btn-submit:hover {
  background-color: var(--dark);
  color: var(--white);
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background-color: var(--dark);
  padding: 100px 0 0;
  color: rgba(255,255,255,.65);
}

.footer-logo {
  display: block;
  margin-bottom: 25px;
}

.footer-logo-img {
  height: 55px;
  width: auto;
  filter: brightness(0) invert(1); /* Ensure it's white/visible on dark section */
}

.footer-col h5 {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--white);
  margin-bottom: 25px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 14px;
}

.footer-links a {
  color: rgba(255,255,255,.6);
  font-size: 0.95rem;
  transition: color .2s;
}

.footer-links a:hover {
  color: var(--yellow);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 80px;
  padding: 25px 0;
  font-size: 0.9rem;
  color: rgba(255,255,255,.8);
}

.footer-newsletter .form-control {
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  font-size: 0.9rem;
}
.footer-newsletter .form-control::placeholder {
  color: rgba(255,255,255,0.7);
}
.btn-yellow {
  background-color: var(--yellow) !important;
  color: var(--dark) !important;
  font-weight: 700;
  border: none;
  transition: all 0.3s;
}
.btn-yellow:hover {
  background-color: var(--white) !important;
  color: var(--dark) !important;
}

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.inner-hero {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  background-color: var(--dark);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  padding-top: 80px; /* Offset for fixed navbar */
}

.inner-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 19, 24, 0.75);
}

.inner-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.inner-hero-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 15px;
}

.breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
  justify-content: center;
  font-weight: 500;
  font-size: 0.95rem;
}

.breadcrumb-item a { color: rgba(255,255,255,.7); }
.breadcrumb-item a:hover { color: var(--yellow); }
.breadcrumb-item.active { color: var(--yellow); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.4); }

/* =============================================
   PREMIUM SECTION HEADERS (Visual Upgrade)
   ============================================= */
.premium-header {
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}
.premium-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  padding-bottom: 15px;
  margin-bottom: 40px;
}
.premium-topbar.dark-mode {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.premium-subtitle {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.premium-topbar.dark-mode .premium-subtitle {
  color: rgba(255,255,255,0.85);
}
.premium-badge {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 2px;
}
.premium-topbar.dark-mode .premium-badge {
  color: var(--white);
}

.premium-title {
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
  letter-spacing: -2px;
  margin: 0;
  display: inline-flex;
  align-items: flex-end;
}
.premium-title.text-white {
  color: var(--white) !important;
}
.premium-title-dot {
  display: inline-block;
  width: 14px;
  height: 14px;
  background-color: var(--yellow);
  margin-left: 8px;
  margin-bottom: 12px;
}
.premium-desc-box {
  border-left: 2px solid var(--yellow);
  padding-left: 24px;
}
.premium-desc {
  font-size: 1.15rem;
  color: #1F2937;
  margin-bottom: 25px;
  line-height: 1.6;
}
.premium-desc.text-light-alt {
  color: rgba(255,255,255,1);
}

.btn-pill {
  display: inline-flex;
  align-items: center;
  background-color: var(--white);
  color: var(--dark);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 8px 8px 8px 24px;
  border-radius: 50px;
  border: 1px solid var(--border);
  transition: all .3s ease;
}
.btn-pill:hover {
  background-color: var(--light);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  color: var(--dark);
}
.btn-pill-icon {
  width: 38px;
  height: 38px;
  background-color: var(--yellow);
  color: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 20px;
  font-size: 0.95rem;
  transition: transform .3s;
}
.btn-pill:hover .btn-pill-icon {
  transform: scale(1.1);
}

.bg-dotted {
  background-image: radial-gradient(rgba(0, 0, 0, 0.08) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
}

/* =============================================
   PREMIUM ARCHITECTURAL PRODUCT LISTING
   ============================================= */
.product-category-row {
  display: flex;
  flex-direction: column;
  gap: 30px;
  border-top: 2px solid var(--border);
  padding: 80px 0;
}
@media (min-width: 992px) {
  .product-category-row { flex-direction: row; gap: 80px; }
  .cat-header { width: 35%; align-self: flex-start; justify-content: flex-start; position: sticky; top: 100px; }
  .cat-items { width: 65%; }
}

.cat-badge {
  font-family: 'Outfit', sans-serif;
  font-size: 5rem;
  font-weight: 800;
  color: rgba(239, 199, 76, 0.25);
  line-height: 0.8;
  display: block;
  margin-bottom: -15px;
  position: relative;
  z-index: 1;
}

.cat-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.cat-desc {
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.6;
}

.item-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  cursor: pointer;
}
.cat-items > .item-row:first-child,
.cat-items > .accordion-item:first-child .item-row { 
  border-top: 1px solid rgba(0,0,0,0.08); 
}
.accordion-item + .accordion-item .item-row {
  border-top: none; 
}
.item-row:hover {
  border-bottom-color: var(--dark);
  background-color: var(--light);
  padding-left: 20px;
  padding-right: 20px;
}

.item-name {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  transition: color 0.3s;
}
.item-row:hover .item-name {
  color: var(--dark);
}

.item-cta {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.item-cta i {	
  color: var(--dark);
  font-size: 1.1rem;
  transition: transform 0.4s ease;
}
.item-row:hover .item-cta {
  background-color: var(--yellow);
  border-color: var(--yellow);
}
.item-row:hover .item-cta i {
  transform: rotate(-45deg);
}

/* =============================================
   CUSTOM TABS
   ============================================= */
.custom-tabs {
  border-bottom: 2px solid var(--border);
  gap: 15px;
  display: flex;
}
.custom-tabs .nav-link {
  color: var(--gray);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  border-radius: 0;
  padding: 15px 30px;
  border-bottom: 4px solid transparent;
  margin-bottom: -2px;
  background: none;
  transition: all 0.3s ease;
  position: relative;
}
.custom-tabs .nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 4px;
  background-color: var(--yellow);
  transition: width 0.3s ease;
  border-radius: 4px 4px 0 0;
}
.custom-tabs .nav-link.active {
  color: var(--dark) !important;
  background-color: var(--yellow) !important;
  border-bottom-color: var(--yellow);
}
.custom-tabs .nav-link.active::after {
  display: none; /* remove the underline if it's a pill background now */
}
.custom-tabs .nav-link:hover:not(.active) {
  color: var(--navy);
  background-color: var(--light);
}



.network-chain-section {
  padding: 60px 0;
  background: var(--white);
}
.network-chain img {
  max-width: 100%;
  height: auto;
  filter: grayscale(1);
  opacity: 0.8;
  transition: all 0.3s;
}
.network-chain img:hover {
  filter: grayscale(0);
  opacity: 1;
}

/* Values Redesign Implementation */
.values-redesign-section h3 {
  letter-spacing: -1px;
}
.value-box-clean {
  background: #FFF;
  border-radius: 12px;
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid var(--border);
  box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}
.value-box-clean:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.06);
  border-color: var(--yellow);
}
.value-box-clean .v-icon {
  width: 60px;
  height: 60px;
  line-height: 60px;
  background: var(--light);
  border-radius: 50%;
  margin: 0 auto;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.value-box-clean:hover .v-icon {
  background: var(--yellow);
}
.value-box-clean:hover .v-icon i {
  color: var(--white) !important;
}


/* =============================================
   PRODUCT ITEM ACCORDION (Products Page items)
   ============================================= */
.product-item-accordion .item-row:not(.collapsed) .item-name {
  color: var(--dark);
}
.product-item-accordion .item-row:not(.collapsed) .item-cta {
  background-color: var(--yellow);
  border-color: var(--yellow);
}
.product-item-accordion .item-row:not(.collapsed) .item-cta i {
  transform: rotate(90deg) !important;
}
.product-item-accordion .accordion-body {
  padding: 0 0 24px 0;
  color: var(--gray);
  font-size: 1.05rem;
  line-height: 1.6;
}

/* =============================================
   CUSTOM ACCORDION (Products Page categories - if used)
   ============================================= */
.custom-accordion .accordion-item {
  border: 1px solid var(--border);
  border-radius: 12px !important;
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}
.custom-accordion .accordion-button {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  padding: 24px 30px;
  background-color: var(--white);
  transition: all 0.3s;
}
.custom-accordion .accordion-button:not(.collapsed) {
  color: var(--dark);
  background-color: var(--light);
  box-shadow: inset 0 -1px 0 var(--border);
}
.custom-accordion .accordion-button:focus {
  box-shadow: none;
  border-color: rgba(0,0,0,.125);
}
.custom-accordion .accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230D1B2A'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
  transition: transform 0.3s ease;
}
.custom-accordion .accordion-body {
  padding: 30px;
  background-color: var(--white);
}
.custom-accordion .accordion-desc {
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px dashed var(--border);
}

/* =============================================
   UTILITY CLASSES & FIXES
   ============================================= */
.text-yellow { color: var(--yellow) !important; }
.bg-dark-custom { background-color: var(--dark) !important; }
.sec-py { padding-top: 100px; padding-bottom: 100px; }

/* Subpage content layouts */
.content-section {
  padding: 100px 0;
}
.content-text p {
  font-size: 1.05rem;
  color: var(--dark);
  margin-bottom: 1.5rem;
}
.content-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--dark);
}

@media (max-width: 991px) {
  .site-navbar {
    background-color: var(--white);
    padding: 12px 0;
  }
  .site-navbar .navbar-brand { color: var(--dark); }
  .site-navbar .nav-link { color: #374151; padding: 12px 0; border-bottom: 1px solid var(--border); }
  
  .contact-info-block { border-radius: 16px 16px 0 0; }
  .quote-form-block { border-radius: 0 0 16px 16px; }
}

/* -----------------------------------------
   CUSTOM LEAFLET OVERLAYS (Operations Maps)
----------------------------------------- */
.custom-map-overlay {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 320px;
  background-color: rgba(140, 130, 120, 0.95); /* A brownish tone from screenshot */
  z-index: 1000;
  color: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
  display: flex;
  flex-direction: column;
}

.custom-map-overlay img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 2px solid rgba(255,255,255,0.2);
}

.custom-map-overlay .info-content {
  padding: 20px;
}

.custom-map-overlay .info-content h5 {
  font-weight: 700;
  margin-bottom: 10px;
  font-family: 'Outfit', sans-serif;
}

.custom-map-overlay .close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #fff;
  color: #c00;
  border: none;
  font-weight: bold;
  font-size: 16px;
  border-radius: 3px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0,0,0,0.3);
  transition: background 0.2s;
}

.custom-map-overlay .close-btn:hover {
  background-color: #f0f0f0;
}

/* Journey / Timeline Section */
.timeline-container {
  max-width: 100%;
  overflow: hidden;
}
.timeline-scroll-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 20px 0;
}
.timeline-scroll-wrapper::-webkit-scrollbar {
  height: 6px;
}
.timeline-scroll-wrapper::-webkit-scrollbar-track {
  background: var(--light);
}
.timeline-scroll-wrapper::-webkit-scrollbar-thumb {
  background: var(--yellow);
  border-radius: 10px;
}
.timeline-img {
  min-width: 1200px; /* Force minimum width to ensure horizontal scroll is triggered on smaller screens */
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 991px) {
  .timeline-img {
    min-width: 1000px;
  }
}
