/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  min-height: 100vh;
  overflow-x: hidden;
  background: #faf0fa;
  color: #2e182e;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ── Utility ── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }

/* ── Section Labels & Titles ── */
.section { padding: 100px 0; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7B3F7B;
  margin-bottom: 12px;
}
.section-label::before {
  content: '';
  width: 20px;
  height: 2px;
  background: #F5C518;
  border-radius: 2px;
}
.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: #2e182e;
  margin-bottom: 20px;
}
.section-sub {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #633263;
  max-width: 560px;
  margin: 0 auto;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.btn-primary {
  background: #7B3F7B;
  color: #fff;
  box-shadow: 0 4px 20px rgba(123, 63, 123, 0.3);
}
.btn-primary:hover {
  background: #633263;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(123, 63, 123, 0.4);
}
.btn-outline {
  background: transparent;
  color: #7B3F7B;
  border: 1.5px solid #e8c0e8;
}
.btn-outline:hover {
  background: #f3e0f3;
  border-color: #7B3F7B;
}
.btn-white {
  background: #fff;
  color: #7B3F7B;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}
.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
}
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── Navigation ── */
.nav-scrolled {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.35s ease;
  background: rgba(250, 240, 250, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.nav-scrolled .nav-inner {
  border-bottom: 1px solid rgba(123, 63, 123, 0.08);
}
.nav-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: #2e182e;
}
.nav-logo-icon { color: #7B3F7B; }
.nav-logo-text { color: #2e182e; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: #633263;
  position: relative;
  transition: color 0.3s;
}
.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #F5C518;
  border-radius: 2px;
  transition: width 0.3s;
}
.nav-links a:not(.nav-cta):hover { color: #7B3F7B; }
.nav-links a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta {
  background: #7B3F7B;
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.88rem;
  transition: all 0.3s;
}
.nav-cta:hover { background: #633263; transform: translateY(-1px); }
.nav-cta::after { display: none !important; }

.nav-toggle {
  display: none;
  color: #2e182e;
  padding: 4px;
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; align-items: center; justify-content: center; }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #faf0fa;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding: 40px;
    box-shadow: -10px 0 40px rgba(46, 24, 46, 0.1);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 1.1rem; }
  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(46, 24, 46, 0.4);
    backdrop-filter: blur(4px);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
  }
  .nav-overlay.open { opacity: 1; pointer-events: all; }
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
  background: linear-gradient(135deg, #faf0fa 0%, #f3e0f3 50%, #fffcf0 100%);
}
.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}
.hero-shape-1 {
  width: 600px;
  height: 600px;
  background: #e8c0e8;
  top: -200px;
  right: -100px;
}
.hero-shape-2 {
  width: 400px;
  height: 400px;
  background: #ffefaa;
  bottom: -100px;
  left: -100px;
}
.hero-shape-3 {
  width: 250px;
  height: 250px;
  background: #d494d4;
  top: 40%;
  left: 35%;
  opacity: 0.3;
}
.hero-grid {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(123, 63, 123, 0.08);
  border: 1px solid rgba(123, 63, 123, 0.15);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  color: #7B3F7B;
  margin-bottom: 24px;
}
.hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.15;
  color: #2e182e;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 1.12rem;
  line-height: 1.75;
  color: #633263;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-visual {
  position: relative;
  min-height: 560px;
}
.hero-img-card {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(46, 24, 46, 0.15);
  aspect-ratio: 520/640;
}
.hero-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.stat-card {
  position: absolute;
  background: #fff;
  border-radius: 16px;
  padding: 18px 22px;
  box-shadow: 0 8px 32px rgba(46, 24, 46, 0.12);
  animation: float 4s ease-in-out infinite;
}
.stat-card-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #7B3F7B;
  line-height: 1;
}
.stat-card-label {
  font-size: 0.78rem;
  color: #633263;
  line-height: 1.4;
  margin-top: 4px;
}
.stat-card--1 {
  top: 40px;
  left: -40px;
  animation-delay: 0s;
}
.stat-card--2 {
  bottom: 100px;
  left: -30px;
  animation-delay: 1.3s;
}
.stat-card--3 {
  bottom: -10px;
  right: -20px;
  animation-delay: 2.6s;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { min-height: 420px; order: -1; }
  .stat-card--1 { left: 10px; top: 20px; }
  .stat-card--2 { left: 10px; bottom: 80px; }
  .stat-card--3 { right: 10px; bottom: 0; }
  .hero-img-card { aspect-ratio: 4/3; max-width: 480px; margin: 0 auto; }
}
@media (max-width: 640px) {
  .hero { padding: 100px 0 60px; min-height: auto; }
  .hero-visual { min-height: 320px; }
  .stat-card { padding: 12px 16px; }
  .stat-card-number { font-size: 1.4rem; }
  .stat-card--1 { left: 5px; top: 10px; }
  .stat-card--2 { left: 5px; bottom: 60px; }
  .stat-card--3 { right: 5px; bottom: -5px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
}

/* ── About ── */
.about { background: #fff; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-image-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(46, 24, 46, 0.12);
}
.about-image-wrap img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}
.about-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: #F5C518;
  border-radius: 20px;
  z-index: -1;
  opacity: 0.6;
}
.about-content .section-sub { margin: 0 0 20px; }
.about-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: #633263;
  margin-bottom: 16px;
}
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}
.value-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #2e182e;
}
.value-item svg { color: #F5C518; flex-shrink: 0; }

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image-wrap img { height: 400px; }
}
@media (max-width: 500px) {
  .about-values { grid-template-columns: 1fr; }
}

/* ── Services ── */
.services { background: linear-gradient(180deg, #faf0fa 0%, #fff 100%); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.service-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 28px;
  border: 1px solid rgba(123, 63, 123, 0.08);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #7B3F7B, #F5C518);
  opacity: 0;
  transition: opacity 0.35s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(123, 63, 123, 0.12);
  border-color: transparent;
}
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, #f3e0f3, #ffefaa);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7B3F7B;
  margin-bottom: 20px;
}
.service-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #2e182e;
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: #633263;
}

@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ── Areas ── */
.areas { background: #fff; }
.areas-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.areas-content .section-sub { margin: 0 0 28px; }
.areas-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
  margin-bottom: 32px;
}
.areas-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: #633263;
}
.areas-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #F5C518;
  flex-shrink: 0;
}
.areas-image-stack {
  position: relative;
  height: 500px;
}
.area-img {
  position: absolute;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(46, 24, 46, 0.15);
}
.area-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.area-img--1 {
  width: 260px;
  height: 340px;
  top: 0;
  left: 0;
  z-index: 2;
}
.area-img--2 {
  width: 240px;
  height: 300px;
  bottom: 0;
  right: 0;
  z-index: 1;
}

@media (max-width: 900px) {
  .areas-layout { grid-template-columns: 1fr; gap: 40px; }
  .areas-image-stack { height: 360px; }
}
@media (max-width: 500px) {
  .areas-list { grid-template-columns: 1fr; }
  .areas-image-stack { height: 280px; }
  .area-img--1 { width: 180px; height: 240px; }
  .area-img--2 { width: 170px; height: 210px; }
}

/* ── Testimonials ── */
.testimonials {
  background: linear-gradient(135deg, #7B3F7B 0%, #4f284f 100%);
  color: #fff;
}
.testimonials .section-label { color: #ffefaa; }
.testimonials .section-label::before { background: #ffefaa; }
.testimonials .section-title { color: #fff; }
.testimonials .section-sub { color: rgba(255,255,255,0.7); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.testimonial-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 32px 28px;
  backdrop-filter: blur(8px);
  transition: all 0.35s;
}
.testimonial-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-4px);
}
.testimonial-quote { margin-bottom: 16px; color: #fff; }
.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.85);
  margin-bottom: 24px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-avatar { color: #F5C518; flex-shrink: 0; }
.testimonial-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: #fff;
}
.testimonial-detail {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  margin-top: 2px;
}

@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ── CTA Banner ── */
.cta-banner {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(135deg, #fffcf0 0%, #f3e0f3 100%);
  overflow: hidden;
}
.cta-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.cta-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}
.cta-shape-1 {
  width: 300px;
  height: 300px;
  background: #e8c0e8;
  top: -80px;
  left: -80px;
  opacity: 0.6;
}
.cta-shape-2 {
  width: 200px;
  height: 200px;
  background: #ffefaa;
  bottom: -60px;
  right: 10%;
  opacity: 0.7;
}
.cta-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: #2e182e;
  margin-bottom: 16px;
}
.cta-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #633263;
  max-width: 520px;
  margin: 0 auto 32px;
}
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Contact ── */
.contact { background: #fff; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info .section-sub { margin: 0 0 32px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #f3e0f3, #ffefaa);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7B3F7B;
  flex-shrink: 0;
}
.contact-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #7B3F7B;
  margin-bottom: 4px;
}
.contact-item a, .contact-item span {
  font-size: 0.95rem;
  color: #633263;
  line-height: 1.6;
}
.contact-item a:hover { color: #7B3F7B; }

.contact-form-wrap {
  background: #faf0fa;
  border-radius: 24px;
  padding: 40px;
  border: 1px solid rgba(123, 63, 123, 0.08);
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 0.85rem;
  font-weight: 500;
  color: #2e182e;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border-radius: 12px;
  border: 1.5px solid rgba(123, 63, 123, 0.15);
  background: #fff;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.95rem;
  color: #2e182e;
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #7B3F7B;
  box-shadow: 0 0 0 3px rgba(123, 63, 123, 0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #b566b5; opacity: 0.5; }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-radius: 12px;
  background: rgba(123, 63, 123, 0.08);
  color: #7B3F7B;
  font-weight: 500;
  font-size: 0.95rem;
}
.form-success.show { display: flex; }
.form-success svg { color: #7B3F7B; flex-shrink: 0; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 500px) {
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px; }
}

/* ── Footer ── */
.footer {
  background: #2e182e;
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 14px;
}
.footer-logo svg { color: #F5C518; }
.footer-tagline {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 280px;
}
.footer-links h4,
.footer-contact h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.88rem;
  transition: color 0.3s;
}
.footer-links a:hover { color: #F5C518; }
.footer-contact p {
  font-size: 0.88rem;
  line-height: 1.8;
}
.footer-contact a { color: #F5C518; transition: opacity 0.3s; }
.footer-contact a:hover { opacity: 0.8; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.82rem; }
.footer-disclaimer { font-size: 0.78rem; opacity: 0.6; }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
