@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.1/css/all.min.css');

:root {
  --primary-color: #5E1675;
  --secondary-color: #AB0E86;
  --accent-color: #E01171;
  --light-color: #FFCEE4;
  --dark-color: #0F0766;
  --gradient-primary: linear-gradient(135deg, #AB0E86 0%, #5E1675 100%);
  --hover-color: #D01257;
  --background-color: #FFF5FB;
  --text-color: #2C3D4F;
  --border-color: rgba(224, 17, 113, 0.2);
  --divider-color: rgba(94, 22, 117, 0.1);
  --shadow-color: rgba(171, 14, 134, 0.15);
  --highlight-color: #FFB6C1;
  --main-font: 'Oswald', sans-serif;
  --alt-font: 'Open Sans', 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.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--main-font);
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(135deg, var(--dark-color) 0%, var(--secondary-color) 100%);
  padding: 1rem 0;
  box-shadow: 0 4px 15px var(--shadow-color);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .logo img {
  height: 50px;
  width: auto;
}

header nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

header nav a {
  color: #ffffff;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

header nav a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: #ffffff;
  transition: 0.3s;
}

#menu-checkbox {
  display: none;
}

/* Hero Section */
.hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  padding: 2rem;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(94, 22, 117, 0.8), rgba(171, 14, 134, 0.7));
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

/* Content Sections */
.content-section {
  padding-top: 10vh;
  padding-bottom: 10vh;
}

.content-grid {
  display: flex;
  align-items: center;
  gap: 40px;
}

.content-image {
  flex: 0 0 40%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px var(--shadow-color);
}

.content-text {
  flex: 1;
}

/* Section Divider */
.section-divider {
  position: relative;
  text-align: center;
  padding: 3rem 0;
}

.section-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--border-color);
  z-index: 0;
}

.section-divider h3 {
  position: relative;
  display: inline-block;
  background: var(--background-color);
  padding: 0 2rem;
  z-index: 1;
  color: var(--primary-color);
}

/* CTA Section */
.cta-section {
  position: relative;
  padding: 8rem 2rem;
  text-align: center;
  color: #ffffff;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 7, 102, 0.7);
  z-index: 1;
}

.cta-section .container {
  position: relative;
  z-index: 2;
}

/* Features Section */
.features-section {
  padding-top: 10vh;
  padding-bottom: 10vh;
  background: linear-gradient(135deg, #FFF5FB 0%, #FFCEE4 100%);
}

.features-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.feature-item {
  position: relative;
  padding: 2rem;
  margin-bottom: 3rem;
  background: #ffffff;
  border-radius: 15px;
  border: 2px solid var(--border-color);
  box-shadow: 8px 8px 20px var(--shadow-color), -8px -8px 20px rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 12px 12px 30px var(--shadow-color), -12px -12px 30px rgba(255, 255, 255, 0.7);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: #ffffff;
  font-size: 1.5rem;
}

/* Testimonials Section */
.testimonials-section {
  padding-top: 10vh;
  padding-bottom: 10vh;
  background: rgba(255, 206, 228, 0.2);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  padding: 2rem;
  background: #ffffff;
  border-radius: 15px;
  border: 2px solid var(--border-color);
  box-shadow: 6px 6px 15px var(--shadow-color), -6px -6px 15px rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: scale(1.03);
  box-shadow: 10px 10px 25px var(--shadow-color), -10px -10px 25px rgba(255, 255, 255, 0.7);
}

/* Contact Section */
.contact-section {
  padding-top: 10vh;
  padding-bottom: 10vh;
  background: linear-gradient(135deg, var(--light-color) 0%, #ffffff 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
}

.contact-info {
  padding: 2rem;
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 8px 8px 20px var(--shadow-color);
}

.contact-info-item {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: start;
  gap: 1rem;
}

.contact-info-item i {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-top: 0.25rem;
}

/* Form Styles */
.contact-form {
  padding: 2rem;
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 8px 8px 20px var(--shadow-color);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--primary-color);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--border-color);
  border-radius: 10px;
  font-family: var(--alt-font);
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #ffffff;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(94, 22, 117, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  width: 100%;
  padding: 1rem 2rem;
  background: var(--gradient-primary);
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px var(--shadow-color);
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px var(--shadow-color);
}

/* FAQ Section */
.faq-section {
  padding-top: 10vh;
  padding-bottom: 10vh;
  background: #ffffff;
}

.faq-container {
  max-width: 800px;
  margin: 3rem auto 0;
}

.faq-item {
  margin-bottom: 1.5rem;
  padding: 2rem;
  background: var(--background-color);
  border-radius: 15px;
  border: 2px solid var(--border-color);
  box-shadow: 6px 6px 15px var(--shadow-color), -6px -6px 15px rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateX(5px);
  box-shadow: 10px 10px 20px var(--shadow-color), -10px -10px 20px rgba(255, 255, 255, 0.7);
}

.faq-question {
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.faq-answer {
  color: var(--text-color);
  line-height: 1.8;
}

/* Footer */
footer {
  background: linear-gradient(135deg, var(--dark-color) 0%, var(--secondary-color) 100%);
  color: #ffffff;
  padding: 3rem 0 1rem;
}

footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

footer .logo img {
  height: 50px;
  width: auto;
}

footer nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  flex-wrap: wrap;
}

footer nav a {
  color: #ffffff;
  transition: all 0.3s ease;
}

footer nav a:hover {
  color: var(--highlight-color);
  transform: translateY(-2px);
}

.footer-credit {
  text-align: center;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
}

.footer-credit a {
  color: var(--highlight-color);
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
  header nav {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--secondary-color) 100%);
    padding: 2rem;
    transition: left 0.3s ease;
    box-shadow: 0 8px 20px var(--shadow-color);
  }

  header nav ul {
    flex-direction: column;
    gap: 1rem;
  }

  #menu-checkbox:checked ~ nav {
    left: 0;
  }

  .menu-toggle {
    display: flex;
  }

  header .logo {
    margin: 0 auto;
  }

  .content-grid {
    flex-direction: column;
  }

  .content-image {
    flex: 0 0 100%;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  footer .container {
    flex-direction: column;
    text-align: center;
  }

  footer nav ul {
    justify-content: center;
  }
}