:root {
  --green-dark: #0b2f2a;
  --green-main: #0f4a3c;
  --green-soft: #136d5a;
  --gold: #d4af37;
  --white: #ffffff;
  --gray-soft: #f4f7f6;
  --text-dark: #1e1e1e;
}
body {
  font-family: 'Inter', 'Helvetica Neue', sans-serif;
  background: var(--gray-soft);
  color: var(--text-dark);
  line-height: 1.7;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}
.contact-hero {
  background: linear-gradient(180deg, var(--green-dark), var(--green-main));
  padding: 140px 0 120px;
  color: var(--white);
}

.contact-hero h1 {
  font-size: 52px;
  font-weight: 600;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
}

.contact-hero p {
  max-width: 650px;
  font-size: 17px;
  opacity: 0.9;
}

.contact-hero .breadcrumb {
  margin-top: 30px;
  font-size: 13px;
  opacity: 0.7;
}

.contact-hero .breadcrumb a {
  color: var(--gold);
  text-decoration: none;
}
.contact-luxury {
  background: #fff;
  padding: 80px 0;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.contact-card {
  border: 1px solid #e6e6e6;
  padding: 35px;
  border-radius: 14px;
  background: #fff;
  transition: all 0.35s ease;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px rgba(0,0,0,.08);
}

.contact-label {
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green-soft);
}

.contact-card h3 {
  margin-top: 12px;
  font-size: 22px;
  font-weight: 600;
}
.whatsapp-card {
  border: 1px solid rgba(37, 211, 102, 0.35);
  background: linear-gradient(180deg, #f6fffb, #ffffff);
}

.wa-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 600;
  color: #25D366;
  text-decoration: none;
  margin-top: 10px;
}
.contact-wide {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.contact-wide p {
  font-size: 17px;
  font-weight: 500;
}
.contact-map iframe {
  width: 100%;
  height: 450px;
  border: none;
  filter: grayscale(20%) contrast(1.05);
}
.contact-form-section {
  background: var(--gray-soft);
  padding: 90px 0;
}

.form-box {
  background: #fff;
  padding: 60px;
  border-radius: 18px;
  max-width: 900px;
  margin: auto;
  box-shadow: 0 30px 70px rgba(0,0,0,.08);
}

.form-box h2 {
  font-size: 32px;
  font-weight: 600;
}

.form-box p {
  margin-bottom: 35px;
  opacity: 0.8;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.form-box input,
.form-box textarea {
  width: 100%;
  padding: 16px 18px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 15px;
}

.form-box textarea {
  min-height: 150px;
  margin-top: 25px;
}

.form-box button {
  margin-top: 30px;
  padding: 16px 40px;
  background: linear-gradient(135deg, var(--gold), #f1d27a);
  border: none;
  border-radius: 40px;
  font-weight: 600;
  cursor: pointer;
}
footer {
  background: linear-gradient(180deg, #0a1f1b, #041412);
  color: #cfd8d6;
  padding: 90px 0 50px;
}

footer h4 {
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

footer a {
  color: #cfd8d6;
  text-decoration: none;
  opacity: 0.8;
}

footer a:hover {
  opacity: 1;
  color: var(--gold);
}
.contact-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--green-soft);
}

.icon {
  width: 18px;
  height: 18px;
  stroke-width: 1.6;
  fill: none;
  stroke: currentColor;
}

.icon.whatsapp {
  fill: #25D366;
  stroke: none;
}

.contact-label.wa {
  color: #25D366;
}
.contact-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: -80px;
}

.contact-card {
  background: #fff;
  border-radius: 18px;
  padding: 26px 28px;
  box-shadow: 0 20px 60px rgba(0,0,0,.06);
  transition: all .4s ease;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 80px rgba(0,0,0,.1);
}

.contact-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #0f766e;
  margin-bottom: 10px;
}

/* ICON BASE */
.icon {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  transition: transform .4s ease, filter .4s ease;
}

/* ICON HOVER */
.contact-card:hover .icon {
  transform: scale(1.15) rotate(-6deg);
  filter: drop-shadow(0 0 6px rgba(15,118,110,.35));
}

/* WHATSAPP SPECIAL */
.whatsapp-card {
  border: 1px solid rgba(37,211,102,.3);
}

.icon.whatsapp {
  fill: #25D366;
  stroke: none;
}

.contact-label.wa {
  color: #25D366;
}

.whatsapp-card:hover .icon.whatsapp {
  filter: drop-shadow(0 0 10px rgba(37,211,102,.6));
  transform: scale(1.2);
}

.wa-link {
  color: #25D366;
  font-weight: 600;
  text-decoration: none;
}


.icon {
  width: 20px;
  height: 20px;
  display: inline-block;
  vertical-align: middle;
}

.contact-label {
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 1.4px;
}

.contact-card:hover .icon {
  transform: scale(1.12);
  transition: .35s ease;
}

.whatsapp-card:hover .icon.whatsapp {
  filter: drop-shadow(0 0 10px rgba(37,211,102,.6));
}
.contact-icon {
  width: 34px;
  height: 34px;
  margin-bottom: 12px;

  /* warna hijau premium */
  filter: invert(24%) sepia(36%) saturate(600%) hue-rotate(115deg);
}

.contact-box.active .contact-icon {
  filter: invert(63%) sepia(90%) saturate(450%) hue-rotate(90deg);
}
.contact-box:hover .contact-icon {
  transform: scale(1.1);
  transition: .3s ease;
}
.contact-info {
  background: linear-gradient(180deg, #0f3f33, #134b3d);
  padding: 80px 0;
}

.contact-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.contact-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0,0,0,.08);
  transition: .35s ease;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0,0,0,.12);
}

.contact-card h4 {
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 8px;
  color: #0f3f33;
}

.contact-card p {
  font-size: 18px;
  font-weight: 600;
  color: #000;
}

.icon-wrap {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 63, 51, 0.08);
}

.icon-wrap img {
  width: 28px;
  height: 28px;
  filter: invert(20%) sepia(30%) saturate(600%) hue-rotate(110deg);
}

/* CARD AKTIF (JAKARTA) */
.contact-card.highlight {
  border: 1px solid #2ecc71;
}

.contact-card.highlight .icon-wrap {
  background: #2ecc71;
}

.contact-card.highlight img {
  filter: brightness(0) invert(1);
}
/* ===== GLOSSY LUXURY MODE ===== */

.contact-info {
  background:
    radial-gradient(circle at top, rgba(255,255,255,.08), transparent 60%),
    linear-gradient(180deg, #0d3a30, #082720);
}

/* CARD */
.contact-card {
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(6px);
  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,.92),
      rgba(255,255,255,.85)
    );
  border: 1px solid rgba(255,255,255,.35);
}

/* glossy light reflection */
.contact-card::before {
  content: "";
  position: absolute;
  top: -60%;
  left: -60%;
  width: 220%;
  height: 220%;
  background: linear-gradient(
    120deg,
    transparent 40%,
    rgba(255,255,255,.18),
    transparent 60%
  );
  transform: rotate(8deg);
  transition: .8s ease;
}

/* hover shine movement */
.contact-card:hover::before {
  top: -40%;
  left: -40%;
}

/* smoother premium hover */
.contact-card:hover {
  transform: translateY(-8px) scale(1.015);
}

/* ICON CONTAINER */
.icon-wrap {
  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,.9),
      rgba(200,200,200,.2)
    );
  box-shadow:
    inset 0 2px 6px rgba(255,255,255,.8),
    inset 0 -3px 6px rgba(0,0,0,.08),
    0 10px 25px rgba(0,0,0,.15);
}

/* ICON ITSELF */
.icon-wrap img {
  transition: .4s ease;
}

/* subtle icon glow */
.contact-card:hover .icon-wrap img {
  transform: scale(1.08);
}

/* JAKARTA – EXECUTIVE HIGHLIGHT */
.contact-card.highlight {
  background:
    linear-gradient(
      145deg,
      #ffffff,
      #f4fff8
    );
  border: 1px solid rgba(46, 204, 113, .6);
}

.contact-card.highlight::before {
  background: linear-gradient(
    120deg,
    transparent 35%,
    rgba(46,204,113,.25),
    transparent 65%
  );
}

.contact-card.highlight .icon-wrap {
  background:
    radial-gradient(circle at top, #3cff92, #1e9e5c);
  box-shadow:
    inset 0 2px 8px rgba(255,255,255,.6),
    0 12px 30px rgba(46,204,113,.45);
}
/* clickable card */
.wa-card {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

/* hover feedback */
.wa-card:hover {
  box-shadow:
    0 20px 45px rgba(46,204,113,.45),
    inset 0 0 0 1px rgba(255,255,255,.4);
}
/* ===== LUXURY STAGGERED REVEAL ===== */
.contact-card {
  opacity: 0;
  transform: translateY(40px);
  filter: blur(6px);
  transition:
    opacity .9s cubic-bezier(.22,.61,.36,1),
    transform .9s cubic-bezier(.22,.61,.36,1),
    filter .9s cubic-bezier(.22,.61,.36,1);
}

/* active state */
.contact-card.reveal {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
/* ===== CONTACT ICON REAL SVG ===== */
.contact-icon {
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  filter: brightness(0) saturate(100%) invert(27%) sepia(17%)
          saturate(900%) hue-rotate(120deg) brightness(95%);
}

/* WhatsApp special */
.wa-card .contact-icon {
  filter: none;
}

/* clickable card */
.contact-card {
  text-decoration: none;
  color: inherit;
}

/* ===== LUXURY STAGGERED REVEAL ===== */
.contact-card {
  opacity: 0;
  transform: translateY(40px);
  filter: blur(6px);
  transition:
    opacity .9s cubic-bezier(.22,.61,.36,1),
    transform .9s cubic-bezier(.22,.61,.36,1),
    filter .9s cubic-bezier(.22,.61,.36,1);
}

.contact-card.reveal {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* hover glossy */
.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,.08);
}
/* FORCE HERO ALWAYS VISIBLE */
.contact-hero,
.contact-hero * {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
}
/* ===============================
   CONTACT CARDS – LUXURY GLOSSY
================================ */

.contact-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: -90px;
  position: relative;
  z-index: 3;
}

.contact-card {
  background: linear-gradient(180deg, #ffffff, #f7f9f8);
  border-radius: 18px;
  padding: 26px 28px;
  box-shadow:
    0 20px 50px rgba(0,0,0,.08),
    inset 0 1px 0 rgba(255,255,255,.8);
  text-decoration: none;
  color: #0c2f2a;
  transition: all .6s cubic-bezier(.22,.61,.36,1);
}

/* WA highlight */
.contact-card.whatsapp {
  border: 1px solid rgba(39,215,109,.35);
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(0,0,0,.12);
}

/* Label */
.contact-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #0f6a5f;
  margin-bottom: 10px;
}

/* ICON REAL SVG */
.contact-label .icon {
  width: 20px;
  height: 20px;
  filter: brightness(0) saturate(100%)
          invert(27%) sepia(21%) saturate(1110%)
          hue-rotate(125deg) brightness(90%) contrast(90%);
  transition: transform .6s ease, filter .6s ease;
}

/* WA icon glow */
.whatsapp .icon {
  filter: none;
}

/* Hover icon glossy */
.contact-card:hover .icon {
  transform: scale(1.15);
}

/* Text */
.contact-card h3,
.contact-card p {
  font-size: 20px;
  font-weight: 600;
}

/* ===============================
   STAGGERED LUXURY REVEAL
================================ */

.reveal-item {
  opacity: 0;
  transform: translateY(40px);
  filter: blur(6px);
}

.reveal-item.show {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  transition:
    opacity 1.2s ease,
    transform 1.2s cubic-bezier(.22,.61,.36,1),
    filter 1.2s ease;
}

/* HERO SAFETY LOCK */
.contact-hero,
.contact-hero * {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
}
/* ================= HERO CONTACT ================= */
.hero-contact {
  background: linear-gradient(135deg, #063b33, #0b5c4f);
  padding: 140px 0 120px;
  text-align: center;
  color: #fff;
}

.hero-title {
  font-size: 52px;
  font-weight: 700;
  letter-spacing: 1px;
}

.hero-subtitle {
  max-width: 640px;
  margin: 16px auto 0;
  font-size: 17px;
  opacity: .85;
}

/* ================= CONTACT CARDS ================= */
.contact-luxury {
  margin-top: -70px;
  position: relative;
  z-index: 5;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.contact-card {
  background: linear-gradient(145deg, #ffffff, #f3f7f5);
  border-radius: 18px;
  padding: 28px;
  box-shadow:
    0 20px 40px rgba(0,0,0,.08),
    inset 0 1px 0 rgba(255,255,255,.9);
  transition: all .4s ease;
  text-decoration: none;
  color: inherit;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 30px 60px rgba(0,0,0,.12);
}

.contact-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #0b5c4f;
}

.icon {
  width: 20px;
  filter: invert(28%) sepia(24%) saturate(600%) hue-rotate(120deg);
}

.whatsapp:hover {
  box-shadow: 0 0 0 2px #25D366 inset;
}

/* ================= MAP ================= */
.contact-map iframe {
  width: 100%;
  height: 420px;
  border: none;
}

/* ================= FORM ================= */
.form-box {
  background: #fff;
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 30px 60px rgba(0,0,0,.08);
}
