/* ================= BOOTSTRAP CUSTOMIZATION ================= */
/* Override Bootstrap's default primary and success colors with brand colors */
:root {
  --bs-primary: #3FD4B6;
  --bs-primary-rgb: 63, 212, 182;
  --bs-primary-hover: #34c3a4;
  --bs-primary-hover-rgb: 52, 195, 164;
}

/* Custom color utilities */
.text-bright-green {
  color: #00BA00 !important;
}

.text-dark-green {
  color: #05420D !important;
}

/* ================= BASE STYLES ================= */
body {
  font-family: 'Poppins', sans-serif;
}

/* ================= BUTTON STYLES ================= */
.btn-custom {
  --bs-btn-bg: var(--bs-primary);
  --bs-btn-border-color: var(--bs-primary);
  --bs-btn-hover-bg: var(--bs-primary-hover);
  --bs-btn-hover-border-color: var(--bs-primary-hover);
  --bs-btn-active-bg: var(--bs-primary-hover);
  --bs-btn-active-border-color: var(--bs-primary-hover);
  border-radius: 50px;
  color: #fff;
}

/* ================= HERO SECTION ================= */
.hero-section {
  background: radial-gradient(
    circle at top center,
    rgba(52, 195, 164, 0.15) 0%,
    #ffffff 85%
  );
  border-radius: 20px;
}

.curve-line {
  max-width: 180px;
}

/* Responsive curve line */
@media (min-width: 992px) {
  .curve-line {
    max-width: 500px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .curve-line {
    max-width: 300px;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .curve-line {
    max-width: 250px;
  }
}

@media (max-width: 575px) {
  .curve-line {
    max-width: 200px;
  }
}

/* ================= DIFFERENCE SECTION ================= */
.difference-section {
  background-color: #f6fffd;
  padding: 80px 0;
}

.difference-card {
  background-color: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  line-height: 2.2;
}

.difference-card ul li {
  display: flex;
  align-items: start;
  margin-bottom: 16px;
  line-height: 2.2;
}

.difference-card i {
  font-size: 1.1rem;
  margin-right: 10px;
  margin-top: 4px;
}

/* ================= COMPARISON CARDS ================= */
.comparison-card-left {
  background: linear-gradient(180deg, #ffffff 0%, #fff5f5 80%);
}

.comparison-card-right {
  background: linear-gradient(180deg, #ffffff 0%, #f5fff5 80%);
}

.vs-badge {
  width: 50px;
  height: 50px;
  font-size: 1.2rem;
}

/* ================= TESTIMONIALS SECTION ================= */
.testimonial-card {
  height: 320px;
  object-fit: cover;
}

.testimonial-card-1 { background-color: #e8f2ff; }
.testimonial-card-2 { background-color: #e6f7f3; }
.testimonial-card-3 { background-color: #fff3e8; }
.testimonial-card-4 { background-color: #feecec; }
.testimonial-card-5 { background-color: #fff9e6; }
.testimonial-card-6 { background-color: #f3e8ff; }
.testimonial-card-7 { background-color: #e8f2ff; }
.testimonial-card-8 { background-color: #e6f7f3; }
.testimonial-card-9 { background-color: #fff3e8; }

/* ================= REASONS CAROUSEL ================= */
.reasons-card {
  border: 2px solid var(--bs-primary);
  min-height: 175px;
}

/* Responsive min-height for smaller devices */
@media (max-width: 768px) {
  .reasons-card {
    min-height: 160px;
  }
}

@media (max-width: 480px) {
  .reasons-card {
    min-height: 140px;
  }
}

/* ================= FAQ SECTION ================= */
.faq-section {
  background-color: #f2fbfa;
}

/* ================= CTA SECTION ================= */
.cta-section {
  background-color: var(--bs-primary);
  max-width: 950px;
  padding: 80px 60px;
}

/* ================= MODAL STYLES ================= */
.modal-backdrop.show {
  background-color: rgba(0, 0, 0, 0.45) !important;
}

/* ================= ACCORDION STYLES ================= */
.accordion-button:not(.collapsed) {
  background-color: var(--bs-primary) !important;
  color: #fff !important;
  box-shadow: none;
}

.accordion-button::after {
  filter: invert(61%) sepia(68%) saturate(423%) hue-rotate(118deg)
    brightness(96%) contrast(91%);
}

.accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1);
}

.accordion-item {
  border: 1px solid rgba(var(--bs-primary-rgb), 0.3) !important;
  border-radius: 10px;
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-primary-rgb), 0.25);
}

/* ================= FORM STYLES ================= */
.form-textarea {
  height: 100px;
}

.avatar-overlap {
  margin-right: -22px;
}

.avatar-1 { z-index: 5; }
.avatar-2 { z-index: 4; }
.avatar-3 { z-index: 3; }
.avatar-4 { z-index: 2; }
.avatar-5 { z-index: 1; }

/* ================= RESPONSIVE STYLES ================= */
@media (max-width: 576px) {
  .vs-badge {
    top: 48% !important;
    width: 35px !important;
    height: 35px !important;
    font-size: 0.9rem !important;
  }
  
  .team-image {
    width: 100% !important;
    height: 250px !important;
  }
}

@media (max-width: 768px) {
  .cta-section {
    padding: 40px 30px !important;
  }
  
  .difference-section {
    padding: 40px 0 !important;
  }
}

@media (max-width: 992px) {
  .hero-section {
    margin-top: 2rem !important;
  }
}
