/* Apple-style About Page for HMD FK UM */

/* Hero Section */
.apple-about-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 140px 24px 0px;
  overflow: hidden;
  text-align: center;
}

.apple-about-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: radial-gradient(circle at top right, rgba(10, 132, 255, 0.08), transparent 60%),
              radial-gradient(circle at bottom left, rgba(191, 90, 242, 0.08), transparent 60%);
}

.apple-about-hero-container {
  max-width: 800px;
  width: 100%;
  animation: fadeInUp 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.apple-about-hero-content {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 40px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(44, 44, 46, 0.4), rgba(70, 70, 74, 0.2));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.apple-about-hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  background: rgba(191, 90, 242, 0.15);
  border-radius: var(--apple-radius-pill);
  color: var(--apple-purple);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(191, 90, 242, 0.3);
}

.apple-about-hero-title {
  font-size: 64px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #0A84FF, #5E5CE6, #BF5AF2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.apple-about-hero-line {
  height: 3px;
  background: linear-gradient(135deg, #0A84FF, #5E5CE6);
  margin: 0 auto 24px;
  border-radius: 3px;
  width: 80px;
}

.apple-about-hero-subtitle {
  font-size: 18px;
  color: var(--apple-text-secondary);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* Logo Section */
.apple-logo-section {
  padding: 50px 0 100px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at top right, rgba(10, 132, 255, 0.08), transparent 60%),
              radial-gradient(circle at bottom left, rgba(191, 90, 242, 0.08), transparent 60%);
}

.apple-logo-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

/* Remove the ::before pseudo-element since we're using direct background */

.apple-logo-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.apple-logo-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.apple-logo-image {
  position: relative;
  width: 300px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.apple-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transform: scale(0.8) rotate(-10deg);
  opacity: 0;
  filter: drop-shadow(0 20px 40px rgba(10, 132, 255, 0.3));
}

.apple-logo-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(10, 132, 255, 0.2), transparent 70%);
  border-radius: 50%;
  animation: pulse 3s infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.7;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.4;
  }
}

.apple-logo-info {
  animation: fadeInUp 0.8s cubic-bezier(0.17, 0.67, 0.83, 0.67);
  animation-delay: 0.3s;
  animation-fill-mode: both;
}

.apple-logo-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(10, 132, 255, 0.15);
  border-radius: var(--apple-radius-pill);
  color: var(--apple-blue);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid rgba(10, 132, 255, 0.3);
}

.apple-logo-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 32px;
  color: var(--apple-text);
  letter-spacing: -0.02em;
}

.apple-logo-description {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.apple-logo-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.apple-logo-item-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--apple-blue), var(--apple-purple));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  flex-shrink: 0;
}

.apple-logo-item-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--apple-text);
}

.apple-logo-item-content p {
  font-size: 16px;
  color: var(--apple-text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Vision Mission Section */
.apple-vision-section {
  padding: 100px 0;
  background: rgba(44, 44, 46, 0.2);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  /* Tambahkan border top untuk transisi yang smooth */
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.apple-vision-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.apple-vision-header {
  text-align: center;
  margin-bottom: 60px;
}

.apple-vision-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--apple-text);
  letter-spacing: -0.02em;
}

.apple-vision-subtitle {
  font-size: 18px;
  color: var(--apple-text-secondary);
}

.apple-vision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
}

.apple-vision-card {
  background: rgba(30, 30, 32, 0.6);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
}

.apple-vision-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.2);
}

.apple-vision-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--apple-blue), var(--apple-purple));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  margin-bottom: 24px;
}

.apple-vision-card h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--apple-text);
}

.apple-vision-card p {
  font-size: 16px;
  color: var(--apple-text-secondary);
  line-height: 1.6;
  margin: 0;
}

.apple-mission-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.apple-mission-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
}

.apple-mission-item i {
  color: var(--apple-green);
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

.apple-mission-item span {
  font-size: 16px;
  color: var(--apple-text-secondary);
  line-height: 1.5;
}

/* Structure Section */
.apple-structure-section {
  padding: 100px 0;
}

.apple-structure-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.apple-structure-header {
  text-align: center;
  margin-bottom: 60px;
}

.apple-structure-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--apple-text);
  letter-spacing: -0.02em;
}

.apple-structure-subtitle {
  font-size: 18px;
  color: var(--apple-text-secondary);
}

.apple-structure-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.apple-structure-image {
  position: relative;
}

.apple-structure-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  transition: transform 0.5s ease;
}

.apple-structure-img:hover {
  transform: scale(1.02);
}

.apple-structure-info h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--apple-text);
}

.apple-structure-info p {
  font-size: 16px;
  color: var(--apple-text-secondary);
  line-height: 1.6;
  margin-bottom: 32px;
}

.apple-structure-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.apple-stat-item {
  text-align: center;
  padding: 20px;
  background: rgba(44, 44, 46, 0.3);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.apple-stat-number {
  font-size: 32px;
  font-weight: 700;
  color: var(--apple-blue);
  margin-bottom: 8px;
}

.apple-stat-label {
  font-size: 14px;
  color: var(--apple-text-secondary);
  font-weight: 500;
}

.apple-structure-actions {
  display: flex;
  gap: 16px;
}

/* Values Section */
.apple-values-section {
  padding: 100px 0;
  background: rgba(44, 44, 46, 0.2);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.apple-values-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.apple-values-header {
  text-align: center;
  margin-bottom: 60px;
}

.apple-values-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--apple-text);
  letter-spacing: -0.02em;
}

.apple-values-subtitle {
  font-size: 18px;
  color: var(--apple-text-secondary);
}

.apple-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.apple-value-card {
  background: rgba(30, 30, 32, 0.6);
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
}

.apple-value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.2);
}

.apple-value-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--apple-blue), var(--apple-purple));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  margin: 0 auto 24px;
}

.apple-value-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--apple-text);
}

.apple-value-card p {
  font-size: 15px;
  color: var(--apple-text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* CTA Section */
.apple-about-cta {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.apple-about-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 132, 255, 0.1), rgba(191, 90, 242, 0.1));
  z-index: -1;
}

.apple-about-cta-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.apple-about-cta-content {
  background: linear-gradient(135deg, rgba(44, 44, 46, 0.5), rgba(70, 70, 74, 0.3));
  border-radius: 30px;
  padding: 60px 40px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.apple-about-cta-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--apple-text);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.apple-about-cta-text {
  font-size: 18px;
  color: var(--apple-text-secondary);
  margin-bottom: 32px;
}

.apple-about-cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.apple-button.large {
  padding: 16px 32px;
  font-size: 16px;
}

/* Floating elements */
.apple-float {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: -1;
  animation: float 15s infinite ease-in-out;
  opacity: 0.4;
}

.apple-float-1 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, rgba(10, 132, 255, 0.3), rgba(94, 92, 230, 0.1));
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.apple-float-2 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, rgba(191, 90, 242, 0.2), rgba(94, 92, 230, 0.1));
  bottom: 15%;
  right: 10%;
  animation-delay: -5s;
}

.apple-float-3 {
  width: 250px;
  height: 250px;
  background: linear-gradient(135deg, rgba(50, 215, 75, 0.15), rgba(94, 92, 230, 0.1));
  top: 60%;
  right: 20%;
  animation-delay: -10s;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(20px, -15px) scale(1.05);
  }
  50% {
    transform: translate(-10px, 20px) scale(0.95);
  }
  75% {
    transform: translate(-20px, -10px) scale(1.02);
  }
}

@keyframes fadeInUp {
  from { 
    opacity: 0; 
    transform: translateY(30px); 
  }
  to { 
    opacity: 1; 
    transform: translateY(0); 
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .apple-logo-content {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }
  
  .apple-structure-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .apple-structure-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .apple-about-hero {
    padding: 120px 20px 60px;
  }
  
  .apple-about-hero-title {
    font-size: 48px;
  }
  
  .apple-about-hero-content {
    padding: 30px;
  }
  
  .apple-logo-image {
    width: 250px;
    height: 250px;
  }
  
  .apple-logo-title {
    font-size: 28px;
  }
  
  .apple-vision-grid {
    grid-template-columns: 1fr;
  }
  
  .apple-structure-actions {
    flex-direction: column;
  }
  
  /* Fix icon centering on mobile for logo items */
  .apple-logo-item {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 16px;
  }
  
  .apple-logo-item-icon {
    margin: 0 auto;
  }
  
  /* Fix icon centering on mobile for vision cards */
  .apple-vision-card {
    text-align: center;
  }
  
  .apple-vision-icon {
    margin: 0 auto 24px;
  }
}

@media (max-width: 576px) {
  .apple-about-hero-title {
    font-size: 36px;
  }
  
  .apple-about-hero-subtitle {
    font-size: 16px;
  }
  
  .apple-logo-image {
    width: 200px;
    height: 200px;
  }
  
  .apple-logo-item {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 12px;
  }
  
  .apple-logo-item-icon {
    margin: 0 auto;
  }
  
  .apple-vision-icon {
    margin: 0 auto 20px;
  }
  
  .apple-structure-stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
