@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');

:root {
  /*
  site-theme: colorful
  font-heading: Montserrat
  font-text: Lato
  site-colors: #8E44AD (primary), #E67E22 (accent1), #2ECC71 (accent2), #F39C12 (highlight)
  */
  --primary-color: #8E44AD;
  --secondary-color: #2C3E50; /* Dark text for contrast on light bg */
  --accent-color: #E67E22;
  --light-color: #FEFAE0; /* Light cream background */
  --dark-color: #59057B; /* Darker purple */
  --gradient-primary: linear-gradient(135deg, #8E44AD 0%, #E67E22 100%);
  --hover-color: #7D3C98;
  --background-color: #FEFAE0;
  --text-color: #2C3E50;
  --border-color: rgba(142, 68, 173, 0.2);
  --divider-color: rgba(44, 62, 80, 0.1);
  --shadow-light: #ffffff;
  --shadow-dark: rgba(44, 62, 80, 0.1);
  --highlight-color: #2ECC71; /* Green accent */
  --main-font: 'Montserrat', sans-serif;
  --alt-font: 'Lato', sans-serif;
}

body {
  background-color: var(--background-color);
  color: var(--text-color);
  font-family: var(--alt-font);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--main-font);
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 700;
}
h2 {
  color: var(--secondary-color);
}
h3 {
  color: var(--accent-color);
}

a {
  color: var(--primary-color);
  transition: color 0.3s ease;
  font-weight: 600;
}
a:hover {
  color: var(--hover-color);
  text-decoration: underline;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

section {
  padding-top: 10dvh;
  padding-bottom: 10dvh;
}

/* Neumorphism Elements */
.neumorph-card {
  background: var(--background-color);
  border-radius: 20px;
  box-shadow: 8px 8px 16px var(--shadow-dark), -8px -8px 16px var(--shadow-light);
  padding: 1.5rem;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}
.neumorph-card:hover {
  transform: scale(1.02);
  box-shadow: 10px 10px 20px var(--shadow-dark), -10px -10px 20px var(--shadow-light);
}

.neumorph-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 12px;
  background: var(--gradient-primary);
  color: white;
  font-weight: 700;
  font-family: var(--main-font);
  text-decoration: none;
  box-shadow: 6px 6px 12px var(--shadow-dark), -6px -6px 12px var(--shadow-light);
  transition: all 0.3s ease;
  cursor: pointer;
}
.neumorph-btn:hover {
  box-shadow: inset 4px 4px 8px rgba(0,0,0,0.1), inset -4px -4px 8px rgba(255,255,255,0.8);
  filter: brightness(1.1);
  color: white;
}
.neumorph-btn.accent {
    background: var(--highlight-color);
    color: var(--secondary-color);
}

input[type="text"], input[type="email"], input[type="tel"], textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  background: var(--background-color);
  color: var(--text-color);
  box-shadow: inset 4px 4px 8px var(--shadow-dark), inset -4px -4px 8px var(--shadow-light);
  transition: box-shadow 0.3s ease;
}
input[type="text"]:focus, input[type="email"]:focus, input[type="tel"]:focus, textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: inset 6px 6px 10px var(--shadow-dark), inset -6px -6px 10px var(--shadow-light), 0 0 0 2px var(--primary-color);
}

/* Header */
header {
  background: var(--dark-color);
  color: var(--light-color);
  padding: 1rem 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 50;
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .logo img {
  height: 40px;
  filter: brightness(0) invert(1);
}
header .navigation ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
header .navigation li {
  margin-left: 1.5rem;
}
header .navigation a {
  color: var(--light-color);
  text-decoration: none;
  font-family: var(--main-font);
  font-weight: 500;
  transition: color 0.3s ease;
}
header .navigation a:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

/* Hamburger Menu (CSS Only) */
#menu-toggle {
  display: none;
}
.menu-label {
  display: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--light-color);
}
@media (max-width: 768px) {
  header .container {
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
  }
  header .logo {
    width: 100%;
    text-align: center;
    margin-bottom: 0.5rem;
  }
  .menu-label {
    display: block;
    position: absolute;
    top: 1.25rem;
    right: 5%;
  }
  header .navigation {
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    background: var(--dark-color);
  }
  header .navigation ul {
    flex-direction: column;
    align-items: center;
    padding: 1rem 0;
  }
  header .navigation li {
    margin: 0.5rem 0;
  }
  #menu-toggle:checked ~ .navigation {
    max-height: 500px;
  }
}

/* Hero Section */
.hero {
  color: var(--light-color);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}
.hero h1 {
  color: var(--light-color);
  font-size: 3rem;
}
@media (min-width: 768px) {
  .hero h1 {
    font-size: 4.5rem;
  }
}

/* Section Divider */
.divider {
  text-align: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.divider-line {
  width: 100px;
  height: 3px;
  background: var(--gradient-primary);
  margin: 0 auto 1rem auto;
}
.divider h2 {
  color: var(--secondary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* CTA Sections */
.cta-section {
  color: var(--light-color);
  text-align: center;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}
.cta-section h2 {
  color: var(--light-color);
  font-size: 2.5rem;
}
.cta-section p {
  font-size: 1.25rem;
}

/* Features (Timeline) */
.timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}
.timeline::after {
  content: '';
  position: absolute;
  width: 4px;
  background: var(--border-color);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2px;
}
.timeline-item {
  padding: 10px 40px;
  position: relative;
  width: 50%;
}
.timeline-item.left {
  left: 0;
  padding-right: 50px;
}
.timeline-item.right {
  left: 50%;
  padding-left: 50px;
}
.timeline-item::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  right: -10px;
  background-color: var(--background-color);
  border: 4px solid var(--primary-color);
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}
.timeline-item.right::after {
  left: -10px;
}
.timeline-content {
  background: var(--background-color);
  position: relative;
  border-radius: 15px;
  box-shadow: 6px 6px 12px var(--shadow-dark), -6px -6px 12px var(--shadow-light);
  padding: 1.5rem;
  transition: transform 0.3s ease;
  border-left: 5px solid var(--accent-color);
}
.timeline-content:hover {
    transform: translateY(-5px);
    border-left-color: var(--highlight-color);
}
.timeline-content i {
  color: var(--primary-color);
  margin-right: 10px;
}
@media (max-width: 768px) {
  .timeline::after {
    left: 20px;
  }
  .timeline-item {
    width: 100%;
    padding-left: 50px;
    padding-right: 10px;
  }
  .timeline-item.left, .timeline-item.right {
    left: 0;
  }
  .timeline-item.left::after, .timeline-item.right::after {
    left: 10px;
  }
}

/* Testimonials */
.testimonial-card {
  border-top: 5px solid var(--primary-color);
  background: #ffffff;
}
.testimonial-card p {
  font-style: italic;
  font-size: 1.1rem;
}
.testimonial-card cite {
  display: block;
  margin-top: 1rem;
  font-weight: 700;
  color: var(--accent-color);
  font-style: normal;
}

/* Form & Contact */
.contact-section {
  background: linear-gradient(180deg, var(--background-color) 0%, var(--divider-color) 100%);
}
.contact-info p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.contact-info i {
  color: var(--primary-color);
  width: 25px;
  margin-right: 10px;
  text-align: center;
}

/* FAQ */
.faq-section {
    background: #ffffff;
}
.faq-item {
  border-bottom: 2px solid var(--divider-color);
  padding: 1.5rem 0;
}
.faq-item:last-child {
  border-bottom: none;
}
.faq-item h3 {
  color: var(--accent-color);
  font-size: 1.25rem;
}

/* Footer */
footer {
  background: var(--secondary-color);
  color: var(--light-color);
  padding: 2rem 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
footer .logo img {
  height: 40px;
  filter: brightness(0) invert(1);
  margin-bottom: 1rem;
}
footer nav ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
footer nav li {
  margin: 0.25rem 0.75rem;
}
footer nav a {
  color: var(--light-color);
  text-decoration: none;
  font-weight: 400;
}
footer nav a:hover {
  color: var(--accent-color);
  text-decoration: underline;
}
footer p {
  font-size: 0.9rem;
  margin: 0;
  font-weight: 400;
}
footer p a {
  color: var(--light-color);
  font-weight: 400;
}

@media (min-width: 768px) {
  footer .container {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
  footer .logo img {
    margin-bottom: 0;
  }
  footer nav ul {
    margin-bottom: 0;
  }
}