/* 
   REFINED STYLES BASED ON ACQUISITION.COM REFERENCE
   Key changes: Typography, Spacing, Button Styling, and FAQ Layout
*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;700;800&display=swap');

:root {
  --primary-color: #460A0A;
  /* Your brand's deep burgundy */
  --text-dark: #131628;
  /* High-contrast dark for business authority */
  --bg-light: #ffffff;
  /* Clean white for a modern look */
  --bg-soft: #F0F1EA;
  /* Your brand's beige used as a subtle accent bg */
  --max-width: 1170px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  /* Reference base size */
  font-weight: 300;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--bg-light);
}


h2 {
  font-size: 1.8rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 40px;
}

/* GLOBAL CONTAINERS */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

section {
  padding: 70px 0;
  /* Reference vertical spacing */
}

@media (max-width: 767px) {
  section {
    padding: 30px 0;
  }

  body {
    font-size: 14px;
  }
}

/*  TOP BAR  */
.topbar {
  background-color: var(--primary-color);
  color: #fff;
  text-align: center;
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* HERO SECTION */
.hero h1 {
  font-size: 3.5rem;
  /* Larger, bolder heading */
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero p {
  max-width: 800px;
  font-size: 1.2rem;
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  .hero h1 {
    font-size: 2.2rem;
  }
}

/* TRUST BADGES  */
.trust-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  padding: 20px;
  background: var(--bg-soft);
  border-radius: var(--radius);
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}

.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
}

.badge-icon {
  width: 36px;
  height: 36px;
  background: var(--primary-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

/* CALENDAR SECTION */
.calendar-widget {
  max-width: 650px;
  width: 100%;
  margin: 0 auto;
}

.calendar-section {
  padding: 70px 20px;
  text-align: center;
}

.calendar-section .section-sub {
  color: var(--text-muted);
  margin-bottom: 40px;
}



/* BUTTONS */
.link-button {
  display: inline-block;
  text-decoration: none;
  background-color: var(--primary-color);
  color: white;
  padding: 18px 50px;
  /* Reference padding */
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: 2.5px solid var(--primary-color);
}

.link-button:hover {
  background-color: white;
  color: var(--primary-color);
  transform: translateY(-2px);
}


/* TESTIMONIOS SECTION */
.testimonios-wrapper {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.testimonios {
  max-width: 400px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.testimonio-1 {
  transform: rotate(-2deg);
}

.testimonio-2 {
  transform: rotate(2deg);
}

.testimonio-3 {
  transform: rotate(-1deg);
}

.testimonios:hover {
  transform: rotate(0deg) scale(1.05);
  z-index: 10;
}



/* FAQ SECTION */
.faq-section {
  background-color: var(--bg-soft);
  /* Using your brand's beige for the FAQ background */
  width: 100%;
}

.faq-container {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}

.faq-wrapper {
  width: 100%;
  margin-bottom: 15px;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #eee;
}

.faq-question-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 25px;
  font-size: 1.2rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  color: var(--text-dark);
}

.faq-question-btn::after {
  content: '+';
  font-size: 1.8rem;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.faq-wrapper.open .faq-question-btn::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  padding: 0 25px;
}

.faq-wrapper.open .faq-answer {
  max-height: 500px;
  padding-bottom: 25px;
}

.faq-answer p {
  margin: 0;
  font-size: 1rem;
  color: #555;
}

/* FOOTER STYLES */
.footer {
  background-color: var(--text-dark);
  color: #fff;
  padding: 60px 0;
  text-align: center;
}

.footer-links {
  margin-bottom: 30px;
}

.footer-links a {
  color: black;
  text-decoration: none;
  margin: 0 15px;
  font-size: 0.9rem;
  opacity: 0.6;
}

.footer-links a:hover {
  opacity: 1;
  text-decoration: underline;
}

.footer-disclaimer {
  font-size: 0.8rem;
  max-width: 800px;
  margin: 0 auto 20px;
  opacity: 0.6;
  line-height: 1.5;
}

.footer-copyright {
  font-size: 0.9rem;
  opacity: 0.8;
}
