/* ==========================================================================
   HIRA FERRO ALLOYS LTD. - OFFICIAL WEBSITE STYLESHEET
   Color Theme: Black (#0B0C10, #121214), White (#FFFFFF, #F8F9FA), Red (#E60000, #FF1A1A, #C8102E)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. ROOT VARIABLES & DESIGN SYSTEM
   -------------------------------------------------------------------------- */
:root {
  --primary-red: #E60000;
  --primary-red-hover: #C8102E;
  --primary-red-glow: rgba(230, 0, 0, 0.4);
  --accent-red-bright: #FF2E2E;
  --dark-bg: #0A0A0C;
  --dark-card: #121318;
  --dark-border: #232530;
  --text-main: #FFFFFF;
  --text-muted: #94A3B8;
  --text-dark: #1E293B;
  --light-bg: #F8F9FA;
  --light-card: #FFFFFF;
  --border-light: #E2E8F0;
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition-fast: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --box-shadow-red: 0 10px 30px -10px rgba(230, 0, 0, 0.35);
  --box-shadow-dark: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
}

body {
  background-color: var(--dark-bg);
  color: var(--text-main);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Typography Base */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #0A0A0C;
}
::-webkit-scrollbar-thumb {
  background: var(--primary-red);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-red-hover);
}

/* --------------------------------------------------------------------------
   2. TOP BAR & NAVBAR (BLACK, WHITE, RED THEME)
   -------------------------------------------------------------------------- */
/* Sticky Header Wrapper Container (Always Visible on Scroll Down & Scroll Up) */
.sticky-header-wrapper {
  position: sticky;
  top: 0;
  z-index: 1040;
  width: 100%;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.7);
}

/* Top Header Contact & Social Bar */
.top-header {
  background: #000000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px 0;
  position: relative;
  z-index: 1045;
}

.top-contact-info a {
  color: #D1D5DB;
  text-decoration: none;
  font-size: 0.88rem;
  transition: var(--transition-fast);
}

.top-contact-info a:hover {
  color: var(--primary-red);
}

.top-contact-info i {
  color: var(--primary-red);
  margin-right: 6px;
}

.header-logo-container {
  text-align: center;
}

.header-logo-container img {
  max-height: 55px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.15));
  transition: var(--transition-bounce);
}

.header-logo-container img:hover {
  transform: scale(1.03);
}

.top-social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: #FFFFFF;
  margin-left: 8px;
  font-size: 0.9rem;
  transition: var(--transition-fast);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.top-social-links a:hover {
  background: var(--primary-red);
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(230, 0, 0, 0.5);
  border-color: var(--primary-red);
}

/* Bottom Main Navigation Bar */
.main-navbar {
  background: rgba(18, 19, 24, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--primary-red);
  padding: 0;
  position: relative;
  z-index: 1040;
}

.main-navbar .nav-link {
  color: #E2E8F0 !important;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  padding: 18px 10px !important;
  position: relative;
  transition: var(--transition-fast);
  white-space: nowrap;
}

.main-navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: var(--primary-red);
  transition: var(--transition-fast);
  transform: translateX(-50%);
}

.main-navbar .nav-link:hover,
.main-navbar .nav-link.active {
  color: var(--primary-red) !important;
  background: rgba(230, 0, 0, 0.05);
}

.main-navbar .nav-link:hover::after,
.main-navbar .nav-link.active::after {
  width: 100%;
}

/* Navbar Dropdown Menu */
.main-navbar .dropdown-menu {
  background: #14161E;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 3px solid var(--primary-red);
  border-radius: 0 0 8px 8px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.7);
  padding: 8px 0;
  min-width: 250px;
  margin-top: 0;
}

.main-navbar .dropdown-item {
  color: #CBD5E1;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 10px 18px;
  transition: var(--transition-fast);
}

.main-navbar .dropdown-item:hover,
.main-navbar .dropdown-item:focus {
  background: rgba(230, 0, 0, 0.12);
  color: #FFFFFF;
  padding-left: 22px;
}

.main-navbar .dropdown-item.active,
.main-navbar .dropdown-item:active {
  background: var(--primary-red);
  color: #FFFFFF;
}

.main-navbar .dropdown-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 6px 0;
}

/* Open dropdown on hover for desktop */
@media (min-width: 992px) {
  .main-navbar .dropdown:hover > .dropdown-menu,
  .navbar .dropdown:hover > .dropdown-menu {
    display: block;
    animation: fadeInDown 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .main-navbar .nav-item.dropdown > .dropdown-toggle::after,
  .navbar .nav-item.dropdown > .dropdown-toggle::after {
    margin-left: 5px;
    vertical-align: 0.15em;
  }
}

/* Responsive adjustments to fit 8 links + 1 button seamlessly */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .main-navbar .nav-link {
    font-size: 0.74rem !important;
    padding: 16px 5px !important;
    letter-spacing: 0.1px;
  }
  .main-navbar .btn-red-action {
    font-size: 0.78rem !important;
    padding: 8px 12px !important;
    letter-spacing: 0.4px;
  }
}

@media (min-width: 1200px) and (max-width: 1399.98px) {
  .main-navbar .nav-link {
    font-size: 0.81rem !important;
    padding: 18px 8px !important;
  }
  .main-navbar .btn-red-action {
    font-size: 0.84rem !important;
    padding: 9px 18px !important;
  }
}

.btn-red-action {
  background: linear-gradient(135deg, var(--primary-red), #B30000);
  color: #FFFFFF !important;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 10px 24px;
  border-radius: 4px;
  border: none;
  box-shadow: var(--box-shadow-red);
  transition: var(--transition-bounce);
  position: relative;
  overflow: hidden;
}

.btn-red-action:hover {
  background: linear-gradient(135deg, #FF1A1A, var(--primary-red));
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(230, 0, 0, 0.6);
  color: #FFFFFF;
}

.btn-red-outline {
  background: transparent;
  color: #FFFFFF;
  border: 2px solid var(--primary-red);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 10px 24px;
  border-radius: 4px;
  transition: var(--transition-fast);
}

.btn-red-outline:hover {
  background: var(--primary-red);
  color: #FFFFFF;
  box-shadow: var(--box-shadow-red);
}

/* --------------------------------------------------------------------------
   3. HERO CAROUSEL (4 SLIDES WITH INDUSTRIAL AESTHETIC)
   -------------------------------------------------------------------------- */
.hero-carousel {
  position: relative;
  background: #000;
}

/* --------------------------------------------------------------------------
   3. HERO CAROUSEL (4 SLIDERS WITH INDUSTRIAL AESTHETICS)
   -------------------------------------------------------------------------- */
.hero-carousel {
  position: relative;
  background: #000;
}

.hero-carousel .carousel-item {
  height: 85vh;
  min-height: 560px;
  position: relative;
}

.hero-slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.55) contrast(1.15);
  transform: scale(1);
  transition: transform 7s ease-out;
}

.hero-carousel .carousel-item.active .hero-slide-bg {
  transform: scale(1.08);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg, 
    rgba(10, 10, 12, 0.92) 0%, 
    rgba(10, 10, 12, 0.65) 50%, 
    rgba(10, 10, 12, 0.3) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(230, 0, 0, 0.15);
  border: 1px solid var(--primary-red);
  color: #FF6B6B;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  color: #FFFFFF;
  margin-bottom: 20px;
  text-shadow: 0 4px 15px rgba(0,0,0,0.8);
}

.hero-title span {
  color: var(--primary-red);
}

.hero-description {
  font-size: 1.15rem;
  color: #E2E8F0;
  max-width: 680px;
  margin-bottom: 32px;
  font-weight: 400;
  text-shadow: 0 2px 10px rgba(0,0,0,0.9);
}

.carousel-control-prev,
.carousel-control-next {
  width: 60px;
  height: 60px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.8;
  transition: var(--transition-fast);
  margin: 0 20px;
  z-index: 5;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: var(--primary-red);
  opacity: 1;
  border-color: var(--primary-red);
}

.carousel-indicators [data-bs-target] {
  width: 40px;
  height: 4px;
  border-radius: 2px;
  background-color: rgba(255, 255, 255, 0.4);
  border: none;
  margin: 0 5px;
  transition: var(--transition-fast);
}

.carousel-indicators .active {
  background-color: var(--primary-red);
  width: 60px;
}

/* --------------------------------------------------------------------------
   4. FEATURE CARDS (HALF HERO SLIDER & HALF ABOUT SECTION OVERLAP)
   -------------------------------------------------------------------------- */
.feature-cards-wrapper {
  margin-top: -110px;
  margin-bottom: -50px;
  position: relative;
  z-index: 35;
}

.feature-card {
  background: linear-gradient(145deg, #181922, #0E0F14);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 4px solid var(--primary-red);
  border-radius: 12px;
  padding: 32px 24px 28px;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(230, 0, 0, 0.18), transparent 70%);
  opacity: 0;
  transition: var(--transition-fast);
}

.feature-card:hover {
  transform: translateY(-12px);
  background: linear-gradient(145deg, #1F202B, #121319);
  border-color: var(--primary-red);
  box-shadow: 0 25px 50px rgba(230, 0, 0, 0.35);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card-number {
  position: absolute;
  top: 15px;
  right: 18px;
  font-size: 2.2rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.08);
  font-family: var(--font-heading);
  line-height: 1;
  pointer-events: none;
  transition: var(--transition-fast);
}

.feature-card:hover .feature-card-number {
  color: rgba(230, 0, 0, 0.25);
  transform: scale(1.1);
}

.feature-icon-box {
  width: 62px;
  height: 62px;
  border-radius: 14px;
  background: rgba(230, 0, 0, 0.12);
  border: 1px solid rgba(230, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-red);
  font-size: 1.7rem;
  margin-bottom: 22px;
  transition: var(--transition-bounce);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.feature-card:hover .feature-icon-box {
  background: var(--primary-red);
  color: #FFFFFF;
  transform: scale(1.1) rotate(-6deg);
  box-shadow: 0 10px 25px rgba(230, 0, 0, 0.5);
}

.feature-card h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 12px;
  padding-right: 35px;
  transition: var(--transition-fast);
}

.feature-card:hover h4 {
  color: #FF4D4D;
}

.feature-card p {
  color: #CBD5E1;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.feature-card-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.feature-redirect-link {
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  text-decoration: none;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.feature-card:hover .feature-redirect-link {
  color: var(--primary-red);
}

.feature-redirect-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  transition: var(--transition-bounce);
  text-decoration: none;
}

.feature-card:hover .feature-redirect-btn {
  background: var(--primary-red);
  color: #FFFFFF;
  border-color: var(--primary-red);
  transform: rotate(45deg);
  box-shadow: 0 4px 15px rgba(230, 0, 0, 0.6);
}

/* Entry Animation Utility */
.animate-entry {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-entry.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger Delay */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* --------------------------------------------------------------------------
   5. ABOUT US SECTION (COMPLETE LUXURY REDESIGN)
   -------------------------------------------------------------------------- */
#about {
  background: #FAFAFC !important;
  color: #0F172A !important;
  position: relative;
  border-top: 1px solid #E2E8F0;
  border-bottom: 1px solid #E2E8F0;
  padding: 120px 0 100px !important;
  overflow: hidden;
}

/* Background Ambient Lighting */
#about::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(230, 0, 0, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

#about::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

#about .section-tag {
  color: var(--primary-red);
  background: rgba(230, 0, 0, 0.08);
  border: 1px solid rgba(230, 0, 0, 0.2);
  padding: 8px 22px;
  border-radius: 30px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.84rem;
  margin-bottom: 18px;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(230, 0, 0, 0.08);
}

.text-gradient-red {
  background: linear-gradient(135deg, #E60000, #990000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#about .section-heading {
  font-size: clamp(2.4rem, 4.2vw, 3.4rem);
  font-weight: 900;
  color: #0F172A !important;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

#about .section-subheading {
  font-size: 1.32rem;
  color: var(--primary-red-hover);
  font-weight: 700;
  margin-bottom: 24px;
}

#about .about-lead-text {
  color: #334155;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

#about .about-secondary-text {
  color: #64748B;
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 28px;
}

/* Executive Callout Quote Box */
.about-quote-box {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-left: 5px solid var(--primary-red);
  padding: 24px 28px;
  border-radius: 12px;
  margin-bottom: 35px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  position: relative;
  transition: all 0.35s ease;
}

.about-quote-box:hover {
  border-left-color: #FF1A1A;
  box-shadow: 0 15px 40px rgba(230, 0, 0, 0.12);
  transform: translateX(5px);
}

.quote-icon {
  font-size: 1.6rem;
  color: var(--primary-red);
  margin-bottom: 8px;
}

.quote-text {
  font-style: italic;
  color: #1E293B;
  font-size: 1.02rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Stat Box Grid */
.stat-box {
  background: #FFFFFF !important;
  border: 1px solid #E2E8F0 !important;
  border-top: 3px solid var(--primary-red) !important;
  padding: 22px 18px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
}

.stat-box:hover {
  transform: translateY(-6px);
  border-top-color: #FF1A1A !important;
  box-shadow: 0 18px 35px rgba(230, 0, 0, 0.15) !important;
}

.stat-number {
  font-size: 2.3rem;
  font-weight: 900;
  color: #0F172A !important;
  font-family: var(--font-heading);
  line-height: 1.1;
}

.stat-label {
  font-size: 0.82rem;
  color: #64748B !important;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 6px;
}

/* Single ISO Certification Banner */
.iso-banner-card {
  background: linear-gradient(135deg, var(--primary-red), #800000) !important;
  border-radius: 12px;
  padding: 22px 28px;
  color: #FFFFFF !important;
  box-shadow: var(--box-shadow-red);
  transition: var(--transition-fast);
}

.iso-banner-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(230, 0, 0, 0.4);
}

/* Image Container & Floating Badges */
.about-image-container {
  position: relative;
  padding-bottom: 30px;
  padding-right: 20px;
}

.about-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  border: 5px solid #FFFFFF;
  outline: 1px solid #E2E8F0;
}

.about-image-wrapper img {
  width: 100%;
  height: auto;
  min-height: 480px;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-image-wrapper:hover img {
  transform: scale(1.06);
}

/* 30+ Years Experience Floating Badge */
.experience-floating-badge {
  position: absolute;
  bottom: 0;
  left: 20px;
  background: linear-gradient(135deg, #0F172A, #1E293B);
  color: #FFFFFF;
  padding: 22px 26px;
  border-radius: 14px;
  border-left: 5px solid var(--primary-red);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 18px;
  z-index: 10;
  max-width: 330px;
  backdrop-filter: blur(10px);
  transition: var(--transition-bounce);
}

.experience-floating-badge:hover {
  transform: scale(1.04) translateY(-3px);
  box-shadow: 0 25px 50px rgba(230, 0, 0, 0.4);
}

.exp-badge-number {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  color: var(--primary-red);
  font-family: var(--font-heading);
  text-shadow: 0 0 15px rgba(230, 0, 0, 0.4);
}

.exp-badge-text h6 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 2px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.exp-badge-text p {
  font-size: 0.82rem;
  color: #94A3B8 !important;
  margin-bottom: 0;
}

/* Green Solar Floating Badge */
.green-floating-badge {
  position: absolute;
  top: 25px;
  right: 0;
  background: #FFFFFF;
  color: #0F172A;
  padding: 12px 22px;
  border-radius: 30px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.15);
  border: 1px solid #E2E8F0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.green-floating-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(16, 185, 129, 0.25);
}

/* --------------------------------------------------------------------------
   SIMPLE, PROFESSIONAL & CREATIVE 3 PILLAR CARDS (QUALITY, SUSTAINABILITY, EXPERIENCE)
   -------------------------------------------------------------------------- */
.pillar-card-redesign {
  background: #FFFFFF;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  padding: 30px 26px 22px 26px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.pillar-card-redesign::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: transparent;
  transition: background 0.3s ease;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

.pillar-card-redesign.card-quality-theme::before {
  background: var(--primary-red);
}

.pillar-card-redesign.card-sustainability-theme::before {
  background: #10B981;
}

.pillar-card-redesign.card-experience-theme::before {
  background: #0F172A;
}

.pillar-card-redesign:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.09), 0 2px 6px rgba(0, 0, 0, 0.04);
  border-color: rgba(15, 23, 42, 0.15);
}

.pillar-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.pillar-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  transition: transform 0.3s ease;
}

.pillar-card-redesign:hover .pillar-icon-box {
  transform: scale(1.08);
}

.pillar-icon-box.box-red {
  background: rgba(220, 38, 38, 0.08);
  color: var(--primary-red);
  border: 1px solid rgba(220, 38, 38, 0.18);
}

.pillar-icon-box.box-green {
  background: rgba(16, 185, 129, 0.08);
  color: #10B981;
  border: 1px solid rgba(16, 185, 129, 0.18);
}

.pillar-icon-box.box-dark {
  background: rgba(15, 23, 42, 0.06);
  color: #0F172A;
  border: 1px solid rgba(15, 23, 42, 0.15);
}

.pillar-badge {
  font-size: 0.76rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 30px;
  letter-spacing: 0.3px;
  display: inline-flex;
  align-items: center;
}

.badge-red {
  background: #FEF2F2;
  color: #B91C1C;
  border: 1px solid #FEE2E2;
}

.badge-green {
  background: #ECFDF5;
  color: #047857;
  border: 1px solid #D1FAE5;
}

.badge-dark {
  background: #F1F5F9;
  color: #334155;
  border: 1px solid #E2E8F0;
}

.pillar-card-body {
  margin-bottom: 20px;
  flex-grow: 1;
}

.pillar-card-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.pillar-card-desc {
  color: #475569;
  font-size: 0.96rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.pillar-card-footer {
  border-top: 1px solid #F1F5F9;
  padding-top: 14px;
  margin-top: auto;
}

.pillar-tag-text {
  font-size: 0.82rem;
  font-weight: 700;
  color: #64748B;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
}

/* --------------------------------------------------------------------------
   SECTION-LEVEL UTILITIES (Padding, Backgrounds for Product Pages)
   -------------------------------------------------------------------------- */
.section-padding {
  padding: 80px 0;
}

.bg-dark-theme {
  background: #0B0E14 !important;
}

.bg-dark-card {
  background: #151923 !important;
}

@media (max-width: 991px) {
  .section-padding {
    padding: 55px 0;
  }
}

/* --------------------------------------------------------------------------
/* --------------------------------------------------------------------------
   6. PRODUCTS SECTION (SPACIOUS PADDING & ENHANCED ENGAGING CARDS)
   -------------------------------------------------------------------------- */
.section-padding-lg {
  padding: 100px 0;
}

.product-container-spacious {
  padding-left: clamp(24px, 7.5vw, 120px) !important;
  padding-right: clamp(24px, 7.5vw, 120px) !important;
}

@media (max-width: 991px) {
  .section-padding-lg {
    padding: 70px 0;
  }
}

.product-card-enhanced {
  background: #11141E;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.4);
}

.product-card-enhanced:hover {
  transform: translateY(-12px);
  border-color: var(--primary-red);
  box-shadow: 0 25px 50px rgba(220, 38, 38, 0.28), 0 0 30px rgba(220, 38, 38, 0.18);
}

.product-card-img-container {
  position: relative;
  height: 235px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.product-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card-enhanced:hover .product-card-image {
  transform: scale(1.12);
}

.product-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 3;
}

.product-card-enhanced:hover .product-image-overlay {
  opacity: 1;
}

.btn-quick-spec {
  background: var(--primary-red);
  color: #FFFFFF;
  border: none;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 30px;
  box-shadow: 0 8px 22px rgba(220, 38, 38, 0.45);
  transform: translateY(12px);
  transition: all 0.3s ease;
  cursor: pointer;
}

.product-card-enhanced:hover .btn-quick-spec {
  transform: translateY(0);
}

.btn-quick-spec:hover {
  background: #FF2A2A;
  transform: scale(1.06) !important;
}

.product-index-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(8px);
  color: var(--primary-red);
  font-weight: 800;
  font-size: 0.85rem;
  padding: 4px 12px;
  border-radius: 8px;
  border: 1px solid rgba(220, 38, 38, 0.35);
  z-index: 2;
}

.product-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
  backdrop-filter: blur(6px);
}

.product-badge.badge-top-export {
  background: rgba(220, 38, 38, 0.9);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.product-badge.badge-high-demand {
  background: rgba(245, 158, 11, 0.9);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.product-badge.badge-green-certified {
  background: rgba(16, 185, 129, 0.9);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.product-badge.badge-custom-grade {
  background: rgba(59, 130, 246, 0.9);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.product-card-body-enhanced {
  padding: 28px 24px 24px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.product-title-text a {
  color: #FFFFFF;
  text-decoration: none;
  font-size: 1.18rem;
  font-weight: 800;
  line-height: 1.4;
  transition: color 0.3s ease;
  display: block;
}

.product-title-text a:hover {
  color: var(--primary-red);
}

.product-summary-text {
  color: #94A3B8;
  font-size: 0.92rem;
  line-height: 1.6;
  margin-top: 12px;
  margin-bottom: 16px;
}

.product-highlights-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.highlight-chip {
  font-size: 0.78rem;
  font-weight: 600;
  color: #CBD5E1;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 4px 12px;
  border-radius: 20px;
}

.product-spec-pill-box {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 0.82rem;
  margin-bottom: 16px;
}

.product-card-footer-btns {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: auto;
}

.btn-explore-product {
  color: var(--primary-red);
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

.btn-explore-product:hover {
  color: #FF3333;
  transform: translateX(4px);
}

.btn-icon-spec {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-icon-spec:hover {
  background: var(--primary-red);
  border-color: var(--primary-red);
  color: #FFFFFF;
  transform: scale(1.1);
}

.product-spec-row {
  margin-bottom: 16px;
}

.product-spec-pill {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #CBD5E1;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  display: inline-block;
  white-space: nowrap;
}

.product-card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: auto;
}

.btn-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary-red);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-read-more:hover {
  color: #FF3333;
  transform: translateX(4px);
}

.product-link-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.product-link-btn:hover {
  background: var(--primary-red);
  border-color: var(--primary-red);
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   7. GREEN INITIATIVES SECTION (CREATIVE ANIMATED WHITE THEME)
   -------------------------------------------------------------------------- */
.green-initiatives-white-theme {
  background-color: #FFFFFF !important;
  color: #0F172A !important;
}

.green-section-spacious {
  padding-top: clamp(90px, 10vw, 140px) !important;
  padding-bottom: clamp(90px, 10vw, 140px) !important;
}

/* Ambient Decorative Background Elements */
.green-ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 1;
}

.green-ambient-glow.glow-1 {
  width: 450px;
  height: 450px;
  top: -100px;
  left: -100px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, rgba(255, 255, 255, 0) 70%);
}

.green-ambient-glow.glow-2 {
  width: 400px;
  height: 400px;
  bottom: -80px;
  right: -80px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
}

.green-bg-leaf-watermark {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%) rotate(-15deg);
  font-size: 22rem;
  color: rgba(16, 185, 129, 0.025);
  pointer-events: none;
  z-index: 1;
}

.section-heading-dark {
  color: #0F172A !important;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.max-w-850 {
  max-width: 850px;
}

.green-heading-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #10B981, #059669);
  border-radius: 10px;
}

.solar-glow-backdrop {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.25), transparent 70%);
  filter: blur(25px);
  z-index: 0;
  border-radius: 30px;
}

.solar-shield-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 30px;
  padding: 6px 14px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #047857;
  z-index: 5;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.unique-green-content-box {
  background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%) !important;
  border: 1px solid #E2E8F0 !important;
}

.energy-stat-card {
  transition: all 0.3s ease;
}

.energy-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.12) !important;
  border-color: #A7F3D0 !important;
}

.energy-stat-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-circle-sm {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

.green-tag {
  background: #ECFDF5 !important;
  color: #047857 !important;
  border: 1px solid #A7F3D0 !important;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 30px;
  box-shadow: 0 2px 10px rgba(16, 185, 129, 0.08);
}

.animate-spin-slow {
  animation: spinSlow 12s linear infinite;
}

@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Solar Image Frame & Floating Badges */
.solar-image-frame {
  border-radius: 24px !important;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.15) !important;
  border: 1px solid #E2E8F0 !important;
  background: #000;
}

.solar-img {
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.solar-image-frame:hover .solar-img {
  transform: scale(1.06);
}

/* Top Right Carbon Offset Badge */
.solar-top-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 50px;
  padding: 8px 18px 8px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 5;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.badge-icon-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #ECFDF5;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #A7F3D0;
}

.badge-label-sm {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #64748B;
  font-weight: 700;
  line-height: 1;
}

.badge-val-bold {
  display: block;
  font-size: 0.88rem;
  font-weight: 800;
  color: #047857;
  line-height: 1.2;
}

/* Bottom Floating Solar Badge */
.solar-floating-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 5;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
  transition: transform 0.3s ease;
}

.solar-floating-badge:hover {
  transform: translateY(-4px);
}

/* Live Pulse Dot */
.live-pulse-dot {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 10px;
  height: 10px;
  background-color: #10B981;
  border-radius: 50%;
}

.live-pulse-dot::after {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  border: 2px solid #10B981;
  animation: pulseRing 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

@keyframes pulseRing {
  0% { transform: scale(0.6); opacity: 1; }
  100% { transform: scale(1.8); opacity: 0; }
}

.animate-float {
  animation: floatBadge 4s ease-in-out infinite;
}

.animate-float-slow {
  animation: floatBadgeSlow 5s ease-in-out infinite;
}

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes floatBadgeSlow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Energy Source Chips */
.energy-source-chip {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  color: #1E293B;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.energy-source-chip:hover {
  background: #FFFFFF;
  border-color: #10B981;
  box-shadow: 0 6px 16px rgba(16, 185, 129, 0.12);
  transform: translateY(-2px);
}

.chip-pulse-dot {
  width: 6px;
  height: 6px;
  background: #10B981;
  border-radius: 50%;
  margin-left: 8px;
  display: inline-block;
}

/* --------------------------------------------------------------------------
   CREATIVE CARDS DESIGN & ANIMATIONS
   -------------------------------------------------------------------------- */
.green-initiative-card {
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF5F5 100%);
  border: 1px solid rgba(230, 0, 0, 0.15);
  border-radius: 16px;
  padding: 20px 24px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 6px 22px rgba(230, 0, 0, 0.06);
}

.creative-card-1 {
  border-left: 5px solid var(--primary-red);
}

.creative-card-2 {
  border-left: 5px solid #2563EB;
}

.creative-card-3 {
  border-left: 5px solid #10B981;
}

.creative-card-step {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--primary-red);
  text-transform: uppercase;
}

/* Shimmer Hover Sweep */
.card-shimmer {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.6),
    transparent
  );
  transition: left 0.6s ease;
  pointer-events: none;
}

.green-initiative-card:hover .card-shimmer {
  left: 150%;
}

.green-initiative-card:hover {
  transform: translateY(-6px) translateX(4px);
  background: linear-gradient(135deg, #FFFFFF 0%, #FEE2E2 100%);
  border-color: rgba(230, 0, 0, 0.3);
  box-shadow: 0 20px 45px rgba(230, 0, 0, 0.15);
}

.green-card-icon-box {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 14px;
  background: #ECFDF5;
  border: 1px solid #D1FAE5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.creative-icon-glow {
  background: #ECFDF5;
  border-color: #A7F3D0;
}

.creative-icon-glow-blue {
  background: #EFF6FF;
  border-color: #BFDBFE;
}

.creative-icon-glow-emerald {
  background: #ECFDF5;
  border-color: #A7F3D0;
}

.green-initiative-card:hover .green-card-icon-box {
  transform: scale(1.1) rotate(6deg);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.25);
}

.creative-card-2:hover .green-card-icon-box {
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
}

/* Card Progress Meter */
.card-mini-progress {
  margin-top: 6px;
}

.progress-label {
  font-size: 0.72rem;
  color: #64748B;
  font-weight: 600;
}

.progress-pct {
  font-size: 0.75rem;
}

.progress-bar-track {
  width: 100%;
  height: 5px;
  background: #F1F5F9;
  border-radius: 10px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #10B981, #059669);
  border-radius: 10px;
  transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.progress-bar-fill.fill-33 {
  width: 35%;
}

.green-initiative-card:hover .progress-bar-fill.fill-33 {
  width: 45%;
}

/* Mini Tags inside cards */
.mini-tag {
  font-size: 0.72rem;
  font-weight: 600;
  color: #1E40AF;
  background: #EFF6FF;
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid #DBEAFE;
}

.mini-tag-green {
  font-size: 0.72rem;
  font-weight: 600;
  color: #047857;
  background: #ECFDF5;
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid #D1FAE5;
}

.extra-small-text {
  font-size: 0.72rem !important;
  line-height: 1.35 !important;
}

.extra-small-badge {
  font-size: 0.65rem !important;
  font-weight: 700 !important;
}

.extra-small-tag {
  font-size: 0.65rem !important;
  padding: 2px 7px !important;
}

.compact-icon-box {
  width: 38px !important;
  height: 38px !important;
  min-width: 38px !important;
  border-radius: 10px !important;
}

.card-arrow-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.green-initiative-card:hover .card-arrow-icon {
  background: #10B981;
  border-color: #10B981;
  transform: translateX(4px);
}

.green-initiative-card:hover .card-arrow-icon i {
  color: #FFFFFF !important;
}

.creative-card-2:hover .card-arrow-icon {
  background: #2563EB;
  border-color: #2563EB;
}

/* --------------------------------------------------------------------------
   8. WHY CHOOSE US & CLIENTS SECTION (CREATIVE LUXURY REDESIGN)
   -------------------------------------------------------------------------- */
.why-section-spacious {
  padding-top: clamp(90px, 10vw, 140px) !important;
  padding-bottom: clamp(90px, 10vw, 140px) !important;
}

.why-glow-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 1;
}

.why-glow-blob.glow-left {
  width: 450px;
  height: 450px;
  top: -100px;
  left: -100px;
  background: radial-gradient(circle, rgba(230, 0, 0, 0.12) 0%, transparent 70%);
}

.why-glow-blob.glow-right {
  width: 400px;
  height: 400px;
  bottom: -80px;
  right: -80px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
}

.section-tag-red {
  background: rgba(230, 0, 0, 0.12) !important;
  color: var(--primary-red) !important;
  border: 1px solid rgba(230, 0, 0, 0.3) !important;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 30px;
}

.red-heading-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-red), #FF4D4D);
  border-radius: 10px;
}

/* Creative Feature Cards */
.creative-why-card {
  background: #14151C;
  border: 1px solid #2A2B36;
  border-radius: 18px;
  padding: 26px 24px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.why-card-red {
  border-top: 4px solid var(--primary-red);
}

.why-card-green {
  border-top: 4px solid #10B981;
}

.why-card-amber {
  border-top: 4px solid #F59E0B;
}

.why-card-cyan {
  border-top: 4px solid #06B6D4;
}

.creative-why-card:hover {
  transform: translateY(-10px) scale(1.02);
  background: #1B1C26;
  border-color: #3E4052;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6), 0 0 25px rgba(230, 0, 0, 0.2);
}

.why-card-green:hover {
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6), 0 0 25px rgba(16, 185, 129, 0.2);
}

.why-card-amber:hover {
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6), 0 0 25px rgba(245, 158, 11, 0.2);
}

.why-card-cyan:hover {
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6), 0 0 25px rgba(6, 182, 212, 0.2);
}

.card-step-badge {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: #94A3B8;
  text-transform: uppercase;
}

.why-card-text {
  color: #CBD5E1 !important;
  font-size: 0.92rem !important;
  line-height: 1.6 !important;
}

.creative-why-card:hover .why-card-text {
  color: #F8FAFC !important;
}

.text-light-desc {
  color: #CBD5E1 !important;
}

.why-icon-box {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.icon-glow-red {
  background: rgba(230, 0, 0, 0.1);
  border: 1px solid rgba(230, 0, 0, 0.25);
}

.icon-glow-green {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
}

.icon-glow-amber {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.25);
}

.icon-glow-cyan {
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.25);
}

.creative-why-card:hover .why-icon-box {
  transform: scale(1.12) rotate(6deg);
}

.badge-why-red {
  background: rgba(230, 0, 0, 0.22);
  color: #FF8080;
  border: 1px solid rgba(255, 128, 128, 0.4);
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  display: inline-flex;
  align-items: center;
}

.badge-why-green {
  background: rgba(16, 185, 129, 0.22);
  color: #34D399;
  border: 1px solid rgba(52, 211, 153, 0.4);
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  display: inline-flex;
  align-items: center;
}

.badge-why-amber {
  background: rgba(245, 158, 11, 0.22);
  color: #FBBF24;
  border: 1px solid rgba(251, 191, 36, 0.4);
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  display: inline-flex;
  align-items: center;
}

.badge-why-cyan {
  background: rgba(6, 182, 212, 0.22);
  color: #38BDF8;
  border: 1px solid rgba(56, 189, 248, 0.4);
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  display: inline-flex;
  align-items: center;
}

.why-mini-tag {
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
}

.tag-red {
  background: rgba(230, 0, 0, 0.2);
  color: #FF8080;
  border: 1px solid rgba(255, 128, 128, 0.4);
}

.tag-green {
  background: rgba(16, 185, 129, 0.2);
  color: #6EE7B7;
  border: 1px solid rgba(110, 231, 183, 0.4);
}

.tag-amber {
  background: rgba(245, 158, 11, 0.2);
  color: #FDE047;
  border: 1px solid rgba(253, 224, 71, 0.4);
}

.tag-cyan {
  background: rgba(6, 182, 212, 0.2);
  color: #7DD3FC;
  border: 1px solid rgba(125, 211, 252, 0.4);
}

.clients-banner {
  background: rgba(20, 21, 28, 0.95) !important;
  backdrop-filter: blur(15px);
  border-radius: 24px !important;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.banner-glow-circle {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(230, 0, 0, 0.15) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

.banner-map-watermark {
  position: absolute;
  right: -30px;
  bottom: -40px;
  font-size: 15rem;
  color: rgba(255, 255, 255, 0.02);
  pointer-events: none;
}

.creative-country-chip {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 14px 16px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.creative-country-chip:hover {
  background: rgba(230, 0, 0, 0.15);
  border-color: rgba(230, 0, 0, 0.4);
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 10px 25px rgba(230, 0, 0, 0.35);
}

.country-name {
  font-size: 0.92rem;
  line-height: 1.2;
}

.country-region {
  font-size: 0.72rem !important;
  color: #94A3B8 !important;
}

.client-tag {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  color: #FFFFFF;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition-fast);
  margin: 6px;
}

.client-tag:hover {
  border-color: var(--primary-red);
  background: var(--primary-red);
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: var(--box-shadow-red);
}

.client-tag-highlight {
  background: rgba(245, 158, 11, 0.15) !important;
  border-color: rgba(245, 158, 11, 0.4) !important;
  color: #FBBF24 !important;
}

.bg-white-theme {
  background: #FAFAFC !important;
  color: #0F172A !important;
}

/* --------------------------------------------------------------------------
   9. FAQ SECTION (CUSTOM BOOTSTRAP ACCORDION)
   -------------------------------------------------------------------------- */
#faq {
  background: #FAFAFC !important;
  color: #0F172A !important;
  position: relative;
  border-top: 1px solid #E2E8F0;
  border-bottom: 1px solid #E2E8F0;
}

.custom-faq .accordion-item {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 12px !important;
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.custom-faq .accordion-item:hover {
  border-color: var(--primary-red);
  box-shadow: 0 8px 25px rgba(230, 0, 0, 0.1);
  transform: translateY(-2px);
}

.custom-faq .accordion-button {
  background: #FFFFFF;
  color: #0F172A;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 22px 26px;
  box-shadow: none;
  transition: all 0.3s ease;
}

.custom-faq .accordion-button:not(.collapsed) {
  background: #FEF2F2;
  color: var(--primary-red);
  border-bottom: 1px solid rgba(230, 0, 0, 0.15);
  border-left: 5px solid var(--primary-red);
}

.custom-faq .accordion-button::after {
  filter: none;
}

.custom-faq .accordion-button:not(.collapsed)::after {
  filter: invert(18%) sepia(98%) saturate(7432%) hue-rotate(357deg) brightness(97%) contrast(114%);
}

.custom-faq .accordion-body {
  background: #FFFFFF;
  color: #475569;
  font-size: 0.98rem;
  line-height: 1.75;
  padding: 24px 26px;
}

/* --------------------------------------------------------------------------
   9.1 CONTACT US SECTION (CREATIVE LUXURY REDESIGN)
   -------------------------------------------------------------------------- */
.contact-glow-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 1;
}

/* --------------------------------------------------------------------------
   9. CONTACT SECTION (WHITE THEME EXECUTIVE DESIGN)
   -------------------------------------------------------------------------- */
#contact.bg-white-theme {
  background: #F8FAFC !important;
  color: #0F172A !important;
}

#contact .contact-glow-blob.glow-top-left {
  width: 450px;
  height: 450px;
  top: -80px;
  left: -80px;
  background: radial-gradient(circle, rgba(230, 0, 0, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

#contact .contact-glow-blob.glow-bottom-right {
  width: 400px;
  height: 400px;
  bottom: -60px;
  right: -60px;
  background: radial-gradient(circle, rgba(230, 0, 0, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.contact-premium-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  padding: 36px;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.contact-premium-card:hover {
  border-color: rgba(230, 0, 0, 0.35);
  box-shadow: 0 16px 40px rgba(230, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.04);
}

.premium-contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.premium-contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  border-radius: 14px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

.premium-contact-item:hover {
  background: #FFFFFF;
  border-color: rgba(230, 0, 0, 0.4);
  transform: translateX(4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.premium-contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(230, 0, 0, 0.08);
  border: 1px solid rgba(230, 0, 0, 0.18);
  color: var(--primary-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.premium-contact-item:hover .premium-contact-icon {
  background: var(--primary-red);
  color: #FFFFFF;
  border-color: var(--primary-red);
  box-shadow: 0 4px 14px rgba(230, 0, 0, 0.35);
  transform: scale(1.05);
}

.premium-contact-icon.whatsapp-icon {
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.22);
  color: #059669;
}

.premium-contact-item:hover .premium-contact-icon.whatsapp-icon {
  background: #10B981;
  color: #FFFFFF;
  border-color: #10B981;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.35);
}

.premium-contact-content {
  flex-grow: 1;
}

.premium-contact-label {
  display: block;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #64748B;
  font-weight: 600;
  margin-bottom: 2px;
}

.premium-contact-value {
  color: #0F172A;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.35;
  margin: 0;
}

.premium-form-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.02);
  position: relative;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.premium-form-card:hover {
  border-color: rgba(230, 0, 0, 0.25);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
}

.premium-form-control {
  background-color: #F8FAFC !important;
  border: 1px solid #CBD5E1 !important;
  color: #0F172A !important;
  font-size: 0.92rem;
  padding: 12px 16px;
  border-radius: 10px;
  transition: all 0.25s ease;
}

.premium-form-control::placeholder {
  color: #94A3B8 !important;
}

.premium-form-control:focus {
  background-color: #FFFFFF !important;
  border-color: var(--primary-red) !important;
  box-shadow: 0 0 0 4px rgba(230, 0, 0, 0.12) !important;
  outline: none;
}

.creative-form-control {
  background-color: #1A1C26 !important;
  border: 1px solid #2D3748 !important;
  color: #FFFFFF !important;
  font-size: 0.92rem;
  padding: 11px 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.creative-form-control::placeholder {
  color: #64748B !important;
}

.creative-form-control:focus {
  border-color: var(--primary-red) !important;
  box-shadow: 0 0 0 4px rgba(230, 0, 0, 0.25) !important;
  outline: none;
}

.rfq-success-banner {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid #10B981;
  border-radius: 12px;
  padding: 18px;
  animation: fadeInDown 0.4s ease forwards;
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* High-Visibility Custom Badges for Footer */
.badge-footer-green {
  background: rgba(16, 185, 129, 0.28) !important;
  border: 1.5px solid #10B981 !important;
  color: #FFFFFF !important;
  font-size: 0.88rem !important;
  font-weight: 800 !important;
  padding: 8px 18px !important;
  border-radius: 30px !important;
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.35);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

.badge-quality-tag {
  background: rgba(255, 255, 255, 0.16) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.4) !important;
  color: #FFFFFF !important;
  font-size: 0.85rem !important;
  font-weight: 800 !important;
  padding: 7px 15px !important;
  border-radius: 30px !important;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
}

.badge-quality-tag:hover {
  background: var(--primary-red) !important;
  border-color: var(--primary-red) !important;
  color: #FFFFFF !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(230, 0, 0, 0.6);
}

.fa-globe, .fa-globe-americas, .fa-globe-asia {
  color: #FFFFFF !important;
}

/* Ultra High Visibility Badges for Contact Section */
.badge-high-vis-red {
  background: #E60000 !important;
  color: #FFFFFF !important;
  border: 1px solid #FF4D4D !important;
  font-size: 0.88rem !important;
  font-weight: 800 !important;
  padding: 8px 18px !important;
  border-radius: 30px !important;
  box-shadow: 0 4px 15px rgba(230, 0, 0, 0.4);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.badge-high-vis-green {
  background: #059669 !important;
  color: #FFFFFF !important;
  border: 1px solid #34D399 !important;
  font-size: 0.88rem !important;
  font-weight: 800 !important;
  padding: 8px 18px !important;
  border-radius: 30px !important;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* --------------------------------------------------------------------------
   10. FOOTER SECTION (WORLDWIDE EXPORT COMMAND BASE)
   -------------------------------------------------------------------------- */
.main-footer {
  background: linear-gradient(
    180deg, 
    rgba(5, 5, 7, 0.90) 0%, 
    rgba(5, 5, 7, 0.82) 50%, 
    rgba(5, 5, 7, 0.94) 100%
  ), url('../images/footer_world_map_bg.jpg') no-repeat center center / cover !important;
  border-top: 3px solid var(--primary-red);
  color: #CBD5E1 !important;
  padding-top: 70px;
  padding-bottom: 35px;
  position: relative;
  overflow: hidden;
}

/* Worldwide Base Creative Footer Additions */
.footer-global-ribbon {
  background: rgba(15, 20, 32, 0.88) !important;
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.badge-tz {
  background: #1E293B !important;
  border: 1px solid #475569 !important;
  color: #FFFFFF !important;
  padding: 5px 12px !important;
  border-radius: 20px;
  font-weight: 700 !important;
  font-size: 0.8rem !important;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.footer-stat-card {
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: 18px;
  text-align: center;
  transition: all 0.3s ease;
}

.footer-stat-card:hover {
  background: rgba(230, 0, 0, 0.12);
  border-color: rgba(230, 0, 0, 0.35);
  transform: translateY(-4px);
}

/* Creative Footer Navigation & Product Cards */
.footer-nav-card {
  background: rgba(15, 20, 32, 0.75) !important;
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  transition: all 0.3s ease;
}

.footer-nav-card:hover {
  border-color: rgba(230, 0, 0, 0.35) !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.footer-link-item {
  color: #E2E8F0 !important;
  text-decoration: none;
  font-size: 0.88rem;
  padding: 6px 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-link-item:hover {
  background: rgba(230, 0, 0, 0.12);
  border-color: rgba(230, 0, 0, 0.3);
  color: #FFFFFF !important;
  transform: translateX(4px);
}

.link-icon-box {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  color: var(--primary-red);
  flex-shrink: 0;
}

.mini-spec-pill {
  font-size: 0.7rem;
  font-weight: 700;
  color: #94A3B8;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2px 8px;
  border-radius: 12px;
  white-space: nowrap;
}

.mini-spec-pill.green {
  color: #34D399;
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.25);
}

.calc-highlight-item {
  background: rgba(16, 185, 129, 0.08) !important;
  border-color: rgba(16, 185, 129, 0.25) !important;
}

.calc-highlight-item:hover {
  background: rgba(16, 185, 129, 0.18) !important;
  border-color: #10B981 !important;
}

/* World Class Footer Pre-Strip & Contact Card */
.footer-pre-strip {
  background: rgba(15, 20, 32, 0.92) !important;
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
}

.icon-pulse-badge {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(230, 0, 0, 0.3);
}

.footer-contact-card {
  background: rgba(15, 23, 42, 0.6) !important;
  backdrop-filter: blur(10px);
}

.footer-logo {
  max-height: 60px;
  margin-bottom: 20px;
}

.footer-desc {
  color: #CBD5E1 !important;
  font-size: 0.92rem;
  line-height: 1.6;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.92rem;
}

.footer-contact-item i {
  color: #FF3B30 !important;
  margin-top: 3px;
}

.footer-contact-text {
  color: #E2E8F0 !important;
  font-size: 0.92rem;
  line-height: 1.5;
}

.footer-highlight-link {
  color: #FF4D4D !important;
  font-weight: 700;
  text-decoration: none;
}

.footer-highlight-link:hover {
  color: #FFFFFF !important;
  text-decoration: underline;
}

.footer-sub-link {
  color: #F1F5F9 !important;
  text-decoration: none;
}

.footer-sub-link:hover {
  color: #FF4D4D !important;
}

.footer-phone-link {
  color: #FFFFFF !important;
  font-weight: 800;
  text-decoration: none;
}

.footer-phone-link:hover {
  color: #FF3B30 !important;
}

.footer-title {
  color: #FFFFFF !important;
  font-size: 1.18rem;
  font-weight: 700;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 10px;
  letter-spacing: 0.5px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 42px;
  height: 3px;
  background: var(--primary-red);
  border-radius: 2px;
}

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

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

.footer-links a {
  color: #E2E8F0 !important;
  text-decoration: none;
  font-size: 0.93rem;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
}

.footer-links a:hover {
  color: #FF3B30 !important;
  transform: translateX(6px);
}

.footer-export-badge {
  display: inline-block;
  background: #1E293B !important;
  border: 1px solid #475569 !important;
  color: #FFFFFF !important;
  font-weight: 700 !important;
  padding: 7px 14px;
  border-radius: 8px;
  font-size: 0.85rem;
  margin-right: 4px;
  margin-bottom: 8px;
  transition: all 0.25s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.footer-export-badge:hover {
  background: var(--primary-red) !important;
  border-color: var(--primary-red) !important;
  color: #FFFFFF !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(230, 0, 0, 0.5);
}

.bg-slate-800 {
  background-color: #1E293B !important;
}

.border-slate-600 {
  border-color: #475569 !important;
}

.text-slate-300 {
  color: #CBD5E1 !important;
}

.text-slate-400 {
  color: #94A3B8 !important;
}

.footer-copyright-text {
  color: #CBD5E1 !important;
  font-size: 0.88rem;
}

.footer-bottom-links a {
  color: #E2E8F0 !important;
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
  color: #FF3B30 !important;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12) !important;
  margin-top: 60px;
  padding-top: 25px;
  font-size: 0.88rem;
}

/* --------------------------------------------------------------------------
   11. FLOATING ACTION BUTTONS (WHATSAPP, CALL, EMAIL, BACK-TO-TOP)
   -------------------------------------------------------------------------- */
.floating-actions {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 1.3rem;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
  transition: var(--transition-bounce);
  border: none;
  cursor: pointer;
  position: relative;
}

.float-btn:hover {
  transform: scale(1.15) translateY(-3px);
  color: #FFFFFF;
}

.float-btn-whatsapp {
  background: #25D366;
}

.float-btn-whatsapp:hover {
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
}

.float-btn-call {
  background: var(--primary-red);
}

.float-btn-call:hover {
  box-shadow: 0 10px 25px rgba(230, 0, 0, 0.6);
}

.float-btn-email {
  background: #2563EB;
}

.float-btn-email:hover {
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.5);
}

.float-btn-top {
  background: #1E293B;
  border: 1px solid #334155;
  display: none;
}

.float-btn-top:hover {
  background: var(--primary-red);
  border-color: var(--primary-red);
}

/* Tooltip on float buttons */
.float-btn .tooltip-text {
  visibility: hidden;
  width: 110px;
  background-color: #000;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 0.3s;
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  pointer-events: none;
}

.float-btn:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

/* --------------------------------------------------------------------------
   12. MODAL STYLES
   -------------------------------------------------------------------------- */
.custom-modal .modal-content {
  background-color: var(--dark-card);
  border: 1px solid var(--dark-border);
  color: #FFFFFF;
  border-radius: 12px;
}

.custom-modal .modal-header {
  border-bottom: 1px solid var(--dark-border);
}

.custom-modal .modal-header .btn-close {
  filter: invert(1);
}

.custom-modal .modal-footer {
  border-top: 1px solid var(--dark-border);
}

/* --------------------------------------------------------------------------
   13. MEDIA QUERIES / RESPONSIVENESS
   -------------------------------------------------------------------------- */
@media (max-width: 991.98px) {
  .top-header {
    text-align: center;
  }
  .top-contact-info, .top-social-links {
    justify-content: center !important;
    margin-top: 8px;
  }
  .hero-carousel .carousel-item {
    height: 70vh;
    min-height: 480px;
  }
  .feature-cards-wrapper {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .main-navbar .nav-link {
    padding: 12px 16px !important;
  }
  #about {
    padding: 70px 0 60px !important;
  }
  .about-image-container {
    padding-bottom: 0;
    padding-right: 0;
  }
  .experience-floating-badge {
    position: relative;
    bottom: auto;
    left: auto;
    max-width: 100%;
    margin-top: 15px;
  }
  .green-floating-badge {
    position: relative;
    top: auto;
    right: auto;
    margin-bottom: 12px;
  }
}

@media (max-width: 575.98px) {
  .hero-title {
    font-size: 1.8rem;
  }
  .hero-description {
    font-size: 0.95rem;
  }
  .carousel-control-prev, .carousel-control-next {
    width: 40px;
    height: 40px;
  }
  .floating-actions {
    bottom: 15px;
    right: 15px;
  }
  .float-btn {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }
  .stat-number {
    font-size: 1.8rem;
  }
}

/* ==========================================================================
   PRODUCTS GRID SUB MENU & ENTERPRISE DEEP DIVE PANELS
   ========================================================================== */

/* ==========================================================================
   MEGA MENU STYLES
   ========================================================================== */

/* Static positioning on desktop so mega menu spans navbar container */
@media (min-width: 992px) {
  .nav-item.dropdown.has-mega-menu {
    position: static !important;
  }

  .main-navbar .container {
    position: relative !important;
  }

  .mega-menu-dropdown {
    position: absolute !important;
    left: 12px !important;
    right: 12px !important;
    top: calc(100% + 10px) !important;
    width: auto !important;
    min-width: calc(100% - 24px) !important;
    max-width: 1260px !important;
    margin: 0 auto !important;
    background: #0E121B !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 20px !important;
    padding: 26px 28px !important;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.85), 0 0 40px rgba(230, 0, 0, 0.12) !important;
    animation: megaMenuSlideDown 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }
}

@keyframes megaMenuSlideDown {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile & Tablet Fallback */
@media (max-width: 991.98px) {
  .mega-menu-dropdown {
    background: #0B0E17 !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 14px !important;
    padding: 16px !important;
    margin-top: 10px !important;
    max-height: 80vh;
    overflow-y: auto;
    width: 100% !important;
  }
}

/* 4-Column Layout */
.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

@media (max-width: 1199.98px) {
  .mega-menu-grid {
    gap: 16px;
  }
}

@media (max-width: 991.98px) {
  .mega-menu-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Column Container */
.mega-column {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.mega-column-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 12px;
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-decoration: none !important;
}

.mega-column-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  background: rgba(230, 0, 0, 0.12);
  color: var(--primary-red);
  border: 1px solid rgba(230, 0, 0, 0.25);
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.mega-column-header:hover .mega-column-icon {
  background: var(--primary-red);
  color: #FFFFFF;
  box-shadow: 0 0 16px rgba(230, 0, 0, 0.6);
  transform: scale(1.05);
}

.mega-column-title {
  color: #FFFFFF;
  font-size: 0.98rem;
  font-weight: 800;
  margin: 0;
  line-height: 1.2;
  transition: color 0.2s ease;
}

.mega-column-header:hover .mega-column-title {
  color: var(--primary-red);
}

.mega-column-badge {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #94A3B8;
  display: block;
  margin-top: 2px;
}

/* Items List */
.mega-item-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-grow: 1;
}

.mega-item-link {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid transparent;
  color: #CBD5E1 !important;
  text-decoration: none !important;
  transition: all 0.2s ease;
}

.mega-item-link:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(230, 0, 0, 0.3);
  transform: translateX(3px);
  color: #FFFFFF !important;
}

.mega-item-bullet {
  color: var(--primary-red);
  font-size: 0.75rem;
  margin-top: 4px;
  flex-shrink: 0;
}

.mega-item-title {
  font-size: 0.86rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.25;
}

.mega-item-desc {
  font-size: 0.74rem;
  color: #94A3B8;
  margin: 2px 0 0 0;
  line-height: 1.35;
}

/* Overview Column Card */
.mega-overview-card {
  background: linear-gradient(135deg, rgba(230, 0, 0, 0.15), #141824);
  border: 1px solid rgba(230, 0, 0, 0.25);
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 12px;
}

.mega-stat-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  color: #E2E8F0;
  padding: 4px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
}

.mega-stat-pill:last-child {
  border-bottom: none;
}

/* Column Action Button */
.mega-view-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 8px 12px;
  font-size: 0.78rem;
  font-weight: 700;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #CBD5E1 !important;
  text-decoration: none !important;
  transition: all 0.2s ease;
  margin-top: auto;
}

.mega-view-btn:hover {
  background: var(--primary-red);
  border-color: var(--primary-red);
  color: #FFFFFF !important;
}

/* Mega Menu Footer */
.mega-menu-footer {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.mega-quick-pill {
  font-size: 0.76rem;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #CBD5E1 !important;
  text-decoration: none !important;
  font-weight: 600;
  transition: all 0.2s ease;
}

.mega-quick-pill:hover {
  background: var(--primary-red);
  border-color: var(--primary-red);
  color: #FFFFFF !important;
}

/* 3. Deep Dive Content Panels (Ferro, Silico, Quality) */
.deepdive-hero-card {
  background: linear-gradient(135deg, #161A26, #0E1119);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  margin-bottom: 28px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
}

.deepdive-feature-card {
  background: #141722;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 26px;
  height: 100%;
  transition: all 0.3s ease;
}

.deepdive-feature-card:hover {
  border-color: rgba(230, 0, 0, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

/* 4. Chemical Spec Comparison Cards */
.spec-compare-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 991.98px) {
  .spec-compare-grid {
    grid-template-columns: 1fr;
  }
}

.spec-compare-card {
  background: #161A25;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.spec-compare-card:hover {
  border-color: var(--primary-red);
  box-shadow: 0 10px 30px rgba(230, 0, 0, 0.18);
  transform: translateY(-3px);
}

.spec-param-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.88rem;
}

.spec-param-row:last-child {
  border-bottom: none;
}

.spec-param-name {
  color: #94A3B8;
}

.spec-param-val {
  color: #FFFFFF;
  font-weight: 700;
}

/* 5. Quality 8-Pillars Modern Grid */
.quality-tech-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

@media (max-width: 1199.98px) {
  .quality-tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575.98px) {
  .quality-tech-grid {
    grid-template-columns: 1fr;
  }
}

.quality-card-modern {
  background: #141722;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-column: column;
  position: relative;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.quality-card-modern:hover {
  background: linear-gradient(135deg, #1A1F2C, #131722);
  border-color: rgba(230, 0, 0, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.45);
}

.quality-card-step {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 1.4rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.1);
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1;
}

.quality-card-modern:hover .quality-card-step {
  color: rgba(230, 0, 0, 0.4);
}

.quality-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(230, 0, 0, 0.15);
  border: 1px solid rgba(230, 0, 0, 0.3);
  color: var(--primary-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
  transition: all 0.25s ease;
}

.quality-card-modern:hover .quality-icon-wrap {
  background: var(--primary-red);
  color: #FFFFFF;
  box-shadow: 0 0 16px rgba(230, 0, 0, 0.6);
}

.quality-card-title {
  color: #FFFFFF;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
}

.quality-card-text {
  color: #94A3B8;
  font-size: 0.86rem;
  line-height: 1.55;
  margin: 0;
}

/* FAQ Accordion Dark Theme in Deep Dive */
.hfal-faq-accordion .accordion-item {
  background: #141722 !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 12px !important;
  margin-bottom: 10px;
  overflow: hidden;
}

.hfal-faq-accordion .accordion-button {
  background: #141722 !important;
  color: #FFFFFF !important;
  font-weight: 700 !important;
  font-size: 0.95rem !important;
  padding: 16px 20px !important;
  box-shadow: none !important;
}

.hfal-faq-accordion .accordion-button:not(.collapsed) {
  background: #1B202D !important;
  color: var(--primary-red) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hfal-faq-accordion .accordion-button::after {
  filter: invert(1);
}

.hfal-faq-accordion .accordion-button:not(.collapsed)::after {
  filter: invert(16%) sepia(99%) saturate(7404%) hue-rotate(357deg) brightness(95%) contrast(118%);
}

.hfal-faq-accordion .accordion-body {
  background: #181C26 !important;
  color: #CBD5E1 !important;
  font-size: 0.9rem !important;
  line-height: 1.6 !important;
  padding: 18px 20px !important;
}

/* ==========================================
   BLOG SECTION ENHANCEMENTS
   ========================================== */
.blog-section-enhanced {
  background: #0B0F19;
  position: relative;
}

.blog-card-enhanced {
  background: #121724;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.35);
  position: relative;
}

.blog-card-enhanced:hover {
  transform: translateY(-8px);
  border-color: rgba(220, 38, 38, 0.45);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.5), 0 0 25px rgba(220, 38, 38, 0.15);
}

.blog-card-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.blog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-card-enhanced:hover .blog-card-img {
  transform: scale(1.08);
}

.blog-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  border-radius: 30px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 6px 14px;
  backdrop-filter: blur(8px);
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.blog-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-meta-info {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  color: #94A3B8;
  margin-bottom: 12px;
}

.blog-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.45;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.blog-card-enhanced:hover .blog-card-title {
  color: #FF4D4D;
}

.blog-card-excerpt {
  font-size: 0.88rem;
  color: #94A3B8;
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 20px;
}

.blog-chips-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.blog-chip {
  display: inline-flex;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #CBD5E1;
}

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.blog-read-btn {
  color: var(--primary-red);
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
}

.blog-read-btn:hover {
  color: #FF4D4D;
  transform: translateX(4px);
}

.blog-author-box {
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-author-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(220, 38, 38, 0.2);
  color: var(--primary-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
}

.blog-author-name {
  font-size: 0.78rem;
  color: #94A3B8;
  font-weight: 500;
}

.blog-subscribe-card {
  background: linear-gradient(135deg, rgba(28, 33, 48, 0.95), rgba(19, 24, 38, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 32px 40px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.blog-subscribe-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(220, 38, 38, 0.15), transparent 70%);
  pointer-events: none;
}

/* ==========================================
   SUSTAINABILITY SUB-MENU STYLES
   ========================================== */
.sustainability-dropdown-menu {
  background: #141722 !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-top: 3px solid #10B981 !important;
  border-radius: 0 0 12px 12px !important;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.75), 0 0 25px rgba(16, 185, 129, 0.12) !important;
  padding: 10px 0 !important;
  min-width: 275px !important;
}

.sustainability-dropdown-menu .dropdown-item {
  color: #CBD5E1 !important;
  font-family: var(--font-heading);
  font-size: 0.85rem !important;
  font-weight: 500;
  padding: 12px 20px !important;
  transition: all 0.25s ease !important;
  border-left: 3px solid transparent;
  display: flex;
  align-items: center;
  gap: 12px;
}

.sustainability-dropdown-menu .dropdown-item:hover,
.sustainability-dropdown-menu .dropdown-item:focus {
  background: rgba(16, 185, 129, 0.12) !important;
  color: #FFFFFF !important;
  border-left-color: #10B981;
  padding-left: 24px !important;
}

.sustainability-dropdown-menu .dropdown-item i {
  font-size: 1rem;
  width: 20px;
  text-align: center;
  transition: transform 0.25s ease;
}

.sustainability-dropdown-menu .dropdown-item:hover i {
  transform: scale(1.15);
}

.sustainability-dropdown-menu .dropdown-item-desc {
  font-size: 0.72rem;
  color: #94A3B8;
  display: block;
  font-weight: 400;
  margin-top: 1px;
}

/* ==========================================================================
   PRODUCT PAGE HEADER / HERO SECTION & UPGRADE STYLES
   ========================================================================== */
.product-page-hero {
  position: relative;
  background: radial-gradient(circle at 80% 20%, rgba(220, 38, 38, 0.12) 0%, transparent 50%),
              radial-gradient(circle at 10% 80%, rgba(16, 185, 129, 0.08) 0%, transparent 45%),
              linear-gradient(180deg, #131722 0%, #0B0E14 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 55px 0 65px;
  overflow: hidden;
}

.product-page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.product-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 9999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: rgba(220, 38, 38, 0.18);
  color: #EF4444;
  border: 1px solid rgba(220, 38, 38, 0.35);
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.2);
}

.product-hero-badge.badge-green {
  background: rgba(16, 185, 129, 0.18);
  color: #10B981;
  border-color: rgba(16, 185, 129, 0.35);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2);
}

.hero-quick-specs-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 12px;
  background: rgba(18, 22, 32, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
}

.hero-spec-pill {
  display: flex;
  flex-direction: column;
}

.hero-spec-pill .spec-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #94A3B8;
  font-weight: 600;
  margin-bottom: 2px;
}

.hero-spec-pill .spec-value {
  font-size: 1.05rem;
  font-weight: 800;
  color: #FFFFFF;
  font-family: var(--font-heading);
}

/* Product Hero Showcase Image Card */
.product-hero-showcase {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(220, 38, 38, 0.15);
  background: #151923;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-hero-showcase:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), 0 0 35px rgba(220, 38, 38, 0.25);
}

.product-hero-showcase img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-hero-showcase:hover img {
  transform: scale(1.03);
}

.purity-guarantee-seal {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(14, 18, 27, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 8px 14px;
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.purity-guarantee-seal .seal-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary-red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.product-hero-meta-bar {
  padding: 16px 20px;
  background: rgba(18, 22, 32, 0.95);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

/* ==========================================================================
   UPGRADED PRODUCT DETAIL COMPONENTS
   ========================================================================== */
.product-specs-table-card {
  background: #151923;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.product-specs-table-card .table {
  margin-bottom: 0;
  color: #E2E8F0;
}

.product-specs-table-card .table th {
  background: #1C2230;
  color: #F8FAFC;
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.5px;
  padding: 14px 18px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.12);
}

.product-specs-table-card .table td {
  padding: 14px 18px;
  border-color: rgba(255, 255, 255, 0.06);
  font-size: 0.92rem;
  vertical-align: middle;
}

.spec-element-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 28px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
  font-size: 0.85rem;
  color: #F1F5F9;
  border: 1px solid rgba(255, 255, 255, 0.15);
  margin-right: 8px;
}

/* Metallurgical Advantage Cards */
.metallurgy-card {
  background: #151923;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 28px 24px;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.metallurgy-card:hover {
  transform: translateY(-6px);
  border-color: rgba(220, 38, 38, 0.4);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 25px rgba(220, 38, 38, 0.12);
}

.metallurgy-icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(220, 38, 38, 0.15);
  border: 1px solid rgba(220, 38, 38, 0.3);
  color: var(--primary-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.metallurgy-card:hover .metallurgy-icon-wrap {
  transform: scale(1.1);
  background: var(--primary-red);
  color: #FFFFFF;
}

.metallurgy-card.green-variant:hover {
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 25px rgba(16, 185, 129, 0.12);
}

.metallurgy-card.green-variant .metallurgy-icon-wrap {
  background: rgba(16, 185, 129, 0.15);
  border-color: rgba(16, 185, 129, 0.3);
  color: #10B981;
}

.metallurgy-card.green-variant:hover .metallurgy-icon-wrap {
  background: #10B981;
  color: #FFFFFF;
}

/* Industrial Application Showcase Box */
.app-showcase-card {
  background: #151923;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 24px;
  height: 100%;
  transition: all 0.3s ease;
}

.app-showcase-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.4);
}

/* Cross-Grade Comparison Switcher */
.grade-switcher-card {
  background: #151923;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 22px;
  transition: all 0.25s ease;
  text-decoration: none;
  display: block;
  height: 100%;
}

.grade-switcher-card:hover {
  background: #1C2333;
  border-color: var(--primary-red);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.grade-switcher-card.active {
  border-color: var(--primary-red);
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.15), rgba(18, 22, 32, 0.95));
}

/* ==========================================================================
   ENTERPRISE PRE-FOOTER CTA SECTION (WORLD-CLASS INDUSTRIAL CONVERSION)
   ========================================================================== */
.product-cta-section {
  position: relative;
  background: #090B0F;
  padding: 85px 0 95px;
  overflow: hidden;
}

.product-cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(220, 38, 38, 0.18) 0%, rgba(16, 185, 129, 0.08) 40%, transparent 70%);
  pointer-events: none;
  filter: blur(50px);
}

.product-cta-container {
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, #161B26 0%, #0E121B 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  padding: 55px 45px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.7), 0 0 50px rgba(220, 38, 38, 0.15);
}

@media (max-width: 768px) {
  .product-cta-container {
    padding: 35px 22px;
  }
}

.product-cta-trust-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin: 35px 0;
  padding: 20px 24px;
  background: rgba(11, 14, 21, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
}

.cta-trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cta-trust-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(220, 38, 38, 0.15);
  color: var(--primary-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  border: 1px solid rgba(220, 38, 38, 0.3);
}

.cta-trust-icon.green {
  background: rgba(16, 185, 129, 0.15);
  color: #10B981;
  border-color: rgba(16, 185, 129, 0.3);
}

.cta-trust-item div h6 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 2px;
}

.cta-trust-item div span {
  font-size: 0.78rem;
  color: #94A3B8;
}

.product-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.product-cta-actions .btn {
  font-weight: 700;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
}

.btn-whatsapp-cta {
  background: #25D366;
  color: #FFFFFF !important;
  border: 1px solid #25D366;
}

.btn-whatsapp-cta:hover {
  background: #1EBE5D;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  transform: translateY(-2px);
}


/* ==========================================================================
   MISSING UTILITY CLASSES — PRODUCT PAGES & GLOBAL
   These were referenced in HTML but had no CSS definition, causing sections
   to have no padding and some content to be invisible on dark backgrounds.
   ========================================================================== */

/* Section Padding — used on all product page sections & index About */
.section-padding {
  padding: 80px 0;
}

@media (max-width: 991px) {
  .section-padding {
    padding: 55px 0;
  }
}

@media (max-width: 575px) {
  .section-padding {
    padding: 40px 0;
  }
}

/* Dark Theme Background — used on product specification, application, FAQ sections */
.bg-dark-theme {
  background: linear-gradient(180deg, #131722 0%, #0E1118 100%);
}

/* Dark Card Background — used in table headers, modals, footer strips */
.bg-dark-card {
  background: #181D2A;
}

/* Max Width Constraint — used on section headers for readable line length */
.max-w-750 {
  max-width: 750px;
}

/* Relaxed Line Height — used on specification lists and body text */
.leading-relaxed {
  line-height: 1.75;
}

/* Extra-Large Shadow — used on modals, footer strips, CTA containers */
.shadow-2xl {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
}
