@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.1/css/all.min.css');

:root {
  --primary-color: #E01171;
  --secondary-color: #AB0E86;
  --accent-color: #FB90B7;
  --light-color: #FFCEE4;
  --dark-color: #59057B;
  --gradient-primary: linear-gradient(135deg, #FB90B7 0%, #E01171 100%);
  --hover-color: #C40E5D;
  --background-color: #FFF8FC;
  --text-color: #34495E;
  --border-color: rgba(224, 17, 113, 0.22);
  --divider-color: rgba(171, 14, 134, 0.14);
  --shadow-color: rgba(224, 17, 113, 0.16);
  --highlight-color: #FFD23F;
  --main-font: 'Raleway', sans-serif;
  --alt-font: 'Inter', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--alt-font);
  color: var(--text-color);
  background-color: var(--background-color);
  line-height: 1.72;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--main-font);
  font-weight: 700;
  letter-spacing: 0.6px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
header {
  background: linear-gradient(135deg, var(--dark-color) 0%, var(--secondary-color) 100%);
  padding: 1.15rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 16px var(--shadow-color);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .logo img {
  height: 53px;
  width: auto;
  transition: transform 0.3s ease, filter 0.3s ease;
}

header .logo img:hover {
  transform: scale(1.07);
  filter: drop-shadow(0 4px 8px rgba(224, 17, 113, 0.3));
}

header nav ul {
  display: flex;
  list-style: none;
  gap: 2.4rem;
}

header nav a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.97rem;
  transition: all 0.3s ease;
  position: relative;
}

header nav a::before {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2.5px;
  background: var(--highlight-color);
  transition: width 0.3s ease;
  border-radius: 2px;
}

header nav a:hover::before {
  width: 100%;
}

header nav a:hover {
  color: var(--accent-color);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5.5px;
}

.menu-toggle span {
  width: 27px;
  height: 3px;
  background-color: #ffffff;
  border-radius: 1.5px;
  transition: 0.3s;
}

input#menu-checkbox {
  display: none;
}

@media (max-width: 768px) {
  header .container {
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: flex;
    order: 3;
  }

  header .logo {
    order: 2;
    flex: 1;
    text-align: center;
  }

  header nav {
    order: 4;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  input#menu-checkbox:checked ~ nav {
    max-height: 560px;
  }

  header nav ul {
    flex-direction: column;
    padding: 1.4rem 0;
    gap: 0;
  }

  header nav li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  header nav a {
    display: block;
    padding: 1.15rem;
  }
}

/* Hero Section */
.hero-section {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2.7rem 2rem;
  position: relative;
  color: #ffffff;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(89, 5, 123, 0.74), rgba(171, 14, 134, 0.74)), url('./img/bg.jpg') no-repeat center center/cover;
  z-index: -1;
}

.hero-content {
  max-width: 840px;
  z-index: 1;
}

/* Content Section Styles */
.content-section {
  padding-top: 10dvh;
  padding-bottom: 10dvh;
}

.content-flex {
  display: flex;
  gap: 42px;
  align-items: center;
}

.content-image {
  flex: 0 0 40%;
  border-radius: 16px;
  box-shadow: 0 10px 28px var(--shadow-color);
  overflow: hidden;
  position: relative;
}

.content-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(251, 144, 183, 0.09) 0%, transparent 100%);
  pointer-events: none;
}

.content-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.38s ease;
}

.content-image:hover img {
  transform: scale(1.07);
}

.content-text {
  flex: 0 0 60%;
}

@media (max-width: 768px) {
  .content-flex {
    flex-direction: column;
  }

  .content-image,
  .content-text {
    flex: 0 0 100%;
  }
}

/* Section Divider */
.section-divider {
  padding: 3.7rem 0;
  text-align: center;
  position: relative;
}

.section-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1.8px;
  background: var(--gradient-primary);
  z-index: 0;
  opacity: 0.35;
}

.divider-text {
  position: relative;
  display: inline-block;
  background-color: var(--background-color);
  padding: 0 2.4rem;
  z-index: 1;
  font-size: 1.58rem;
  font-weight: 700;
  color: var(--primary-color);
}

/* CTA Section */
.cta-section {
  padding-top: 10dvh;
  padding-bottom: 10dvh;
  position: relative;
  color: #ffffff;
  text-align: center;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(89, 5, 123, 0.76);
  z-index: 0;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 930px;
  margin: 0 auto;
}

/* Features Section - Timeline */
.features-section {
  padding-top: 10dvh;
  padding-bottom: 10dvh;
  background: linear-gradient(135deg, var(--background-color) 0%, var(--light-color) 100%);
  position: relative;
}

.features-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    repeating-linear-gradient(0deg, transparent, transparent 38px, rgba(224, 17, 113, 0.04) 38px, rgba(224, 17, 113, 0.04) 76px);
  z-index: 0;
}

.features-timeline {
  position: relative;
  max-width: 930px;
  margin: 0 auto;
  z-index: 1;
}

.features-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3.5px;
  background: var(--gradient-primary);
  transform: translateX(-50%);
  box-shadow: 0 0 9px rgba(224, 17, 113, 0.35);
}

.feature-item {
  position: relative;
  margin-bottom: 3.7rem;
  display: flex;
  align-items: center;
}

.feature-item:nth-child(odd) {
  flex-direction: row;
}

.feature-item:nth-child(even) {
  flex-direction: row-reverse;
}

.feature-content {
  width: 45%;
  background: #ffffff;
  padding: 2.4rem;
  border-radius: 13px;
  border: 2px solid var(--border-color);
  box-shadow: 0 8px 24px var(--shadow-color),
              inset 0 1px 3px rgba(255, 255, 255, 0.5);
  transition: all 0.37s ease;
}

.feature-content:hover {
  transform: translateY(-7px) scale(1.01);
  box-shadow: 0 12px 33px var(--shadow-color),
              inset 0 1px 3px rgba(255, 255, 255, 0.5);
  border-color: var(--primary-color);
}

.feature-icon {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 67px;
  height: 67px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.7rem;
  box-shadow: 0 5px 17px var(--shadow-color);
  z-index: 2;
  border: 3.5px solid var(--background-color);
}

@media (max-width: 768px) {
  .features-timeline::before {
    left: 33px;
  }

  .feature-item,
  .feature-item:nth-child(even) {
    flex-direction: row;
    padding-left: 77px;
  }

  .feature-content {
    width: 100%;
  }

  .feature-icon {
    left: 33px;
  }
}

/* Testimonials Section */
.testimonials-section {
  padding-top: 10dvh;
  padding-bottom: 10dvh;
  background: var(--background-color);
  position: relative;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 18% 45%, rgba(224, 17, 113, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 82% 75%, rgba(224, 17, 113, 0.05) 0%, transparent 50%);
  z-index: 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(315px, 1fr));
  gap: 2.4rem;
  position: relative;
  z-index: 1;
}

.testimonial-card {
  background: #ffffff;
  padding: 2.4rem;
  border-radius: 13px;
  border: 2px solid var(--border-color);
  box-shadow: 0 7px 23px var(--shadow-color),
              inset 0 1px 2px rgba(255, 255, 255, 0.45);
  transition: all 0.37s ease;
  position: relative;
}

.testimonial-card::after {
  content: '\f005';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 2.3rem;
  color: var(--highlight-color);
  opacity: 0.14;
}

.testimonial-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 11px 31px var(--shadow-color),
              inset 0 1px 2px rgba(255, 255, 255, 0.45);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1.4rem;
  line-height: 1.88;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  font-weight: 700;
  color: var(--primary-color);
  font-size: 1.04rem;
}

/* Form Section */
.form-section {
  padding-top: 10dvh;
  padding-bottom: 10dvh;
  background: linear-gradient(to bottom, var(--light-color) 0%, var(--background-color) 100%);
}

.form-container {
  max-width: 630px;
  margin: 0 auto;
  background: #ffffff;
  padding: 3.3rem;
  border-radius: 17px;
  box-shadow: 0 10px 42px var(--shadow-color),
              inset 0 1px 3px rgba(255, 255, 255, 0.5);
  border: 2px solid var(--border-color);
}

.form-group {
  margin-bottom: 1.9rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.65rem;
  font-weight: 700;
  color: var(--secondary-color);
  font-size: 1.03rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.95rem;
  border: 2px solid var(--border-color);
  border-radius: 8.5px;
  font-family: var(--alt-font);
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--background-color);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3.5px rgba(224, 17, 113, 0.11);
  background: #ffffff;
}

.form-group textarea {
  resize: vertical;
  min-height: 135px;
}

.submit-btn {
  width: 100%;
  padding: 1.15rem;
  background: var(--gradient-primary);
  color: #ffffff;
  border: none;
  border-radius: 8.5px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 17px var(--shadow-color);
}

.submit-btn:hover {
  transform: translateY(-2.5px);
  box-shadow: 0 7px 21px var(--shadow-color);
}

/* Contact Section */
.contact-section {
  padding-top: 10dvh;
  padding-bottom: 10dvh;
  background: var(--background-color);
}

.contact-flex {
  display: flex;
  gap: 3.7rem;
  align-items: flex-start;
}

.contact-info {
  flex: 0 0 40%;
}

.contact-form {
  flex: 0 0 60%;
}

.contact-item {
  margin-bottom: 2.4rem;
  padding: 1.9rem;
  background: #ffffff;
  border-radius: 10.5px;
  border-left: 4.5px solid var(--primary-color);
  box-shadow: 0 5px 17px var(--shadow-color);
  transition: all 0.3s ease;
}

.contact-item:hover {
  transform: translateX(5px);
  box-shadow: 0 7px 21px var(--shadow-color);
}

.contact-item i {
  color: var(--primary-color);
  margin-right: 0.75rem;
  font-size: 1.17rem;
}

@media (max-width: 768px) {
  .contact-flex {
    flex-direction: column;
  }

  .contact-info,
  .contact-form {
    flex: 0 0 100%;
  }
}

/* FAQ Section */
.faq-section {
  padding-top: 10dvh;
  padding-bottom: 10dvh;
  background: linear-gradient(135deg, var(--light-color) 0%, var(--background-color) 100%);
}

.faq-container {
  max-width: 930px;
  margin: 0 auto;
}

.faq-item {
  background: #ffffff;
  margin-bottom: 1.9rem;
  border-radius: 10.5px;
  overflow: hidden;
  border: 2px solid var(--border-color);
  box-shadow: 0 5px 17px var(--shadow-color),
              inset 0 1px 2px rgba(255, 255, 255, 0.42);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 7px 23px var(--shadow-color),
              inset 0 1px 2px rgba(255, 255, 255, 0.42);
  border-color: var(--primary-color);
}

.faq-question {
  padding: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  background: linear-gradient(to right, var(--light-color) 0%, transparent 100%);
  cursor: pointer;
  font-size: 1.09rem;
}

.faq-question i {
  margin-right: 0.75rem;
  color: var(--accent-color);
}

.faq-answer {
  padding: 0 1.8rem 1.8rem 1.8rem;
  color: var(--text-color);
  line-height: 1.88;
}

/* Footer */
footer {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--dark-color) 100%);
  color: #ffffff;
  padding: 3.4rem 2rem 1.4rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.4rem;
}

footer .logo img {
  height: 63px;
  width: auto;
}

footer nav ul {
  list-style: none;
  display: flex;
  gap: 2.4rem;
  flex-wrap: wrap;
}

footer nav a {
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 600;
}

footer nav a:hover {
  color: var(--highlight-color);
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  padding-top: 2.4rem;
  border-top: 1.7px solid rgba(255, 255, 255, 0.14);
  font-size: 0.94rem;
}

.footer-bottom a {
  color: var(--highlight-color);
  text-decoration: none;
  font-weight: 600;
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 2.4rem;
    text-align: center;
  }

  footer nav ul {
    flex-direction: column;
    gap: 1.15rem;
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-4 {
  margin-top: 2rem;
}