/* ==========================================================
   HOME PAGE — Styles specific to index.html
   ========================================================== */

/* ---- Hero ---- */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--cream) 0%, var(--peach-light) 55%, var(--blush-light) 100%);
}

.hero__blob-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,201,168,0.5), transparent 70%);
  top: -100px;
  right: -100px;
  --blob-duration: 22s;
  --blob-delay: 0s;
}

.hero__blob-2 {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(249,197,176,0.4), transparent 70%);
  bottom: -50px;
  left: -80px;
  --blob-duration: 28s;
  --blob-delay: 4s;
}

.hero__blob-3 {
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(255,232,214,0.6), transparent 70%);
  top: 40%;
  left: 40%;
  --blob-duration: 18s;
  --blob-delay: 8s;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--space-6);
  position: relative;
  z-index: 1;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-5);
  border-radius: var(--radius-full);
  background: var(--white);
  color: var(--taupe-light);
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  font-size: var(--fs-xs);
  border: 1.5px solid var(--peach);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--space-6);
  letter-spacing: 0.5px;
}

.hero__eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--apricot);
  animation: pulse 2.5s ease-in-out infinite;
}

.hero__title {
  font-size: var(--fs-4xl);
  font-weight: var(--fw-xbold);
  color: var(--taupe);
  line-height: var(--lh-tight);
  margin-bottom: var(--space-6);
}

.hero__title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--apricot), var(--rose));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__sub {
  font-size: var(--fs-md);
  color: var(--text-secondary);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-8);
  max-width: 500px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-bottom: var(--space-10);
}

.hero__langs {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.hero__lang-label {
  font-size: var(--fs-xs);
  color: var(--text-muted);
  font-weight: var(--fw-semi);
}

.hero__illustration {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero__svg-wrap {
  position: relative;
  width: 100%;
  max-width: 480px;
}

/* ---- About Section ---- */
.about {
  background: var(--white);
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-20);
  align-items: center;
}

.about__illustration {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about__credential {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-5);
  background: var(--cream-warm);
  border-radius: var(--radius-md);
  border: 1px solid var(--peach-light);
  margin-bottom: var(--space-5);
}

.about__credential-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--peach), var(--blush));
  display: flex;
  align-items: center;
  justify-content: center;
}

.about__credential-text strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  font-size: var(--fs-sm);
  color: var(--taupe);
}

.about__credential-text span {
  font-size: var(--fs-xs);
  color: var(--text-secondary);
}

/* ---- Pillars Section ---- */
.pillars {
  background: var(--cream);
}

/* ---- Mission Statement ---- */
.mission {
  background: linear-gradient(135deg, var(--taupe) 0%, #3e2e24 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.mission::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.mission__inner {
  position: relative;
  z-index: 1;
}

.mission__quote {
  font-family: var(--font-heading);
  font-size: var(--fs-3xl);
  font-weight: var(--fw-xbold);
  color: var(--cream);
  line-height: var(--lh-snug);
  margin-bottom: var(--space-6);
  max-width: 800px;
  margin-inline: auto;
}

.mission__quote em {
  font-style: normal;
  color: var(--peach);
}

.mission__body {
  font-size: var(--fs-md);
  color: var(--taupe-muted);
  max-width: 640px;
  margin-inline: auto;
  line-height: var(--lh-relaxed);
}

/* ---- Services Preview ---- */
.services-preview {
  background: var(--bg-alt);
}

.service-mini-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--peach-light);
  padding: var(--space-6);
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  transition: all var(--t-base) var(--ease);
}

.service-mini-card:hover {
  border-color: var(--apricot);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.service-mini-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--peach-light), var(--blush-light));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-mini-title {
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  font-size: var(--fs-sm);
  color: var(--taupe);
  margin-bottom: var(--space-1);
}

.service-mini-desc {
  font-size: var(--fs-xs);
  color: var(--text-secondary);
  line-height: var(--lh-relaxed);
}

/* ---- Blog Preview ---- */
.blog-preview { background: var(--cream); }

/* ---- Testimonials ---- */
.testimonials { background: var(--cream); }

.testimonials-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-12);
  align-items: flex-start;
}

.feedback-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 2px solid var(--peach-light);
  padding: var(--space-8);
  box-shadow: var(--shadow-md);
}

.feedback-form-title {
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--taupe);
  margin-bottom: var(--space-2);
}

.feedback-form-sub {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  margin-bottom: var(--space-6);
}

.rating-stars-select {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.feedback-star-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-1);
  transition: transform var(--t-fast) var(--ease);
}

.feedback-star-btn:hover {
  transform: scale(1.2);
}

.feedback-star-btn svg {
  width: 24px;
  height: 24px;
}

.testimonials-wall {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  max-height: 700px;
  overflow-y: auto;
  padding-right: var(--space-4);
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
}

.testimonial-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.testimonial-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-4);
}

.testimonial-card__stars {
  display: flex;
}

.testimonial-card__date {
  font-size: var(--fs-xs);
  color: var(--text-muted);
}

.testimonial-card__text {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  line-height: var(--lh-relaxed);
  font-style: italic;
  margin-bottom: var(--space-4);
}

.testimonial-card__footer {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.testimonial-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--apricot), var(--blush));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  font-size: var(--fs-sm);
  color: var(--white);
  flex-shrink: 0;
}

.testimonial-card__author {
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  font-size: var(--fs-sm);
  color: var(--taupe);
  line-height: 1.2;
}

.testimonial-card__role {
  font-size: var(--fs-xs);
  color: var(--text-muted);
}


/* ---- FAQ Section ---- */
.faq-section { background: var(--bg-alt); }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  max-width: 760px;
  margin-inline: auto;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .hero__inner    { grid-template-columns: 1fr; }
  .hero__illustration { display: none; }
  .about__inner   { grid-template-columns: 1fr; }
  .about__illustration { display: none; }
  .testimonials-layout { grid-template-columns: 1fr; gap: var(--space-8); }
}

@media (max-width: 768px) {
  .hero__title { font-size: var(--fs-3xl); }
  .mission__quote { font-size: var(--fs-2xl); }
}
