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

:root {
  --navy: #031326;
  --navy-deep: #020b17;
  --blue: #d8ad62;
  --blue-soft: #f4d99a;
  --white: #ffffff;
  --muted: #d8e2ef;
  --muted-soft: #9fb1c7;
  --border: rgba(255, 255, 255, 0.18);
  --glass: rgba(2, 13, 27, 0.62);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--navy-deep);
  color: var(--white);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

/* HERO UTAMA */
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  padding: 0 5vw;
  background:
    linear-gradient(
      90deg,
      rgba(1, 10, 24, 0.98) 0%,
      rgba(1, 10, 24, 0.88) 27%,
      rgba(1, 10, 24, 0.45) 55%,
      rgba(1, 10, 24, 0.10) 100%
    ),
    linear-gradient(
      180deg,
      rgba(1, 10, 24, 0.35) 0%,
      rgba(1, 10, 24, 0.10) 45%,
      rgba(1, 10, 24, 0.82) 100%
    ),
    url("assets/img/hero-taman.png") center right / cover no-repeat;
}

/* efek dongker kiri bawah */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 45%, rgba(46, 140, 255, 0.18), transparent 32%),
    radial-gradient(circle at 5% 95%, rgba(0, 0, 0, 0.85), transparent 34%);
  pointer-events: none;
  z-index: 1;
}

/* NAVBAR */
.navbar {
  position: relative;
  z-index: 5;
  width: 100%;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-icon {
  width: 52px;
  height: 64px;
  display: grid;
  place-items: center;
  color: var(--blue);
  font-size: 3rem;
  line-height: 1;
  transform: rotate(-10deg);
}

.brand-icon span {
  filter: drop-shadow(0 0 18px rgba(46, 140, 255, 0.45));
}

.brand-text h1 {
  font-family: "Playfair Display", serif;
  font-size: 2.35rem;
  line-height: 0.95;
  font-weight: 700;
  letter-spacing: -1px;
}

.brand-text p {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  color: var(--white);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 46px);
  margin-left: auto;
}

.nav-menu a {
  position: relative;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  font-weight: 500;
  transition: 0.25s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--blue-soft);
}

.nav-menu a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -18px;
  width: 50px;
  height: 2px;
  background: var(--blue);
}

.nav-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 17px 25px;
  border-radius: 999px;
  background: linear-gradient(135deg, #b98536, #d8ad62);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  box-shadow: 0 18px 42px rgba(46, 140, 255, 0.28);
  white-space: nowrap;
  transition: 0.25s ease;
}

.nav-wa:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 52px rgba(46, 140, 255, 0.4);
}

/* NAV HIGHLIGHT BEFORE AFTER */
.nav-menu .nav-highlight {
  padding: 10px 16px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, rgba(46, 140, 255, 0.95), rgba(90, 168, 255, 0.72));
  box-shadow: 0 12px 32px rgba(46, 140, 255, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.nav-menu .nav-highlight:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(46, 140, 255, 0.38);
}

.nav-menu .nav-highlight::after {
  display: none;
}

/* HERO CONTENT */
.hero-content {
  position: relative;
  z-index: 4;
  width: min(760px, 52vw);
  margin-top: 80px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
  color: var(--blue-soft);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 7px;
}

.eyebrow span {
  font-size: 1.35rem;
  letter-spacing: 0;
}

.hero-content h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(4.8rem, 8vw, 8.7rem);
  line-height: 0.92;
  font-weight: 800;
  letter-spacing: -4px;
  color: var(--white);
  text-shadow: 0 12px 44px rgba(0, 0, 0, 0.45);
}

.hero-content h2 span {
  display: inline-block;
  color: var(--blue-soft);
}

.hero-content p {
  max-width: 650px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 1.22rem;
  line-height: 1.75;
  font-weight: 400;
}

/* BUTTON */
.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 46px;
}

.btn {
  min-height: 62px;
  padding: 0 30px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 1rem;
  font-weight: 700;
  transition: 0.25s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #d8ad62, #a8772c);
  color: var(--white);
  box-shadow: 0 18px 45px rgba(46, 140, 255, 0.28);
}

.btn-outline {
  min-width: 260px;
  background: rgba(2, 13, 27, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.36);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.btn:hover {
  transform: translateY(-4px);
}

/* BOTTOM FEATURES */
.hero-features {
  position: absolute;
  z-index: 4;
  left: 5vw;
  bottom: 58px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 18px;
}

.feature-icon {
  width: 62px;
  height: 62px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(2, 13, 27, 0.36);
  color: var(--white);
  font-size: 1.6rem;
  backdrop-filter: blur(10px);
}

.feature-item h3 {
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.feature-item p {
  color: var(--muted);
  font-size: 0.9rem;
}

.feature-line {
  width: 1px;
  height: 54px;
  background: rgba(255, 255, 255, 0.18);
}

/* FLOATING CARD */
.hero-card {
  position: absolute;
  right: 4vw;
  bottom: 52px;
  z-index: 4;
  width: 360px;
  min-height: 150px;
  padding: 28px;
  display: flex;
  align-items: center;
  gap: 22px;
  border-radius: 26px;
  background: rgba(3, 16, 28, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
}

.card-icon {
  flex: 0 0 auto;
  color: var(--blue);
  font-size: 3.4rem;
  line-height: 1;
  transform: rotate(-10deg);
}

.hero-card h3 {
  font-size: 1rem;
  line-height: 1.55;
  margin-bottom: 14px;
}

.hero-card h3 span {
  color: var(--blue-soft);
}

.hero-card p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.9rem;
}

/* SECTION GLOBAL */
.section-container {
  width: min(1180px, 90%);
  margin: 0 auto;
}

/* KONSEP TAMAN */

.concept-section {
  position: relative;
  padding: 110px 0;
  background:
    radial-gradient(circle at top left, rgba(46, 140, 255, 0.14), transparent 34%),
    linear-gradient(180deg, #020b17 0%, #031326 100%);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 54px;
}

.section-label {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--blue-soft);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 5px;
}

.section-heading h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 4.8vw, 5rem);
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--white);
  margin-bottom: 22px;
}

.section-heading p {
  color: var(--muted-soft);
  font-size: 1.05rem;
  line-height: 1.8;
}

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

.concept-card {
  min-height: 310px;
  padding: 34px;
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035));
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
  transition: 0.28s ease;
}

.concept-card:hover {
  transform: translateY(-8px);
  border-color: rgba(90, 168, 255, 0.38);
  background:
    linear-gradient(145deg, rgba(46, 140, 255, 0.14), rgba(255, 255, 255, 0.04));
}

.concept-number {
  width: 58px;
  height: 58px;
  margin-bottom: 32px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(46, 140, 255, 0.16);
  color: var(--blue-soft);
  font-size: 1rem;
  font-weight: 800;
}

.concept-card h3 {
  font-size: 1.45rem;
  margin-bottom: 16px;
}

.concept-card p {
  color: var(--muted-soft);
  line-height: 1.8;
  font-size: 0.98rem;
}

/* GALERI KONSEP */
.gallery-section {
  position: relative;
  padding: 110px 0;
  background:
    radial-gradient(circle at top right, rgba(46, 140, 255, 0.12), transparent 32%),
    linear-gradient(180deg, #031326 0%, #020b17 100%);
}

.gallery-heading {
  margin-bottom: 54px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  grid-template-rows: 310px 310px;
  grid-template-areas:
    "modern minimal relax"
    "modern side side";
  gap: 24px;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.28);
  isolation: isolate;
}

.gallery-card.large {
  grid-area: modern;
}

.gallery-card:nth-child(2) {
  grid-area: minimal;
}

.gallery-card:nth-child(3) {
  grid-area: relax;
}

.gallery-card.wide {
  grid-area: side;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s ease;
}

.gallery-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  pointer-events: none;
  z-index: 3;
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 11, 23, 0.08) 0%, rgba(2, 11, 23, 0.86) 100%),
    linear-gradient(90deg, rgba(2, 11, 23, 0.45), transparent);
  z-index: 1;
}

.gallery-overlay {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 2;
}

.gallery-overlay span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 12px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(46, 140, 255, 0.18);
  border: 1px solid rgba(90, 168, 255, 0.32);
  color: var(--blue-soft);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 1px;
}

.gallery-overlay h3 {
  max-width: 520px;
  margin-bottom: 10px;
  font-size: 1.45rem;
  line-height: 1.25;
}

.gallery-card.large .gallery-overlay h3 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -1px;
}

.gallery-overlay p {
  max-width: 520px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.65;
}

.gallery-card:hover img {
  transform: scale(1.08);
}

.gallery-card:hover {
  border-color: rgba(90, 168, 255, 0.38);
}

/* MOBILE NAV TOGGLE */
.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background: rgba(2, 13, 27, 0.42);
  backdrop-filter: blur(12px);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--white);
  transition: 0.25s ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* LAYANAN DESAIN TAMAN */
.service-section {
  position: relative;
  padding: 110px 0;
  background:
    radial-gradient(circle at 18% 30%, rgba(46, 140, 255, 0.12), transparent 30%),
    linear-gradient(180deg, #020b17 0%, #031326 48%, #020b17 100%);
}

.service-heading {
  max-width: 820px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.service-card {
  position: relative;
  min-height: 430px;
  padding: 30px;
  border-radius: 30px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.028));
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.25);
  transition: 0.28s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: auto -40% -45% -40%;
  height: 220px;
  background: radial-gradient(circle, rgba(46, 140, 255, 0.20), transparent 68%);
  opacity: 0;
  transition: 0.28s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(90, 168, 255, 0.36);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card.featured {
  background:
    linear-gradient(145deg, rgba(46, 140, 255, 0.22), rgba(255, 255, 255, 0.045));
  border-color: rgba(90, 168, 255, 0.34);
}

.service-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 30px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(46, 140, 255, 0.16);
  color: var(--blue-soft);
  font-weight: 800;
}

.service-card h3 {
  position: relative;
  z-index: 2;
  margin-bottom: 16px;
  font-size: 1.32rem;
  line-height: 1.3;
}

.service-card p {
  position: relative;
  z-index: 2;
  color: var(--muted-soft);
  font-size: 0.94rem;
  line-height: 1.75;
  margin-bottom: 24px;
}

.service-card ul {
  position: relative;
  z-index: 2;
  list-style: none;
  display: grid;
  gap: 12px;
}

.service-card li {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
  padding-left: 24px;
  position: relative;
}

.service-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--blue-soft);
  font-weight: 800;
}

/* TENTANG KAMI */
.about-section {
  position: relative;
  padding: 110px 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(46, 140, 255, 0.12), transparent 30%),
    linear-gradient(180deg, #020b17 0%, #031326 100%);
}

.about-container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 70px;
}

.about-visual {
  position: relative;
  min-height: 560px;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
}

.about-visual img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  display: block;
  transition: 0.6s ease;
}

.about-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 11, 23, 0.04) 0%, rgba(2, 11, 23, 0.86) 100%),
    linear-gradient(90deg, rgba(2, 11, 23, 0.55), transparent);
}

.about-visual:hover img {
  transform: scale(1.06);
}

.about-badge-card {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 2;
  padding: 24px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  background: rgba(3, 16, 28, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(16px);
}

.about-badge-card span {
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(46, 140, 255, 0.18);
  color: var(--blue-soft);
  font-weight: 800;
}

.about-badge-card p {
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.95rem;
}

.about-content h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.7rem, 4.8vw, 5.2rem);
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 24px;
}

.about-content > p {
  color: var(--muted-soft);
  font-size: 1.02rem;
  line-height: 1.85;
  margin-bottom: 18px;
}

.about-points {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.about-point {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.028));
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: 0.25s ease;
}

.about-point:hover {
  transform: translateX(8px);
  border-color: rgba(90, 168, 255, 0.34);
}

.about-point strong {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: rgba(46, 140, 255, 0.16);
  color: var(--blue-soft);
  font-size: 0.88rem;
}

.about-point h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.about-point p {
  color: var(--muted-soft);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* KONTAK / CTA AKHIR */
.contact-section {
  position: relative;
  padding: 120px 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(46, 140, 255, 0.18), transparent 34%),
    radial-gradient(circle at 85% 80%, rgba(90, 168, 255, 0.10), transparent 30%),
    linear-gradient(180deg, #031326 0%, #020b17 100%);
}

.contact-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 70px;
  padding: 56px;
  border-radius: 38px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.032));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.32);
  overflow: hidden;
  position: relative;
}

.contact-container::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle, rgba(46, 140, 255, 0.12), transparent 58%);
  pointer-events: none;
}

.contact-content,
.contact-card {
  position: relative;
  z-index: 2;
}

.contact-content h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.8rem, 5vw, 5.4rem);
  line-height: 1.02;
  letter-spacing: -2px;
  margin-bottom: 24px;
}

.contact-content p {
  max-width: 680px;
  color: var(--muted-soft);
  font-size: 1.05rem;
  line-height: 1.85;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 38px;
}

.btn-contact-primary,
.btn-contact-outline {
  min-height: 60px;
  padding: 0 28px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  transition: 0.25s ease;
}

.btn-contact-primary {
  background: linear-gradient(135deg, #d8ad62, #a8772c);
  color: var(--white);
  box-shadow: 0 18px 45px rgba(46, 140, 255, 0.28);
}

.btn-contact-outline {
  background: rgba(2, 13, 27, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.btn-contact-primary:hover,
.btn-contact-outline:hover {
  transform: translateY(-4px);
}

.contact-card {
  padding: 34px;
  border-radius: 30px;
  background: rgba(2, 13, 27, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
}

.contact-card-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 28px;
  display: grid;
  place-items: center;
  color: var(--blue-soft);
  font-size: 3rem;
  line-height: 1;
  transform: rotate(-10deg);
}

.contact-card h3 {
  font-size: 1.45rem;
  margin-bottom: 26px;
}

.contact-list {
  display: grid;
  gap: 18px;
}

.contact-list div {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-list div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.contact-list span {
  display: block;
  margin-bottom: 6px;
  color: var(--blue-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.contact-list p {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.65;
}

/* FOOTER */
.footer {
  background: #020b17;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.footer-container {
  padding: 34px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-logo {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--blue-soft);
  font-size: 2.3rem;
  transform: rotate(-10deg);
}

.footer-brand h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  line-height: 1;
}

.footer-brand p {
  margin-top: 4px;
  color: var(--muted-soft);
  font-size: 0.82rem;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--muted-soft);
  font-size: 0.9rem;
  transition: 0.25s ease;
}

.footer-links a:hover {
  color: var(--blue-soft);
}

.footer-bottom {
  padding: 18px 0 24px;
  text-align: center;
  color: var(--muted-soft);
  font-size: 0.82rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* HARGA DESAIN TAMAN */
.pricing-section {
  position: relative;
  padding: 110px 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(46, 140, 255, 0.14), transparent 32%),
    linear-gradient(180deg, #020b17 0%, #031326 48%, #020b17 100%);
}

.pricing-heading {
  max-width: 860px;
}

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

.pricing-card {
  position: relative;
  min-height: 520px;
  padding: 32px;
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.25);
  transition: 0.28s ease;
}

.pricing-card::before {
  content: "";
  position: absolute;
  inset: auto -40% -45% -40%;
  height: 240px;
  background: radial-gradient(circle, rgba(46, 140, 255, 0.20), transparent 68%);
  opacity: 0;
  transition: 0.28s ease;
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: rgba(90, 168, 255, 0.36);
}

.pricing-card:hover::before {
  opacity: 1;
}

.pricing-card.featured {
  background:
    linear-gradient(145deg, rgba(46, 140, 255, 0.24), rgba(255, 255, 255, 0.045));
  border-color: rgba(90, 168, 255, 0.38);
}

.pricing-badge {
  width: fit-content;
  position: relative;
  z-index: 2;
  margin-bottom: 24px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(46, 140, 255, 0.16);
  border: 1px solid rgba(90, 168, 255, 0.28);
  color: var(--blue-soft);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.pricing-card h3 {
  position: relative;
  z-index: 2;
  font-size: 1.45rem;
  line-height: 1.3;
  margin-bottom: 22px;
}

.price {
  position: relative;
  z-index: 2;
  margin-bottom: 22px;
}

.price span {
  display: block;
  color: var(--muted-soft);
  font-size: 0.86rem;
  margin-bottom: 6px;
}

.price strong {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.7rem, 4vw, 4rem);
  line-height: 1;
  color: var(--white);
}

.pricing-card p {
  position: relative;
  z-index: 2;
  color: var(--muted-soft);
  font-size: 0.94rem;
  line-height: 1.75;
  margin-bottom: 24px;
}

.pricing-card ul {
  position: relative;
  z-index: 2;
  list-style: none;
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}

.pricing-card li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.pricing-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--blue-soft);
  font-weight: 800;
}

.pricing-btn {
  position: relative;
  z-index: 2;
  margin-top: auto;
  min-height: 54px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #d8ad62, #a8772c);
  color: var(--white);
  font-weight: 800;
  box-shadow: 0 18px 45px rgba(46, 140, 255, 0.24);
  transition: 0.25s ease;
}

.pricing-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 52px rgba(46, 140, 255, 0.34);
}

.pricing-note {
  margin-top: 28px;
  padding: 18px 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--muted-soft);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* RESPONSIVE */

@media (max-width: 1180px) {
  .nav-menu {
    gap: 22px;
  }

  .nav-wa {
    padding: 15px 20px;
  }

  .hero-content {
    width: min(720px, 68vw);
  }

  .hero-content h2 {
    font-size: clamp(4.2rem, 8vw, 7rem);
  }

  .hero-card {
    width: 330px;
  }
}

/* TABLET */
@media (max-width: 980px) {
  .hero {
    min-height: auto;
    padding: 0 6vw 60px;
    background:
      linear-gradient(
        180deg,
        rgba(1, 10, 24, 0.98) 0%,
        rgba(1, 10, 24, 0.82) 42%,
        rgba(1, 10, 24, 0.55) 100%
      ),
      url("assets/img/hero-taman.png") center / cover no-repeat;

    .nav-menu .nav-highlight {
      margin-top: 8px;
      text-align: center;
      background: linear-gradient(135deg, #d8ad62, #a8772c);
    }
  }

  .navbar {
    height: auto;
    padding: 28px 0;
  }

    .nav-wa {
    display: none;
    }

    .nav-toggle {
    display: inline-flex;
    margin-left: auto;
    }

    .nav-menu {
    position: absolute;
    top: 88px;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px;
    border-radius: 24px;
    background: rgba(2, 13, 27, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(18px);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px);
    transition: 0.25s ease;
    }

    .nav-menu.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    }

    .nav-menu a {
    width: 100%;
    padding: 14px 16px;
    border-radius: 14px;
    }

    .nav-menu a:hover {
    background: rgba(255, 255, 255, 0.08);
    }

    .nav-menu a.active::after {
    display: none;
    }

  .hero-content {
    width: 100%;
    margin-top: 64px;
    padding-bottom: 300px;
  }

  .hero-content h2 {
    font-size: clamp(3.5rem, 14vw, 6rem);
    letter-spacing: -2px;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-features {
    position: relative;
    left: auto;
    bottom: auto;
    margin-top: -220px;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .feature-line {
    display: none;
  }

  .hero-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 28px;
  }

  /* concept tablet */
  .concept-section {
    padding: 80px 0;
  }

  .concept-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .section-heading {
    max-width: 100%;
    margin-bottom: 38px;
  }

  /* gallery tablet */
  .gallery-section {
    padding: 80px 0;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 320px 280px 280px;
    grid-template-areas:
      "modern modern"
      "minimal relax"
      "side side";
    gap: 20px;
  }

  .gallery-card,
  .gallery-card.large,
  .gallery-card.wide {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-card.large {
    grid-area: modern;
  }

  .gallery-card:nth-child(2) {
    grid-area: minimal;
  }

  .gallery-card:nth-child(3) {
    grid-area: relax;
  }

  .gallery-card.wide {
    grid-area: side;
  }

  .pricing-section {
    padding: 80px 0;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pricing-card {
    min-height: auto;
  }
}

/* MOBILE */
@media (max-width: 560px) {
  .hero {
    padding: 0 22px 42px;
  }

  .brand-icon {
    width: 42px;
    height: 52px;
    font-size: 2.3rem;
  }

  .brand-text h1 {
    font-size: 1.9rem;
  }

  .brand-text p {
    font-size: 1rem;
  }

  .hero-content {
    margin-top: 48px;
    padding-bottom: 250px;
  }

  .eyebrow {
    letter-spacing: 3px;
    font-size: 0.78rem;
    margin-bottom: 22px;
  }

  .hero-content h2 {
    font-size: clamp(3.1rem, 16vw, 4.7rem);
    line-height: 0.96;
  }

  .hero-content p {
    margin-top: 24px;
    line-height: 1.75;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    margin-top: 34px;
  }

  .btn,
  .btn-outline {
    width: 100%;
    min-width: unset;
  }

  .hero-features {
    margin-top: -190px;
  }

  .feature-item {
    width: 100%;
  }

  .hero-card {
    flex-direction: column;
    align-items: flex-start;
  }

  /* concept mobile */
  .concept-section {
    padding: 64px 0 70px;
  }

  .section-container {
    width: calc(100% - 36px);
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .section-label {
    margin-bottom: 14px;
    font-size: 0.72rem;
    letter-spacing: 3px;
  }

  .section-heading h2 {
    font-size: 2.35rem;
    line-height: 1.12;
    letter-spacing: -1px;
    margin-bottom: 16px;
  }

  .section-heading p {
    font-size: 0.92rem;
    line-height: 1.75;
  }

  .concept-grid {
    gap: 16px;
  }

  .concept-card {
    min-height: auto;
    padding: 24px;
    border-radius: 22px;
  }

  .concept-number {
    width: 48px;
    height: 48px;
    border-radius: 15px;
    margin-bottom: 24px;
    font-size: 0.86rem;
  }

  .concept-card h3 {
    font-size: 1.18rem;
    margin-bottom: 12px;
  }

  .concept-card p {
    font-size: 0.88rem;
    line-height: 1.7;
  }

  /* gallery mobile */
  .gallery-section {
    padding: 64px 0 70px;
  }

  .gallery-heading {
    margin-bottom: 30px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas:
      "modern"
      "minimal"
      "relax"
      "side";
    gap: 16px;
  }

  .gallery-card,
  .gallery-card.large,
  .gallery-card.wide {
    min-height: 260px;
    border-radius: 22px;
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-card.large {
    min-height: 360px;
  }

  .gallery-overlay {
    left: 22px;
    right: 22px;
    bottom: 22px;
  }

  .gallery-overlay h3 {
    font-size: 1.22rem;
  }

  .gallery-card.large .gallery-overlay h3 {
    font-size: 2rem;
  }

  .gallery-overlay p {
    font-size: 0.86rem;
  }

  .service-section {
    padding: 64px 0 70px;
    }

    .service-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    }

    .service-card {
    min-height: auto;
    padding: 24px;
    border-radius: 22px;
    }

    .service-icon {
    width: 48px;
    height: 48px;
    border-radius: 15px;
    margin-bottom: 24px;
    font-size: 0.86rem;
    }

    .service-card h3 {
    font-size: 1.16rem;
    }

    .service-card p {
    font-size: 0.88rem;
    line-height: 1.7;
    }

    .service-card li {
    font-size: 0.86rem;
    }

    .pricing-section {
  padding: 64px 0 70px;
    }

    .pricing-card {
      padding: 24px;
      border-radius: 22px;
    }

    .pricing-card h3 {
      font-size: 1.22rem;
    }

    .price strong {
      font-size: 2.8rem;
    }

    .pricing-card p,
    .pricing-card li,
    .pricing-note {
      font-size: 0.88rem;
    }

    .pricing-btn {
      width: 100%;
    }
}

/* FIX LAYANAN - TABLET */
@media (max-width: 900px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .service-card {
    min-height: auto;
  }
}

/* FIX LAYANAN - HP */
@media (max-width: 700px) {
  .service-grid {
    grid-template-columns: 1fr !important;
    gap: 18px;
  }

  .service-card {
    width: 100%;
    min-height: auto;
    padding: 26px;
    border-radius: 24px;
  }

  .service-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 22px;
    border-radius: 16px;
  }

  .service-card h3 {
    font-size: 1.35rem;
    line-height: 1.25;
    margin-bottom: 14px;
  }

  .service-card p {
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 20px;
  }

  .service-card ul {
    gap: 10px;
  }

  .service-card li {
    font-size: 0.9rem;
    line-height: 1.55;
  }
}

/* FIX TENTANG KAMI - TABLET */
@media (max-width: 980px) {
  .about-section {
    padding: 80px 0;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .about-visual {
    min-height: 420px;
  }

  .about-visual img {
    min-height: 420px;
  }
}

/* FIX TENTANG KAMI - HP */
@media (max-width: 560px) {
  .about-section {
    padding: 64px 0 70px;
  }

  .about-container {
    gap: 34px;
  }

  .about-visual {
    min-height: 360px;
    border-radius: 24px;
  }

  .about-visual img {
    min-height: 360px;
  }

  .about-badge-card {
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 18px;
    border-radius: 20px;
  }

  .about-badge-card span {
    width: 48px;
    height: 48px;
    border-radius: 15px;
  }

  .about-badge-card p {
    font-size: 0.86rem;
  }

  .about-content h2 {
    font-size: 2.35rem;
    line-height: 1.12;
    letter-spacing: -1px;
    margin-bottom: 18px;
  }

  .about-content > p {
    font-size: 0.92rem;
    line-height: 1.75;
  }

  .about-points {
    gap: 14px;
    margin-top: 26px;
  }

  .about-point {
    grid-template-columns: 1fr;
    padding: 20px;
    border-radius: 22px;
  }

  .about-point:hover {
    transform: none;
  }
}

/* FIX KONTAK & FOOTER - TABLET */
@media (max-width: 980px) {
  .contact-section {
    padding: 80px 0;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 42px;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-brand {
    justify-content: center;
  }

  .footer-links {
    justify-content: center;
  }
}

/* FIX KONTAK & FOOTER - HP */
@media (max-width: 560px) {
  .contact-section {
    padding: 64px 0 70px;
  }

  .contact-container {
    padding: 28px;
    border-radius: 28px;
  }

  .contact-content h2 {
    font-size: 2.45rem;
    line-height: 1.12;
    letter-spacing: -1px;
  }

  .contact-content p {
    font-size: 0.92rem;
    line-height: 1.75;
  }

  .contact-actions {
    flex-direction: column;
    gap: 14px;
    margin-top: 30px;
  }

  .btn-contact-primary,
  .btn-contact-outline {
    width: 100%;
    min-height: 56px;
  }

  .contact-card {
    padding: 24px;
    border-radius: 24px;
  }

  .contact-card-icon {
    width: 54px;
    height: 54px;
    font-size: 2.5rem;
    margin-bottom: 22px;
  }

  .contact-card h3 {
    font-size: 1.25rem;
  }

  .contact-list p {
    font-size: 0.9rem;
  }

  .footer-container {
    padding: 30px 0 24px;
  }

  .footer-links {
    gap: 14px 18px;
  }

  .footer-links a {
    font-size: 0.84rem;
  }
}

/* =========================
   ANIMASI HALUS WEBSITE
========================= */

/* Hero load animation */
.navbar {
  animation: navDrop 0.8s ease forwards;
}

.hero-content {
  opacity: 0;
  animation: heroTextIn 1s ease 0.25s forwards;
}

.hero-features {
  opacity: 0;
  animation: heroBottomIn 1s ease 0.65s forwards;
}

.hero-card {
  opacity: 0;
  animation: heroCardIn 1s ease 0.85s forwards;
}

@keyframes navDrop {
  from {
    opacity: 0;
    translate: 0 -24px;
  }
  to {
    opacity: 1;
    translate: 0 0;
  }
}

@keyframes heroTextIn {
  from {
    opacity: 0;
    translate: -34px 0;
  }
  to {
    opacity: 1;
    translate: 0 0;
  }
}

@keyframes heroBottomIn {
  from {
    opacity: 0;
    translate: 0 28px;
  }
  to {
    opacity: 1;
    translate: 0 0;
  }
}

@keyframes heroCardIn {
  from {
    opacity: 0;
    translate: 34px 0;
  }
  to {
    opacity: 1;
    translate: 0 0;
  }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  translate: 0 42px;
  transition:
    opacity 0.75s ease,
    translate 0.75s ease;
  transition-delay: var(--delay, 0ms);
}

.reveal-left {
  translate: -46px 0;
}

.reveal-right {
  translate: 46px 0;
}

.reveal.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible {
  opacity: 1;
  translate: 0 0;
}

/* Gambar galeri terasa lebih hidup */
.gallery-card img,
.about-visual img {
  scale: 1.02;
}

.gallery-card.is-visible img,
.about-visual.is-visible img {
  scale: 1;
}

/* Button lebih terasa hidup */
.btn,
.nav-wa,
.btn-contact-primary,
.btn-contact-outline {
  position: relative;
  overflow: hidden;
}

.btn::after,
.nav-wa::after,
.btn-contact-primary::after,
.btn-contact-outline::after {
  content: "";
  position: absolute;
  top: 0;
  left: -90%;
  width: 55%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.28),
    transparent
  );
  transform: skewX(-20deg);
  transition: 0.55s ease;
}

.btn:hover::after,
.nav-wa:hover::after,
.btn-contact-primary:hover::after,
.btn-contact-outline:hover::after {
  left: 130%;
}

/* Untuk user yang mengurangi animasi di device */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .reveal,
  .reveal-left,
  .reveal-right {
    opacity: 1;
    translate: 0 0;
  }
}

/* =========================================================
   ANIMASI HALUS - DESAIN TAMAN
========================================================= */

/* hero load */
.navbar {
  animation: navDrop 0.8s ease forwards;
}

.hero-content {
  opacity: 0;
  animation: heroFadeLeft 1s ease 0.25s forwards;
}

.hero-features {
  opacity: 0;
  animation: heroFadeUp 1s ease 0.65s forwards;
}

.hero-card {
  opacity: 0;
  animation: heroFadeRight 1s ease 0.85s forwards;
}

@keyframes navDrop {
  from {
    opacity: 0;
    transform: translateY(-22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroFadeLeft {
  from {
    opacity: 0;
    transform: translateX(-34px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes heroFadeRight {
  from {
    opacity: 0;
    transform: translateX(34px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(42px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
  transition-delay: var(--delay, 0ms);
}

.reveal-left {
  transform: translateX(-46px);
}

.reveal-right {
  transform: translateX(46px);
}

.reveal.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* hover lebih hidup */
.concept-card,
.gallery-card,
.service-card,
.pricing-card,
.about-point,
.contact-card {
  will-change: transform;
}

/* floating WA napas pelan */
.floating-wa {
  animation: waPulse 2.8s ease-in-out infinite;
}

@keyframes waPulse {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 18px 45px rgba(12, 143, 81, 0.36);
  }

  50% {
    transform: translateY(-4px);
    box-shadow: 0 24px 58px rgba(12, 143, 81, 0.48);
  }
}

.floating-wa:hover {
  animation-play-state: paused;
}

/* efek kilau tombol */
.btn,
.nav-wa,
.pricing-btn,
.btn-contact-primary,
.btn-contact-outline,
.btn-wa {
  position: relative;
  overflow: hidden;
}

.btn::after,
.nav-wa::after,
.pricing-btn::after,
.btn-contact-primary::after,
.btn-contact-outline::after,
.btn-wa::after {
  content: "";
  position: absolute;
  top: 0;
  left: -85%;
  width: 55%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.28),
    transparent
  );
  transform: skewX(-20deg);
  transition: 0.55s ease;
}

.btn:hover::after,
.nav-wa:hover::after,
.pricing-btn:hover::after,
.btn-contact-primary:hover::after,
.btn-contact-outline:hover::after,
.btn-wa:hover::after {
  left: 130%;
}

/* hormati device yang mematikan animasi */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .reveal,
  .reveal-left,
  .reveal-right {
    opacity: 1;
    transform: none;
  }
}

/* Patch integrasi Lorong 02 */
.brand-logo-shell,
.footer-logo-shell{
  overflow:hidden;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.22);
  background:rgba(255,255,255,.10);
}
.brand-logo-shell img,
.footer-logo-shell img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.brand-logo-shell{transform:none;}
