/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1a1a2e;
  background: #F5F0FF;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Typography ── */
h1, h2, h3, h4 { font-family: 'Outfit', sans-serif; line-height: 1.15; }
.text-amber { color: #F59E0B; }

/* ── Section Tags ── */
.section-tag {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #F59E0B;
  background: rgba(245, 158, 11, 0.12);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-tag--light { background: rgba(255,255,255,0.15); color: #FDE68A; }
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #5B2C6F;
  margin-bottom: 16px;
}
.section-title--light { color: #fff; }
.section-desc {
  font-size: 1.1rem;
  color: #555;
  max-width: 600px;
  line-height: 1.7;
}
.section-desc--light { color: rgba(255,255,255,0.8); }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .section-desc { margin: 0 auto; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: #F59E0B;
  color: #5B2C6F;
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
}
.btn-primary:hover { box-shadow: 0 8px 30px rgba(245, 158, 11, 0.5); background: #FBBF24; }
.btn-secondary {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(4px);
}
.btn-secondary:hover { background: rgba(255,255,255,0.25); }
.btn-cta {
  background: #5B2C6F;
  color: #fff;
  box-shadow: 0 4px 20px rgba(91, 44, 111, 0.4);
}
.btn-cta:hover { background: #4A235A; box-shadow: 0 8px 30px rgba(91, 44, 111, 0.5); }
.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.1); }
.btn-full { width: 100%; justify-content: center; }

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(91, 44, 111, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(245, 158, 11, 0.2);
  transition: box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.2); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: #fff;
}
.logo-text { color: #fff; }
.logo-accent { color: #F59E0B; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  padding: 8px 16px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.1); }
.nav-cta {
  background: #F59E0B !important;
  color: #5B2C6F !important;
  border-radius: 50px !important;
  padding: 10px 20px !important;
  margin-left: 8px;
}
.nav-cta:hover { background: #FBBF24 !important; }

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: relative;
}
.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
  position: absolute;
  left: 8px;
}
.hamburger { top: 19px; }
.hamburger::before { content: ''; top: -7px; }
.hamburger::after { content: ''; top: 7px; }
.nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.nav-toggle[aria-expanded="true"] .hamburger::before { transform: rotate(45deg); top: 0; }
.nav-toggle[aria-expanded="true"] .hamburger::after { transform: rotate(-45deg); top: 0; }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #5B2C6F 0%, #3D1D4F 50%, #2D1537 100%);
  overflow: hidden;
  padding-top: 72px;
}
.hero-bg-shapes { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.geo {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
}
.geo-1 { width: 600px; height: 600px; background: #F59E0B; top: -200px; right: -100px; }
.geo-2 { width: 300px; height: 300px; background: #F59E0B; bottom: -50px; left: -80px; }
.geo-3 { width: 150px; height: 150px; background: #fff; top: 30%; left: 10%; }
.geo-4 {
  width: 200px; height: 200px;
  background: #F59E0B;
  top: 60%; right: 30%;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  opacity: 0.06;
}
.geo-5 {
  width: 100px; height: 100px;
  background: #fff;
  top: 20%; right: 15%;
  border-radius: 20px;
  transform: rotate(45deg);
  opacity: 0.05;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
  padding: 60px 0;
}
.hero-badge {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #F59E0B;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.3);
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.hero-headline {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 500px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-trust { display: flex; gap: 32px; flex-wrap: wrap; }
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
}
.hero-visual { position: relative; }
.hero-image-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}
.hero-image-frame img {
  width: 100%;
  height: 620px;
  object-fit: cover;
}
.hero-floating-card {
  position: absolute;
  background: #fff;
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  animation: float 3s ease-in-out infinite;
}
.hero-floating-card.card-1 { bottom: 40px; left: -30px; animation-delay: 0s; }
.hero-floating-card.card-2 { top: 40px; right: -20px; animation-delay: 1.5s; }
.card-number {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  color: #5B2C6F;
  line-height: 1;
}
.card-label {
  font-size: 0.8rem;
  color: #777;
  font-weight: 500;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
}
.hero-wave svg { width: 100%; height: 80px; }

/* ── Services ── */
.services {
  padding: 100px 0;
  background: #F5F0FF;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 28px;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(91, 44, 111, 0.06);
  opacity: 0;
  transform: translateY(30px);
}
.service-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(91, 44, 111, 0.12);
}
.service-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, #5B2C6F, #7B3F8E);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-icon { color: #F59E0B; }
.service-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #5B2C6F;
  margin-bottom: 12px;
}
.service-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.service-link {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: #F59E0B;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.service-link:hover { gap: 10px; }

/* ── About ── */
.about {
  padding: 100px 0;
  background: #fff;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-img-main {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(91, 44, 111, 0.15);
}
.about-img-main img { width: 100%; height: 400px; object-fit: cover; }
.about-img-accent {
  position: absolute;
  bottom: -40px;
  right: -40px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(91, 44, 111, 0.2);
  border: 4px solid #fff;
}
.about-img-accent img { width: 100%; height: 200px; object-fit: cover; }
.about-experience-badge {
  position: absolute;
  top: -20px;
  left: -20px;
  background: #F59E0B;
  color: #5B2C6F;
  border-radius: 20px;
  padding: 20px 24px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
}
.exp-number {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  line-height: 1;
}
.exp-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.about-content .section-title { margin-top: 8px; }
.about-body {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-stats {
  display: flex;
  gap: 32px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-number {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: #5B2C6F;
}
.stat-label {
  font-size: 0.85rem;
  color: #888;
  font-weight: 500;
}

/* ── Why Us ── */
.why-us {
  padding: 100px 0;
  background: linear-gradient(135deg, #5B2C6F 0%, #3D1D4F 100%);
  position: relative;
  overflow: hidden;
}
.why-bg-shapes { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.why-geo {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
  background: #F59E0B;
}
.why-geo-1 { width: 400px; height: 400px; top: -100px; left: -100px; }
.why-geo-2 { width: 250px; height: 250px; bottom: -80px; right: 10%; }
.why-geo-3 { width: 150px; height: 150px; top: 20%; right: -30px; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}
.why-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 36px 28px;
  backdrop-filter: blur(8px);
  transition: transform 0.3s, background 0.3s;
}
.why-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.12);
}
.why-card-number {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 3rem;
  color: rgba(245, 158, 11, 0.25);
  line-height: 1;
  margin-bottom: 16px;
}
.why-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.why-card-desc {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ── CTA Banner ── */
.cta-banner {
  padding: 80px 0;
  background: #F59E0B;
  position: relative;
  overflow: hidden;
}
.cta-shapes { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.cta-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(91, 44, 111, 0.1);
}
.cta-shape-1 { width: 300px; height: 300px; top: -100px; left: -80px; }
.cta-shape-2 { width: 200px; height: 200px; bottom: -60px; right: 10%; }
.cta-shape-3 { width: 120px; height: 120px; top: 20%; right: 30%; border-radius: 24px; transform: rotate(30deg); }
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
}
.cta-content { flex: 1; min-width: 280px; }
.cta-headline {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 900;
  color: #5B2C6F;
  margin-bottom: 12px;
}
.cta-desc {
  font-size: 1.1rem;
  color: rgba(91, 44, 111, 0.7);
  max-width: 480px;
}
.cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── Contact ── */
.contact {
  padding: 100px 0;
  background: #F5F0FF;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info .section-title { margin-top: 8px; margin-bottom: 16px; }
.contact-desc { color: #555; font-size: 1.05rem; line-height: 1.7; margin-bottom: 36px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.contact-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(245, 158, 11, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-text { display: flex; flex-direction: column; }
.contact-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #999;
  margin-bottom: 2px;
}
.contact-value {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: #5B2C6F;
}
.contact-link:hover { color: #F59E0B; }
.contact-map { border-radius: 16px; overflow: hidden; box-shadow: 0 10px 30px rgba(91, 44, 111, 0.1); }

/* Form */
.contact-form-wrap {
  position: relative;
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(91, 44, 111, 0.1);
  border: 1px solid rgba(91, 44, 111, 0.06);
  overflow: hidden;
}
.form-decor {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  pointer-events: none;
}
.form-decor-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.1);
  position: absolute;
  top: 0;
  right: 0;
}
.form-decor-square {
  width: 80px;
  height: 80px;
  background: rgba(91, 44, 111, 0.06);
  border-radius: 16px;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: rotate(20deg);
}
.form-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #5B2C6F;
  margin-bottom: 24px;
  position: relative;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: #5B2C6F;
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #E8DFF5;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #1a1a2e;
  background: #FAFAFE;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #F59E0B;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
  background: #fff;
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
  text-align: center;
  padding: 40px 20px;
}
.success-icon { margin: 0 auto 16px; }
.success-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #5B2C6F;
  margin-bottom: 8px;
}
.success-text { color: #666; font-size: 1rem; }

/* ── Footer ── */
.footer {
  background: #1a0a20;
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-desc { font-size: 0.95rem; line-height: 1.7; max-width: 300px; }
.footer-heading {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 20px;
}
.footer-links ul,
.footer-contact ul { display: flex; flex-direction: column; gap: 12px; }
.footer-links a,
.footer-contact a {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-links a:hover,
.footer-contact a:hover { color: #F59E0B; }
.footer-contact li { display: flex; align-items: flex-start; gap: 8px; font-size: 0.95rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { margin: 0 auto 36px; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-visual { max-width: 480px; margin: 0 auto; }
  .hero-image-frame img { height: 450px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-visual { max-width: 500px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(91, 44, 111, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 24px;
    gap: 4px;
    transform: translateY(-120%);
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 12px 16px; width: 100%; text-align: center; }
  .nav-cta { margin-left: 0 !important; margin-top: 8px; }
  .nav-toggle { display: block; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
  .hero-floating-card.card-1 { left: 10px; bottom: 20px; }
  .hero-floating-card.card-2 { right: 10px; top: 20px; }
  .about-img-accent { right: -10px; bottom: -20px; }
  .about-experience-badge { left: -10px; top: -10px; }
  .contact-form-wrap { padding: 28px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-trust { flex-direction: column; align-items: center; gap: 12px; }
}
