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

/* ─── Utility ─── */
.container { width: 100%; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ─── Section Shared ─── */
.section { padding: 100px 0; }
.section-header { margin-bottom: 60px; }
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7B2D8E;
  background: #faf5fc;
  border: 1px solid #ebd3ee;
  padding: 0.35em 1em;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  font-weight: 600;
  color: #1a1a2e;
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-desc {
  font-size: 1.05rem;
  color: #555;
  max-width: 600px;
  margin: 0 auto;
}

/* ─── Header ─── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(123,45,142,0.08);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled { box-shadow: 0 4px 30px rgba(123,45,142,0.1); }
.nav-link { position: relative; }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #7B2D8E;
  border-radius: 2px;
  transition: width 0.25s ease;
}
.nav-link:hover::after { width: 60%; }
.mobile-nav-link { border-radius: 12px; }

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('https://images.pexels.com/photos/4021811/pexels-photo-4021811.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=1080') center center / cover no-repeat;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(45,12,53,0.88) 0%,
    rgba(123,45,142,0.75) 50%,
    rgba(139,63,146,0.65) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 80px;
  max-width: 800px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
  color: #fde68a;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 28px;
}
.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 24px;
}
.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 620px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 56px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fbbf24;
  color: #1a1a2e;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 20px rgba(251,191,36,0.4);
}
.btn-primary:hover {
  background: #fcd34d;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(251,191,36,0.5);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.35);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 28px;
  border-radius: 50px;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: all 0.25s ease;
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.55);
  transform: translateY(-2px);
}
.btn-large { padding: 16px 36px; font-size: 1rem; }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 2px solid rgba(255,255,255,0.5);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 28px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.25s ease;
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
  transform: translateY(-2px);
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  font-weight: 500;
}
.hero-trust-item svg { color: #fde68a; flex-shrink: 0; }
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: bobble 2s ease-in-out infinite;
}
.hero-scroll svg { animation: bobble 2s ease-in-out infinite; }
@keyframes bobble {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ─── Conditions ─── */
.conditions { background: #faf5fc; }
.conditions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.condition-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px 32px;
  box-shadow: 0 4px 24px rgba(123,45,142,0.06);
  border: 1px solid rgba(123,45,142,0.07);
  transition: all 0.3s ease;
}
.condition-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(123,45,142,0.12);
}
.condition-icon {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: linear-gradient(135deg, #7B2D8E, #a855b0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 24px;
}
.condition-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 12px;
}
.condition-desc {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
}
.condition-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.condition-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #444;
}
.condition-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fbbf24;
  flex-shrink: 0;
}

/* ─── Services ─── */
.services { background: #fff; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.service-card {
  position: relative;
  background: #fff;
  border: 1px solid #ebd3ee;
  border-radius: 24px;
  padding: 36px 32px;
  transition: all 0.3s ease;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #7B2D8E, #fbbf24);
  border-radius: 24px 24px 0 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.service-card:hover {
  border-color: #dbb3e0;
  box-shadow: 0 8px 32px rgba(123,45,142,0.1);
  transform: translateY(-4px);
}
.service-card:hover::before { opacity: 1; }
.service-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3rem;
  font-weight: 700;
  color: #ebd3ee;
  line-height: 1;
  margin-bottom: 16px;
  transition: color 0.3s ease;
}
.service-card:hover .service-num { color: #f5e9f7; }
.service-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 12px;
}
.service-desc {
  font-size: 0.92rem;
  color: #555;
  line-height: 1.7;
}

/* ─── About ─── */
.about { background: #faf5fc; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-images {
  position: relative;
}
.about-img-main {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(123,45,142,0.15);
}
.about-img-main img { width: 100%; height: 400px; object-fit: cover; }
.about-img-secondary {
  position: absolute;
  bottom: -40px;
  right: -30px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(123,45,142,0.2);
  border: 5px solid #fff;
}
.about-img-secondary img { width: 100%; height: 200px; object-fit: cover; }
.about-stat {
  position: absolute;
  top: -20px;
  right: 40px;
  background: linear-gradient(135deg, #7B2D8E, #a855b0);
  color: #fff;
  padding: 20px 28px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(123,45,142,0.3);
}
.about-stat-num {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 6px;
}
.about-stat-label {
  font-size: 0.78rem;
  font-weight: 500;
  opacity: 0.85;
  line-height: 1.4;
}
.about-content { max-width: 520px; }
.about-text {
  font-size: 1rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}
.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #1a1a2e;
}
.about-feature-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #f5e9f7;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7B2D8E;
  flex-shrink: 0;
}

/* ─── Testimonials ─── */
.testimonials { background: #fff; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.testimonial-card {
  background: #faf5fc;
  border-radius: 24px;
  padding: 36px 32px;
  border: 1px solid rgba(123,45,142,0.07);
  transition: all 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(123,45,142,0.1);
}
.testimonial-quote {
  margin-bottom: 20px;
}
.testimonial-text {
  font-size: 1rem;
  color: #444;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7B2D8E, #a855b0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.testimonial-name {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: #1a1a2e;
}
.testimonial-detail {
  display: block;
  font-size: 0.8rem;
  color: #888;
}

/* ─── CTA ─── */
.cta-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #2d0c35 0%, #7B2D8E 100%);
  overflow: hidden;
}
.cta-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(251,191,36,0.15) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(168,85,176,0.3) 0%, transparent 50%);
}
.cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}
.cta-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.2;
}
.cta-text {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

/* ─── Contact ─── */
.contact { background: #faf5fc; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-desc {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 32px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-item {
  display: flex;
  gap: 16px;
}
.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, #7B2D8E, #a855b0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.contact-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7B2D8E;
  margin-bottom: 4px;
}
.contact-value {
  display: block;
  font-size: 0.95rem;
  color: #1a1a2e;
  line-height: 1.6;
}
.contact-form-wrapper {
  background: #fff;
  border-radius: 28px;
  padding: 40px;
  box-shadow: 0 8px 40px rgba(123,45,142,0.08);
  border: 1px solid rgba(123,45,142,0.07);
}
.form-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 20px;
}
.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #ebd3ee;
  border-radius: 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: #1a1a2e;
  background: #faf5fc;
  transition: all 0.2s ease;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #7B2D8E;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(123,45,142,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #aaa;
}
.form-group textarea { resize: vertical; min-height: 100px; }
.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #7B2D8E, #a855b0);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 20px rgba(123,45,142,0.3);
  width: 100%;
  justify-content: center;
}
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(123,45,142,0.4);
}
.btn-submit svg { transition: transform 0.25s ease; }
.btn-submit:hover svg { transform: translate(3px, -3px); }
.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 32px;
  text-align: center;
  color: #7B2D8E;
}
.form-success svg { color: #7B2D8E; }
.form-success p { font-size: 0.95rem; color: #555; line-height: 1.6; }
.hidden { display: none; }

/* ─── Map ─── */
.map-section { height: 320px; }
.map-section iframe { width: 100%; height: 100%; }

/* ─── Footer ─── */
.site-footer {
  background: #1a0a22;
  padding: 72px 0 0;
  color: rgba(255,255,255,0.7);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-tagline {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  max-width: 280px;
}
.footer-heading {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.footer-link {
  display: block;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  padding: 5px 0;
  transition: color 0.2s ease;
}
.footer-link:hover { color: #fbbf24; }
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}
.footer-contact-list svg { flex-shrink: 0; margin-top: 3px; color: #fbbf24; }
.footer-bottom {
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.6;
}
.footer-legal { font-size: 0.75rem; }

/* ─── Reveal Animation ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-images { max-width: 500px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .hero-content { padding: 100px 0 60px; }
  .hero-actions { flex-direction: column; }
  .hero-actions a { width: 100%; justify-content: center; }
  .hero-trust { flex-direction: column; gap: 12px; }
  .about-img-secondary { right: 0; }
  .about-stat { right: 0; }
  .about-features { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrapper { padding: 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 480px) {
  .section { padding: 56px 0; }
  .section-header { margin-bottom: 40px; }
  .condition-card { padding: 28px 24px; }
  .service-card { padding: 28px 24px; }
  .hero-title { font-size: 1.9rem; }
}
