/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'Nunito', sans-serif;
  color: #2A1740;
  background: #fff;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(107,63,160,0.08);
  transition: box-shadow 0.3s ease;
}
.nav.scrolled { box-shadow: 0 4px 30px rgba(107,63,160,0.1); }
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 1.2rem; color: #6B3FA0; }
.nav-logo-text { letter-spacing: -0.02em; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-weight: 600; font-size: 0.95rem; color: #3F2360; transition: color 0.2s; }
.nav-links a:hover { color: #F5C518; }

/* Mobile toggle */
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2.5px; background: #6B3FA0; border-radius: 2px; transition: all 0.3s; }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700; font-size: 0.95rem;
  border-radius: 50px; border: 2px solid transparent;
  padding: 12px 28px; cursor: pointer;
  transition: all 0.3s ease; white-space: nowrap;
}
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }
.btn-amber { background: #F5C518; color: #2A1740; border-color: #F5C518; }
.btn-amber:hover { background: #E0A800; border-color: #E0A800; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(245,197,24,0.35); }
.btn-plum { background: #6B3FA0; color: #fff; border-color: #6B3FA0; }
.btn-plum:hover { background: #553080; border-color: #553080; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(107,63,160,0.35); }
.btn-outline { background: transparent; color: #6B3FA0; border-color: #6B3FA0; }
.btn-outline:hover { background: #6B3FA0; color: #fff; transform: translateY(-2px); }
.btn-white { background: #fff; color: #6B3FA0; border-color: #fff; }
.btn-white:hover { background: #F5F0FF; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(255,255,255,0.35); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  background: linear-gradient(135deg, #F5F0FF 0%, #EDE5FF 40%, #fff 100%);
  padding: 120px 0 100px;
  overflow: hidden;
}
.hero-bg-pattern {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(107,63,160,0.06) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(245,197,24,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.hero-container { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-card-main {
  background: #fff;
  border-radius: 28px;
  padding: 48px 44px;
  box-shadow: 0 20px 60px rgba(107,63,160,0.1), 0 4px 16px rgba(107,63,160,0.06);
  border: 1px solid rgba(107,63,160,0.06);
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: #FFF4D6; color: #7A4E00;
  font-weight: 700; font-size: 0.82rem;
  padding: 8px 16px; border-radius: 50px;
  margin-bottom: 24px; letter-spacing: 0.02em;
}
.hero-headline {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900; line-height: 1.15;
  color: #2A1740; margin-bottom: 20px;
  letter-spacing: -0.03em;
}
.hero-headline em { color: #6B3FA0; font-style: normal; }
.hero-sub { font-size: 1.1rem; color: #553080; margin-bottom: 32px; line-height: 1.8; opacity: 0.85; }
.hero-cta-group { display: flex; gap: 16px; flex-wrap: wrap; }

/* Floating stat cards */
.hero-card-floats { display: flex; flex-direction: column; gap: 20px; align-items: flex-end; }
.float-card {
  background: #fff;
  border-radius: 20px;
  padding: 24px 28px;
  box-shadow: 0 12px 40px rgba(107,63,160,0.12);
  border: 1px solid rgba(107,63,160,0.06);
  display: flex; align-items: center; gap: 16px;
  animation: floatIn 0.6s ease-out both;
  min-width: 200px;
}
.float-card-1 { animation-delay: 0.2s; }
.float-card-2 { animation-delay: 0.4s; }
.float-card-3 { animation-delay: 0.6s; }
.float-card-icon {
  width: 52px; height: 52px;
  background: #F5F0FF;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.float-card-stat { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.5rem; font-weight: 800; color: #6B3FA0; line-height: 1; }
.float-card-label { font-size: 0.85rem; color: #553080; opacity: 0.7; margin-top: 4px; }

@keyframes floatIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-wave { position: absolute; bottom: -2px; left: 0; right: 0; }
.hero-wave svg { display: block; width: 100%; height: 80px; }

/* ===== SECTION COMMON ===== */
.section { padding: 100px 0; }
.section-header { max-width: 640px; margin: 0 auto 60px; }
.section-tag {
  display: inline-block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700; font-size: 0.8rem;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: #6B3FA0; background: #F5F0FF;
  padding: 6px 16px; border-radius: 50px;
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900; color: #2A1740;
  line-height: 1.15; letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.section-desc { font-size: 1.1rem; color: #553080; opacity: 0.75; line-height: 1.8; }

/* ===== SERVICES ===== */
.services { background: #fff; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: #fff;
  border: 1px solid rgba(107,63,160,0.08);
  border-radius: 24px;
  padding: 36px 32px;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px; background: linear-gradient(90deg, #6B3FA0, #F5C518);
  border-radius: 24px 24px 0 0;
  opacity: 0; transition: opacity 0.35s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(107,63,160,0.12); border-color: transparent; }
.service-card:hover::before { opacity: 1; }
.service-icon { width: 64px; height: 64px; background: #F5F0FF; border-radius: 18px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.service-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.2rem; font-weight: 800; color: #2A1740; margin-bottom: 10px; letter-spacing: -0.02em; }
.service-card p { font-size: 0.95rem; color: #553080; opacity: 0.8; line-height: 1.7; }

/* ===== ABOUT ===== */
.about { background: #F5F0FF; }
.about-container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-image-wrap { position: relative; }
.about-image { border-radius: 28px; box-shadow: 0 20px 50px rgba(107,63,160,0.15); width: 100%; height: 400px; object-fit: cover; }
.about-image-accent {
  position: absolute; bottom: -20px; right: -20px;
  width: 160px; height: 160px;
  background: linear-gradient(135deg, #F5C518, #E0A800);
  border-radius: 24px; z-index: -1;
  opacity: 0.5;
}
.about-content { padding: 20px 0; }
.about-content .section-title { margin-bottom: 20px; }
.about-content p { font-size: 1.05rem; color: #553080; opacity: 0.85; margin-bottom: 16px; line-height: 1.8; }
.about-stats { display: flex; gap: 32px; margin: 32px 0; flex-wrap: wrap; }
.about-stat { display: flex; align-items: center; gap: 12px; }
.about-stat-num { font-size: 1.8rem; }
.about-stat-label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: #553080; opacity: 0.6; font-weight: 700; }
.about-stat-value { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 1rem; color: #2A1740; }

/* ===== WHY US ===== */
.why-us { background: #fff; }
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.why-card {
  background: linear-gradient(135deg, #F5F0FF, #EDE5FF);
  border-radius: 24px;
  padding: 40px 36px;
  position: relative;
  transition: all 0.35s ease;
}
.why-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(107,63,160,0.1); }
.why-card-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 3.5rem; font-weight: 900;
  color: #6B3FA0; opacity: 0.1;
  line-height: 1; margin-bottom: 8px;
}
.why-card-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.25rem; font-weight: 800; color: #2A1740; margin-bottom: 10px; letter-spacing: -0.02em; }
.why-card p { font-size: 0.95rem; color: #553080; opacity: 0.8; line-height: 1.7; }

/* ===== CTA SECTION ===== */
.cta-section { padding: 80px 0; background: linear-gradient(135deg, #6B3FA0, #553080); position: relative; overflow: hidden; }
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(245,197,24,0.15) 0%, transparent 60%),
                    radial-gradient(circle at 80% 50%, rgba(255,255,255,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.cta-card {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.cta-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 900; color: #fff; margin-bottom: 12px; letter-spacing: -0.03em; line-height: 1.2; }
.cta-text p { font-size: 1.1rem; color: rgba(255,255,255,0.8); line-height: 1.7; }
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-pulse { animation: pulse 2s infinite; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245,197,24,0.5); }
  50% { box-shadow: 0 0 0 12px rgba(245,197,24,0); }
}

/* ===== CONTACT ===== */
.contact { background: #F5F0FF; }
.contact-container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-desc { font-size: 1.05rem; color: #553080; opacity: 0.8; margin-bottom: 36px; line-height: 1.8; }
.contact-details { display: flex; flex-direction: column; gap: 24px; }
.contact-detail { display: flex; align-items: flex-start; gap: 16px; }
.contact-detail-icon {
  width: 48px; height: 48px;
  background: #fff; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; box-shadow: 0 4px 12px rgba(107,63,160,0.08);
}
.contact-detail-label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: #553080; opacity: 0.6; font-weight: 700; margin-bottom: 2px; }
.contact-detail-value { font-size: 1rem; color: #2A1740; font-weight: 600; }
.contact-detail-value a { color: #6B3FA0; transition: color 0.2s; }
.contact-detail-value a:hover { color: #F5C518; }

/* Form */
.contact-form-wrap {
  background: #fff;
  border-radius: 28px;
  padding: 44px;
  box-shadow: 0 20px 50px rgba(107,63,160,0.08);
  border: 1px solid rgba(107,63,160,0.06);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 700; font-size: 0.88rem; color: #3F2360; margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 14px 18px;
  border: 2px solid rgba(107,63,160,0.12);
  border-radius: 14px; font-family: 'Nunito', sans-serif;
  font-size: 0.95rem; color: #2A1740;
  background: #F5F0FF;
  transition: all 0.2s;
  appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: #6B3FA0;
  background: #fff; box-shadow: 0 0 0 4px rgba(107,63,160,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: none; text-align: center; padding: 40px 20px;
  flex-direction: column; align-items: center; gap: 12px;
}
.form-success.show { display: flex; }
.form-success p { font-size: 1.05rem; color: #2A1740; font-weight: 600; }
.form-success svg { margin-bottom: 4px; }

/* ===== FOOTER ===== */
.footer { background: #2A1740; color: rgba(255,255,255,0.7); padding: 80px 0 0; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand p { font-size: 0.95rem; line-height: 1.8; margin-top: 16px; max-width: 280px; }
.footer-logo { display: flex; align-items: center; gap: 10px; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 1.15rem; color: #fff; }
.footer-links-group h4 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 0.95rem; color: #F5C518; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.08em; }
.footer-links-group ul { display: flex; flex-direction: column; gap: 12px; }
.footer-links-group a, .footer-links-group li { font-size: 0.9rem; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-links-group a:hover { color: #F5C518; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding: 28px 0; font-size: 0.85rem; }
.footer-bottom a { color: #F5C518; transition: color 0.2s; }
.footer-bottom a:hover { color: #FFEAA8; }

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; gap: 40px; }
  .hero-card-floats { flex-direction: row; flex-wrap: wrap; justify-content: center; align-items: stretch; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-container { grid-template-columns: 1fr; gap: 40px; }
  .about-image { height: 300px; }
  .contact-container { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { 
    display: none; 
    position: absolute; top: 72px; left: 0; right: 0;
    background: #fff; flex-direction: column;
    padding: 24px; gap: 20px;
    box-shadow: 0 20px 40px rgba(107,63,160,0.1);
    border-radius: 0 0 24px 24px;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .hero { padding: 100px 0 80px; min-height: auto; }
  .hero-card-main { padding: 32px 24px; }
  .hero-card-floats { flex-direction: column; align-items: stretch; }
  .float-card { flex-direction: column; text-align: center; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .cta-card { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
  .about-stats { flex-direction: column; gap: 16px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-cta-group { flex-direction: column; }
  .hero-cta-group .btn { width: 100%; justify-content: center; }
  .section { padding: 70px 0; }
}
