@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

:root {
  --primary-color: #7D3C98;
  --secondary-color: #5E1675;
  --accent-color: #E01171;
  --light-color: #FDF0F8;
  --dark-color: #2C3E50;
  --gradient-primary: linear-gradient(135deg, #9B59B6 0%, #E01171 100%);
  --hover-color: #6C1E8C;
  --background-color: #FDF8FF;
  --text-color: #3D3D3D;
  --border-color: rgba(125, 60, 152, 0.2);
  --divider-color: rgba(94, 22, 117, 0.15);
  --shadow-color: rgba(94, 22, 117, 0.12);
  --highlight-color: #FFC145;
  --main-font: 'Merriweather', serif;
  --alt-font: 'Poppins', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--alt-font);
  color: var(--text-color);
  background-color: var(--background-color);
  line-height: 1.75;
}

/* ===== HEADER ===== */
header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--dark-color);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  box-shadow: 0 3px 20px rgba(44,62,80,0.4);
}
header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-primary);
}

.logo a { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo img { height: 40px; width: auto; }

.navigation ul { list-style: none; display: flex; gap: 1.6rem; }
.navigation a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-family: var(--alt-font);
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: color 0.2s;
  position: relative;
}
.navigation a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 2px;
  background: var(--accent-color);
  transform: scaleX(0);
  transition: transform 0.2s;
}
.navigation a:hover { color: #fff; }
.navigation a:hover::after { transform: scaleX(1); }

.hamburger-toggle { display: none; }
.hamburger-label {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.hamburger-label span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--accent-color);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger-toggle:checked ~ .navigation { display: flex; flex-direction: column; }
.hamburger-toggle:checked ~ .hamburger-label span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger-toggle:checked ~ .hamburger-label span:nth-child(2) { opacity: 0; }
.hamburger-toggle:checked ~ .hamburger-label span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ===== SECTIONS ===== */
section { position: relative; overflow: hidden; }
.section-pad { padding-top: 10dvh; padding-bottom: 10dvh; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== HERO ===== */
.hero-section {
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)), url('./img/bg.jpg') no-repeat center center/cover;
  position: relative;
}
.hero-decor {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(158,32,200,0.18) 0%, transparent 50%),
              radial-gradient(ellipse at 80% 50%, rgba(224,17,113,0.15) 0%, transparent 50%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; max-width: 860px; padding: 2.5rem 1.5rem; }
.hero-tag {
  display: inline-block;
  background: var(--gradient-primary);
  color: #fff;
  font-family: var(--alt-font);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 1.2rem;
}
.hero-content h1 {
  font-family: var(--main-font);
  font-size: clamp(1.9rem, 5vw, 3.2rem);
  color: #fff;
  line-height: 1.25;
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 16px rgba(0,0,0,0.5);
  font-weight: 700;
}
.hero-content p {
  color: rgba(255,255,255,0.88);
  font-size: clamp(0.97rem, 2.5vw, 1.12rem);
  margin-bottom: 2rem;
}
.btn-primary {
  display: inline-block;
  background: var(--gradient-primary);
  color: #fff;
  font-family: var(--alt-font);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.95rem 2.6rem;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 28px rgba(224,17,113,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 36px rgba(224,17,113,0.5); }

/* ===== SECTION TITLES ===== */
.section-title {
  font-family: var(--main-font);
  font-size: clamp(1.5rem, 3.5vw, 2.3rem);
  color: var(--primary-color);
  margin-bottom: 0.6rem;
  font-weight: 700;
}
.section-subtitle {
  color: var(--text-color);
  font-size: 1rem;
  margin-bottom: 2.5rem;
  max-width: 600px;
  opacity: 0.8;
}
.title-center { text-align: center; margin-left: auto; margin-right: auto; }

/* ===== CONTENT ===== */
.content-grid {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}
.content-img { flex: 0 0 40%; max-width: 40%; }
.content-img img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 8px 16px 40px var(--shadow-color), -2px -2px 12px rgba(255,255,255,0.9);
  display: block;
  border: 2px solid var(--border-color);
}
.content-text { flex: 1; min-width: 260px; }
.content-text h2 {
  font-family: var(--main-font);
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: clamp(1.3rem, 3vw, 1.85rem);
}
.content-text p { margin-bottom: 0.9rem; font-size: 0.97rem; }
.content-text ul { list-style: none; padding: 0; }
.content-text ul li {
  padding: 0.4rem 0 0.4rem 1.8rem;
  position: relative;
  font-size: 0.97rem;
}
.content-text ul li::before {
  content: '\f005';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--accent-color);
  position: absolute;
  left: 0;
  font-size: 0.75rem;
  top: 0.55rem;
}

.content-img-half { flex: 0 0 50%; max-width: 50%; }
.content-img-half img { width: 100%; border-radius: 20px; box-shadow: 8px 16px 40px var(--shadow-color); display: block; border: 2px solid var(--border-color); }

/* ===== SECTION BG VARIANTS ===== */
.content-light { background: var(--background-color); }
.content-tinted { background: var(--light-color); }

/* ===== DIVIDER ===== */
.divider-section { padding: 2.5rem 0; background: var(--background-color); }
.divider-line {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.divider-line::before, .divider-line::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}
.divider-text {
  font-family: var(--alt-font);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  white-space: nowrap;
  padding: 0 0.8rem;
}

/* ===== CTA ===== */
.cta-section {
  padding: 10dvh 0;
  background: linear-gradient(rgba(0,0,0,0.58), rgba(0,0,0,0.58)), url('./img/bg.jpg') no-repeat center center/cover;
  background-attachment: fixed;
  background-size: cover;
  text-align: center;
  position: relative;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(125,60,152,0.2) 0%, rgba(224,17,113,0.15) 100%);
}
.cta-section h2 {
  font-family: var(--main-font);
  color: #fff;
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  margin-bottom: 0.8rem;
  text-shadow: 0 2px 16px rgba(0,0,0,0.5);
  position: relative;
}
.cta-section p {
  color: rgba(255,255,255,0.88);
  font-size: 1.05rem;
  margin-bottom: 1.8rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

/* ===== FEATURES (TIMELINE) ===== */
.features-section { background: var(--light-color); }
.timeline { position: relative; padding-left: 2.8rem; }
.timeline::before {
  content: '';
  position: absolute;
  left: 11px; top: 0; bottom: 0;
  width: 3px;
  background: var(--gradient-primary);
  border-radius: 3px;
}
.timeline-item {
  position: relative;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 1.5rem 1.8rem;
  margin-bottom: 1.8rem;
  box-shadow: 4px 8px 24px var(--shadow-color), -1px -1px 8px rgba(255,255,255,0.95);
  transition: transform 0.25s, box-shadow 0.25s;
}
.timeline-item:hover {
  transform: translateX(8px);
  box-shadow: 10px 16px 32px rgba(125,60,152,0.2);
  border-color: var(--accent-color);
}
.timeline-dot {
  position: absolute;
  left: -2.3rem;
  top: 1.5rem;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--gradient-primary);
  border: 3px solid var(--background-color);
  box-shadow: 0 0 0 3px var(--primary-color);
}
.timeline-item h3 { font-family: var(--main-font); color: var(--primary-color); margin-bottom: 0.5rem; font-size: 1.05rem; display: flex; align-items: center; gap: 0.7rem; font-weight: 700; }
.timeline-item h3 i { color: var(--accent-color); font-size: 1rem; }
.timeline-item p { font-size: 0.96rem; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: #fff; }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 1.6rem; }
.testimonial-card {
  background: var(--light-color);
  border: 1px solid var(--border-color);
  border-radius: 18px;
  padding: 1.8rem;
  box-shadow: 4px 8px 24px var(--shadow-color);
  transition: transform 0.2s, border-color 0.2s;
  position: relative;
  overflow: hidden;
}
.testimonial-card::before {
  content: '\201C';
  font-size: 6rem;
  color: var(--accent-color);
  opacity: 0.12;
  position: absolute;
  top: -0.5rem;
  left: 0.5rem;
  font-family: Georgia, serif;
  line-height: 1;
}
.testimonial-card:hover { transform: translateY(-4px); border-color: var(--primary-color); }
.testimonial-text { font-style: italic; margin-bottom: 1rem; position: relative; z-index: 1; font-size: 0.96rem; }
.testimonial-name { font-family: var(--main-font); color: var(--primary-color); font-size: 0.88rem; font-weight: 700; }
.testimonial-stars { color: var(--highlight-color); margin-bottom: 0.5rem; }

/* ===== FORM ===== */
.form-section { background: var(--light-color); }
.form-cta-box {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2.8rem;
  max-width: 620px;
  margin: 0 auto;
  box-shadow: 6px 16px 40px var(--shadow-color), -2px -2px 12px rgba(255,255,255,0.9);
}
.form-cta-box h2 { font-family: var(--main-font); color: var(--primary-color); margin-bottom: 0.6rem; font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
.form-cta-box p { margin-bottom: 1.5rem; font-size: 0.97rem; }
.form-grid { display: flex; flex-direction: column; gap: 1rem; }
.form-field { display: flex; flex-direction: column; gap: 0.3rem; }
.form-field label { font-size: 0.8rem; font-family: var(--alt-font); font-weight: 600; color: var(--secondary-color); text-transform: uppercase; letter-spacing: 0.8px; }
.form-field input, .form-field textarea {
  border: 1.5px solid var(--border-color);
  border-radius: 10px;
  padding: 0.7rem 1rem;
  font-family: var(--alt-font);
  font-size: 0.95rem;
  background: var(--background-color);
  color: var(--text-color);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-field input:focus, .form-field textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(125,60,152,0.12);
}
.form-field textarea { resize: vertical; min-height: 110px; }
.btn-submit {
  display: block;
  width: 100%;
  background: var(--gradient-primary);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 0.9rem;
  font-family: var(--alt-font);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 0.5rem;
  box-shadow: 0 4px 24px rgba(224,17,113,0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(224,17,113,0.45); }

/* ===== CONTACT ===== */
.contact-section { background: var(--background-color); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
}
.contact-info h2 { font-family: var(--main-font); color: var(--primary-color); margin-bottom: 1.2rem; }
.contact-item { display: flex; align-items: flex-start; gap: 0.9rem; margin-bottom: 1.2rem; }
.contact-item i { color: var(--accent-color); font-size: 1.1rem; margin-top: 3px; }

/* ===== FAQ ===== */
.faq-section { background: var(--light-color); }
.faq-list { display: flex; flex-direction: column; gap: 1.2rem; max-width: 840px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 1.6rem 1.8rem;
  box-shadow: 4px 8px 22px var(--shadow-color);
  transition: transform 0.2s, border-color 0.2s;
}
.faq-item:hover { transform: translateY(-2px); border-color: var(--accent-color); }
.faq-item h3 { font-family: var(--main-font); color: var(--primary-color); font-size: 1rem; margin-bottom: 0.6rem; font-weight: 700; display: flex; align-items: flex-start; gap: 0.7rem; }
.faq-item h3 i { color: var(--accent-color); margin-top: 3px; flex-shrink: 0; }
.faq-item p { font-size: 0.96rem; }

/* ===== FOOTER ===== */
footer { background: var(--dark-color); padding: 2.2rem 2rem; }
.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
footer .logo img { height: 38px; }
footer nav ul { list-style: none; display: flex; gap: 1.6rem; flex-wrap: wrap; }
footer nav a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.86rem; font-family: var(--alt-font); transition: color 0.2s; }
footer nav a:hover { color: var(--highlight-color); }
.footer-bottom {
  text-align: center;
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
}
.footer-bottom a { color: rgba(255,255,255,0.38); text-decoration: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hamburger-label { display: flex; }
  .navigation {
    display: none;
    position: absolute;
    top: 70px; left: 0; right: 0;
    background: var(--dark-color);
    padding: 1rem 1.5rem 1.5rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    border-top: 1px solid rgba(255,255,255,0.05);
  }
  .navigation ul { flex-direction: column; gap: 0.9rem; }
  header { position: relative; }
  .logo { margin: 0 auto; }
  .content-img, .content-img-half { flex: 0 0 100%; max-width: 100%; order: -1; }
  .content-text { flex: 0 0 100%; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-inner { flex-direction: column; text-align: center; }
  footer nav ul { justify-content: center; }
  .cta-section { background-attachment: scroll; }
}