@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.1/css/all.min.css');

:root {
  --primary-color: #8E44AD;
  --secondary-color: #5E1675;
  --accent-color: #AB0E86;
  --light-color: #FFCEE4;
  --dark-color: #59057B;
  --gradient-primary: linear-gradient(135deg, #AB0E86 0%, #8E44AD 100%);
  --hover-color: #7D3C98;
  --background-color: #FFC145;
  --text-color: #2C3E50;
  --border-color: rgba(171, 14, 134, 0.3);
  --divider-color: rgba(94, 22, 117, 0.2);
  --shadow-color: rgba(89, 5, 123, 0.2);
  --highlight-color: #FFEB00;
  --main-font: 'Playfair Display', serif;
  --alt-font: 'Poppins', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--alt-font);
  line-height: 1.65;
  color: var(--text-color);
  background-color: var(--background-color);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--main-font);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1.2rem;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
header {
  background: linear-gradient(180deg, #59057B 0%, #5E1675 100%);
  padding: 1.3rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 3px 25px var(--shadow-color);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .logo img {
  height: 52px;
  width: auto;
  transition: transform 0.3s ease, filter 0.3s ease;
}

header .logo img:hover {
  transform: scale(1.06) rotate(-2deg);
}

header nav ul {
  display: flex;
  list-style: none;
  gap: 2.2rem;
}

header nav a {
  color: #FFCEE4;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

header nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: linear-gradient(90deg, var(--highlight-color) 0%, var(--accent-color) 100%);
  transition: width 0.3s ease;
}

header nav a:hover::after {
  width: 100%;
}

header nav a:hover {
  color: var(--highlight-color);
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 28px;
  height: 3px;
  background-color: #FFCEE4;
  border-radius: 2px;
  transition: all 0.3s ease;
}

#menu-checkbox {
  display: none;
}

@media (max-width: 768px) {
  header .logo {
    margin: 0 auto;
  }

  .menu-toggle {
    display: flex;
    position: absolute;
    left: 20px;
  }

  header nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #5E1675;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  #menu-checkbox:checked ~ nav {
    max-height: 450px;
  }

  header nav ul {
    flex-direction: column;
    padding: 1.5rem;
    gap: 0;
  }

  header nav li {
    border-bottom: 1px solid var(--border-color);
    padding: 0.7rem 0;
  }
}

/* Hero Section */
.hero-section {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2.5rem;
  position: relative;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(171, 14, 134, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  max-width: 900px;
  position: relative;
  z-index: 1;
}

/* Content Section */
.content-section {
  padding: 10vh 0;
}

.content-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 3.5rem;
  align-items: center;
}

.content-grid.reverse {
  grid-template-columns: 3fr 2fr;
}

.content-image {
  border-radius: 30px;
  box-shadow: 
    20px 20px 50px var(--shadow-color),
    -10px -10px 35px rgba(255, 235, 0, 0.2);
  width: 100%;
  height: auto;
  transition: transform 0.4s ease;
  border: 3px solid rgba(171, 14, 134, 0.2);
}

.content-image:hover {
  transform: scale(1.03) rotate(1deg);
}

@media (max-width: 768px) {
  .content-grid,
  .content-grid.reverse {
    grid-template-columns: 1fr;
  }
}

/* Section Divider */
.section-divider {
  text-align: center;
  position: relative;
  padding: 3.5rem 0;
  margin: 2.5rem 0;
}

.divider-line {
  height: 4px;
  background: var(--gradient-primary);
  position: relative;
  margin: 1.5rem 0;
  border-radius: 3px;
}

.divider-text {
  display: inline-block;
  background-color: var(--background-color);
  padding: 0.5rem 2rem;
  position: relative;
  z-index: 1;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.15rem;
  border: 2px solid var(--accent-color);
  border-radius: 50px;
}

/* CTA Section */
.cta-section {
  padding: 10vh 0;
  text-align: center;
  position: relative;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(89, 5, 123, 0.85), rgba(94, 22, 117, 0.85));
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 850px;
  margin: 0 auto;
  color: #FFCEE4;
}

/* Features Section */
.features-section {
  padding: 10vh 0;
  background: linear-gradient(180deg, #FFC145 0%, #FFD23F 100%);
}

.features-timeline {
  position: relative;
  max-width: 1000px;
  margin: 3.5rem auto;
}

.feature-item {
  background: rgba(255, 255, 255, 0.7);
  border: 3px solid var(--border-color);
  border-radius: 25px;
  padding: 2.5rem;
  margin-bottom: 2.5rem;
  position: relative;
  box-shadow: 
    15px 15px 40px var(--shadow-color),
    -8px -8px 30px rgba(255, 235, 0, 0.3);
  transition: all 0.4s ease;
}

.feature-item:hover {
  transform: translateY(-10px) rotate(-1deg);
  box-shadow: 
    20px 20px 50px var(--shadow-color),
    -12px -12px 40px rgba(255, 235, 0, 0.4);
  border-color: var(--accent-color);
  background: rgba(255, 255, 255, 0.9);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 75px;
  height: 75px;
  background: var(--gradient-primary);
  border-radius: 50%;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 25px rgba(171, 14, 134, 0.4);
  border: 3px solid var(--highlight-color);
}

.feature-icon i {
  font-size: 2rem;
  color: #ffffff;
}

/* Testimonials Section */
.testimonials-section {
  padding: 10vh 0;
  background: rgba(255, 206, 228, 0.3);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 3.5rem;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.85);
  border: 3px solid var(--border-color);
  border-radius: 25px;
  padding: 2.5rem;
  box-shadow: 
    15px 15px 40px var(--shadow-color),
    -8px -8px 30px rgba(255, 235, 0, 0.3);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 120px;
  color: rgba(171, 14, 134, 0.1);
  font-family: Georgia, serif;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  border-color: var(--highlight-color);
  box-shadow: 
    20px 20px 50px var(--shadow-color),
    -12px -12px 40px rgba(255, 235, 0, 0.4);
  background: rgba(255, 255, 255, 0.95);
}

.testimonial-author {
  font-weight: 700;
  color: var(--primary-color);
  margin-top: 1.5rem;
  font-size: 1.05rem;
}

/* Contact Section */
.contact-section {
  padding: 10vh 0;
  background: linear-gradient(180deg, #FFD23F 0%, #FFC145 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: flex-start;
}

.contact-info {
  padding: 2rem;
}

.contact-item {
  margin-bottom: 2.5rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.8);
  border-left: 6px solid var(--primary-color);
  border-radius: 12px;
  box-shadow: 8px 8px 25px var(--shadow-color);
  transition: all 0.3s ease;
}

.contact-item:hover {
  transform: translateX(8px);
  box-shadow: 12px 12px 30px var(--shadow-color);
  background: rgba(255, 255, 255, 0.95);
}

.contact-item i {
  color: var(--accent-color);
  margin-right: 1.5rem;
  font-size: 1.5rem;
}

/* Form Styles */
.contact-form {
  background: rgba(255, 255, 255, 0.9);
  border: 3px solid var(--border-color);
  border-radius: 25px;
  padding: 2.5rem;
  box-shadow: 
    15px 15px 40px var(--shadow-color),
    -8px -8px 30px rgba(255, 235, 0, 0.3);
}

.form-group {
  margin-bottom: 2rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.7rem;
  font-weight: 700;
  color: var(--primary-color);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.5rem;
  background: rgba(255, 206, 228, 0.2);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  color: var(--text-color);
  font-family: var(--alt-font);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 0 5px rgba(171, 14, 134, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.submit-btn {
  background: var(--gradient-primary);
  color: #ffffff;
  border: none;
  padding: 1.2rem 3.5rem;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(171, 14, 134, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 3px solid var(--highlight-color);
}

.submit-btn:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 35px rgba(171, 14, 134, 0.5);
  background: linear-gradient(135deg, #8E44AD 0%, #5E1675 100%);
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* FAQ Section */
.faq-section {
  padding: 10vh 0;
  background: rgba(255, 255, 255, 0.6);
}

.faq-container {
  max-width: 1000px;
  margin: 3.5rem auto;
}

.faq-item {
  background: rgba(255, 255, 255, 0.9);
  border: 3px solid var(--border-color);
  border-radius: 25px;
  padding: 2.5rem;
  margin-bottom: 2rem;
  box-shadow: 
    15px 15px 40px var(--shadow-color),
    -8px -8px 30px rgba(255, 235, 0, 0.3);
  transition: all 0.4s ease;
}

.faq-item:hover {
  transform: translateX(10px);
  border-color: var(--accent-color);
  box-shadow: 
    20px 20px 50px var(--shadow-color),
    -12px -12px 40px rgba(255, 235, 0, 0.4);
  background: rgba(255, 255, 255, 1);
}

.faq-question {
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  font-size: 1.2rem;
}

.faq-question i {
  color: var(--accent-color);
  margin-right: 1.5rem;
  font-size: 1.5rem;
}

.faq-answer {
  color: var(--text-color);
  line-height: 1.9;
  padding-left: 3rem;
}

/* Footer */
footer {
  background: linear-gradient(180deg, #59057B 0%, #3D0552 100%);
  padding: 3.5rem 0 1.5rem;
  color: #FFCEE4;
}

footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2.5rem;
}

footer .logo img {
  height: 52px;
  width: auto;
}

footer nav ul {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  flex-wrap: wrap;
}

footer nav a {
  color: #FFCEE4;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

footer nav a:hover {
  color: var(--highlight-color);
}

footer .footer-bottom {
  text-align: center;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(171, 14, 134, 0.3);
  color: rgba(255, 206, 228, 0.7);
  font-size: 0.95rem;
}

footer .footer-bottom a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
}

footer .footer-bottom a:hover {
  color: var(--highlight-color);
}

@media (max-width: 768px) {
  footer .container {
    flex-direction: column;
    text-align: center;
  }

  footer nav ul {
    flex-direction: column;
    gap: 1.2rem;
  }
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1.2rem 3rem;
  background: var(--gradient-primary);
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(171, 14, 134, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 3px solid var(--highlight-color);
}

.btn:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 35px rgba(171, 14, 134, 0.5);
  background: linear-gradient(135deg, #8E44AD 0%, #5E1675 100%);
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.mt-4 {
  margin-top: 2rem;
}