/* ========================
   AURA SKIN CLINIC
   Aesthetic: Fresh Soft Sage / Clean Clinic
======================== */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --white: #ffffff;
  --off-white: #f7faf8;
  --blush: #eaf4ef;
  --blush-dark: #d4e8de;
  --rose: #3d8c68;
  --rose-dark: #2e6e51;
  --rose-light: #7dbfa0;
  --text-dark: #111e18;
  --text-mid: #3d5448;
  --text-light: #7a9a8a;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 64px;
  background: rgba(253, 249, 247, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(196,128,106,0.12);
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: 4px;
  color: var(--text-dark);
}

.nav-logo span { color: var(--rose); }

.nav-links {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-mid);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--rose); }

.nav-cta {
  text-decoration: none;
  background: var(--rose);
  color: white;
  padding: 11px 24px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  border-radius: 2px;
  transition: background 0.2s;
}

.nav-cta:hover { background: var(--rose-dark); }

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 80px;
}

.hero-left {
  display: flex;
  align-items: center;
  padding: 80px 64px;
  background: var(--off-white);
}

.hero-text {
  max-width: 520px;
  animation: fadeup 1s ease both;
}

@keyframes fadeup {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--rose);
  border: 1px solid var(--rose-light);
  padding: 7px 16px;
  border-radius: 20px;
  margin-bottom: 32px;
  background: rgba(196,128,106,0.05);
}

.hero-text h1 {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 5.5vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.hero-text h1 em {
  font-style: italic;
  color: var(--rose);
  font-weight: 300;
}

.hero-text p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-mid);
  margin-bottom: 40px;
  max-width: 440px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  text-decoration: none;
  background: var(--rose);
  color: white;
  padding: 14px 32px;
  font-size: 0.88rem;
  font-weight: 500;
  border-radius: 2px;
  transition: background 0.2s, transform 0.2s;
  letter-spacing: 0.3px;
}

.btn-primary:hover { background: var(--rose-dark); transform: translateY(-2px); }

.btn-text {
  text-decoration: none;
  color: var(--rose);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: opacity 0.2s;
  border-bottom: 1px solid transparent;
}

.btn-text:hover {
  border-bottom-color: var(--rose);
  opacity: 0.8;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 24px 0;
  border-top: 1px solid var(--blush-dark);
}

.trust-item {
  padding: 0 28px;
  text-align: center;
}

.trust-item:first-child { padding-left: 0; }

.trust-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--rose);
  margin-bottom: 2px;
}

.trust-item span {
  font-size: 0.75rem;
  color: var(--text-light);
  letter-spacing: 0.5px;
}

.trust-divider {
  width: 1px;
  height: 36px;
  background: var(--blush-dark);
  flex-shrink: 0;
}

/* ---- HERO RIGHT ---- */
.hero-right {
  position: relative;
  background: var(--blush);
  overflow: hidden;
}

.hero-img-wrap {
  position: relative;
  height: 100%;
  min-height: 600px;
}

.hero-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.hero-img-tag {
  position: absolute;
  bottom: 40px;
  left: 40px;
  background: white;
  padding: 16px 20px;
  border-radius: 4px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.hero-img-tag span {
  display: block;
  color: var(--rose);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 2px;
}

.hero-img-tag p {
  color: var(--text-light);
  font-size: 0.78rem;
  margin: 0;
}

.hero-blob {
  position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(196,128,106,0.15), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* ---- MARQUEE ---- */
.marquee-wrap {
  background: var(--rose);
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-block;
  animation: marquee 20s linear infinite;
}

.marquee-track span {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin: 0 12px;
}

.marquee-track .dot {
  color: rgba(255,255,255,0.5);
  margin: 0 8px;
  font-size: 0.6rem;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---- TENTANG ---- */
.tentang {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
}

.tentang-img {
  overflow: hidden;
}

.tentang-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.6s;
}

.tentang-img:hover img { transform: scale(1.03); }

.tentang-text {
  background: var(--off-white);
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.section-label {
  font-size: 0.72rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 600;
}

.tentang-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  font-weight: 400;
  line-height: 1.25;
  color: var(--text-dark);
}

.tentang-text p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-mid);
}

.dokter-card {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
  padding: 20px;
  background: var(--blush);
  border-radius: 4px;
  border-left: 3px solid var(--rose);
}

.dokter-card img {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  flex-shrink: 0;
}

.dokter-card strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 2px;
}

.dokter-card span {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* ---- LAYANAN ---- */
.layanan {
  background: var(--blush);
  padding: 96px 64px;
}

.layanan-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 56px;
  max-width: 560px;
}

.layanan-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.2;
}

.layanan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.layanan-card {
  background: white;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
  border: 1px solid transparent;
}

.layanan-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(196,128,106,0.15);
}

.layanan-card.highlight {
  border-color: var(--rose-light);
}

.layanan-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--rose);
  color: white;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
  z-index: 1;
}

.layanan-num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--rose-light);
  letter-spacing: 2px;
  padding: 24px 24px 0;
}

.layanan-img {
  height: 200px;
  overflow: hidden;
  margin: 12px 0;
}

.layanan-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.layanan-card:hover .layanan-img img { transform: scale(1.05); }

.layanan-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-dark);
  padding: 0 24px 8px;
}

.layanan-card p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--text-light);
  padding: 0 24px 16px;
}

.layanan-mulai {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--rose);
  padding: 0 24px 24px;
}

.layanan-cta { text-align: center; }

/* ---- PROSES ---- */
.proses {
  background: var(--off-white);
  padding: 96px 64px;
}

.proses-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 64px;
  max-width: 480px;
}

.proses-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.25;
}

.proses-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  flex-wrap: wrap;
}

.step {
  flex: 1;
  min-width: 180px;
  padding: 0 24px;
}

.step:first-child { padding-left: 0; }

.step-num {
  width: 48px; height: 48px;
  background: var(--blush);
  border: 2px solid var(--rose-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--rose);
  margin-bottom: 20px;
}

.step h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.step p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text-light);
}

.step-arrow {
  font-size: 1.5rem;
  color: var(--rose-light);
  padding-top: 14px;
  flex-shrink: 0;
}

/* ---- TESTIMONI ---- */
.testimoni {
  background: var(--blush);
  padding: 96px 64px;
}

.testimoni-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 56px;
  max-width: 560px;
}

.testimoni-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.25;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testi-card {
  background: white;
  border-radius: 4px;
  padding: 32px;
  border: 1px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.testi-card.featured {
  border-color: var(--rose-light);
  box-shadow: 0 8px 32px rgba(196,128,106,0.1);
}

.testi-card:hover {
  border-color: var(--rose-light);
}

.testi-stars {
  color: var(--rose);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testi-card p {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--text-mid);
  font-style: italic;
  margin-bottom: 24px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--blush);
  border: 1px solid var(--rose-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose);
  font-size: 0.72rem;
  font-weight: 700;
  flex-shrink: 0;
}

.testi-author strong {
  display: block;
  font-size: 0.88rem;
  color: var(--text-dark);
  font-weight: 600;
}

.testi-author span {
  font-size: 0.75rem;
  color: var(--text-light);
}

/* ---- CTA ---- */
.cta-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}

.cta-left {
  overflow: hidden;
}

.cta-left img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.cta-right {
  background: #0f1f18;
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.cta-right .section-label { color: var(--rose-light); }

.cta-right h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.8vw, 2.8rem);
  font-weight: 400;
  color: var(--off-white);
  line-height: 1.2;
}

.cta-right p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(253,249,247,0.65);
}

.cta-notes {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.cta-notes span {
  font-size: 0.82rem;
  color: rgba(253,249,247,0.55);
  letter-spacing: 0.3px;
}

/* ---- FOOTER ---- */
.footer {
  background: #0f1f18;
  padding: 64px 64px 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(196,128,106,0.15);
}

.footer-logo {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: 4px;
  color: var(--off-white);
  margin-bottom: 12px;
}

.footer-logo span { color: var(--rose); }

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(253,249,247,0.45);
  max-width: 280px;
}

.footer-info strong,
.footer-sosmed strong {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--rose-light);
  margin-bottom: 12px;
}

.footer-info p {
  font-size: 0.85rem;
  color: rgba(253,249,247,0.5);
  line-height: 1.7;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  text-decoration: none;
  font-size: 0.85rem;
  color: rgba(253,249,247,0.5);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--rose-light); }

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(253,249,247,0.25);
  text-align: center;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 960px) {
  .nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero-left { padding: 48px 24px; }
  .hero-right { min-height: 380px; }
  .hero-img-wrap { min-height: 380px; }
  .marquee-wrap { padding: 12px 0; }
  .tentang { grid-template-columns: 1fr; }
  .tentang-img { height: 300px; }
  .tentang-text { padding: 48px 24px; }
  .layanan { padding: 64px 24px; }
  .layanan-grid { grid-template-columns: 1fr; }
  .proses { padding: 64px 24px; }
  .proses-steps { flex-direction: column; gap: 32px; }
  .step-arrow { display: none; }
  .step { padding: 0; }
  .testimoni { padding: 64px 24px; }
  .testi-grid { grid-template-columns: 1fr; }
  .cta-section { grid-template-columns: 1fr; }
  .cta-left { height: 280px; }
  .cta-right { padding: 48px 24px; }
  .footer { padding: 48px 24px 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
}
