/* ============================================================
   sections.css – Hero, Features, Services, Process,
                  Why Us, Reviews, CTA, Contact, Footer
============================================================ */

/* ── Hero ── */
.hero {
  min-height: 88vh;
  background: var(--teal-light);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px;
  position: relative;
  overflow: hidden; /* clips bg shapes */
  max-width: 100%;
}
.hero-bg-shape { position: absolute; border-radius: 50%; pointer-events: none; }
.hero-bg-shape-1 { width: 500px; height: 500px; background: rgba(255,255,255,0.03); top: -150px; right: -150px; }
.hero-bg-shape-2 { width: 300px; height: 300px; background: rgba(201,168,76,0.06); bottom: -80px; left: 30%; }

.hero-text { position: relative; z-index: 2; }
.hero-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px;
}
.hero-eyebrow::before { content: ''; display: inline-block; width: 32px; height: 1px; background: var(--gold); }
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 900; color: #fff; line-height: 1.1; margin-bottom: 24px;
}
.hero h1 span { color: var(--gold); }
.hero-desc { font-size: 17px; color: rgba(255,255,255,0.72); font-weight: 300; margin-bottom: 40px; max-width: min(480px, 100%); }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }

.btn-primary {
  background: var(--gold); color: var(--teal-light);
  padding: 13px 30px; border-radius: 8px; font-weight: 700; font-size: 15px;
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(201,168,76,0.35); }

.btn-ghost {
  border: 1.5px solid rgba(255,255,255,0.35); color: #fff;
  padding: 13px 30px; border-radius: 8px; font-weight: 500; font-size: 15px;
  transition: background var(--transition), border-color var(--transition);
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.6); }

.hero-badges { display: flex; gap: 20px; flex-wrap: wrap; }
.hero-badge { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.6); }
.hero-badge svg { width: 16px; height: 16px; stroke: var(--gold); stroke-width: 2; fill: none; }

.hero-visual { position: relative; z-index: 2; display: flex; flex-direction: column; gap: 16px; }
.hero-card {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius); padding: 22px 26px; backdrop-filter: blur(8px);
  transition: background 0.3s, transform 0.3s;
}
.hero-card:hover { background: rgba(255,255,255,0.11); transform: translateX(6px); }
.hero-card:nth-child(2) { margin-left: 24px; }
.hero-card-icon {
  width: 36px; height: 36px; background: rgba(201,168,76,0.15);
  border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 12px;
}
.hero-card-icon svg { width: 18px; height: 18px; stroke: var(--gold); stroke-width: 2; fill: none; }
.hero-card h4 { font-size: 15px; font-weight: 600; color: #fff; margin-bottom: 4px; }
.hero-card p  { font-size: 13px; color: rgba(255,255,255,0.55); }

/* ── Features Strip ── */
.features {
  background: var(--white); padding: 56px 80px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid rgba(45,74,138,0.08);
}
.feature-item { padding: 28px 32px; border-right: 1px solid rgba(45,74,138,0.08); transition: background var(--transition); }
.feature-item:last-child { border-right: none; }
.feature-item:hover { background: var(--off-white); }
.feature-num { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 900; color: var(--teal-light); line-height: 1; margin-bottom: 6px; }
.feature-item h4 { font-size: 14px; font-weight: 600; color: var(--teal-light); margin-bottom: 4px; }
.feature-item p  { font-size: 13px; color: var(--text-muted); }

/* ── Services ── */
.services { background: var(--off-white); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: var(--white); border: 1px solid rgba(45,74,138,0.08);
  border-radius: var(--radius); padding: 36px 30px;
  position: relative; overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(45,74,138,0.12); border-color: var(--teal-light); }
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--teal-light), var(--gold));
  transform: scaleX(0); transform-origin: left; transition: transform 0.35s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 52px; height: 52px; background: var(--teal-dark); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
  transition: background 0.3s, transform 0.3s;
}
.service-card:hover .service-icon { background: var(--teal-light); transform: scale(1.08) rotate(4deg); }
.service-icon svg { width: 24px; height: 24px; stroke: var(--teal-light); fill: none; stroke-width: 1.8; transition: stroke 0.3s; }
.service-card:hover .service-icon svg { stroke: #fff; }
.service-card h3 { font-size: 18px; font-weight: 700; color: var(--teal-light); margin-bottom: 10px; }
.service-card p  { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
.service-link { font-size: 13px; font-weight: 600; color: var(--teal-light); display: inline-flex; align-items: center; gap: 6px; transition: gap 0.2s; cursor: pointer; }
.service-card:hover .service-link { gap: 10px; }
.service-link svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2.5; }

/* ── Process ── */
.process { background: var(--white); display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.process-steps { display: flex; flex-direction: column; }
.process-step {
  display: flex; gap: 20px; padding: 24px 0;
  border-bottom: 1px solid rgba(45,74,138,0.08); cursor: default;
}
.process-step:last-child { border-bottom: none; }
.step-num {
  width: 40px; height: 40px; min-width: 40px; background: var(--teal-dark);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 700;
  color: var(--teal-light); transition: background 0.3s, color 0.3s; margin-top: 2px;
}
.process-step:hover .step-num { background: var(--teal-light); color: #fff; }
.step-content h4 { font-size: 16px; font-weight: 700; color: var(--teal-light); margin-bottom: 4px; }
.step-content p  { font-size: 14px; color: var(--text-muted); }
.process-visual {
  background: var(--teal-light); border-radius: 20px; padding: 48px 40px;
  color: #fff; position: relative; overflow: hidden;
}
.process-visual::before {
  content: ''; position: absolute; width: 200px; height: 200px;
  border-radius: 50%; background: rgba(201,168,76,0.08); top: -60px; right: -60px;
}
.process-visual h3 { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 700; margin-bottom: 8px; }
.process-visual p  { font-size: 15px; opacity: 0.7; margin-bottom: 32px; }
.process-stat {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px; padding: 20px 24px; margin-bottom: 16px;
  display: flex; align-items: center; gap: 16px;
}
.process-stat:last-child { margin-bottom: 0; }
.p-stat-num { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 900; color: var(--gold); line-height: 1; min-width: 70px; }
.p-stat-label { font-size: 14px; opacity: 0.75; }

/* ── Why Us ── */
.why { background: var(--off-white); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card {
  background: var(--white); border: 1px solid rgba(45,74,138,0.08);
  border-radius: var(--radius); padding: 32px 26px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.why-card:hover { transform: translateY(-5px); box-shadow: 0 12px 36px rgba(45,74,138,0.1); }
.why-icon {
  width: 48px; height: 48px; background: var(--teal-dark); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px; transition: background 0.3s;
}
.why-card:hover .why-icon { background: var(--teal-light); }
.why-icon svg { width: 22px; height: 22px; stroke: var(--teal-light); fill: none; stroke-width: 2; transition: stroke 0.3s; }
.why-card:hover .why-icon svg { stroke: #fff; }
.why-card h3 { font-size: 16px; font-weight: 700; color: var(--teal-light); margin-bottom: 8px; }
.why-card p  { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ── Reviews ── */
.reviews { background: var(--teal-light); }
.reviews .section-tag   { color: var(--gold); }
.reviews .section-title { color: #fff; }
.reviews .section-sub   { color: rgba(255,255,255,0.6); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); padding: 32px 26px; position: relative;
  transition: background 0.3s, transform 0.3s;
}
.review-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); }
.review-card::before {
  content: '"'; position: absolute; top: 12px; right: 20px;
  font-family: 'Playfair Display', serif; font-size: 64px;
  color: rgba(201,168,76,0.2); line-height: 1;
}
.stars { color: var(--gold); font-size: 15px; margin-bottom: 14px; }
.review-card p { font-size: 14px; color: rgba(255,255,255,0.7); font-style: italic; margin-bottom: 20px; line-height: 1.7; }
.review-author { font-size: 13px; font-weight: 700; color: #fff; }
.review-role   { font-size: 12px; color: rgba(255,255,255,0.45); margin-top: 2px; }

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, var(--gold) 0%, #e8c060 100%);
  padding: 80px; display: grid; grid-template-columns: 1fr auto;
  gap: 40px; align-items: center;
}
.cta-banner h2 { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 700; color: var(--teal-light); margin-bottom: 10px; }
.cta-banner p  { font-size: 16px; color: rgba(26,47,94,0.75); }
.cta-btns { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.btn-dark {
  background: var(--teal-light); color: #fff; padding: 14px 32px;
  border-radius: 8px; font-size: 15px; font-weight: 700;
  transition: transform 0.15s, box-shadow 0.15s; white-space: nowrap;
}
.btn-dark:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(26,47,94,0.3); }
.btn-light {
  background: rgba(255,255,255,0.4); color: var(--teal-light); padding: 14px 32px;
  border-radius: 8px; font-size: 15px; font-weight: 600; transition: background 0.2s; white-space: nowrap;
}
.btn-light:hover { background: rgba(255,255,255,0.65); }

/* ── Contact ── */
.contact { background: var(--white); display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-info h3 { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 700; color: var(--teal-light); margin-bottom: 28px; }
.contact-item { display: flex; gap: 16px; margin-bottom: 24px; align-items: flex-start; transition: transform var(--transition); }
.contact-item:hover { transform: translateX(4px); }
.contact-ic {
  width: 42px; height: 42px; min-width: 42px; background: var(--teal-dark);
  border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: background var(--transition);
}
.contact-item:hover .contact-ic { background: var(--teal-light); }
.contact-ic svg { width: 18px; height: 18px; stroke: var(--teal-light); stroke-width: 2; fill: none; transition: stroke var(--transition); }
.contact-item:hover .contact-ic svg { stroke: #fff; }
.contact-text strong { display: block; font-size: 14px; font-weight: 600; color: var(--teal-light); }
.contact-text span   { font-size: 13px; color: var(--text-muted); }
.contact-bilingual-note {
  background: #fdf6e3; border-left: 4px solid var(--gold);
  border-radius: 6px; padding: 14px 18px; margin-top: 28px;
  font-size: 14px; color: var(--teal-light); line-height: 1.6;
}
.contact-form h3 { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700; color: var(--teal-light); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--text-muted); display: block; margin-bottom: 7px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 11px 16px;
  border: 1.5px solid rgba(45,74,138,0.15); border-radius: 9px;
  font-size: 14px; font-family: inherit; color: #333;
  background: var(--white); outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--teal-light); box-shadow: 0 0 0 3px rgba(30,74,74,0.1); }
.form-group textarea { resize: vertical; min-height: 110px; }
.btn-submit {
  background: var(--teal-light); color: #fff; padding: 13px 32px;
  border: none; border-radius: 9px; font-size: 15px; font-weight: 700;
  cursor: pointer; width: 100%; transition: opacity 0.2s, transform 0.15s; font-family: inherit;
}
.btn-submit:hover { opacity: 0.9; transform: translateY(-2px); }

/* ── Footer ── */
footer { background: var(--teal-light); color: var(--off-white); padding: 64px 80px 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 900; color: #fff; margin-bottom: 14px; }
footer p   { font-size: 13px; color: var(--off-white); line-height: 1.9; }
footer h4  { font-size: 12px; font-weight: 700; color: var(--gold); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.1em; }
footer ul  { list-style: none; }
footer ul li { margin-bottom: 8px; }
footer a   { font-size: 13px; color: var(--off-white); transition: color 0.2s; }
footer a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px; font-size: 12px; color: #fff;
}
