/* -------------------------
   RESET & GLOBAL STYLES
------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f8f9fa;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* -------------------------
   HEADER & NAVIGATION
------------------------- */
header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  padding: 15px 0;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0070ba;
}

.logo a {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0070ba;
  text-decoration: none;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #0070ba;
}

.cta-button {
  background: white;
  color: #005a94;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
  text-decoration: none;
  display: inline-block;
}

.cta-button:hover {
  background: #005a94;
  color: white;
}

.back-btn {
  background: transparent;
  color: #0070ba;
  border: 2px solid #0070ba;
  padding: 0.6rem 1.2rem;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}

.back-btn:hover {
  background: #0070ba;
  color: white;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  background: #0070ba;
  color: white;
  border: none;
  padding: 0.5rem;
  border-radius: 5px;
  cursor: pointer;
}

/* -------------------------
   HERO SECTION
------------------------- */
.hero {
  background: linear-gradient(135deg, #0070ba 0%, #005a94 100%);
  color: white;
  padding: 120px 0 100px;
  text-align: center;
  margin-top: 60px;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}

.btn-secondary:hover {
  background: white;
  color: #0070ba;
}

/* -------------------------
   FEATURES SECTION
------------------------- */
.features {
  padding: 80px 0;
  background: #f8f9fa;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 3rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.feature-icon i {
  font-size: 2.5rem;
  color: #0070ba;
}

.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #0070ba;
  margin-bottom: 1rem;
}

/* -------------------------
   SERVICES SECTION
------------------------- */
.services {
  padding: 80px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.service-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-header {
  background: #0070ba;
  color: white;
  padding: 1.5rem;
  text-align: center;
}

.service-header h3 {
  font-size: 1.5rem;
  font-weight: 600;
}

.service-content {
  padding: 2rem;
}

.service-features {
  list-style: none;
  margin-bottom: 2rem;
}

.service-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
}

.service-features li:before {
  content: "✓";
  color: #0070ba;
  font-weight: bold;
  margin-right: 0.5rem;
}

.price {
  font-size: 2rem;
  font-weight: 700;
  color: #0070ba;
  text-align: center;
  margin-bottom: 1rem;
}

/* -------------------------
   STATS SECTION (Index & Call to Action)
------------------------- */
.stats {
  background: #0070ba;
  color: white;
  padding: 60px 0;
  margin: 3rem 0;
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item h3 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat-item p {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* -------------------------
   TESTIMONIALS (Index)
------------------------- */
.testimonials {
  padding: 80px 0;
  background: #f8f9fa;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1rem;
  color: #666;
}

.testimonial-author {
  font-weight: 600;
  color: #0070ba;
}

/* -------------------------
   TRYOUT PAGE – FILTER
------------------------- */
.filter-section {
  background: white;
  padding: 2rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.filter-tab {
  background: transparent;
  color: #666;
  border: 2px solid #ddd;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.filter-tab.active {
  background: #0070ba;
  color: white;
  border-color: #0070ba;
}

.filter-tab:hover {
  border-color: #0070ba;
  color: #0070ba;
}

.filter-tab.active:hover {
  color: white;
}

/* -------------------------
   TRYOUT PACKAGES
------------------------- */
.tryout-section {
  padding: 3rem 0;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.package-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  position: relative;
}

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.package-card.popular {
  border: 3px solid #0070ba;
}

.popular-badge {
  position: absolute;
  top: 0px;
  right: 0px;
  background: #0070ba;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 10;
}

.package-header {
  background: linear-gradient(135deg, #0070ba 0%, #005a94 100%);
  color: white;
  padding: 2rem;
  text-align: center;
}

.package-header h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.package-subtitle {
  opacity: 0.9;
  font-size: 0.9rem;
}

.package-content {
  padding: 2rem;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0070ba;
}

.price-period {
  color: #666;
  font-size: 0.9rem;
}

.package-features {
  list-style: none;
  margin-bottom: 2rem;
}

.package-features li {
  padding: 0.8rem 0;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
}

.package-features li:before {
  content: "✓";
  color: #0070ba;
  font-weight: bold;
  margin-right: 1rem;
  font-size: 1.2rem;
}

/* -------------------------
   FAQ SECTION (Tryout)
------------------------- */
.faq {
  padding: 4rem 0;
  background: #f8f9fa;
}

.faq-item {
  background: white;
  margin-bottom: 1rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.faq-question {
  background: #0070ba;
  color: white;
  padding: 1.5rem;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  padding: 1.5rem;
  display: none;
  color: #666;
  line-height: 1.8;
}

.faq-answer.active {
  display: block;
}

/* -------------------------
   CONTACT PAGE STYLES
------------------------- */
.contact-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0070ba;
  margin-bottom: 1rem;
}

.contact-info p {
  margin-bottom: 1rem;
  color: #555;
}

.contact-form .form-group {
  margin-bottom: 1rem;
}

.contact-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.8rem;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #0070ba;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  background: #0070ba;
  color: white;
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.submit-btn:hover {
  background: #005a94;
}

/* -------------------------
   SOCIAL ICONS
------------------------- */
.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.social {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.2rem;
  color: white;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
}

.social i {
  color: white !important;
}

.social:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Warna resmi tiap platform */
.social.facebook {
  background: #1877f2 !important;
}
.social.instagram {
  background: #e1306c !important;
}
.social.youtube {
  background: #ff0000 !important;
}
.social.telegram {
  background: #0088cc !important;
}

/* -------------------------
   FOOTER
------------------------- */
footer {
  background: #333;
  color: white;
  padding: 40px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: #0070ba;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section ul li a:hover {
  color: #0070ba;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #555;
  color: #ccc;
}

/* -------------------------
   MISI LIST (TENTANG KAMI)
------------------------- */
.misi-list {
  text-align: left;
  margin-top: 1rem;
  list-style: none;
  padding-left: 0;
}

.misi-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
  font-size: 1rem;
}

.misi-list li:before {
  content: "✓";
  color: #0070ba;
  font-weight: bold;
  margin-right: 0.5rem;
}

/* -------------------------
   RESPONSIVE
------------------------- */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .section-title {
    font-size: 2rem;
  }

  .content-wrapper,
  .services-grid,
  .features-grid,
  .testimonial-grid,
  .stats-grid,
  .packages-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
