/* =========================================================
   coorenett — About Page Stylesheet
   ========================================================= */

/* =========================================================
   PAGE BANNER
   ========================================================= */
.page-banner {
  position: relative;
  height: clamp(400px, 60vh, 600px);
  min-height: 380px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
}
.banner-media {
  position: absolute;
  inset: 0;
}
.banner-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.88), rgba(17, 17, 17, 0.55));
}
#bannerParticles {
  position: absolute;
  inset: 0;
}
.banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 clamp(16px, 5%, 60px);
}
.banner-title {
  font-family: var(--font-head);
  font-size: clamp(32px, 6vw, 70px);
  color: var(--white);
  line-height: 1.12;
  margin: 18px 0 20px;
}
.banner-subtitle {
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(15px, 1.2vw, 17px);
  max-width: 560px;
  margin: 0 auto 26px;
}
.breadcrumb-nav {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(11px, 1vw, 13px);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.breadcrumb-nav a {
  color: var(--gold-light);
}
.breadcrumb-nav i {
  font-size: 11px;
}
.breadcrumb-nav span {
  color: var(--white);
}

/* =========================================================
   OUR STORY — highlight row
   ========================================================= */
.story-highlights .col-6,
.story-highlights .col-md-4 {
  text-align: center;
  padding: 18px 10px;
  border-right: 1px solid rgba(0, 0, 0, 0.08);
}
.story-highlights .col-6:last-child,
.story-highlights .col-md-4:last-child {
  border-right: none;
}
.story-highlights i {
  font-size: 24px;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}
.story-highlights h6 {
  font-size: 18px;
  margin-bottom: 2px;
}
.story-highlights span {
  font-size: 12px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* =========================================================
   OUR JOURNEY TIMELINE
   ========================================================= */
.journey-section {
  background: var(--grad-dark);
  overflow: hidden;
}
.journey-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding-top: 20px;
}
.journey-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(-50%);
}
.journey-line-fill {
  display: block;
  width: 100%;
  height: 0;
  background: var(--grad-gold);
}
.journey-item {
  position: relative;
  width: 50%;
  padding: 0 50px 60px;
}
.journey-item:nth-child(odd) {
  left: 0;
  text-align: right;
}
.journey-item:nth-child(even) {
  left: 50%;
  text-align: left;
}
.journey-dot {
  position: absolute;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 0 6px rgba(212, 175, 55, 0.15);
}
.journey-item:nth-child(odd) .journey-dot {
  right: -8px;
}
.journey-item:nth-child(even) .journey-dot {
  left: -8px;
}
.journey-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 14px;
  padding: 22px 26px;
  transition: all 0.35s ease;
}
.journey-card:hover {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.06);
  transform: translateY(-4px);
}
.journey-year {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 22px;
  color: var(--gold-light);
  font-weight: 600;
  margin-bottom: 6px;
}
.journey-card h6 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.journey-card p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  margin: 0;
}

/* =========================================================
   MISSION & VISION
   ========================================================= */
.mv-section {
  background: var(--bg-light);
  padding: 100px 0;
}
.mv-card {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 22px;
  padding: 50px 44px;
  height: 100%;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.07);
  transition: all 0.4s ease;
}
.mv-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
  border-color: var(--gold);
}
.mv-card i {
  font-size: 36px;
  color: var(--gold);
  background: rgba(212, 175, 55, 0.1);
  width: 74px;
  height: 74px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.mv-card h4 {
  font-size: 28px;
  margin-bottom: 14px;
}
.mv-card p {
  color: #555;
  font-size: 15px;
  line-height: 1.85;
  margin: 0;
}

/* =========================================================
   CORE VALUES
   ========================================================= */
.values-section {
  background: var(--white);
}
.value-card {
  text-align: center;
  padding: 40px 18px;
  border-radius: 18px;
  height: 100%;
  border: 1px solid rgba(212, 175, 55, 0.15);
  background: var(--bg-light);
  transition: all 0.4s ease;
}
.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--gold);
  background: var(--white);
}
.value-card i {
  font-size: 30px;
  color: var(--gold-dark);
  margin-bottom: 16px;
  display: inline-block;
  transition: transform 0.4s ease;
}
.value-card:hover i {
  transform: scale(1.15);
  color: var(--gold);
}
.value-card h6 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
  margin: 0;
}

/* =========================================================
   OUR STRENGTH
   ========================================================= */
.strength-section {
  background: var(--white);
}
.strength-card {
  height: 100%;
  padding: 44px 30px;
  border-radius: 18px;
  position: relative;
  overflow: hidden;
  background: var(--bg-light);
  border: 1px solid transparent;
  transition: all 0.4s ease;
}
.strength-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 1.5px;
  background: var(--grad-gold);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
.strength-card:hover {
  transform: translateY(-8px);
  background: var(--white);
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.1);
}
.strength-card:hover::before {
  opacity: 1;
}
.strength-card i {
  font-size: 30px;
  color: var(--gold-dark);
  margin-bottom: 18px;
  display: block;
}
.strength-card h5 {
  font-size: 19px;
  margin-bottom: 10px;
}
.strength-card p {
  font-size: 13px;
  color: #666;
  margin: 0;
  line-height: 1.7;
}

/* =========================================================
   QUALITY ASSURANCE
   ========================================================= */
.qa-section {
  background: var(--grad-dark);
}
.qa-checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.qa-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.15);
  transition: all 0.35s ease;
}
.qa-item:hover {
  background: rgba(212, 175, 55, 0.06);
  border-color: var(--gold);
  transform: translateX(4px);
}
.qa-item i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--grad-gold);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}
.qa-item span {
  color: var(--white);
  font-size: 14px;
  letter-spacing: 0.3px;
}

/* =========================================================
   MANUFACTURING EXCELLENCE
   ========================================================= */
.manufacturing-section {
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 12vw, 140px) 0;
}
.manufacturing-bg {
  position: absolute;
  inset: 0;
}
.manufacturing-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.manufacturing-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.92), rgba(17, 17, 17, 0.78));
}
.manufacturing-section .container {
  position: relative;
  z-index: 2;
}

.mfg-steps {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(24px, 3vw, 40px);
  justify-content: space-between;
  margin-top: 50px;
  position: relative;
}
.mfg-line {
  position: absolute;
  top: 34px;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  display: none;
}
.mfg-line-fill {
  display: block;
  height: 100%;
  width: 0;
  background: var(--grad-gold);
}
.mfg-step {
  flex: 1 1 clamp(140px, 18vw, 180px);
  text-align: center;
  position: relative;
}
.mfg-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(56px, 6vw, 68px);
  height: clamp(56px, 6vw, 68px);
  border-radius: 50%;
  font-family: var(--font-head);
  font-size: clamp(20px, 2vw, 24px);
  color: var(--gold-light);
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.35);
  margin-bottom: clamp(14px, 1.5vw, 18px);
}
.mfg-step h6 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: clamp(13px, 1.1vw, 15px);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.mfg-step p {
  color: rgba(255, 255, 255, 0.55);
  font-size: clamp(12px, 0.9vw, 13px);
}

/* =========================================================
   TEAM
   ========================================================= */
.team-section {
  background: var(--bg-light);
}
.team-card {
  text-align: center;
}
.team-img {
  position: relative;
  width: 130px;
  height: 130px;
  margin: 0 auto 18px;
  border-radius: 50%;
  padding: 4px;
  background: var(--grad-gold);
  overflow: hidden;
}
.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--white);
}
.team-social {
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: rgba(17, 17, 17, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.team-card:hover .team-social {
  opacity: 1;
}
.team-social a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}
.team-social a:hover {
  background: var(--grad-gold);
  color: var(--black);
}
.team-card h6 {
  font-size: 15px;
  margin-bottom: 2px;
}
.team-card span {
  font-size: 12px;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* =========================================================
   CERTIFICATIONS
   ========================================================= */
.cert-section {
  background: var(--grad-dark);
}
.cert-card {
  text-align: center;
  padding: clamp(30px, 3.5vw, 44px) clamp(18px, 2vw, 24px);
  border-radius: 18px;
  height: 100%;
  border: 1px solid rgba(212, 175, 55, 0.2);
  background: rgba(255, 255, 255, 0.02);
  transition: all 0.4s ease;
}
.cert-card:hover {
  background: rgba(212, 175, 55, 0.06);
  border-color: var(--gold);
  transform: translateY(-8px);
}
.cert-card i {
  font-size: clamp(30px, 3vw, 36px);
  color: var(--gold-light);
  margin-bottom: clamp(14px, 1.5vw, 18px);
  display: block;
}
.cert-card h6 {
  color: var(--white);
  font-size: clamp(14px, 1.2vw, 16px);
  margin-bottom: 6px;
}
.cert-card span {
  color: rgba(255, 255, 255, 0.5);
  font-size: clamp(11px, 0.9vw, 12px);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* =========================================================
   LIGHT TEXT UTILITY
   ========================================================= */
.light-text {
  color: rgba(255, 255, 255, 0.65) !important;
}

/* =========================================================
   CTA BUTTONS
   ========================================================= */
.cta-buttons {
  display: flex;
  gap: clamp(12px, 1.5vw, 20px);
  justify-content: center;
  flex-wrap: wrap;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 991px) {
  .journey-item {
    width: 100%;
    left: 0 !important;
    text-align: left !important;
    padding: 0 0 50px 46px;
  }
  .journey-line {
    left: 8px;
  }
  .journey-item .journey-dot {
    left: 0 !important;
    right: auto !important;
  }
  .mv-section {
    padding: 70px 0;
  }
  .page-banner {
    height: clamp(380px, 50vh, 480px);
  }
  .mfg-steps {
    flex-direction: column;
    align-items: center;
  }
  .mfg-step {
    flex: 1 1 auto;
    width: 100%;
    max-width: 320px;
  }
  .mfg-line {
    display: none;
  }
}

@media (max-width: 767px) {
  .mv-card {
    padding: 36px 28px;
  }
  .qa-checklist {
    grid-template-columns: 1fr;
  }
  .story-highlights .col-6 {
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding-bottom: 16px;
    margin-bottom: 10px;
  }
  .story-highlights .col-6:last-child {
    border-bottom: none;
  }
  .mv-section {
    padding: 50px 0;
  }
  .strength-card {
    padding: 32px 24px;
  }
  .cert-card {
    padding: 24px 16px;
  }
  .page-banner {
    height: clamp(340px, 45vh, 420px);
  }
  .banner-title {
    font-size: clamp(28px, 7vw, 40px);
  }
  .banner-subtitle {
    font-size: 15px;
  }
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .cta-buttons a {
    justify-content: center;
  }
  .mfg-step {
    max-width: 100%;
  }
}

@media (max-width: 575px) {
  .journey-card {
    padding: 18px 20px;
  }
  .journey-year {
    font-size: 18px;
  }
  .journey-card h6 {
    font-size: 13px;
  }
  .journey-card p {
    font-size: 12px;
  }
  .mv-card {
    padding: 28px 20px;
  }
  .mv-card i {
    width: 56px;
    height: 56px;
    font-size: 26px;
    margin-bottom: 16px;
  }
  .mv-card h4 {
    font-size: 22px;
  }
  .mv-card p {
    font-size: 13px;
  }
  .strength-card {
    padding: 26px 18px;
  }
  .strength-card i {
    font-size: 26px;
  }
  .strength-card h5 {
    font-size: 17px;
  }
  .strength-card p {
    font-size: 12px;
  }
  .value-card {
    padding: 28px 14px;
  }
  .value-card i {
    font-size: 26px;
  }
  .value-card h6 {
    font-size: 12px;
  }
  .qa-item {
    padding: 14px 16px;
    gap: 12px;
  }
  .qa-item span {
    font-size: 12px;
  }
  .qa-item i {
    width: 26px;
    height: 26px;
    font-size: 11px;
  }
  .page-banner {
    height: clamp(300px, 40vh, 380px);
    min-height: 320px;
  }
  .mfg-num {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }
  .mfg-step h6 {
    font-size: 13px;
  }
  .mfg-step p {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .journey-item {
    padding: 0 0 40px 40px;
  }
  .journey-line {
    left: 6px;
  }
  .journey-dot {
    width: 12px;
    height: 12px;
  }
  .journey-item .journey-dot {
    left: 0 !important;
  }
  .journey-card {
    padding: 16px 18px;
  }
  .team-img {
    width: 100px;
    height: 100px;
  }
  .team-card h6 {
    font-size: 13px;
  }
  .team-card span {
    font-size: 10px;
  }
  .team-social a {
    width: 26px;
    height: 26px;
    font-size: 10px;
  }
  .cta-buttons .btn-gold,
  .cta-buttons .btn-outline-gold {
    width: 100%;
    justify-content: center;
  }
  .page-banner {
    height: clamp(280px, 35vh, 360px);
    min-height: 280px;
  }
  .banner-title {
    font-size: clamp(24px, 6vw, 30px);
  }
  .cert-card {
    padding: 20px 14px;
  }
  .cert-card i {
    font-size: 26px;
  }
  .cert-card h6 {
    font-size: 13px;
  }
  .cert-card span {
    font-size: 10px;
  }
}