/* ==========================================================================
   METAL-LINK STEEL AND ALLOYS - PREMIUM B2B DESIGN SYSTEM & STYLESHEET
   Primary Color: #5D6C89 (Steel Slate Blue)
   Secondary Color: #EF2E31 (Forge Red Accent)
   Accent Tint: #F3F5F8 (Metallic Silver)
   Background Light: #F8FAFC
   Text Color: #30343F
   Typography: Outfit (Headings) & Poppins (Body)
   ========================================================================== */

/* --------------------------------------------------------------------------
   01. DESIGN TOKENS & CSS VARIABLES
   -------------------------------------------------------------------------- */
:root {
  /* Brand Colors */
  --primary-color: #5d6c89;
  --primary-dark: #3f4c6b;
  --primary-light: #7e8daf;
  --primary-subtle: rgba(93, 108, 137, 0.08);

  --secondary-color: #ef2e31;
  --secondary-hover: #d72225;
  --secondary-glow: rgba(239, 46, 49, 0.3);
  --secondary-subtle: rgba(239, 46, 49, 0.08);

  --accent-color: #f3f5f8;
  --bg-light: #f8fafc;
  --bg-white: #ffffff;

  --text-main: #30343f;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --text-white: #ffffff;

  --border-color: #e2e8f0;
  --border-hover: #cbd5e1;

  /* Glassmorphism Design Tokens */
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.6);
  --glass-shadow: 0 20px 40px -15px rgba(93, 108, 137, 0.12);

  /* Elevation Shadows */
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.04);
  --shadow-md:
    0 10px 25px -5px rgba(93, 108, 137, 0.1),
    0 8px 10px -6px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 25px 50px -12px rgba(93, 108, 137, 0.2);
  --shadow-red-glow: 0 10px 30px rgba(239, 46, 49, 0.35);

  /* Typography Tokens */
  --font-heading: "Outfit", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: "Poppins", -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout Tokens */
  --container-max: 1320px;
  --header-height-desk: 110px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --------------------------------------------------------------------------
   02. RESET & BASE STYLES
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--bg-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}

img,
video,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

ul,
ol {
  list-style: none;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  border: none;
  outline: none;
  background: none;
}

button {
  cursor: pointer;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--accent-color);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 5px;
  border: 2px solid var(--accent-color);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-color);
}

/* --------------------------------------------------------------------------
   03. REUSABLE UTILITIES & COMPONENTS
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1rem, 4vw, 2.5rem);
  padding-right: clamp(1rem, 4vw, 2.5rem);
}

.section-padding {
  padding-top: clamp(4rem, 8vw, 7.5rem);
  padding-bottom: clamp(4rem, 8vw, 7.5rem);
}

.flex-align {
  display: flex;
  align-items: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.text-center {
  text-align: center;
}

.text-white {
  color: var(--bg-white);
}

.text-muted {
  color: var(--text-muted);
}

.bg-light {
  background-color: var(--bg-light);
}

.margin-top-15 {
  margin-top: 15px;
}

.margin-top-20 {
  margin-top: 20px;
}

.margin-top-30 {
  margin-top: 30px;
}

.margin-top-40 {
  margin-top: 40px;
}

.margin-bottom-20 {
  margin-bottom: 20px;
}

/* Grid Layout Utilities */
.grid-2-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
}

.grid-3-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
}

.grid-4-col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
}

/* Fluid Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--primary-dark);
  font-weight: 700;
  line-height: 1.2;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  color: var(--primary-dark);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--text-muted);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.5rem;
}

.section-tag {
  gap: 12px;
  margin-bottom: 12px;
}

.tag-line {
  width: 24px;
  height: 2px;
  background-color: var(--secondary-color);
  display: inline-block;
}

.tag-text {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--secondary-color);
  text-transform: uppercase;
}

.gradient-text-primary {
  background: linear-gradient(
    135deg,
    var(--primary-dark) 0%,
    var(--secondary-color) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Glassmorphism Card Utility */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  box-shadow: var(--glass-shadow);
  transition: var(--transition-smooth);
}

.glass-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(93, 108, 137, 0.3);
}

/* Buttons System */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-large {
  padding: 1.1rem 2.25rem;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 0.5rem 1.15rem;
  font-size: 0.85rem;
}

.btn-full {
  width: 100%;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--bg-white);
  box-shadow: 0 4px 14px rgba(93, 108, 137, 0.3);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(93, 108, 137, 0.4);
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: var(--bg-white);
  box-shadow: var(--shadow-red-glow);
}

.btn-secondary:hover {
  background-color: var(--secondary-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(239, 46, 49, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--primary-dark);
  border: 2px solid var(--primary-color);
}

.btn-outline:hover {
  background: var(--primary-color);
  color: var(--bg-white);
  transform: translateY(-2px);
}

.btn-glow::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.4) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.btn-glow:hover::after {
  opacity: 1;
}

/* Button Ripple Effect */
.ripple {
  position: absolute;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  transform: scale(0);
  animation: ripple-anim 0.6s linear;
  pointer-events: none;
}

@keyframes ripple-anim {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* --------------------------------------------------------------------------
   04. PAGE LOADER & LOGO IMAGES
   -------------------------------------------------------------------------- */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition:
    opacity 0.5s ease,
    visibility 0.5s ease;
}

.page-loader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  text-align: center;
  max-width: 320px;
}

.loader-logo-img {
  height: 64px;
  width: auto;
  object-fit: contain;
  margin: 0 auto 15px auto;
  border-radius: 6px;
  animation: pulse-logo 1.5s infinite ease-in-out;
}

@keyframes pulse-logo {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.08);
  }
}

.loader-brand {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--primary-dark);
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.brand-text-sub {
  font-size: 0.75rem;
  color: var(--secondary-color);
  letter-spacing: 0.2em;
}

.loader-bar-bg {
  width: 100%;
  height: 4px;
  background-color: var(--border-color);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 10px;
}

.loader-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  transition: width 0.3s ease;
}

.loader-status {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  width: 0%;
  background: linear-gradient(
    90deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  z-index: 10000;
  transition: width 0.1s ease-out;
}

/* --------------------------------------------------------------------------
   05. HEADER & NAVIGATION WITH LOGO-01.JPG
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-smooth);
}

.top-bar {
  background-color: var(--primary-dark);
  color: var(--accent-color);
  font-size: 0.82rem;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-smooth);
}

.header-container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1rem, 4vw, 2.5rem);
  padding-right: clamp(1rem, 4vw, 2.5rem);
}

.top-info,
.top-contacts {
  gap: 12px;
}

.top-divider {
  opacity: 0.3;
}

.top-link:hover {
  color: var(--secondary-color);
}

.currency-selector select {
  background: rgba(255, 255, 255, 0.1);
  color: var(--bg-white);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.78rem;
  cursor: pointer;
}

.currency-selector select option {
  background-color: var(--primary-dark);
  color: var(--bg-white);
}

.main-nav-bar {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass-border);
  padding: 14px 0;
  transition: var(--transition-smooth);
}

.site-header.scrolled .top-bar {
  margin-top: -38px;
}

.site-header.scrolled .main-nav-bar {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-md);
  padding: 8px 0;
}

/* Brand Logo Image Styling */
.header-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  border-radius: 4px;
  transition: var(--transition-fast);
}

.mobile-logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
  border-radius: 4px;
}

.footer-logo-img {
  height: 80px;
  width: auto;
  object-fit: contain;
  border-radius: 4px;
  background: #ffffff;
  padding: 4px;
}

/* Navigation Links */
.nav-list {
  gap: 22px;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-main);
  position: relative;
  padding: 6px 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--secondary-color);
  transition: var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  color: var(--secondary-color);
}

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

/* Mobile Hamburger button */
.mobile-hamburger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}

.hamburger-line {
  width: 26px;
  height: 3px;
  background-color: var(--primary-dark);
  border-radius: 2px;
  transition: var(--transition-fast);
}

.mobile-hamburger-btn.active .hamburger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobile-hamburger-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-hamburger-btn.active .hamburger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: min(320px, 100vw);
  height: 100vh;
  background-color: var(--bg-white);
  z-index: 10001;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav-drawer.open {
  right: 0;
}

.drawer-close-btn {
  font-size: 2rem;
  color: var(--text-muted);
  line-height: 1;
}

.mobile-nav-list {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--primary-dark);
}

.mobile-nav-link:hover {
  color: var(--secondary-color);
}

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(48, 52, 63, 0.5);
  backdrop-filter: blur(4px);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* --------------------------------------------------------------------------
   06. HERO SECTION WITH VIDEO BACKGROUND
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  min-height: clamp(600px, 100vh, 100vh);
  padding-top: calc(var(--header-height-desk) + 40px);
  padding-bottom: 80px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.hero-video-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgb(248 250 252 / 66%) 0%,
    rgb(235 240 247 / 40%) 50%,
    rgb(243 245 248 / 0%) 100%
  );
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.shape-1 {
  top: 10%;
  right: 15%;
  width: 400px;
  height: 400px;
  background: rgba(93, 108, 137, 0.12);
}

.shape-2 {
  bottom: 15%;
  left: 5%;
  width: 350px;
  height: 350px;
  background: rgba(239, 46, 49, 0.08);
}

.hero-container {
  position: relative;
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

/* Pill Badge */
.pill-badge {
  display: inline-flex;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(239, 46, 49, 0.25);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}

.pulsing-dot {
  width: 8px;
  height: 8px;
  background-color: var(--secondary-color);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--secondary-color);
  animation: pulse-dot 1.8s infinite ease-in-out;
}

@keyframes pulse-dot {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.5);
    opacity: 0.5;
  }
}

.pill-text {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--secondary-color);
  letter-spacing: 0.08em;
}

.hero-heading {
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1.12;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.typing-target {
  border-bottom: 3px solid var(--secondary-color);
  padding-bottom: 2px;
}

.hero-description {
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  color: #031836;
  margin-bottom: 32px;
  max-width: 580px;
}

.hero-cta-group {
  gap: 14px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.hero-trust-badges {
  gap: 14px;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
}

.trust-badge-item {
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-dark);
}

.trust-badge-icon {
  color: var(--secondary-color);
  font-weight: 800;
}

/* Hero Right Visual */
.hero-visual {
  position: relative;
}

.hero-main-card {
  position: relative;
  padding: 12px;
  border-radius: var(--radius-lg);
}

.card-image-wrap {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.hero-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.hero-main-card:hover .hero-img {
  transform: scale(1.03);
}

.image-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(93, 108, 137, 0.1) 0%,
    rgba(48, 52, 63, 0.4) 100%
  );
}

/* Floating Product Badge Cards */
.floating-product-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
}

.card-pipes {
  top: 10%;
  left: -20px;
}

.card-flanges {
  top: 48%;
  right: -25px;
}

.card-fittings {
  bottom: 12%;
  left: -15px;
}

.f-icon {
  font-size: 1.25rem;
}

.f-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--primary-dark);
}

.f-subtitle {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.hero-live-stat-card {
  position: absolute;
  bottom: -20px;
  right: 20px;
  padding: 12px 20px;
  gap: 12px;
  background: var(--bg-white);
  border-left: 4px solid var(--secondary-color);
  z-index: 4;
}

.live-pulse {
  width: 12px;
  height: 12px;
  background-color: var(--secondary-color);
  border-radius: 50%;
  animation: pulse-dot 1.5s infinite;
}

.live-stat-num {
  display: block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--primary-dark);
}

.live-stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Floating Animations */
.floating-anim-1 {
  animation: float-slow 4s infinite ease-in-out;
}

.floating-anim-2 {
  animation: float-slow 5s infinite ease-in-out 1s;
}

.floating-anim-3 {
  animation: float-slow 4.5s infinite ease-in-out 2s;
}

@keyframes float-slow {
  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* --------------------------------------------------------------------------
   07. COMPANY STATISTICS BAR (STRICTLY HORIZONTAL LAYOUT)
   -------------------------------------------------------------------------- */
.stats-section {
  position: relative;
  z-index: 10;
  margin-top: -40px;
}

.stats-grid-horizontal {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  padding: 28px 36px;
  background: var(--bg-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  align-items: center;
}

.stat-item-h {
  padding: 12px;
  position: relative;
}

.stat-item-h:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background-color: var(--border-color);
}

.stat-icon-bg {
  width: 50px;
  height: 50px;
  background: var(--secondary-subtle);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px auto;
}

.stat-number-wrap {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 2.5vw, 2.6rem);
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-plus {
  color: var(--secondary-color);
}

.stat-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   08. ABOUT US SECTION
   -------------------------------------------------------------------------- */
.about-section {
  background-color: var(--bg-white);
}

.about-img-frame {
  position: relative;
  border-radius: var(--radius-md);
  overflow: visible;
  box-shadow: var(--shadow-md);
}

.about-main-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-md);
  display: block;
}

.about-badge-floating {
  position: absolute;
  bottom: 30px;
  right: 30px;
  padding: 20px 24px;
  background: var(--primary-dark);
  color: var(--bg-white);
  max-width: 220px;
  text-align: center;
  border-left: 4px solid var(--secondary-color);
}

.badge-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--secondary-color);
}

.badge-text {
  font-size: 0.85rem;
  opacity: 0.9;
}

.about-lead {
  font-size: 1.15rem;
  color: var(--primary-dark);
  font-weight: 500;
  margin-bottom: 16px;
}

.about-body {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* About Tabs */
.about-tab-buttons {
  gap: 12px;
  border-bottom: 2px solid var(--border-color);
  margin-bottom: 20px;
}

.about-tab-btn {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-muted);
  padding: 10px 16px;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: var(--transition-fast);
}

.about-tab-btn.active,
.about-tab-btn:hover {
  color: var(--secondary-color);
  border-bottom-color: var(--secondary-color);
}

.tab-pane {
  display: none;
  font-size: 0.925rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.tab-pane.active {
  display: block;
}

.feature-mini-card {
  gap: 12px;
  padding: 12px;
  background: var(--bg-light);
  border-radius: var(--radius-sm);
}

.mini-icon {
  width: 32px;
  height: 32px;
  background: var(--secondary-color);
  color: var(--bg-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.feature-mini-card h4 {
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.feature-mini-card p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   09. PRODUCT CATEGORIES SECTION
   -------------------------------------------------------------------------- */
.product-filter-bar {
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  justify-content: center;
}

.filter-btn {
  padding: 8px 20px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text-main);
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  transition: var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary-color);
  color: var(--bg-white);
  border-color: var(--primary-color);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(360px, 100%), 1fr));
  gap: 30px;
}

.product-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  transition: var(--transition-smooth);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.product-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}

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

.product-card:hover .product-img-wrap img {
  transform: scale(1.08);
}

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--primary-dark);
  color: var(--bg-white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
}

.product-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-meta {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--secondary-color);
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.product-title {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--primary-dark);
}

.product-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.product-specs {
  font-size: 0.82rem;
  color: var(--text-main);
  background: var(--bg-light);
  padding: 12px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.product-card-footer {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--border-color);
}

.stock-status {
  font-size: 0.8rem;
  font-weight: 600;
  color: #10b981;
  display: flex;
  align-items: center;
  gap: 6px;
}

.status-dot {
  width: 8px;
  height: 8px;
  background-color: #10b981;
  border-radius: 50%;
}

/* --------------------------------------------------------------------------
   10. WHY CHOOSE US SECTION
   -------------------------------------------------------------------------- */
.why-us-section {
  background-color: var(--bg-white);
}

.reason-card {
  padding: 30px 24px;
  text-align: left;
  transition: var(--transition-smooth);
  border: 1px solid var(--border-color);
}

.reason-card:hover {
  transform: translateY(-6px);
  border-color: var(--secondary-color);
  box-shadow: var(--shadow-md);
}

.reason-icon-wrap {
  width: 60px;
  height: 60px;
  background: var(--secondary-subtle);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition-fast);
}

.reason-card:hover .reason-icon-wrap {
  background: var(--secondary-color);
}

.reason-card:hover .reason-icon-wrap stroke {
  stroke: #ffffff;
}

.reason-card h3 {
  font-size: 1.125rem;
  margin-bottom: 10px;
}

.reason-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   11. INDUSTRIES WE SERVE
   -------------------------------------------------------------------------- */
.industry-card {
  padding: 28px;
  text-align: left;
  border: 1px solid var(--border-color);
  transition: var(--transition-smooth);
}

.industry-card:hover {
  background: var(--primary-dark);
  color: var(--bg-white);
  transform: translateY(-6px);
}

.industry-card:hover h3 {
  color: var(--bg-white);
}

.industry-card:hover p {
  color: var(--text-light);
}

.ind-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.industry-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.industry-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   12. MANUFACTURING TIMELINE WITH IMAGES
   -------------------------------------------------------------------------- */
.manufacturing-section {
  background-color: var(--bg-white);
}

.timeline-wrapper {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
}

.timeline-track {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: var(--primary-subtle);
  transform: translateX(-50%);
}

.timeline-item {
  margin-bottom: 40px;
  position: relative;
  width: 100%;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-number {
  width: 50px;
  height: 50px;
  background: var(--secondary-color);
  color: var(--bg-white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 0 6px var(--bg-white),
    var(--shadow-sm);
  z-index: 2;
  flex-shrink: 0;
}

.timeline-content {
  width: 43%;
  padding: 20px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.timeline-img-wrap {
  width: 100%;
  height: 150px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 14px;
}

.timeline-step-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.timeline-content:hover .timeline-step-img {
  transform: scale(1.06);
}

.timeline-content h3 {
  font-size: 1.125rem;
  margin-bottom: 6px;
}

.timeline-content p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   13. QUALITY ASSURANCE
   -------------------------------------------------------------------------- */
.quality-lead {
  font-size: 1.1rem;
  color: var(--primary-dark);
  margin-bottom: 16px;
}

.quality-standards-grid {
  gap: 10px;
  margin-top: 20px;
}

.std-badge {
  padding: 10px 14px;
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--primary-dark);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.check-list {
  gap: 12px;
}

.check-list li {
  font-size: 0.88rem;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon-check {
  color: var(--secondary-color);
  font-weight: 800;
}

.quality-hero-card {
  padding: 16px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.quality-hero-card img {
  border-radius: var(--radius-sm);
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.quality-mtc-banner {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 16px;
  padding: 14px;
  background: var(--primary-dark);
  color: var(--bg-white);
  border-radius: var(--radius-sm);
}

.mtc-icon {
  font-size: 1.8rem;
}

.quality-mtc-banner h4 {
  font-size: 0.95rem;
  color: var(--bg-white);
  margin-bottom: 2px;
}

.quality-mtc-banner p {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* --------------------------------------------------------------------------
   14. GLOBAL EXPORT SECTION (MAP)
   -------------------------------------------------------------------------- */
.map-wrapper {
  padding: 24px;
  position: relative;
  border: 1px solid var(--border-color);
}

.world-map-svg-container {
  position: relative;
  width: 100%;
}

.world-map-svg {
  width: 100%;
  height: auto;
  max-height: 480px;
}

#world-map {
  width: 100%;
  min-height: 300px;
}

.route-line {
  animation: dash 30s linear infinite;
}

@keyframes dash {
  to {
    stroke-dashoffset: -1000;
  }
}

.map-marker {
  cursor: pointer;
  transition: transform 0.3s ease;
}

.map-marker:hover {
  transform: scale(1.3);
}

.marker-pulse {
  animation: marker-pulse-anim 2s infinite ease-out;
}

@keyframes marker-pulse-anim {
  0% {
    r: 5;
    opacity: 0.8;
  }

  100% {
    r: 25;
    opacity: 0;
  }
}

.map-tooltip {
  position: absolute;
  bottom: 20px;
  left: 20px;
  padding: 16px 20px;
  background: var(--primary-dark);
  color: var(--bg-white);
  max-width: min(320px, calc(100% - 40px));
  z-index: 10;
  pointer-events: none;
  border-left: 4px solid var(--secondary-color);
}

.map-tooltip h4 {
  color: var(--secondary-color);
  font-size: 1rem;
  margin-bottom: 4px;
}

.map-tooltip p {
  font-size: 0.82rem;
  color: var(--text-light);
}

.map-stats-footer {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
}

.m-stat {
  display: block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--primary-dark);
}

.m-label {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   15. CERTIFICATIONS & CLIENT MARQUEE
   -------------------------------------------------------------------------- */
.cert-card {
  padding: 30px 20px;
  border: 1px solid var(--border-color);
}

.cert-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.cert-card h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.cert-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Client Marquee */
.clients-section {
  padding: 40px 0;
  background: var(--primary-dark);
  color: var(--bg-white);
  overflow: hidden;
}

.clients-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--text-light);
  margin-bottom: 24px;
}

.marquee-container {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  gap: 50px;
  animation: marquee-anim 30s linear infinite;
}

@keyframes marquee-anim {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}

.client-logo-item {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.05em;
}

/* --------------------------------------------------------------------------
   16. TESTIMONIALS SLIDER
   -------------------------------------------------------------------------- */
.testimonials-section {
  background-color: var(--bg-white);
}

.testimonial-slider-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-slide {
  min-width: 100%;
  padding: 10px;
}

.testimonial-card {
  padding: 40px;
  position: relative;
  border: 1px solid var(--border-color);
}

.quote-mark {
  font-size: 4rem;
  color: var(--secondary-subtle);
  font-family: Georgia, serif;
  position: absolute;
  top: 10px;
  left: 20px;
  line-height: 1;
}

.t-text {
  font-size: 1.1rem;
  color: var(--text-main);
  font-style: italic;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.t-author {
  gap: 16px;
}

.t-avatar {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: var(--bg-white);
  font-family: var(--font-heading);
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.t-name {
  font-size: 1rem;
  margin-bottom: 2px;
}

.t-role {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.t-prev-btn,
.t-next-btn {
  width: 44px;
  height: 44px;
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.t-prev-btn:hover,
.t-next-btn:hover {
  background: var(--secondary-color);
  color: var(--bg-white);
  border-color: var(--secondary-color);
}

.t-dots {
  gap: 8px;
  margin: 0 20px;
}

.t-dot {
  width: 10px;
  height: 10px;
  background: var(--border-color);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition-fast);
}

.t-dot.active {
  background: var(--secondary-color);
  width: 24px;
  border-radius: 5px;
}

/* --------------------------------------------------------------------------
   17. BLOG SECTION
   -------------------------------------------------------------------------- */
.blog-card {
  border: 1px solid var(--border-color);
  overflow: hidden;
  border-radius: var(--radius-md);
  transition: var(--transition-smooth);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.blog-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.blog-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.blog-date {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(48, 52, 63, 0.85);
  color: var(--bg-white);
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 4px;
}

.blog-content {
  padding: 24px;
}

.blog-category {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--secondary-color);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 6px;
}

.blog-title {
  font-size: 1.1rem;
  margin-bottom: 10px;
  line-height: 1.35;
}

.blog-excerpt {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* --------------------------------------------------------------------------
   18. CTA SECTION
   -------------------------------------------------------------------------- */
.cta-section {
  background-color: var(--bg-white);
}

.cta-banner-card {
  padding: 60px 40px;
  background: linear-gradient(135deg, var(--primary-dark) 0%, #2a344a 100%);
  color: var(--bg-white);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.cta-badge {
  display: inline-block;
  padding: 4px 14px;
  background: rgba(239, 46, 49, 0.2);
  border: 1px solid var(--secondary-color);
  color: var(--secondary-color);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.78rem;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.cta-heading {
  color: var(--bg-white);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 14px;
}

.cta-text {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 620px;
  margin: 0 auto;
}

.cta-actions {
  gap: 20px;
}

/* --------------------------------------------------------------------------
   19. FOOTER SECTION
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: #1e2330;
  color: var(--text-light);
}

.footer-top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-desc {
  font-size: 0.88rem;
  line-height: 1.6;
}

.social-icon {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--bg-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
}

.social-icon:hover {
  background: var(--secondary-color);
}

.footer-heading {
  color: var(--bg-white);
  font-size: 1.1rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}

.footer-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--secondary-color);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--text-light);
}

.footer-links a:hover {
  color: var(--secondary-color);
  padding-left: 4px;
}

.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 0.88rem;
}

.footer-contact-items a {
  color: var(--secondary-color);
}

.footer-newsletter {
  padding: 30px 40px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-newsletter h4 {
  color: var(--bg-white);
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.newsletter-form {
  gap: 10px;
}

.newsletter-form input {
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  color: var(--bg-white);
  width: min(280px, 100%);
}

.footer-bottom {
  padding: 20px 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-bottom-links a:hover {
  color: var(--bg-white);
}

/* --------------------------------------------------------------------------
   20. BACK TO TOP BUTTON
   -------------------------------------------------------------------------- */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: var(--secondary-color);
  color: var(--bg-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-red-glow);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-4px);
  background: var(--secondary-hover);
}

/* --------------------------------------------------------------------------
   21. INTERACTIVE MODAL POPUPS
   -------------------------------------------------------------------------- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(30, 35, 48, 0.7);
  backdrop-filter: blur(8px);
  z-index: 10002;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  width: 100%;
  max-width: 650px;
  padding: 32px;
  background: var(--bg-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  transform: scale(0.9);
  transition: var(--transition-smooth);
}

.modal-overlay.active .modal-container {
  transform: scale(1);
}

.modal-title {
  font-size: 1.4rem;
  color: var(--primary-dark);
}

.modal-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.modal-close-btn {
  font-size: 2rem;
  color: var(--text-muted);
  line-height: 1;
}

.modal-form {
  margin-top: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 10px 14px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  background: var(--bg-light);
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-color);
  background: var(--bg-white);
  box-shadow: 0 0 0 3px rgba(93, 108, 137, 0.15);
}

/* Toast Notification */
.toast-notification {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background: var(--primary-dark);
  color: var(--bg-white);
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10003;
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition-smooth);
  border-left: 4px solid var(--secondary-color);
}

.toast-notification.active {
  transform: translateY(0);
  opacity: 1;
}

.toast-icon {
  width: 24px;
  height: 24px;
  background: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.8rem;
}

/* --------------------------------------------------------------------------
   22. ANIMATION HELPER CLASSES (Intersection Observer Triggered)
   -------------------------------------------------------------------------- */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.fade-in-up.appear,
.fade-in-left.appear,
.fade-in-right.appear {
  opacity: 1;
  transform: translate(0);
}

/* ==========================================================================
   ABOUT PAGE — BANNER, OVERVIEW, STATS
   ========================================================================== */

/* --- Banner --- */
.about-page-banner {
  position: relative;
  height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: var(--header-height-desk);
}

.about-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.about-page-banner:hover .about-banner-bg {
  transform: scale(1);
}

.about-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(30, 35, 48, 0.82) 0%,
    rgba(63, 76, 107, 0.65) 60%,
    rgba(239, 46, 49, 0.18) 100%
  );
  z-index: 1;
}

.about-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.about-banner-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--secondary-color);
  background: rgba(239, 46, 49, 0.12);
  border: 1px solid rgba(239, 46, 49, 0.35);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 18px;
}

.about-banner-title {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.about-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  list-style: none;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.about-breadcrumb a {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  transition: color 0.2s;
}

.about-breadcrumb a:hover {
  color: var(--secondary-color);
}

.about-breadcrumb .active {
  color: var(--secondary-color);
  font-weight: 600;
}

/* --- Overview Section --- */
.about-overview-section {
  padding: clamp(4rem, 7vw, 7rem) 0;
  background: var(--bg-white);
}

.about-overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

/* Left Image Column */
.about-img-col {
  position: relative;
}

.about-img-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}

.about-main-photo {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}

.about-img-accent {
  position: absolute;
  top: -18px;
  left: -18px;
  width: 60%;
  height: 60%;
  border: 3px solid var(--secondary-color);
  border-radius: var(--radius-lg);
  opacity: 0.25;
  z-index: 1;
  pointer-events: none;
}

.about-exp-badge {
  position: absolute;
  bottom: 28px;
  right: -20px;
  background: var(--primary-dark);
  color: #fff;
  padding: 20px 24px;
  border-radius: var(--radius-md);
  text-align: center;
  min-width: 160px;
  z-index: 3;
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--secondary-color);
}

.exp-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
  margin-bottom: 6px;
}

.exp-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
}

/* Right Content Column */
.about-content-col {
  display: flex;
  align-items: center;
}

.about-content-inner {
  max-width: 560px;
}

.about-section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--secondary-color);
  margin-bottom: 14px;
  position: relative;
  padding-left: 36px;
}

.about-section-tag::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 2px;
  background: var(--secondary-color);
}

.about-heading {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1.25;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.about-lead-text {
  font-size: 1.05rem;
  color: var(--primary-dark);
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 14px;
}

.about-body-text {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 28px;
}

.about-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  padding: 0;
}

.about-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-main);
}

.about-checklist li i {
  color: var(--secondary-color);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.about-cta-btn {
  gap: 10px;
  padding: 0.9rem 2rem;
}

/* --- Stats Section --- */
.about-stats-section {
  background: var(--primary-dark);
  padding: 3.5rem 0;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.about-stat-item {
  text-align: center;
  padding: 1.5rem 1rem;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
}

.about-stat-item h3 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 0;
  display: inline;
}

.stat-plus-sign {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--secondary-color);
  display: inline;
  margin-left: 2px;
}

.about-stat-item p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 8px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* --- Responsive --- */
@media (max-width: 991px) {
  .about-overview-grid {
    grid-template-columns: 1fr;
  }

  .about-exp-badge {
    right: 16px;
    bottom: 16px;
  }

  .about-content-inner {
    max-width: 100%;
  }

  .about-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-stat-item:nth-child(2)::after {
    display: none;
  }
}

@media (max-width: 575px) {
  .about-page-banner {
    height: 360px;
  }

  .about-main-photo {
    height: 320px;
  }

  .about-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-stat-item::after {
    display: none;
  }
}

/* ==========================================================================
   QUALITY PAGE STYLES
   ========================================================================== */

/* --- Shared Tokens --- */
.ql-eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--secondary-color);
  margin-bottom: 14px;
  position: relative;
  padding-left: 36px;
}

.ql-eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 2px;
  background: var(--secondary-color);
}

.ql-heading {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1.25;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.ql-subtext {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

.ql-section-head {
  margin-bottom: 3rem;
}

.ql-section-head .ql-eyebrow {
  padding-left: 0;
  display: block;
}

.ql-section-head .ql-eyebrow::before {
  display: none;
}

/* --- Intro Section --- */
.ql-intro-section {
  padding: clamp(4rem, 7vw, 7rem) 0;
  background: var(--bg-white);
}

.ql-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

.ql-intro-left p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.ql-intro-left p:last-child {
  margin-bottom: 0;
}

.ql-intro-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
}

.ql-intro-img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
}

.ql-intro-badge {
  position: absolute;
  bottom: 24px;
  left: -20px;
  background: var(--secondary-color);
  color: #fff;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-red-glow);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  line-height: 1.4;
}

.ql-intro-badge i {
  font-size: 1.6rem;
  flex-shrink: 0;
}

/* --- Stats Strip --- */
.ql-stats-strip {
  background: var(--primary-dark);
  padding: 2.5rem 0;
}

.ql-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.ql-stat {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 1rem 2rem;
  position: relative;
}

.ql-stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
}

.ql-stat i {
  font-size: 2rem;
  color: var(--secondary-color);
  flex-shrink: 0;
}

.ql-stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}

.ql-stat span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

/* --- Three Pillars --- */
.ql-pillars-section {
  padding: clamp(4rem, 7vw, 7rem) 0;
  background: var(--bg-light);
}

.ql-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.ql-pillar-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  border: 1px solid var(--border-color);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.ql-pillar-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.ql-pillar-featured {
  background: var(--primary-dark);
  border-color: transparent;
}

.ql-pillar-featured h3,
.ql-pillar-featured p {
  color: #fff;
}

.ql-pillar-featured .ql-pillar-icon {
  background: rgba(239, 46, 49, 0.2);
  color: var(--secondary-color);
}

.ql-pillar-icon {
  width: 64px;
  height: 64px;
  background: var(--secondary-subtle);
  color: var(--secondary-color);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  transition: var(--transition-fast);
}

.ql-pillar-card:not(.ql-pillar-featured):hover .ql-pillar-icon {
  background: var(--secondary-color);
  color: #fff;
}

.ql-pillar-card h3 {
  font-size: 1.15rem;
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.ql-pillar-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.ql-pillar-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--secondary-color);
  transition: width 0.4s ease;
}

.ql-pillar-card:hover .ql-pillar-line {
  width: 100%;
}

/* --- Excellence Section --- */
.ql-excellence-section {
  padding: clamp(4rem, 7vw, 7rem) 0;
  background: var(--bg-white);
}

.ql-excellence-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

.ql-excellence-left p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.ql-highlight-box {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border-color);
}

.ql-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition-fast);
}

.ql-highlight-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.ql-highlight-item:first-child {
  padding-top: 0;
}

.ql-highlight-item:hover .ql-hi-icon {
  background: var(--secondary-color);
  color: #fff;
}

.ql-hi-icon {
  width: 48px;
  height: 48px;
  background: var(--secondary-subtle);
  color: var(--secondary-color);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: var(--transition-fast);
}

.ql-highlight-item h4 {
  font-size: 0.95rem;
  color: var(--primary-dark);
  margin-bottom: 4px;
}

.ql-highlight-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* --- Process Steps --- */
.ql-process-section {
  padding: clamp(4rem, 7vw, 7rem) 0;
  background: var(--primary-dark);
}

.ql-process-section .ql-section-head .ql-eyebrow {
  color: var(--secondary-color);
}

.ql-process-section .ql-heading {
  color: #fff;
}

.ql-process-section .ql-subtext {
  color: rgba(255, 255, 255, 0.6);
}

.ql-process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.ql-process-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 2rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: var(--transition-smooth);
}

.ql-process-card:hover {
  background: rgba(239, 46, 49, 0.12);
  border-color: rgba(239, 46, 49, 0.4);
  transform: translateY(-4px);
}

.ql-process-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--secondary-color);
  line-height: 1;
  flex-shrink: 0;
  opacity: 0.85;
}

.ql-process-body h3 {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 8px;
}

.ql-process-body p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin: 0;
}

/* --- Assurance Section --- */
.ql-assurance-section {
  padding: clamp(4rem, 7vw, 7rem) 0;
  background: var(--bg-light);
}

.ql-assurance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}

.ql-assurance-left p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
}

.ql-assurance-img-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.ql-assurance-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.ql-assurance-img-wrap:hover .ql-assurance-img {
  transform: scale(1.04);
}

.ql-principles-box {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.ql-principles-box h3 {
  font-size: 1.25rem;
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--border-color);
}

.ql-principles-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.ql-principles-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.92rem;
  color: var(--text-main);
  line-height: 1.65;
}

.ql-check {
  width: 26px;
  height: 26px;
  background: var(--secondary-subtle);
  color: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
  margin-top: 1px;
  font-weight: 700;
}

/* --- Standards Section --- */
.ql-standards-section {
  padding: clamp(4rem, 7vw, 7rem) 0;
  background: var(--bg-white);
}

.ql-standards-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 3rem;
}

.ql-standards-text p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.ql-standards-text p:last-child {
  margin-bottom: 0;
}

.ql-standards-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-content: flex-start;
}

.ql-std-tag {
  display: inline-block;
  padding: 8px 16px;
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary-dark);
  transition: var(--transition-fast);
  cursor: default;
}

.ql-std-tag:hover {
  background: var(--primary-dark);
  color: #fff;
  border-color: var(--primary-dark);
}

/* Commitment Banner */
.ql-commitment-banner {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: linear-gradient(135deg, var(--primary-dark) 0%, #2a344a 100%);
  border-radius: var(--radius-lg);
  padding: 2.5rem 3rem;
  border-left: 5px solid var(--secondary-color);
}

.ql-commitment-icon {
  width: 72px;
  height: 72px;
  background: rgba(239, 46, 49, 0.2);
  color: var(--secondary-color);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
}

.ql-commitment-text {
  flex: 1;
}

.ql-commitment-text h3 {
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 8px;
}

.ql-commitment-text p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin: 0;
}

.ql-commitment-banner .btn-secondary {
  flex-shrink: 0;
  white-space: nowrap;
}

/* --- Quality Page Responsive --- */
@media (max-width: 1024px) {
  .ql-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .ql-intro-grid,
  .ql-excellence-grid,
  .ql-assurance-grid,
  .ql-standards-body {
    grid-template-columns: 1fr;
  }

  .ql-pillars-grid {
    grid-template-columns: 1fr;
  }

  .ql-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ql-stat:nth-child(2)::after {
    display: none;
  }

  .ql-intro-badge {
    left: 16px;
    bottom: 16px;
  }

  .ql-commitment-banner {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }
}

@media (max-width: 767px) {
  .ql-process-grid {
    grid-template-columns: 1fr;
  }

  .ql-stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .ql-stat {
    padding: 1rem;
  }

  .ql-stat::after {
    display: none !important;
  }

  .ql-intro-img {
    height: 300px;
  }
}

/* ==========================================================================
   CERTIFICATES PAGE STYLES
   ========================================================================== */

/* --- Intro Strip --- */
.cert-intro-strip {
  background: var(--primary-dark);
  padding: 2.8rem 0;
}

.cert-intro-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cert-intro-text h2 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: #fff;
  margin-bottom: 8px;
  font-weight: 700;
}

.cert-intro-text p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 560px;
  line-height: 1.65;
  margin: 0;
}

.cert-intro-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex-shrink: 0;
}

.cert-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}

.cert-badge-pill i {
  color: var(--secondary-color);
  font-size: 0.9rem;
}

/* --- Grid Section --- */
.cert-grid-section {
  padding: clamp(4rem, 7vw, 7rem) 0;
  background: var(--bg-light);
}

.cert-section-head {
  text-align: center;
  margin-bottom: 3rem;
}

.cert-section-head .ql-eyebrow {
  padding-left: 0;
  display: block;
}

.cert-section-head .ql-eyebrow::before {
  display: none;
}

.cert-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* --- Certificate Card --- */
.cert-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
}

.cert-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.cert-card-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.cert-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.cert-card:hover .cert-card-img {
  transform: scale(1.07);
}

.cert-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 40%,
    rgba(30, 35, 48, 0.55) 100%
  );
  transition: var(--transition-smooth);
}

.cert-card:hover .cert-card-overlay {
  background: linear-gradient(
    180deg,
    rgba(30, 35, 48, 0.25) 0%,
    rgba(30, 35, 48, 0.7) 100%
  );
}

.cert-card-zoom-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.6);
  width: 56px;
  height: 56px;
  background: var(--secondary-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  opacity: 0;
  transition: var(--transition-smooth);
  z-index: 2;
  box-shadow: var(--shadow-red-glow);
}

.cert-card:hover .cert-card-zoom-icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.cert-card-info {
  padding: 1.5rem;
  border-top: 3px solid transparent;
  transition: border-color 0.3s ease;
}

.cert-card:hover .cert-card-info {
  border-top-color: var(--secondary-color);
}

.cert-card-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--secondary-color);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.cert-card-info h3 {
  font-size: 1.1rem;
  color: var(--primary-dark);
  margin-bottom: 4px;
  font-weight: 700;
}

.cert-card-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

/* --- Lightbox --- */
.cert-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10010;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
}

.cert-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.cert-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 18, 28, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
}

.cert-lightbox-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 960px;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
  transform: scale(0.88) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cert-lightbox.active .cert-lightbox-container {
  transform: scale(1) translateY(0);
}

.cert-lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background: var(--primary-dark);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  z-index: 10;
  cursor: pointer;
  transition: var(--transition-fast);
  border: none;
}

.cert-lightbox-close:hover {
  background: var(--secondary-color);
  transform: rotate(90deg);
}

.cert-lightbox-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
}

.cert-lightbox-img-wrap {
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  overflow: hidden;
}

.cert-lightbox-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.cert-lightbox-img:hover {
  transform: scale(1.03);
}

.cert-lightbox-details {
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

.cert-lightbox-label {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--secondary-color);
  display: block;
  margin-bottom: 12px;
}

.cert-lightbox-details h3 {
  font-size: 1.6rem;
  color: var(--primary-dark);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
}

.cert-lightbox-details p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.cert-lightbox-actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
}

.cert-lb-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-fast);
  border: 1px solid var(--border-color);
  background: var(--bg-light);
  color: var(--primary-dark);
}

.cert-lb-nav:hover {
  background: var(--primary-dark);
  color: #fff;
  border-color: var(--primary-dark);
}

.cert-lb-next {
  background: var(--secondary-color);
  color: #fff;
  border-color: var(--secondary-color);
}

.cert-lb-next:hover {
  background: var(--secondary-hover);
  border-color: var(--secondary-hover);
}

/* --- Certificates Responsive --- */
@media (max-width: 1024px) {
  .cert-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .cert-intro-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cert-cards-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .cert-lightbox-inner {
    grid-template-columns: 1fr;
  }

  .cert-lightbox-img-wrap {
    min-height: 240px;
  }

  .cert-lightbox-details {
    padding: 1.5rem;
  }

  .cert-lightbox-details h3 {
    font-size: 1.25rem;
  }
}

/* ==========================================================================
   TECHNICAL INFO PAGE STYLES
   ========================================================================== */

.ti-section {
  padding: clamp(4rem, 7vw, 7rem) 0;
  background: var(--bg-light);
}

/* --- Head --- */
.ti-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.ti-head-text p {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
  margin: 0;
}

/* --- Tab Bar --- */
.ti-tab-bar {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.ti-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg-white);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-fast);
}

.ti-tab-btn i {
  font-size: 0.95rem;
}

.ti-tab-btn:hover {
  border-color: var(--primary-color);
  color: var(--primary-dark);
}

.ti-tab-btn.active {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.ti-tab-btn.active i {
  color: var(--secondary-color);
}

/* --- Tab Panes --- */
.ti-tab-pane {
  display: none;
  animation: ti-fade-in 0.3s ease;
}

.ti-tab-pane.active {
  display: block;
}

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

/* --- Table Card --- */
.ti-table-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.ti-table-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.75rem 2rem;
  border-bottom: 1px solid var(--border-color);
  background: var(--primary-dark);
  flex-wrap: wrap;
}

.ti-table-title {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ti-table-title > i {
  font-size: 1.8rem;
  color: var(--secondary-color);
  flex-shrink: 0;
}

.ti-table-title h3 {
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 3px;
}

.ti-table-title p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
  line-height: 1.4;
}

.ti-table-badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(239, 46, 49, 0.15);
  border: 1px solid rgba(239, 46, 49, 0.4);
  color: var(--secondary-color);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-radius: var(--radius-full);
  white-space: nowrap;
  flex-shrink: 0;
}

/* --- Scrollable Table Wrapper --- */
.ti-table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.ti-table-scroll::-webkit-scrollbar {
  height: 6px;
}

.ti-table-scroll::-webkit-scrollbar-track {
  background: var(--bg-light);
}

.ti-table-scroll::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 3px;
}

/* --- Table --- */
.ti-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  min-width: 640px;
}

.ti-table thead tr {
  background: var(--bg-light);
}

.ti-table thead th {
  padding: 14px 16px;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary-dark);
  border-bottom: 2px solid var(--border-color);
  white-space: nowrap;
  line-height: 1.4;
}

.ti-table thead th span {
  display: block;
  font-weight: 500;
  color: var(--text-muted);
  font-size: 0.72rem;
  margin-top: 2px;
}

.ti-table tbody tr {
  border-bottom: 1px solid var(--border-color);
  transition: background 0.15s ease;
}

.ti-table tbody tr:last-child {
  border-bottom: none;
}

.ti-table tbody tr:hover {
  background: var(--primary-subtle);
}

.ti-table tbody td {
  padding: 13px 16px;
  color: var(--text-main);
  white-space: nowrap;
}

.ti-grade {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary-dark) !important;
  background: var(--bg-light);
  border-right: 2px solid var(--border-color);
  position: sticky;
  left: 0;
  z-index: 1;
}

/* Zebra stripe */
.ti-table tbody tr:nth-child(even) {
  background: #fafbfd;
}

.ti-table tbody tr:nth-child(even):hover {
  background: var(--primary-subtle);
}

/* --- Responsive --- */
@media (max-width: 767px) {
  .ti-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .ti-tab-bar {
    width: 100%;
  }

  .ti-tab-btn {
    flex: 1;
    justify-content: center;
  }

  .ti-table-header {
    padding: 1.25rem;
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ==========================================================================
   CONTACT PAGE STYLES
   ========================================================================== */

/* --- Hero --- */
.co-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  margin-top: var(--header-height-desk);
}

.co-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 8s ease;
}

.co-hero:hover .co-hero-bg {
  transform: scale(1);
}

.co-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(15, 18, 28, 0.92) 0%,
    rgba(30, 40, 65, 0.8) 55%,
    rgba(239, 46, 49, 0.15) 100%
  );
}

.co-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
  flex-wrap: wrap;
}

.co-hero-left {
  max-width: 600px;
}

.co-hero-title {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 16px 0 18px;
}

.co-hero-title span {
  color: var(--secondary-color);
}

.co-hero-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 500px;
}

.co-hero-sub strong {
  color: #fff;
}

.co-hero-quick {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.co-quick-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition-smooth);
  backdrop-filter: blur(8px);
}

.co-quick-btn:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-3px);
}

.co-quick-btn small {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 2px;
}

.co-quick-wa {
  background: rgba(37, 211, 102, 0.15);
  border-color: rgba(37, 211, 102, 0.35);
}

.co-quick-wa:hover {
  background: rgba(37, 211, 102, 0.25);
  border-color: rgba(37, 211, 102, 0.6);
}

.co-quick-icon {
  width: 44px;
  height: 44px;
  background: var(--secondary-color);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.co-quick-wa .co-quick-icon {
  background: #25d366;
}

/* Hero Right Stats */
.co-hero-right {
  flex-shrink: 0;
}

.co-hero-stats {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  overflow: hidden;
  backdrop-filter: blur(12px);
  min-width: 200px;
}

.co-hero-stat {
  padding: 1.25rem 1.75rem;
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.co-hero-stat:last-child {
  border-bottom: none;
}

.co-hero-stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--secondary-color);
  line-height: 1;
  margin-bottom: 4px;
}

.co-hero-stat span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

/* Breadcrumb bar */
.co-hero-breadcrumb {
  position: relative;
  z-index: 2;
  background: rgba(0, 0, 0, 0.25);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px 0;
}

/* --- Main Contact Block --- */
.co-main-section {
  padding: clamp(4rem, 7vw, 7rem) 0;
  background: var(--bg-light);
}

.co-main-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 2.5rem;
  align-items: start;
}

/* Info Panel */
.co-info-panel {
  background: var(--primary-dark);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: sticky;
  top: 120px;
}

.co-info-header {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.co-info-header .ql-eyebrow {
  color: var(--secondary-color);
  padding-left: 0;
}

.co-info-header .ql-eyebrow::before {
  display: none;
}

.co-info-header h2 {
  font-size: 1.35rem;
  color: #fff;
  margin: 10px 0 0;
  line-height: 1.3;
}

.co-info-cards {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.co-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition-fast);
}

.co-info-card:last-child {
  border-bottom: none;
}

.co-info-icon {
  width: 42px;
  height: 42px;
  background: rgba(239, 46, 49, 0.15);
  color: var(--secondary-color);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: var(--transition-fast);
}

.co-info-card:hover .co-info-icon {
  background: var(--secondary-color);
  color: #fff;
}

.co-info-card h4 {
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 5px;
}

.co-info-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.65;
  margin: 0;
}

.co-info-card p a {
  color: rgba(255, 255, 255, 0.85);
  display: block;
  transition: color 0.2s;
}

.co-info-card p a:hover {
  color: var(--secondary-color);
}

.co-badge-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: #4ade80;
  font-weight: 600;
  margin-top: 4px;
}

.co-badge-live i {
  font-size: 0.55rem;
  animation: pulse-dot 1.8s infinite;
}

/* Social Row */
.co-social-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.co-social-row > span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 600;
  white-space: nowrap;
}

.co-socials {
  display: flex;
  gap: 10px;
}

.co-socials a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: var(--transition-fast);
}

.co-socials a:hover {
  background: var(--secondary-color);
  color: #fff;
  transform: translateY(-3px);
}

/* Form Panel */
.co-form-panel {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
}

.co-form-header {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.co-form-header h2 {
  font-size: 1.5rem;
  color: var(--primary-dark);
  margin-bottom: 6px;
}

.co-form-header p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

.co-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.co-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.co-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.co-field-full {
  grid-column: 1 / -1;
}

.co-field label {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.co-field label span {
  color: var(--secondary-color);
}

.co-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.co-input-wrap > i {
  position: absolute;
  left: 14px;
  color: var(--text-light);
  font-size: 0.9rem;
  pointer-events: none;
  transition: color 0.2s;
  z-index: 1;
}

.co-input-wrap input,
.co-input-wrap select,
.co-input-wrap textarea {
  width: 100%;
  padding: 12px 14px 12px 40px;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-sm);
  background: var(--bg-light);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-main);
  transition: var(--transition-fast);
  outline: none;
  appearance: none;
}

.co-input-wrap input:focus,
.co-input-wrap select:focus,
.co-input-wrap textarea:focus {
  border-color: var(--primary-color);
  background: var(--bg-white);
  box-shadow: 0 0 0 3px rgba(93, 108, 137, 0.12);
}

.co-input-wrap input:focus ~ i,
.co-input-wrap select:focus ~ i,
.co-input-wrap textarea:focus ~ i {
  color: var(--primary-color);
}

.co-input-wrap:focus-within > i {
  color: var(--primary-color);
}

.co-textarea-wrap {
  align-items: flex-start;
}

.co-textarea-wrap > i {
  top: 14px;
}

.co-textarea-wrap textarea {
  resize: vertical;
  min-height: 130px;
}

.co-form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 0.5rem;
}

.co-form-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0;
}

.co-form-note i {
  color: var(--primary-color);
}

.co-submit-btn {
  gap: 10px;
  padding: 0.9rem 2rem;
  font-size: 0.95rem;
  white-space: nowrap;
}

/* --- Map Section --- */
.co-map-section {
  background: var(--bg-white);
}

.co-map-header {
  padding: 3rem 0 2rem;
  background: var(--bg-white);
}

.co-map-header .ql-eyebrow {
  padding-left: 0;
  display: block;
  text-align: center;
}

.co-map-header .ql-eyebrow::before {
  display: none;
}

.co-map-header .ql-heading {
  text-align: center;
}

.co-map-wrap {
  position: relative;
  height: 460px;
  overflow: hidden;
}

.co-map-wrap iframe {
  width: 100%;
  height: 100%;
  display: block;
  filter: grayscale(20%) contrast(1.05);
}

.co-map-pin-card {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: var(--primary-dark);
  color: #fff;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  max-width: 300px;
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--secondary-color);
}

.co-map-pin-icon {
  color: var(--secondary-color);
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.co-map-pin-card strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 5px;
}

.co-map-pin-card span {
  display: block;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
  margin-bottom: 10px;
}

.co-map-directions {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--secondary-color);
  transition: gap 0.2s;
}

.co-map-directions:hover {
  gap: 10px;
}

/* --- Bottom CTA Strip --- */
.co-cta-strip {
  background: linear-gradient(135deg, #1a2235 0%, var(--primary-dark) 100%);
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.co-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.co-cta-text {
  display: flex;
  align-items: center;
  gap: 16px;
}

.co-cta-wa-icon {
  font-size: 2.5rem;
  color: #25d366;
  flex-shrink: 0;
}

.co-cta-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 3px;
}

.co-cta-text span {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
}

/* --- Contact Responsive --- */
@media (max-width: 1100px) {
  .co-main-grid {
    grid-template-columns: 360px 1fr;
  }
}

@media (max-width: 991px) {
  .co-main-grid {
    grid-template-columns: 1fr;
  }

  .co-info-panel {
    position: static;
  }

  .co-hero-right {
    display: none;
  }

  .co-hero-stats {
    flex-direction: row;
    min-width: unset;
  }
}

@media (max-width: 767px) {
  .co-hero {
    min-height: auto;
  }

  .co-hero-title {
    font-size: 2.4rem;
  }

  .co-form-row {
    grid-template-columns: 1fr;
  }

  .co-form-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .co-submit-btn {
    width: 100%;
    justify-content: center;
  }

  .co-map-wrap {
    height: 360px;
  }

  .co-map-pin-card {
    left: 16px;
    bottom: 16px;
    max-width: calc(100% - 32px);
  }

  .co-cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .co-cta-text {
    flex-direction: column;
    text-align: center;
  }
}

/* =========================================================
   FORM VALIDATION
========================================================= */

.co-input-error {
  border-color: #dc3545 !important;
  box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.08) !important;
}

/* Error message */

.co-error-message {
  display: block;
  margin-top: 6px;

  color: #dc3545;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 500;
}

.co-error-message i {
  margin-right: 3px;
  font-size: 11px;
}

/* Error state for select */

select.co-input-error {
  border-color: #dc3545 !important;
}

/* Remove browser focus issue */

.co-input-wrap input:focus.co-input-error,
.co-input-wrap textarea:focus.co-input-error,
.co-input-wrap select:focus.co-input-error {
  border-color: #dc3545 !important;
  box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.08) !important;
}

/* Fixing  */
/* ============================================================
   MOBILE OVERRIDE FIX — keep this block at the very end of the file
   ============================================================ */
@media (max-width: 768px) {
  .stats-grid-horizontal {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0 !important;
    padding: 12px !important;
    border-radius: var(--radius-sm) !important;
  }
  .stat-item-h {
    padding: 14px 10px !important;
  }
  .stat-item-h::after {
    display: none !important;
  }

  .about-img-frame {
    overflow: visible !important;
  }
  .about-main-img {
    height: 320px !important;
  }
  .about-badge-floating {
    position: static !important;
    bottom: auto !important;
    right: auto !important;
    max-width: 100% !important;
    margin-top: 14px !important;
    border-radius: var(--radius-sm) !important;
  }
  .about-features-mini {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 576px) {
  .stats-grid-horizontal {
    grid-template-columns: repeat(2, 1fr) !important;
    padding: 10px 8px !important;
  }
  .stat-number-wrap {
    font-size: 1.8rem !important;
  }
  .stat-label {
    font-size: 0.78rem !important;
  }
  .stat-icon-bg {
    width: 40px !important;
    height: 40px !important;
  }

  .about-tab-buttons {
    flex-wrap: wrap !important;
    gap: 6px !important;
  }
  .about-tab-btn {
    font-size: 0.78rem !important;
    padding: 7px 10px !important;
  }
}

@media (max-width: 390px) {
  .stats-grid-horizontal {
    grid-template-columns: 1fr !important;
  }
  .stat-item-h {
    padding: 10px !important;
  }
}
