/* ===== MODERN TENTANG KAMI STYLES ===== */

/* Modern Page Title Section */
.modern-page-title {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.page-title-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(2px);
}

.page-title-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.title-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 20px;
  border-radius: 50px;
  color: white;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
}

.badge-icon {
  font-size: 16px;
}

.page-title-main {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-title-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.title-decorative-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0.3));
  margin: 0 auto;
  border-radius: 2px;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-arrow {
  width: 30px;
  height: 30px;
  border: 2px solid white;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0) rotate(45deg);
  }
  40% {
    transform: translateY(-10px) rotate(45deg);
  }
  60% {
    transform: translateY(-5px) rotate(45deg);
  }
}

/* Modern About Section */
.modern-about-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.about-image-section {
  margin-bottom: 50px;
}

.image-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 123, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.image-container:hover .image-overlay {
  opacity: 1;
}

.play-button {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #007bff;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.play-button:hover {
  transform: scale(1.1);
}

.about-content-section .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

.title-underline {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #007bff, #0056b3);
  border-radius: 2px;
  margin-bottom: 30px;
}

.lead-text {
  font-size: 1.2rem;
  font-weight: 500;
  color: #007bff;
  margin-bottom: 30px;
  line-height: 1.6;
}

.about-text p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: left;
}

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

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  font-size: 24px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #28a745, #20c997);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-text h6 {
  margin: 0 0 8px 0;
  font-weight: 600;
  color: #333;
  text-align: center;
}

.feature-text p {
  margin: 0;
  color: #666;
  font-size: 14px;
  text-align: left;
  line-height: 1.5;
}

/* Modern Funfacts Section */
.modern-funfacts-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.funfacts-background {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  position: relative;
  padding: 60px 0;
}

.funfacts-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="60" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="70" cy="30" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>');
  animation: float 20s ease-in-out infinite;
}

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

.section-header .section-badge.light {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
}

.section-subtitle {
  font-size: 1rem;
  line-height: 1.6;
  max-width: 500px;
  margin: 0 auto;
}

.funfact-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 30px 15px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin: 0 10px;
}

.funfact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.funfact-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  display: block;
}

.funfact-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}

.funfact-label {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  margin: 0;
  font-size: 0.95rem;
}

.funfact-decoration {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #28a745, #20c997);
}

/* Modern Vision Mission Section */
.modern-vision-mission-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.video-wrapper {
  position: relative;
}

.video-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.video-thumbnail {
  position: relative;
}

.play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease;
}

.play-overlay:hover {
  background: rgba(0, 0, 0, 0.5);
}

.play-btn {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #007bff;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.play-btn:hover {
  transform: scale(1.1);
}

#videoFrame {
  width: 100%;
  height: 450px;
  border-radius: 20px;
}

.video-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
}

.vision-card, .mission-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 123, 255, 0.1);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.card-header .card-icon {
  font-size: 24px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #007bff, #0056b3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
  margin: 0;
}

.card-content p {
  color: #666;
  line-height: 1.8;
  margin: 0;
}

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

.mission-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 15px;
  background: rgba(0, 123, 255, 0.05);
  border-radius: 12px;
  border-left: 3px solid #007bff;
  transition: transform 0.3s ease;
}

.mission-item:hover {
  transform: translateX(3px);
  background: rgba(0, 123, 255, 0.08);
}

.mission-icon {
  font-size: 18px;
  width: 35px;
  height: 35px;
  background: linear-gradient(135deg, #28a745, #20c997);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mission-text h6 {
  margin: 0 0 5px 0;
  font-weight: 600;
  color: #333;
  font-size: 0.9rem;
}

.mission-text p {
  margin: 0;
  color: #666;
  font-size: 0.8rem;
  line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 991px) {
  .modern-page-title {
    min-height: 50vh;
  }
  
  .modern-about-section,
  .modern-funfacts-section,
  .modern-vision-mission-section {
    padding: 60px 0;
  }
  
  .funfact-card {
    margin-bottom: 20px;
  }
  
  .mission-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .modern-page-title {
    min-height: 40vh;
    background-attachment: scroll;
  }
  
  .modern-about-section,
  .modern-funfacts-section,
  .modern-vision-mission-section {
    padding: 50px 0;
  }
  
  .page-title-main {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .funfact-card {
    padding: 25px 15px;
    margin: 0 5px;
  }
  
  .funfact-number {
    font-size: 2rem;
  }
  
  .funfact-icon {
    font-size: 2rem;
  }
  
  .vision-card, .mission-card {
    padding: 20px;
  }
  
  .mission-item {
    padding: 12px;
  }
  
  .mission-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

@media (max-width: 575px) {
  .modern-about-section,
  .modern-funfacts-section,
  .modern-vision-mission-section {
    padding: 40px 0;
  }
  
  .page-title-main {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .funfact-card {
    padding: 20px 10px;
    margin: 0;
  }
  
  .funfact-number {
    font-size: 1.8rem;
  }
  
  .funfact-icon {
    font-size: 1.8rem;
  }
  
  .funfact-label {
    font-size: 0.85rem;
  }
  
  .vision-card, .mission-card {
    padding: 15px;
  }
  
  .mission-item {
    padding: 10px;
  }
}

/* Animation Enhancements */
.count {
  transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
  transform: scale(1.05);
}

.mission-item:hover .mission-icon {
  transform: scale(1.05);
}

/* Video Loading Functionality */
.video-container.loaded .video-thumbnail {
  display: none;
}

.video-container.loaded #videoFrame {
  display: block !important;
}
