/* ------------------------------------------------------
   SECONDARY PAGES — BenCode Studio
------------------------------------------------------ */

.page-title {
  font-size: 42px;
  font-weight: 800;
  color: #1f1028;
  margin-bottom: 10px;
}

.page-subtitle {
  font-size: 18px;
  color: #555;
  max-width: 650px;
  margin: 0 auto 40px;
}

/* ------------------------------------------------------
   BOOK A CALL PAGE
------------------------------------------------------ */

.bookcall-section {
  padding: 110px 0 90px;
}

.booking-form-container {
  max-width: 980px;
  margin: 0 auto;
}

.bookcall-section .page-content {
  max-width: 860px;
  margin: 12px auto 0;
}

.bookcall-section .page-content form {
  max-width: 760px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
  padding: 22px;
}

.bookcall-section .page-content form p {
  margin: 0 0 14px;
}

.bookcall-section .page-content form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 700;
  color: #1f1028;
}

.bookcall-section .page-content form input[type="text"],
.bookcall-section .page-content form input[type="email"],
.bookcall-section .page-content form input[type="tel"],
.bookcall-section .page-content form input[type="number"],
.bookcall-section .page-content form select,
.bookcall-section .page-content form textarea {
  width: 100%;
  border: 1px solid #d5d7dc;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 1rem;
}

.bookcall-section .page-content form textarea {
  min-height: 140px;
  resize: vertical;
}

.bookcall-section .page-content form input[type="submit"],
.bookcall-section .page-content form button[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.75rem 1.25rem;
  border: 0;
  border-radius: 999px;
  background: #6a1b9a;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.bookcall-section .page-content form input[type="submit"]:hover,
.bookcall-section .page-content form button[type="submit"]:hover {
  background: #55167e;
}

.booking-failsafe {
  margin-top: 10px;
}

.booking-fallback-message {
  margin: 12px auto 0;
  max-width: 760px;
  background: #f8fafc;
  border: 1px solid #dbeafe;
  border-radius: 12px;
  padding: 14px 16px;
  color: #334155;
  line-height: 1.6;
}

.booking-fallback-message a {
  color: #4a148c;
  font-weight: 700;
}

.booking-fallback-form {
  margin: 12px auto 0;
  max-width: 860px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
  padding: 22px;
}

.booking-fallback-form h2 {
  margin: 0 0 8px;
  color: #1f1028;
  font-size: 1.6rem;
}

.booking-fallback-form > p {
  margin: 0 0 16px;
  color: #4b5563;
  line-height: 1.6;
}

/* ------------------------------------------------------
   PRICING PAGE
------------------------------------------------------ */

.pricing-hero-section {
  padding: 120px 0 60px;
  text-align: center;
}

.pricing-table-section {
  padding: 40px 0 100px;
}

.pricing-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.pricing-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
  text-align: center;
  transition: 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(106,27,154,0.15);
}

.pricing-card.featured {
  border: 3px solid #6a1b9a;
  box-shadow: 0 20px 40px rgba(106,27,154,0.15);
}

.price {
  font-size: 36px;
  font-weight: 700;
  color: #4a148c;
  margin: 10px 0 20px;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 25px 0 35px;
}

.pricing-card ul li {
  margin-bottom: 10px;
  color: #555;
  font-size: 16px;
}

/* ------------------------------------------------------
   FAQ PAGE
------------------------------------------------------ */

.faq-hero-section {
  padding: 120px 0 38px;
  text-align: center;
}

.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.faq-item {
  background: #fff;
  padding: 0;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  border: 1px solid rgba(106, 27, 154, 0.14);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(106,27,154,0.12);
}

.faq-question {
  list-style: none;
  cursor: pointer;
  margin: 0;
  padding: 22px 52px 22px 22px;
  font-weight: 700;
  color: #2f174a;
  position: relative;
  line-height: 1.4;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  font-weight: 500;
  color: #6a1b9a;
}

.faq-item[open] .faq-question::after {
  content: "−";
}

.faq-answer {
  padding: 0 22px 20px;
}

.faq-answer p {
  margin: 0;
  color: #555;
  line-height: 1.7;
}

.faq-cta-section {
  padding: 24px 0 96px;
  text-align: center;
}

.faq-cta-section h2 {
  margin: 0 0 10px;
  font-size: clamp(1.8rem, 3.8vw, 2.4rem);
}

.faq-cta-section p {
  margin: 0 auto 20px;
  color: #555;
  max-width: 660px;
}

.faq-cta-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ------------------------------------------------------
   TESTIMONIALS PAGE
------------------------------------------------------ */

.testimonials-section {
  padding: 60px 0 80px;
  text-align: center;
  background: linear-gradient(180deg, #ffffff 0%, #fcf9ff 100%);
}

.testimonials-hero-section {
  padding: 120px 0 32px;
  text-align: center;
}

.testimonials-hero-section .page-title {
  margin: 0 0 10px;
  font-size: clamp(2.2rem, 5vw, 3.3rem);
  letter-spacing: -0.02em;
}

.testimonials-hero-section .page-subtitle {
  margin: 0 auto;
  max-width: 680px;
  color: #555;
  line-height: 1.7;
}

.testimonials-carousel {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  margin-top: 40px;
}

.testimonial-card {
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 18px;
  box-shadow: 0 6px 22px rgba(0,0,0,0.07);
  transition: 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(106,27,154,0.18);
}

.testimonial-text {
  font-size: 18px;
  color: #333;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  font-size: 16px;
  font-weight: 700;
  color: #4a148c;
}

.testimonial-item {
  padding: 34px 28px;
  background: #fff;
  border-radius: 14px;
  margin-bottom: 20px;
  border: 1px solid rgba(110, 44, 255, 0.24);
  box-shadow: 0 12px 30px rgba(110, 44, 255, 0.12);
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.testimonial-item.active {
  display: block;
  opacity: 1;
}

.quote {
  font-size: clamp(1.08rem, 2vw, 1.26rem);
  color: #2c2638;
  margin: 14px 0;
  line-height: 1.75;
}

.client {
  font-weight: 700;
  color: #6a1b9a;
  margin: 0;
}

.testimonial-controls {
  margin: 8px 0 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.testimonial-controls .btn {
  min-height: 40px;
  padding: 0.55rem 0.95rem;
}

.testimonials-cta-section {
  padding: 24px 0 100px;
  text-align: center;
}

.testimonials-cta-section h2 {
  margin: 0 0 10px;
  font-size: clamp(1.8rem, 3.8vw, 2.5rem);
}

.testimonials-cta-section p {
  margin: 0 auto 22px;
  max-width: 640px;
  color: #555;
}

.testimonials-cta-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ------------------------------------------------------
   GENERAL UTILITY
------------------------------------------------------ */

.container {
  width: min(1100px, 90vw);
  margin: 0 auto;
}
/* Rating stars (purple) */
.rating-stars {
  display: inline-flex;
  align-items: center;
}

/* Add Review form styles */
.add-review-section {
  padding: 120px 0 80px;
}

.bencodestudio-review-form .form-row {
  margin-bottom: 18px;
}

.bencodestudio-review-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}

.bencodestudio-review-form label span {
  color: #c62828;
}

.bencodestudio-review-form input[type="text"],
.bencodestudio-review-form input[type="email"],
.bencodestudio-review-form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 1rem;
}

.bencodestudio-review-form textarea {
  resize: vertical;
}

.form-success {
  color: #2e7d32;
  margin-bottom: 20px;
  font-weight: 600;
}

.form-error {
  color: #c62828;
  margin-bottom: 20px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .bookcall-section {
    padding: 82px 0 70px;
  }

  .bookcall-section .page-content form {
    padding: 16px;
    border-radius: 14px;
  }

  .bookcall-section .page-content form input[type="submit"],
  .bookcall-section .page-content form button[type="submit"] {
    width: min(360px, 100%);
  }

  .faq-hero-section {
    padding: 82px 0 28px;
  }

  .faq-question {
    padding: 18px 44px 18px 16px;
  }

  .faq-answer {
    padding: 0 16px 16px;
  }

  .faq-cta-section {
    padding: 14px 0 72px;
  }

  .faq-cta-actions .btn,
  .testimonials-cta-actions .btn {
    width: min(360px, 100%);
  }

  .testimonials-hero-section {
    padding: 80px 0 24px;
  }

  .testimonials-section {
    padding: 38px 0 60px;
  }

  .testimonial-item {
    padding: 24px 18px;
  }

  .testimonials-cta-section {
    padding: 14px 0 72px;
  }
}
