@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: #ECF0F1;
  --dark-color: #0F0766;
  --gradient-primary: linear-gradient(135deg, #AB0E86 0%, #8E44AD 100%);
  --hover-color: #9B59B6;
  --background-color: #1A1A2E;
  --text-color: #BDC3C7;
  --border-color: rgba(142, 68, 173, 0.3);
  --divider-color: rgba(94, 22, 117, 0.2);
  --shadow-color: rgba(15, 7, 102, 0.15);
  --highlight-color: #F1C40F;
  --main-font: 'Playfair Display', serif;
  --alt-font: 'Lato', 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;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
header {
  background: linear-gradient(135deg, #0F0766 0%, #5E1675 100%);
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 5px 20px rgba(15, 7, 102, 0.4);
  border-bottom: 2px solid var(--primary-color);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .logo img {
  height: 55px;
  width: auto;
  transition: transform 0.3s ease, filter 0.3s ease;
}

header .logo img:hover {
  transform: scale(1.08);
  filter: drop-shadow(0 0 10px var(--primary-color));
}

header nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

header nav ul li a {
  color: var(--light-color);
  font-weight: 500;
  padding: 10px 18px;
  border-radius: 10px;
  transition: all 0.3s ease;
  position: relative;
}

header nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--highlight-color);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

header nav ul li a:hover {
  background-color: rgba(142, 68, 173, 0.2);
  color: var(--highlight-color);
}

header nav ul li a:hover::after {
  width: 80%;
}

/* Mobile Menu */
#menu-toggle {
  display: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
}

.hamburger span {
  width: 32px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--highlight-color));
  border-radius: 3px;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  header .logo {
    margin: 0 auto;
  }

  .hamburger {
    display: flex;
    position: absolute;
    right: 20px;
  }

  header nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #0F0766 0%, #5E1675 100%);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    border-bottom: 2px solid var(--primary-color);
  }

  #menu-toggle:checked ~ nav {
    max-height: 450px;
    box-shadow: 0 10px 30px rgba(15, 7, 102, 0.5);
  }

  header nav ul {
    flex-direction: column;
    padding: 25px;
    gap: 15px;
  }

  header nav ul li a {
    display: block;
    padding: 15px 25px;
  }
}

/* Hero Section */
.hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--light-color);
  padding: 0 20px;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(15, 7, 102, 0.8), rgba(142, 68, 173, 0.7));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 950px;
}

.hero-content h1 {
  font-size: 3.2rem;
  margin-bottom: 25px;
  text-shadow: 4px 4px 12px rgba(0, 0, 0, 0.7);
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.4rem;
  margin-bottom: 35px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
  line-height: 1.6;
}

.hero-btn {
  display: inline-block;
  padding: 18px 45px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.15rem;
  box-shadow: 0 10px 30px rgba(142, 68, 173, 0.5);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.hero-btn:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 15px 40px rgba(142, 68, 173, 0.7);
  border-color: var(--highlight-color);
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 1.15rem;
  }
}

/* Content Sections */
.content-section {
  padding-top: 10vh;
  padding-bottom: 10vh;
  background-color: #16213E;
}

.content-flex {
  display: flex;
  gap: 45px;
  align-items: center;
}

.content-image {
  flex: 0 0 40%;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 15px 50px var(--shadow-color);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border: 3px solid var(--border-color);
}

.content-image:hover {
  transform: scale(1.03) rotate(1deg);
  box-shadow: 0 20px 60px rgba(142, 68, 173, 0.3);
}

.content-image img {
  width: 100%;
  height: auto;
  display: block;
}

.content-text {
  flex: 1;
}

.content-text h2 {
  font-size: 2.7rem;
  margin-bottom: 25px;
  color: var(--primary-color);
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.content-text p {
  font-size: 1.1rem;
  line-height: 1.9;
  margin-bottom: 18px;
  color: var(--text-color);
}

@media (max-width: 768px) {
  .content-flex {
    flex-direction: column;
    gap: 35px;
  }

  .content-image {
    flex: 1;
    width: 100%;
  }

  .content-text h2 {
    font-size: 2.2rem;
  }
}

/* Section Divider */
.section-divider {
  padding: 70px 0;
  text-align: center;
  background: linear-gradient(135deg, #0F0766 0%, #1A1A2E 100%);
}

.divider-line {
  position: relative;
  max-width: 850px;
  margin: 0 auto;
  padding: 0 20px;
}

.divider-line::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--primary-color) 25%, var(--highlight-color) 50%, var(--primary-color) 75%, transparent 100%);
  z-index: 0;
}

.divider-text {
  position: relative;
  display: inline-block;
  padding: 18px 35px;
  background: linear-gradient(135deg, #16213E, #0F0766);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--light-color);
  z-index: 1;
  border-radius: 50px;
  box-shadow: 0 8px 30px var(--shadow-color);
  border: 2px solid var(--border-color);
}

/* CTA Sections */
.cta-section {
  position: relative;
  padding: 12vh 20px;
  text-align: center;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  color: white;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(15, 7, 102, 0.85), rgba(94, 22, 117, 0.85));
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 3rem;
  margin-bottom: 25px;
  text-shadow: 4px 4px 12px rgba(0, 0, 0, 0.7);
  line-height: 1.3;
}

.cta-content p {
  font-size: 1.4rem;
  margin-bottom: 35px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .cta-content h2 {
    font-size: 2.2rem;
  }

  .cta-content p {
    font-size: 1.15rem;
  }
}

/* Features Section */
.features-section {
  padding-top: 10vh;
  padding-bottom: 10vh;
  background: linear-gradient(135deg, #1A1A2E 0%, #0F0766 100%);
}

.features-section h2 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 70px;
  color: var(--primary-color);
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.features-timeline {
  position: relative;
  max-width: 950px;
  margin: 0 auto;
  padding: 0 20px;
}

.features-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 5px;
  background: var(--gradient-primary);
  transform: translateX(-50%);
  box-shadow: 0 0 15px var(--primary-color);
}

.feature-item {
  position: relative;
  margin-bottom: 60px;
  padding: 35px;
  background: linear-gradient(135deg, #16213E, #1A1A2E);
  border-radius: 18px;
  border: 2px solid var(--border-color);
  box-shadow: 0 10px 35px var(--shadow-color),
              inset 0 2px 0 rgba(142, 68, 173, 0.2);
  transition: all 0.4s ease;
}

.feature-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 50px rgba(142, 68, 173, 0.4),
              inset 0 2px 0 rgba(142, 68, 173, 0.4);
  border-color: var(--primary-color);
}

.feature-item::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -52px;
  width: 35px;
  height: 35px;
  background: var(--gradient-primary);
  border-radius: 50%;
  border: 5px solid #1A1A2E;
  box-shadow: 0 0 0 4px var(--primary-color);
  transform: translateY(-50%);
  z-index: 2;
}

.feature-item:nth-child(even) {
  margin-left: auto;
  margin-right: 0;
  width: calc(50% - 35px);
}

.feature-item:nth-child(odd) {
  margin-right: auto;
  margin-left: 0;
  width: calc(50% - 35px);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  border-radius: 50%;
  color: white;
  font-size: 2rem;
  margin-bottom: 18px;
  box-shadow: 0 8px 25px rgba(142, 68, 173, 0.4);
  border: 3px solid rgba(255, 255, 255, 0.1);
}

.feature-item h3 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.feature-item p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-color);
}

@media (max-width: 768px) {
  .features-timeline::before {
    left: 25px;
  }

  .feature-item {
    width: 100% !important;
    margin-left: 50px !important;
    margin-right: 0 !important;
  }

  .feature-item::before {
    left: -42px;
  }
}

/* Testimonials Section */
.testimonials-section {
  padding-top: 10vh;
  padding-bottom: 10vh;
  background: linear-gradient(135deg, #16213E 0%, #1A1A2E 100%);
}

.testimonials-section h2 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 60px;
  color: var(--primary-color);
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 35px;
  margin-top: 50px;
}

.testimonial-card {
  padding: 35px;
  background: linear-gradient(135deg, #0F0766, #16213E);
  border-radius: 18px;
  border: 2px solid var(--border-color);
  box-shadow: 0 10px 35px var(--shadow-color),
              inset 0 2px 0 rgba(142, 68, 173, 0.2);
  transition: all 0.4s ease;
  position: relative;
}

.testimonial-card::before {
  content: '\f10d';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 3rem;
  color: rgba(142, 68, 173, 0.15);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 50px rgba(142, 68, 173, 0.4),
              inset 0 2px 0 rgba(142, 68, 173, 0.4);
  border-color: var(--primary-color);
}

.testimonial-text {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 25px;
  font-style: italic;
  color: var(--text-color);
}

.testimonial-author {
  font-weight: 700;
  color: var(--primary-color);
  font-size: 1.15rem;
}

/* Contact Section */
.contact-section {
  padding-top: 10vh;
  padding-bottom: 10vh;
  background: linear-gradient(135deg, #0F0766 0%, #1A1A2E 100%);
}

.contact-section h2 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 60px;
  color: var(--primary-color);
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.contact-wrapper {
  display: flex;
  gap: 60px;
  max-width: 1150px;
  margin: 0 auto;
}

.contact-info {
  flex: 1;
  padding: 45px;
  background: linear-gradient(135deg, #16213E, #0F0766);
  border-radius: 18px;
  box-shadow: 0 10px 35px var(--shadow-color);
  border: 2px solid var(--border-color);
}

.contact-info h3 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: var(--primary-color);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 30px;
}

.contact-item i {
  font-size: 1.7rem;
  color: var(--primary-color);
  margin-top: 5px;
}

.contact-item div p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-color);
}

.contact-form {
  flex: 1;
  padding: 45px;
  background: linear-gradient(135deg, #16213E, #0F0766);
  border-radius: 18px;
  box-shadow: 0 10px 35px var(--shadow-color);
  border: 2px solid var(--border-color);
}

.form-group {
  margin-bottom: 28px;
}

.form-group label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  color: var(--primary-color);
  font-size: 1.05rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--border-color);
  border-radius: 10px;
  font-family: var(--alt-font);
  font-size: 1rem;
  background-color: rgba(26, 26, 46, 0.6);
  color: var(--light-color);
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(142, 68, 173, 0.15);
  background-color: rgba(26, 26, 46, 0.9);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.submit-btn {
  width: 100%;
  padding: 18px;
  background: var(--gradient-primary);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 1.15rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(142, 68, 173, 0.4);
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(142, 68, 173, 0.6);
}

@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
    gap: 35px;
  }
}

/* FAQ Section */
.faq-section {
  padding-top: 10vh;
  padding-bottom: 10vh;
  background: linear-gradient(135deg, #16213E 0%, #1A1A2E 100%);
}

.faq-section h2 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 60px;
  color: var(--primary-color);
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.faq-container {
  max-width: 950px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 25px;
  padding: 30px;
  background: linear-gradient(135deg, #0F0766, #16213E);
  border-radius: 15px;
  border: 2px solid var(--border-color);
  box-shadow: 0 8px 25px var(--shadow-color);
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(142, 68, 173, 0.3);
  border-color: var(--primary-color);
}

.faq-question {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 12px;
}

.faq-question i {
  color: var(--highlight-color);
  font-size: 1.3rem;
}

.faq-answer {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-color);
}

/* Footer */
footer {
  background: linear-gradient(135deg, #0F0766 0%, #000957 100%);
  padding: 50px 0 25px;
  color: var(--light-color);
  border-top: 3px solid var(--primary-color);
}

footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 35px;
}

footer .logo img {
  height: 55px;
  width: auto;
}

footer nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

footer nav ul li a {
  color: var(--light-color);
  font-size: 1rem;
  transition: all 0.3s ease;
}

footer nav ul li a:hover {
  color: var(--highlight-color);
  transform: translateX(5px);
}

.footer-bottom {
  text-align: center;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.95rem;
}

.footer-bottom a {
  color: var(--highlight-color);
  font-weight: 700;
}

@media (max-width: 768px) {
  footer .container {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  footer nav ul {
    flex-direction: column;
    gap: 15px;
  }
}