/* ------------------- General Reset ------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Jost", sans-serif;
  background-color: #fff;
  color: #2a2a2a;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
}

/* ----------------- Header Section ----------------- */
.main-header {
  background: #fff;
  border-bottom: 1px solid #e9e9e9;
  z-index: 999;
}

.header-container {
  padding-top: 12px !important;
  padding-bottom: 12px !important;
}

.header-logo img {
  max-height: 70px;
  width: auto;
}

/* Buttons */
.btn-get-started {
  background: #5c3df5;
  color: #fff;
  padding: 10px 24px;
  font-size: 16px;
  border-radius: 8px;
  transition: 0.3s;
  font-weight: 500;
  white-space: nowrap;
}

.btn-get-started i {
  margin-right: 6px;
  font-size: 18px;
}

.btn-get-started:hover {
  background: #472acb;
  color: #fff;
}

.btn-call {
  background: #25d366;
  color: #fff;
  padding: 10px 24px;
  font-size: 16px;
  border-radius: 8px;
  transition: 0.3s;
  font-weight: 500;
  white-space: nowrap; /* prevents number wrapping */
}

.btn-call i {
  margin-right: 6px;
  font-size: 18px;
}

.btn-call:hover {
  background: #1db954;
  color: #fff;
}

/* ----------------- Mobile Responsive ----------------- */
@media (max-width: 991px) {
  .header-actions {
    display: none !important; /* Hide buttons */
  }

  .header-container {
    justify-content: center !important; /* Center logo */
  }

  .header-logo img {
    max-height: 60px;
  }
}

/* Whatsapp Marketing Section */
.whatsapp-marketing-section {
  padding-top: 100px;
  padding-bottom: 100px;
}

.wm-title {
  font-size: 3rem;
  font-weight: 700;
  color: #2b2858; /* Your brand dark */
  line-height: 1.2;
  margin-bottom: 25px;
}

.wm-text {
  font-size: 1.1rem;
  line-height: 1.9;
  color: #333;
  margin-bottom: 20px;
}

/* Button Style */
.wm-btn {
  background-color: #ff6600;
  color: #fff;
  padding: 12px 26px;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.3s ease;
}

.wm-btn:hover {
  background-color: #e55000;
  color: #fff;
}

/* Video Box */
.wm-video-box video {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.15);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .wm-title {
    font-size: 2.2rem;
    text-align: left;
  }
  .wm-text {
    text-align: left;
  }
  .wm-btn {
    font-size: 1rem;
  }
}

/* ----------- Client Review Section ----------- */
.client-review-section {
  background: #f3ffe8; /* light green tint */
}

.section-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #2b2858;
}

/* Card */
.client-card {
  background: #e8f7db;
  border: 2px solid #1e402f;
  border-radius: 10px;
  padding: 15px;
  transition: all 0.3s ease;

  /* NEW → Makes all cards equal height */
  display: flex;
  flex-direction: column;
  height: 100%;
}

.client-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
}

/* Video Styling */
.client-card video {
  width: 100%;
  height: 350px; /* Fixed height for all videos */
  object-fit: cover; /* Makes video fill evenly */
  border-radius: 8px;
  background: #000;
}

/* Client Info */
.client-info {
  text-align: center;
  padding: 20px 10px 10px;

  /* NEW → Push content evenly so all cards match height */
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.client-info h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #2b2858;
  margin-bottom: 8px;
}

/* Stars */
.stars {
  color: #ffa500;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

/* Texts */
.client-location {
  font-size: 1rem;
  font-weight: 500;
  color: #333;
  margin-bottom: 8px;
}

.client-role {
  font-size: 1rem;
  font-weight: 500;
  color: #333;
}

.client-org {
  font-size: 0.95rem;
  margin-top: 5px;
  color: #2b2858;
}

/* Mobile Styling */
@media (max-width: 768px) {
  .client-info h4 {
    font-size: 1.2rem;
  }

  .section-title {
    font-size: 2rem;
  }
}

/* Whatsapp Benefits Section */
.wa-benefits-section {
  padding-top: 100px;
  padding-bottom: 100px;
}

.wa-title {
  font-size: 2.6rem;
  font-weight: 700;
  color: #0b1f2b; /* dark navy */
}

/* Left image */
.wa-benefits-img {
  width: 100%;
  max-width: 450px;
}

/* Right List */
.wa-benefits-list {
  list-style: none;
  padding-left: 0;
}

.wa-benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
  padding: 10px 5px;
}

.wa-benefits-list li i {
  font-size: 22px;
  color: #38a24f; /* green matching your theme */
  background: #e8ffe9;
  padding: 10px;
  border-radius: 8px;
  min-width: 42px;
  text-align: center;
}

.wa-benefits-list h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0b1f2b;
  margin-bottom: 5px;
}

.wa-benefits-list p {
  font-size: 1rem;
  color: #333;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .wa-title {
    font-size: 2rem;
  }

  .wa-benefits-list li {
    align-items: flex-start;
  }

  .wa-benefits-img {
    max-width: 320px;
    margin-bottom: 20px;
  }
}

/* Whatsapp Tools Section */
.wa-tools-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #0b1f2b; /* navy */
}

.wa-tool-box {
  background: #fff;
  border: 2px solid #e6e6e6;
  padding: 30px 10px;
  text-align: center;
  border-radius: 8px;
  transition: 0.3s ease;
}

.wa-tool-box:hover {
  transform: translateY(-5px);
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.08);
}

.wa-tool-box i {
  font-size: 40px;
  color: #238c2f; /* green like screenshot */
  margin-bottom: 12px;
}

.wa-tool-box p {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: #0b1f2b;
}

/* Responsive */
@media (max-width: 768px) {
  .wa-tools-title {
    font-size: 2rem;
  }
}

/* ----------- Power of WhatsApp Section ----------- */
.wa-power-section {
  background: #fffdf8; /* soft cream tone like screenshot */
  padding-top: 100px;
  padding-bottom: 100px;
}

/* Title */
.wa-power-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #0b1f2b; /* dark navy */
  line-height: 1.3;
}

/* Left Image */
.wa-power-img {
  width: 100%;
  max-width: 430px;
}

/* Bullet List */
.wa-power-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.wa-power-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 1.05rem;
  color: #333;
  line-height: 1.6;
}

.wa-power-list i {
  font-size: 20px;
  color: #238c2f; /* theme green */
  background: #e8ffe9;
  padding: 10px;
  border-radius: 8px;
  min-width: 40px;
  text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
  .wa-power-title {
    font-size: 1.9rem;
    text-align: center;
    margin-bottom: 20px;
  }

  .wa-power-list li {
    font-size: 1rem;
  }

  .wa-power-img {
    max-width: 300px;
    margin-bottom: 20px;
  }
}

/* ---------------- Price Plan Section ---------------- */
.pricing-section {
  background: #f7faff;
  padding-top: 100px;
  padding-bottom: 100px;
}

.pricing-title {
  font-size: 2.6rem;
  font-weight: 700;
  color: #2b2858;
}

.pricing-subtitle {
  font-size: 1.1rem;
  color: #333;
  margin-top: 8px;
}

/* Cards */
.pricing-card {
  background: #dfe8ff;
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-6px);
}

/* Recommended Card */
.pricing-card.recommended {
  background: #d7ecff;
}

/* Price */
.price-box h3 {
  font-size: 2.7rem;
  font-weight: 800;
  color: #2b2858;
  margin-bottom: 5px;
}

.price-box span {
  font-size: 1rem;
  font-weight: 600;
  color: #444;
}

/* Plan Name */
.plan-name {
  background: #fff;
  padding: 10px;
  border-radius: 10px;
  font-weight: 700;
  color: #2b2858;
  margin: 18px 0;
}

/* Features */
.pricing-features {
  padding: 0;
  margin: 0;
}

.pricing-features li {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: #2b2858;
}

/* Recommended Tick Badge */
.recommended-badge {
  position: absolute;
  top: -15px;
  right: -15px;
  background: #2ecc71;
  color: #fff;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Extra Starburst Badge */
.extra-badge {
  margin-top: 15px;
  background: #fff;
  padding: 12px 15px;
  border-radius: 14px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #2b2858;
  display: inline-block;
  border: 2px dashed #2b2858;
}

/* Footer Text */
.pricing-footer-text {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.8;
}

/* Responsive */
@media (max-width: 768px) {
  .pricing-title {
    font-size: 2rem;
  }

  .price-box h3 {
    font-size: 2.2rem;
  }

  .pricing-card {
    margin-bottom: 20px;
  }
}

/* Buy Now Button */
.pricing-btn {
  margin-top: 18px;
  display: inline-block;
  background: #2b2858;
  color: #fff;
  padding: 12px 22px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.pricing-btn i {
  margin-right: 8px;
}

.pricing-btn:hover {
  background: #2ecc71;
  color: #fff;
  transform: translateY(-3px);
}


/* -------- FAQ Section -------- */
.faq-section {
  background: #fff;
  padding-top: 80px;
  padding-bottom: 80px;
}

.faq-section h2 {
  font-size: 34px;
  letter-spacing: 1px;
}

.accordion-item {
  border: none;
  border-bottom: 1px solid #e7e7e7;
  border-radius: 0;
  padding: 5px 0;
}

.accordion-button {
  background: none;
  box-shadow: none !important;
  padding-left: 0;
  font-size: 18px;
  font-weight: 600;
  color: #2b2858;
}

.accordion-button:not(.collapsed) {
  color: #2b2858;
  background: none;
}

.accordion-button:focus {
  border: none;
  box-shadow: none;
}

.accordion-body {
  padding-left: 0;
  padding-top: 10px;
  color: #444;
  font-size: 16px;
  line-height: 1.8;
}

/* Mobile */
@media (max-width: 576px) {
  .accordion-button {
    font-size: 16px;
  }

  .accordion-body {
    font-size: 15px;
  }
}

/* ------------------- Footer Section ------------------- */
.footer-section {
  background-color: #fdeff4;
  padding: 80px 0 40px;
  font-size: 16px;
  text-align: left;
}

.footer-logo {
  max-height: 70px;
  margin-bottom: 15px;
}

.footer-about {
  max-width: 260px; /* Keeps text neat and not too wide on large screens */
}

.footer-title {
  font-weight: 700;
  color: #2b2858;
  margin-bottom: 20px;
}

.footer-section p,
.footer-section li,
.footer-section a {
  color: #2b2858;
  line-height: 1.8;
}

.footer-contact li {
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
}

.footer-contact i {
  color: #2b2858;
  margin-right: 8px;
  line-height: 1.6;
}

.footer-section hr {
  border-color: rgba(0, 0, 0, 0.1);
}

/* Social icons (below paragraph in logo section) */
.footer-social {
  margin-top: 15px;
}

.footer-social a {
  display: inline-block;
  color: #2b2858;
  font-size: 20px;
  margin-right: 15px;
  transition: color 0.3s;
}

/* Footer Bottom */
.footer-bottom {
  text-align: left;
  padding-top: 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  color: #2b2858;
  font-size: 15px;
}

/* ------------------- Responsive ------------------- */
@media (max-width: 992px) {
  .footer-section {
    text-align: left;
  }

  .footer-logo {
    margin-bottom: 20px;
  }

  .footer-bottom {
    text-align: left;
  }

  .footer-about {
    max-width: 100%;
  }
}

/* Center footer bottom on large screens only */
@media (min-width: 992px) {
  .footer-bottom {
    text-align: center;
  }
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25d366;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  z-index: 9999;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
}

.floating-whatsapp:hover {
  transform: scale(1.08);
  background: #1ebe5b;
  color: #fff;
}

/* Mobile Adjustment */
@media (max-width: 480px) {
  .floating-whatsapp {
    width: 52px;
    height: 52px;
    font-size: 28px;
    bottom: 18px;
    right: 18px;
  }
}
