/* ─── BREADCRUMB ─── */
.breadcrumb {
  padding: 24px 40px;
  background: #fafafa;
  border-bottom: 1px solid #eee;
}
.breadcrumb-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #666;
}
.breadcrumb a {
  color: #666;
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb a:hover {
  color: #8B0000;
}
.breadcrumb .separator {
  color: #999;
}
.breadcrumb .current {
  color: #8B0000;
  font-weight: 500;
}

/* ─── ABOUT SECTION ─── */
.about-section {
  padding: 80px 40px;
  background: #fff;
}
.about-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: center;
}

/* Founder Image */
.founder-image-wrap {
  position: relative;
}
.founder-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  display: block;
  filter: sepia(0.15) brightness(1.05);
}

/* Plus Pattern Background */
.plus-pattern {
  position: absolute;
  right: -30px;
  bottom: -30px;
  width: 200px;
  height: 200px;
  opacity: 0.08;
  pointer-events: none;
  z-index: -1;
}

/* About Content */
.about-content {
  animation: fadeInUp 0.7s ease;
}

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

.about-eyebrow {
  color: #C85A5A;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 16px;
  font-weight: 700;
}

.about-title {
  font-size: 42px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.25;
  margin-bottom: 28px;
}

.about-description {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

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

/* ─── VMM SECTION (Vision, Mission, Motto) ─── */
.vmm-section {
  position: relative;
  padding: 100px 40px;
  overflow: hidden;
  background: #8B0000;
}

/* Background Image */
.vmm-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
  z-index: 0;
}

/* Red Overlay */
.vmm-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, 
    rgba(139, 0, 0, 0.85) 0%, 
    rgba(139, 71, 71, 0.8) 50%,
    rgba(139, 0, 0, 0.9) 100%);
  z-index: 1;
}

.vmm-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.vmm-header {
  text-align: center;
  color: white;
  font-size: 13px;
  margin-bottom: 50px;
  opacity: 0.9;
  letter-spacing: 1px;
}

.vmm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.vmm-card {
  background: white;
  border-radius: 16px;
  padding: 44px 32px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.35s ease;
  border: 3px solid #8B0000;
  position: relative;
  animation: fadeInUp 0.6s ease both;
}

.vmm-card:nth-child(1) { animation-delay: 0.1s; }
.vmm-card:nth-child(2) { animation-delay: 0.2s; }
.vmm-card:nth-child(3) { animation-delay: 0.3s; }

.vmm-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.25);
}

.vmm-icon {
  width: 80px;
  height: 80px;
  background: #8B0000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 4px 20px rgba(139, 0, 0, 0.3);
}

.vmm-icon svg {
  width: 38px;
  height: 38px;
  fill: white;
}

.vmm-card-title {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 18px;
}

.vmm-card-text {
  font-size: 14px;
  line-height: 1.75;
  color: #555;
}

/* ─── PARTNERS SECTION ─── */
.partners-section {
  padding: 70px 40px;
  background: #fafafa;
  border-top: 1px solid #eee;
}

.partners-container {
  max-width: 1400px;
  margin: 0 auto;
}

.partners-title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 50px;
}

/* Carousel Container */
.partners-carousel {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.partners-track {
  display: flex;
  animation: scrollLogos 25s linear infinite;
  width: fit-content;
}

.partners-track:hover {
  animation-play-state: paused;
}

.partner-logo-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 40px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  min-height: 100px;
  min-width: 220px;
  margin: 0 15px;
}

.partner-logo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.partner-logo-item img {
  max-width: 140px;
  max-height: 60px;
  object-fit: contain;
  
  opacity: 0.7;
  transition: all 0.3s ease;
}

/* .partner-logo-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
} */

/* Keyframe Animation for scrolling */
@keyframes scrollLogos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .founder-image {
    max-width: 400px;
    margin: 0 auto;
  }
  
  .vmm-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .partner-logo-item {
    min-width: 200px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .site-header { padding: 0 16px; }
  .breadcrumb { padding: 20px 16px; }
  .about-section { padding: 50px 16px; }
  .vmm-section { padding: 60px 16px; }
  .partners-section { padding: 50px 16px; }
  footer { padding: 48px 16px 0; }
  .footer-bottom-wrap { margin: 0 -16px; padding: 0 16px; }
  
  .about-title {
    font-size: 32px;
  }
  
  .vmm-card {
    padding: 36px 24px;
  }
  
  .partner-logo-item {
    min-width: 180px;
    margin: 0 10px;
  }
  
  .partners-track {
    animation-duration: 35s;
  }
  
  .nav-links { display: none; }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 480px) {
  .about-title {
    font-size: 28px;
  }
  
  .vmm-card-title {
    font-size: 20px;
  }
  
  .partner-logo-item {
    min-width: 160px;
    padding: 15px 30px;
  }
}