/* --- ABOUT PAGE --- */

/* ================= HERO (ABOUT) ================= */
/* Hero section styles moved to global common.css */

/* CTA Button Styling */
.btn-enquire {
  display: inline-block;
  padding: 14px 32px;
  background: #FFD76A;
  color: #111;
  text-decoration: none;
  font-weight: 700;
  border-radius: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
  font-family: 'Poppins', sans-serif;
}

.btn-enquire:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 215, 106, 0.3);
}

.hero.hero--about .hero-content h1 {
  font-size: clamp(38px, 4.4vw, 58px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.2px;
}

.hero.hero--about .hero-content p {
  margin-top: 12px;
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.92;
}

@keyframes aboutHeroIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================= ABOUT CONTENT ================= */
.services-big {
  max-width: 1100px;
  margin: 70px auto 90px;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.service-box {
  width: min(760px, 100%);
  padding: 30px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
  border-left: 6px solid var(--accent); /* Default accent */
}

.service-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
  border-left-color: #fff;
}

.service-box h3 {
  font-size: 24px;
  color: var(--accent);
  margin-bottom: 15px;
  font-weight: 700;
}

.service-box p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  font-size: 16px;
}

.service-box.events { border-left-color: #3b82f6; }
.service-box.college { border-left-color: #10b981; }
.service-box.family { border-left-color: #8b5cf6; }
.service-box.weekend { border-left-color: #fbbf24; }
.service-box.safe { border-left-color: #ef4444; }

@media (max-width: 900px) {
  .hero.hero--about {
    justify-content: center;
    padding: 70px 20px 55px;
  }

  .hero.hero--about .hero-content {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .services-big {
    margin: 55px auto 70px;
  }

  .service-box.left,
  .service-box.right {
    align-self: stretch;
  }
}

@media (max-width: 480px) {
  .hero.hero--about {
    min-height: 68vh;
    padding: 62px 14px 46px;
  }

  .hero.hero--about .hero-content {
    padding: 18px 18px;
  }

  .hero.hero--about .hero-content p {
    font-size: 16px;
  }

  .services-big {
    padding: 0 14px;
    gap: 16px;
  }

  .service-box {
    padding: 18px 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero.hero--about .hero-content {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
