/**
 * About Us Page Styles
 * KMS Technologies
 * Matching homepage design system: dark navy + gold accents
 */

/* ===== CSS VARIABLES ===== */
:root {
  /* Primary Colors - Dark Navy Theme */
  --kms-primary: #1a1a2e;
  --kms-primary-dark: #16213e;
  --kms-primary-light: #252a48;
  --kms-secondary: #ffc107;
  --kms-yellow: #ffd700;
  --kms-yellow-dark: #e6c200;

  /* Accent Colors */
  --kms-accent: #00bfa5;
  --kms-accent-light: #4ecdc4;

  /* Neutral Colors */
  --kms-white: #ffffff;
  --kms-light-gray: #f8f9fa;
  --kms-gray: #6c757d;
  --kms-dark-gray: #343a40;
  --kms-black: #000000;

  /* Typography */
  --font-primary: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  --font-heading: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

* {
  box-sizing: border-box;
}

/* ===================================================================
   HERO BANNER SECTION
   =================================================================== */
.about-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("../homeSlider/large-scale-industrial-steel-structure-erection-india.webp")
    center center / cover no-repeat;
  overflow: hidden;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 46, 0.92) 0%,
    rgba(22, 33, 62, 0.85) 100%
  );
  z-index: 1;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 20px 60px;
  max-width: 800px;
}

.about-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 0.9rem;
}

.about-breadcrumb a {
  color: var(--kms-yellow);
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.3s ease;
}

.about-breadcrumb a:hover {
  opacity: 0.8;
}

.about-breadcrumb .breadcrumb-sep {
  color: rgba(255, 255, 255, 0.4);
}

.about-breadcrumb span:last-child {
  color: rgba(255, 255, 255, 0.7);
}

.about-hero-title {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--kms-white);
  line-height: 1.2;
  margin: 0 0 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.about-hero-title br {
  display: block;
}

.about-hero-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin: 0;
  font-weight: 400;
}

/* ===================================================================
   SHARED SECTION COMPONENTS
   =================================================================== */
.about-section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: #186294;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.about-section-label.center {
  display: block;
  text-align: center;
}

.about-section-title {
  font-size: 2rem;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 2.5rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
}

.about-section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #f59e0b, #d97706);
  border-radius: 2px;
  margin-top: 12px;
}

.about-section-title.center {
  text-align: center;
}

.about-section-title.center::after {
  margin-left: auto;
  margin-right: auto;
}

/* ===================================================================
   COMPANY OVERVIEW SECTION
   =================================================================== */
.about-overview-section {
  padding: 1rem 0 3rem;
  background: #ffffff;
  position: relative;
}

.about-overview-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.about-overview-wrapper {
  display: grid;
  grid-template-columns: 50% 50%;
  gap: 3rem;
  align-items: flex-start;
}

.about-overview-text {
  display: flex;
  flex-direction: column;
}

.about-overview-desc {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #2d3748;
  margin-bottom: 1.25rem;
}

.about-overview-desc:last-of-type {
  margin-bottom: 2rem;
}

.highlight-gold {
  color: #2d3748;
  font-weight: 700;
}

.text-underline-gold {
  color: #2d3748;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 2px;
}

/* Button — matching homepage btn-discover-more */
.btn-about-cta {
  display: inline-block;
  padding: 0.875rem 2rem;
  border: 2px solid #ffc107;
  background: transparent;
  color: #1e3a5f;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  text-decoration: none;
  align-self: flex-start;
  cursor: pointer;
}

.btn-about-cta:hover {
  background: #e4bd49;
  color: #1e3a5f;
  box-shadow: 0 10px 30px rgba(255, 193, 7, 0.3);
}

.about-overview-image {
  position: relative;
}

.about-overview-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}



/* ===================================================================
   MISSION & VISION SECTION
   =================================================================== */
.about-mission-vision {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 30px 0;
  position: relative;
  overflow: hidden;
}

.about-mission-vision::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(
      circle at 10% 20%,
      rgba(26, 26, 46, 0.02) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(255, 193, 7, 0.03) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.about-mission-vision .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  position: relative;
  z-index: 1;
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* ===== ABOUT CARD (Mission & Vision cards) ===== */
.about-card {
  background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 20px;
  padding: 45px 35px;
  color: #343a40;
  border: 1px solid rgba(26, 26, 46, 0.06);
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.05),
    0 10px 25px -5px rgba(0, 0, 0, 0.05),
    0 20px 40px -10px rgba(26, 26, 46, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

/* Gold accent bar at top */
.about-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--kms-yellow), var(--kms-yellow-dark));
  border-radius: 0 0 4px 4px;
  transition: width 0.4s ease;
}

/* Decorative corner element */
.about-card::after {
  content: "";
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: linear-gradient(
    135deg,
    rgba(255, 193, 7, 0.1),
    rgba(255, 193, 7, 0.05)
  );
  border-radius: 50%;
  opacity: 0;
  transition: all 0.4s ease;
}

.about-card:hover::before {
  width: 120px;
}

.about-card:hover::after {
  opacity: 1;
  transform: scale(1.2);
}

.about-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.08),
    0 20px 40px -5px rgba(0, 0, 0, 0.1),
    0 30px 60px -10px rgba(26, 26, 46, 0.15);
  border-color: rgba(255, 193, 7, 0.3);
}

.about-card-icon {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--kms-primary),
    var(--kms-primary-dark)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--kms-yellow);
  box-shadow: 0 6px 15px rgba(26, 26, 46, 0.3);
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.about-card:hover .about-card-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(
    135deg,
    var(--kms-yellow),
    var(--kms-yellow-dark)
  );
  color: var(--kms-primary-dark);
}

.about-card h3 {
  color: #1a1a2e;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 1.75rem;
  font-weight: 800;
  position: relative;
  display: inline-block;
}

/* Decorative underline for headings */
.about-card h3::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #f59e0b, #d97706);
  border-radius: 2px;
  transition: width 0.4s ease;
}

.about-card:hover h3::after {
  width: 80px;
}

.about-card p {
  line-height: 1.9;
  color: #6b7280;
  font-size: 1rem;
  margin-bottom: 0;
}

/* ===================================================================
   CORE VISUAL SECTION (IMAGE/VIDEO LAYER)
   =================================================================== */
.core-visual-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 0;
}

.core-visual-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(
      circle at 20% 30%,
      rgba(26, 26, 46, 0.02) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(255, 193, 7, 0.03) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.core-visual-wrapper {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 30px;
  align-items: stretch;
  position: relative;
  z-index: 1;
  padding: 0 15px;
}

.core-visual-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(26, 26, 46, 0.08);
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.05),
    0 10px 25px -5px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  height: 400px;
  min-width: 0;
}

.core-visual-item:hover {
  transform: translateY(-8px);
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.08),
    0 20px 50px rgba(0, 0, 0, 0.1);
  border-color: var(--kms-yellow);
}

.core-visual-item::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(
    135deg,
    var(--kms-yellow),
    var(--kms-yellow-dark)
  );
  border-radius: 16px;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
}

.core-visual-item:hover::before {
  opacity: 0.15;
}

.core-visual-wrapper img,
.core-visual-wrapper video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 14px;
}

/* ===================================================================
/* DESCRIPTION */
.value-card-line .value-description {
  font-size: 0.875rem;
  font-weight: 400;
  color: #6b7280;
  line-height: 1.5;
  text-align: center;
}

/* ===================================================================
   MANUFACTURING SECTION
   =================================================================== */
.manufacturing-section {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 30px 0;
  position: relative;
  overflow: hidden;
}

.manufacturing-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(
      circle at 15% 25%,
      rgba(26, 26, 46, 0.02) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 85% 75%,
      rgba(255, 193, 7, 0.03) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.manufacturing-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  position: relative;
  z-index: 1;
}

.manufacturing-title {
  text-align: center;
  font-size: 2rem;
  color: #1a1a2e;
  margin-bottom: 30px;
  font-weight: 800;
  position: relative;
  z-index: 1;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Gold underline accent */
.manufacturing-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #f59e0b, #d97706);
  margin: 15px auto 0;
  border-radius: 2px;
}

.manufacturing-description {
  max-width: 1000px;
  margin: 0 auto 50px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.manufacturing-description p {
  color: #6b7280;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 15px;
}

.manufacturing-description p:last-child {
  margin-bottom: 0;
}

.manufacturing-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  position: relative;
  z-index: 1;
}

.manufacturing-item {
  background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 16px;
  padding: 25px 30px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  border: 1px solid rgba(26, 26, 46, 0.06);
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.05),
    0 10px 25px -5px rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.manufacturing-item::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(255, 193, 7, 0.08) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.manufacturing-item:hover::before {
  opacity: 1;
}

.manufacturing-item:hover {
  transform: translateY(-5px);
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.08),
    0 20px 40px -5px rgba(0, 0, 0, 0.1);
  border-color: rgba(255, 193, 7, 0.3);
}

.manufacturing-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--kms-primary),
    var(--kms-primary-dark)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--kms-yellow);
  box-shadow: 0 4px 12px rgba(26, 26, 46, 0.3);
  transition: all 0.3s ease;
}

.manufacturing-icon svg {
  stroke-width: 3;
}

.manufacturing-item:hover .manufacturing-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(
    135deg,
    var(--kms-yellow),
    var(--kms-yellow-dark)
  );
  color: var(--kms-primary-dark);
  box-shadow: 0 6px 18px rgba(255, 193, 7, 0.4);
}

.manufacturing-content {
  flex: 1;
}

.manufacturing-content h4 {
  color: #1a1a2e;
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0 0 8px 0;
  transition: color 0.3s ease;
}

.manufacturing-content p {
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
}

/* ===================================================================
   WHY CHOOSE US / POLICIES SECTION
   =================================================================== */
.why-choose-section {
  padding: 30px 0;
  background: #ffffff;
}

.why-choose-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.why-choose-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: flex-start;
}

.why-choose-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
}

.why-choose-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #2d3748;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.why-choose-bullets li:last-child {
  border-bottom: none;
}

.why-choose-bullets li svg {
  flex-shrink: 0;
  color: #1a1a2e;
  margin-top: 3px;
}

.why-choose-bullets li strong {
  color: #1a1a2e;
}

/* Policy Cards */
.why-choose-policies {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.policy-card {
  border-radius: 16px;
  padding: 30px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.05),
    0 10px 25px -5px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.policy-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  border-radius: 16px 0 0 16px;
}

.policy-card--green {
  background: linear-gradient(145deg, #f0fdf4 0%, #ffffff 100%);
}

.policy-card--green::before {
  background: linear-gradient(180deg, #22c55e, #16a34a);
}

.policy-card--yellow {
  background: linear-gradient(145deg, #fffbeb 0%, #ffffff 100%);
}

.policy-card--yellow::before {
  background: linear-gradient(180deg, #ffc107, #e6a800);
}

.policy-card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.08),
    0 20px 40px -5px rgba(0, 0, 0, 0.1);
}

.policy-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 12px 0;
}

.policy-card-text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #6b7280;
  margin: 0;
}

/* ===================================================================
   LEADERSHIP SECTION
   =================================================================== */
.leadership-section {
  padding: 30px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.leadership-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.leadership-subtitle {
  text-align: center;
  font-size: 1rem;
  color: #6b7280;
  margin: -1.5rem 0 2.5rem;
  line-height: 1.6;
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.leader-card {
  background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 20px;
  padding: 40px 25px;
  text-align: center;
  border: 1px solid rgba(26, 26, 46, 0.06);
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.05),
    0 10px 25px -5px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.leader-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.08),
    0 20px 40px -5px rgba(0, 0, 0, 0.1),
    0 30px 60px -10px rgba(26, 26, 46, 0.15);
  border-color: rgba(255, 193, 7, 0.3);
}

.leader-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--kms-primary), var(--kms-primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--kms-yellow);
  box-shadow: 0 6px 20px rgba(26, 26, 46, 0.3);
  transition: all 0.3s ease;
  overflow: hidden;
}

.leader-card:hover .leader-avatar {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(255, 193, 7, 0.35);
}

.leader-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 8px 0;
}

.leader-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

/* ===================================================================
   CTA BANNER (Diagonal Split)
   =================================================================== */
.about-cta-banner {
  position: relative;
  background: linear-gradient(135deg, #043352, #0b1138);
  overflow: hidden;
}

.about-cta-banner::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(135deg, #ffc107, #ff9800);
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
}

.about-cta-banner-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 30px;
  gap: 20px;
}

.about-cta-banner-text {
  flex: 1;
}

.about-cta-banner-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--kms-white);
  margin: 0 0 8px 0;
}

.about-cta-banner-subtitle {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

.about-cta-banner-btn {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, var(--kms-primary) 0%, var(--kms-primary-dark) 100%);
  color: var(--kms-yellow);
  padding: 14px 36px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  border: 2px solid var(--kms-yellow);
  transition: all var(--transition-normal);
  white-space: nowrap;
  box-shadow: 0 6px 20px rgba(26, 26, 46, 0.25);
}

.about-cta-banner-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
  color: var(--kms-yellow);
}

/* ===================================================================
   CTA SECTION
   =================================================================== */
.about-cta-section {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.about-cta-section::before {
  content: "";
  position: absolute;
  top: -40%;
  left: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(255, 193, 7, 0.05) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.about-cta-section::after {
  content: "";
  position: absolute;
  bottom: -40%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(255, 215, 0, 0.04) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.about-cta-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  position: relative;
  z-index: 1;
}

.about-cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.about-cta-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--kms-white);
  margin: 0 0 20px;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about-cta-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin: 0 0 35px;
}

.btn-about-cta-main {
  display: inline-block;
  padding: 16px 48px;
  border: 2px solid var(--kms-yellow);
  color: var(--kms-yellow);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: transparent;
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
}

.btn-about-cta-main:hover {
  background: var(--kms-yellow);
  color: #1a1a2e;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 193, 7, 0.35);
}

/* ===================================================================
   RESPONSIVE DESIGN
   =================================================================== */

/* Tablet */
@media (max-width: 991.98px) {
  .about-hero-title {
    font-size: 2.25rem;
  }

  .about-hero {
    min-height: 360px;
  }

  .about-overview-wrapper {
    flex-direction: column;
    gap: 2rem;
  }

  .about-overview-text,
  .about-overview-image {
    flex: 1 1 100%;
  }

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

  .mission-vision-grid {
    grid-template-columns: 1fr;
  }

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

  .values-line {
    flex-wrap: wrap;
    justify-content: center;
  }

  .value-card-line {
    flex: 0 0 calc(33.33% - 10px);
    max-width: none;
  }

  .about-cta-title {
    font-size: 1.75rem;
  }

  .why-choose-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .leadership-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

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

/* Mobile */
@media (max-width: 767.98px) {
  .about-hero {
    min-height: 320px;
  }

  .about-hero-content {
    padding: 70px 15px 50px;
  }

  .about-hero-title {
    font-size: 1.75rem;
  }

  .about-hero-subtitle {
    font-size: 1rem;
  }

  .about-overview-section {
    padding: 50px 0 40px;
  }

  .about-section-title {
    font-size: 1.5rem;
  }

  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .highlight-number {
    font-size: 2rem;
  }

  .highlight-label {
    font-size: 0.8rem;
  }

  .about-mission-vision {
    padding: 50px 0;
  }

  .about-card {
    padding: 30px 25px;
  }

  .about-card h3 {
    font-size: 1.5rem;
  }

  .core-visual-wrapper {
    flex-direction: column;
    gap: 20px;
    padding: 0 15px;
  }

  .core-visual-item {
    height: 280px;
  }

  .values-section {
    padding: 50px 0 40px;
  }

  .values-title {
    font-size: 1.5rem;
  }

  .values-line {
    flex-wrap: wrap;
  }

  .value-card-line {
    flex: 0 0 calc(50% - 8px);
    max-width: none;
    min-height: 180px;
  }

  .manufacturing-section {
    padding: 50px 0;
  }

  .manufacturing-title {
    font-size: 1.5rem;
  }

  .manufacturing-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .manufacturing-item {
    padding: 20px 25px;
  }

  .about-cta-section {
    padding: 50px 0;
  }

  .about-cta-title {
    font-size: 1.5rem;
  }

  .about-cta-desc {
    font-size: 0.95rem;
  }

  .btn-about-cta-main {
    padding: 14px 36px;
    font-size: 0.85rem;
  }

  .why-choose-wrapper {
    grid-template-columns: 1fr;
  }

  .leadership-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .about-cta-banner-inner {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }

  .about-cta-banner-title {
    font-size: 1.4rem;
  }

  .about-cta-banner::after {
    width: 100%;
    height: 50%;
    top: auto;
    bottom: 0;
    clip-path: polygon(0 30%, 100% 0, 100% 100%, 0 100%);
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .about-hero-title {
    font-size: 1.5rem;
  }

  .highlights-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .highlight-card {
    padding: 20px 15px;
  }

  .highlight-icon {
    width: 48px;
    height: 48px;
  }

  .highlight-icon svg {
    width: 24px;
    height: 24px;
  }

  .highlight-number {
    font-size: 1.75rem;
  }

  .value-card-line {
    flex: 0 0 calc(50% - 8px);
    min-height: 160px;
    padding: 20px 12px;
  }

  .manufacturing-icon {
    width: 36px;
    height: 36px;
  }

  .manufacturing-icon svg {
    width: 20px;
    height: 20px;
  }

  .manufacturing-content h4 {
    font-size: 1rem;
  }

  .manufacturing-content p {
    font-size: 0.8125rem;
  }
}
