
:root {
  --green: #12b614;
  --blue: #146c94;
  --light-bg: #f7fbf9;
  --dark-bg: #121212;
  --card-bg: #ffffff;
  --dark-card: #1f1f1f;
  --text-dark: #1b1b1b;
  --text-light: #f1f1f1;
}

/* Base */
body {
  font-family: 'Jost', sans-serif;
  background: white;
  color: var(--text-dark);
  transition: all 0.3s ease;
}

body.dark-mode {
  background: var(--dark-bg);
  color: var(--text-light);
}

/* HERO HEADER */
}

.hero-content {
  max-width: 700px;
  animation: fadeUp 1s ease forwards;
}

.faq-hero h1 {
  font-size: 3.4rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.faq-hero p {
  font-size: 1.15rem;
  opacity: 0.95;
}

.hero-wave {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 90px;
}

/* Dark Mode Fix */
body.dark-mode .hero-wave path {
  fill: #121212;
}

/* Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .faq-hero h1 {
    font-size: 2.4rem;
  }
}


/* Search */
.search-box {
  max-width: 600px !important;
  margin: -40px auto 60px !important;
}

.search-box .input-group {
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.search-box input {
  padding: 15px 20px;
  border: none;
}

.search-box .btn-search {
  background: var(--blue);
  color: white !important;
  padding: 0 22px !important;
  font-weight: 600!important;
}

.search-box .btn-search:hover {
  background: #0f5a77 !important;
}

/* Accordion */
.accordion-item {
  border: none;
  border-radius: 15px;
  margin-bottom: 15px;
  overflow: hidden;
  background: var(--card-bg);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.accordion-item:hover {
  transform: translateY(-4px);
}

body.dark-mode .accordion-item {
  background: var(--dark-card);
}
.question-card {
  max-width: 1000px;
}
.accordion-button {
  font-weight: 500;
  padding: 20px;
  font-size: 1.05rem;
}

.accordion-button:not(.collapsed) {
  background: rgba(18,182,20,0.1);
  color: var(--green);
}

.accordion-body {
  line-height: 1.7;
}

/* Icons */
.faq-icon {
  color: var(--green);
  font-size: 1.3rem;
  margin-right: 12px;
}

/* Contact Box */
.faq-contact {
  margin-top: 60px;
  background: var(--card-bg);
  border-radius: 20px;
  padding: 50px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

body.dark-mode .faq-contact {
  background: var(--dark-card);
}

/* Buttons */
.btn-faq {
  background: var(--green);
  color: white;
  border-radius: 30px;
  padding: 12px 35px;
}

.btn-faq:hover {
  background: #0e9f12;
}

/* Dark Mode Toggle */
.dark-toggle {
  position: fixed;
  top: 20px;
  right: 20px;
  background: var(--blue);
  color: white;
  border-radius: 50%;
  padding: 12px 14px;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  z-index: 999;
}
/* Ask Question Section */
.ask-question-section {
  padding: 80px 20px;
}

.question-card {
  background: var(--card-bg);
  padding: 45px;
  
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  max-width: 900px;
  margin: 0 auto;
}

body.dark-mode .question-card {
  background: var(--dark-card);
}

.question-card h3 {
  color: var(--blue);
  font-weight: 600;
}

.question-card p {
  opacity: 0.8;
  margin-bottom: 30px;
}

/* Inputs */
.form-control, .form-select {
  border-radius: 12px;
  border: 1px solid #ddd;
  transition: all 0.3s ease;
}

.form-control:hover, .form-select:hover {
  border-color: var(--green);
  box-shadow: 0 0 0 0.1rem rgba(18,182,20,0.15);
  transform: translateY(-2px);
}

.form-control:focus, .form-select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 0.15rem rgba(18,182,20,0.2);
  transform: translateY(-2px);
}

/* Button */
.btn-submit {
  background: var(--green);
  color: white;
  border-radius: 30px;
  padding: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background: #0e9f12;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(18,182,20,0.3);
}

#question {
  height: 140px;
}
