:root {
  --primary-color: #5E1675;
  --secondary-color: #AB0E86;
  --accent-color: #FFD23F;
  --light-color: #F2F2F2;
  --dark-color: #4A1258;
  --gradient-primary: linear-gradient(135deg, #5E1675 0%, #AB0E86 100%);
  --hover-color: #7B1E8C;
  --background-color: #FDFDFD;
  --text-color: #374151;
  --border-color: rgba(255, 210, 63, 0.2);
  --divider-color: rgba(94, 22, 117, 0.1);
  --shadow-color: rgba(94, 22, 117, 0.13);
  --highlight-color: #27AE60;
  --error-color: #EE4266;
  --main-font: 'Oswald', sans-serif;
  --alt-font: 'Inter', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--alt-font);
  line-height: 1.7;
  color: var(--text-color);
  background-color: var(--background-color);
}

/* Neumorphism styles */
.neu-card {
  background: var(--light-color);
  border-radius: 28px;
  box-shadow:
    11px 11px 22px var(--shadow-color),
    -11px -11px 22px rgba(255, 255, 255, 0.75);
}

.neu-button {
  background: var(--light-color);
  border: none;
  border-radius: 19px;
  padding: 15px 30px;
  box-shadow:
    9px 9px 18px var(--shadow-color),
    -9px -9px 18px rgba(255, 255, 255, 0.75);
  transition: all 0.3s ease;
}

.neu-button:hover {
  box-shadow:
    7px 7px 14px var(--shadow-color),
    -7px -7px 14px rgba(255, 255, 255, 0.75);
}

.neu-inset {
  box-shadow:
    inset 7px 7px 14px var(--shadow-color),
    inset -7px -7px 14px rgba(255, 255, 255, 0.75);
}

/* Header styles */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(242, 242, 242, 0.95);
  backdrop-filter: blur(11px);
  padding: 1.1rem 0;
  box-shadow: 0 5px 11px var(--shadow-color);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

.logo img {
  height: 47px;
  width: auto;
}

.navigation ul {
  display: flex;
  list-style: none;
  gap: 2.7rem;
}

.navigation a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  font-size: 1.08rem;
  transition: color 0.3s ease;
}

.navigation a:hover {
  color: var(--accent-color);
}

/* Mobile menu */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.7rem;
  cursor: pointer;
  color: var(--primary-color);
}

.mobile-menu {
  display: none;
}

/* Hero section */
.hero {
  min-height: 93vh;
  background: url('./img/bg.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(94, 22, 117, 0.78);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 950px;
  padding: 0 2rem;
}

.hero h1 {
  font-family: var(--main-font);
  font-size: 4.2rem;
  font-weight: 500;
  margin-bottom: 1.8rem;
  text-shadow: 3px 3px 7px rgba(0, 0, 0, 0.65);
}

.hero p {
  font-size: 1.35rem;
  margin-bottom: 2.8rem;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.65);
}

/* Section styles */
.section {
  padding: 6.5rem 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-title {
  font-family: var(--main-font);
  font-size: 3rem;
  text-align: center;
  margin-bottom: 3.8rem;
  color: var(--primary-color);
}

/* Features grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2.7rem;
}

.feature-card {
  text-align: center;
  padding: 2.8rem;
}

.feature-icon {
  font-size: 3.8rem;
  color: var(--accent-color);
  margin-bottom: 1.8rem;
}

/* CTA sections */
.cta-section {
  background: url('./img/bg.jpg') center/cover no-repeat fixed;
  position: relative;
  padding: 7.5rem 0;
  text-align: center;
  color: white;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(94, 22, 117, 0.88);
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-title {
  font-family: var(--main-font);
  font-size: 3.4rem;
  margin-bottom: 1.8rem;
}

/* Split section */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4.5rem;
}

.split-image {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 23px;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2.7rem;
}

.testimonial-card {
  padding: 2.8rem;
  text-align: center;
}

/* Contact section */
.contact-section {
  background: var(--light-color);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 0.8rem;
  font-weight: 600;
  color: var(--primary-color);
  font-size: 1.08rem;
}

.form-group input,
.form-group textarea {
  padding: 1.3rem;
  border: 2px solid var(--border-color);
  border-radius: 13px;
  font-family: var(--alt-font);
  background: white;
  transition: border-color 0.3s ease;
  font-size: 1.02rem;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.submit-btn {
  background: var(--accent-color);
  color: var(--primary-color);
  padding: 1.3rem 2.8rem;
  border: none;
  border-radius: 13px;
  font-size: 1.18rem;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-btn:hover {
  background: #F1C40F;
}

/* FAQ */
.faq-item {
  margin-bottom: 2.8rem;
  border-radius: 19px;
  overflow: hidden;
}

.faq-question {
  background: var(--primary-color);
  color: white;
  padding: 2.2rem;
  font-family: var(--main-font);
  font-size: 1.38rem;
  font-weight: 400;
}

.faq-answer {
  background: white;
  padding: 2.2rem;
  border: 2px solid var(--border-color);
  font-size: 1.08rem;
  line-height: 1.75;
}

/* Footer */
footer {
  background: var(--primary-color);
  color: white;
  padding: 3.8rem 0 1.8rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.8rem;
}

.footer-nav ul {
  display: flex;
  list-style: none;
  gap: 2.8rem;
}

.footer-nav a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 1.08rem;
}

.footer-nav a:hover {
  color: var(--highlight-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 2.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }

  .navigation {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--light-color);
    box-shadow: 0 5px 11px var(--shadow-color);
  }

  .navigation.active {
    display: block;
  }

  .navigation ul {
    flex-direction: column;
    padding: 1.8rem;
    gap: 1.8rem;
  }

  .header-container {
    justify-content: center;
    position: relative;
  }

  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .mobile-menu-toggle {
    position: absolute;
    right: 2rem;
  }

  .hero h1 {
    font-size: 3.2rem;
  }

  .hero p {
    font-size: 1.18rem;
  }

  .section-title {
    font-size: 2.4rem;
  }

  .cta-title {
    font-size: 2.6rem;
  }

  .split-section {
    grid-template-columns: 1fr;
  }

  .contact-content {
    grid-template-columns: 1fr;
  }

  .footer-content {
    flex-direction: column;
    gap: 2.8rem;
    text-align: center;
  }

  .footer-nav ul {
    flex-direction: column;
    gap: 1.8rem;
  }
}

footer img[alt="logo"] {
  filter: brightness(0) invert(1);
}