/* ===== About Page Styles ===== */

.about-container {
  min-height: 100vh;
  padding: 30px 20px;
  background: linear-gradient(135deg, var(--bg1), var(--bg2));
  position: relative;
  overflow-x: hidden;
}

/* Animated Background Particles */
.about-container::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 40% 20%, rgba(212, 175, 55, 0.06) 0%, transparent 50%);
  animation: particleMove 20s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes particleMove {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-20px, 20px) scale(1.1); }
}

/* ===== Header ===== */
.about-header {
  max-width: 1200px;
  margin: 0 auto 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
  animation: fadeDown 0.8s ease;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.logo-section.home-link:hover {
  transform: scale(1.05);
}

.logo-section.home-link:active {
  transform: scale(0.98);
}

.logo {
  width: 50px;
  height: 50px;
  animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(5deg); }
}

.brand-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 3px;
  margin: 0;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

/* Coming Soon Badge */
.coming-soon-badge {
  position: relative;
  padding: 12px 24px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
  border: 2px solid var(--gold);
  border-radius: 50px;
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.badge-text {
  position: relative;
  z-index: 2;
  color: var(--gold);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 2px;
}

.badge-pulse {
  position: absolute;
  inset: 0;
  background: var(--gold);
  opacity: 0.3;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.2); opacity: 0.1; }
}

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

/* ===== Main Card ===== */
.about-card {
  max-width: 1200px;
  margin: 0 auto;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.035),
    rgba(255, 255, 255, 0.06)
  );
  backdrop-filter: blur(14px);
  border-radius: 28px;
  padding: 50px;
  position: relative;
  z-index: 1;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.about-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 25%,
    rgba(212, 175, 55, 0.08),
    transparent 75%
  );
  animation: sweep 8s linear infinite;
  pointer-events: none;
}

/* ===== Hero Section ===== */
.hero-section {
  text-align: center;
  margin-bottom: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 20px;
  text-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
}

.hero-description {
  font-size: 18px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 800px;
  margin: 0 auto;
}

/* ===== Features Grid ===== */
.features-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  padding: 35px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.feature-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: inline-block;
  animation: iconBounce 2s ease-in-out infinite;
}

.feature-card:nth-child(even) .feature-icon {
  animation-delay: 0.5s;
}

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

.feature-card h3 {
  color: var(--gold);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.feature-card p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 15px;
  position: relative;
  z-index: 1;
}

/* ===== Contact Section ===== */
.contact-section {
  margin-bottom: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 35px;
}

.contact-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  padding: 25px;
  display: flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  border: 2px solid transparent;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.contact-card:hover::before {
  opacity: 1;
}

.whatsapp-card:hover {
  border-color: #25D366;
  transform: translateX(-8px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.facebook-card:hover {
  border-color: #1877F2;
  transform: translateX(-8px);
  box-shadow: 0 10px 30px rgba(24, 119, 242, 0.3);
}

.contact-icon {
  font-size: 40px;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.whatsapp-icon {
  background: rgba(37, 211, 102, 0.2);
  animation: iconPulse 2s ease-in-out infinite;
}

.facebook-icon {
  background: rgba(24, 119, 242, 0.2);
  animation: iconPulse 2s ease-in-out infinite 0.5s;
}

@keyframes iconPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.contact-info {
  flex: 1;
  position: relative;
  z-index: 1;
}

.contact-info h3 {
  color: var(--gold);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
}

.contact-detail {
  color: var(--text);
  font-size: 16px;
  margin-bottom: 8px;
}

.contact-action {
  color: var(--muted);
  font-size: 13px;
  display: block;
}

.contact-arrow {
  color: var(--gold);
  font-size: 24px;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.contact-card:hover .contact-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ===== Home Button in Header ===== */
.home-btn {
  padding: 12px 24px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.1));
  border: 2px solid var(--gold);
  border-radius: 50px;
  color: var(--gold);
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.home-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.home-btn:hover::before {
  opacity: 0.15;
}

.home-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
  border-color: var(--gold);
}

.home-btn:active {
  transform: translateY(0);
}

.home-btn span {
  position: relative;
  z-index: 1;
}

/* ===== Floating WhatsApp Button ===== */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366, #20BA5A);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  text-decoration: none;
  animation: floatWhatsApp 3s ease-in-out infinite;
  transition: transform 0.3s ease;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
}

.whatsapp-icon-mobile {
  font-size: 32px;
}

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

/* ===== Animations ===== */
.animate-fade-up {
  animation: fadeUp 0.8s ease;
}

.animate-fade-up-delay {
  animation: fadeUp 0.8s ease 0.2s both;
}

.animate-scale {
  animation: scaleIn 0.6s ease;
}

.animate-scale-delay {
  animation: scaleIn 0.6s ease 0.1s both;
}

.animate-scale-delay-2 {
  animation: scaleIn 0.6s ease 0.2s both;
}

.animate-scale-delay-3 {
  animation: scaleIn 0.6s ease 0.3s both;
}

.animate-scale-delay-4 {
  animation: scaleIn 0.6s ease 0.4s both;
}

.animate-scale-delay-5 {
  animation: scaleIn 0.6s ease 0.5s both;
}

.animate-slide-in {
  animation: slideInRight 0.7s ease;
}

.animate-slide-in-delay {
  animation: slideInRight 0.7s ease 0.2s both;
}

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
  .about-container {
    padding: 20px 15px;
  }

  .about-header {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .home-btn {
    padding: 10px 20px;
    font-size: 14px;
  }

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

  .section-title {
    font-size: 32px;
  }

  .hero-description {
    font-size: 16px;
  }

  .features-section {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature-card {
    padding: 25px;
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }

  .floating-whatsapp {
    width: 55px;
    height: 55px;
    bottom: 20px;
    left: 20px;
  }

  .coming-soon-badge {
    padding: 10px 20px;
  }

  .badge-text {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .brand-title {
    font-size: 22px;
  }

  .logo {
    width: 40px;
    height: 40px;
  }

  .section-title {
    font-size: 28px;
  }

  .feature-icon {
    font-size: 40px;
  }

  .contact-icon {
    width: 60px;
    height: 60px;
    font-size: 32px;
  }

  .about-header {
    flex-wrap: wrap;
  }

  .home-btn {
    padding: 8px 16px;
    font-size: 13px;
  }

  .coming-soon-badge {
    padding: 8px 16px;
  }

  .badge-text {
    font-size: 12px;
  }
}

