/* ===== General ===== */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  margin: 0;
  padding: 0;
}

h1, h2, h5, h6 {
  font-weight: 600;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #222;
  margin-bottom: 2rem;
  position: relative;
  text-align: center;
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: #ffb900;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* ===== Hero Section ===== */
.hero {
  color: white;
  text-align: center;
  padding: 120px 20px;
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('assets/images/hero.jpg') center/cover no-repeat;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 30px;
}

.hero .btn-warning {
  background-color: #ffb900;
  color: #000;
  border: none;
  font-weight: 700;
  font-size: 1.25rem;
  padding: 12px 30px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.hero .btn-warning:hover {
  background-color: #e6a200;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* ===== Icons ===== */
i.bi {
  font-size: 4rem;
  margin-bottom: 20px;
  display: block;
  color: #0d6efd;
  transition: transform 0.3s ease, color 0.3s ease;
}

.row.text-center i:hover {
  transform: rotate(-10deg) scale(1.2);
  color: #ffb900;
}

.row.text-center h6 {
  margin-top: 10px;
  font-weight: 600;
  text-transform: uppercase;
}

.row.text-center p {
  color: #555;
}

/* ===== Buttons ===== */
.btn-primary {
  background-color: #0d6efd;
  border: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #0b5ed7;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* ===== Forms ===== */
form input, form textarea {
  border-radius: 6px;
  border: 1px solid #ccc;
  padding: 12px;
  width: 100%;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

form input:focus, form textarea:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 5px rgba(13, 110, 253, 0.5);
  outline: none;
}

form button {
  border-radius: 8px;
  font-weight: 700;
}

/* ===== Footer ===== */
footer {
  text-align: center;
  padding: 25px 0;
  background-color: #111;
  color: #fff;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

/* ===== Accordion / FAQ ===== */
.accordion-button {
  font-weight: 600;
}

.accordion-button:not(.collapsed) {
  color: #0d6efd;
  background-color: #e9f2ff;
}

.accordion-body {
  color: #555;
}

/* ===== Sections ===== */
section {
  padding: 80px 20px;
}

.bg-light {
  background-color: #f9f9f9 !important;
}

/* ===== Step Boxes ===== */
#how-it-works .col-md-2 {
  text-align: center;
}

#how-it-works i {
  font-size: 3.5rem;
  color: #0d6efd;
  margin-bottom: 10px;
}

/* ===== Referral Section ===== */
#referral h6 {
  margin-top: 20px;
  font-weight: 600;
  text-transform: uppercase;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  #how-it-works .col-md-2 {
    flex: 0 0 50%;
    max-width: 50%;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 60px 20px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.2rem;
  }

  i.bi {
    font-size: 3rem;
  }

  .section-title {
    font-size: 2rem;
  }
}