:root {
  --accent: #081126;      /* navy gelap (judul dll) */
  --gold: #d4af37;        /* aksen emas */
  --bg: #f7f8fa;          /* background light */
  --muted: #55606a;       /* teks abu2 light */
  --text: #0a192f;        /* teks utama */
  --card-bg: #ffffff;     /* card putih */
  --container: 1100px;
  --radius: 12px;
}

/* versi dark mode */
body.dark-mode {
  --accent: #0a192f;      /* dark navy background */
  --gold: #f5c542;        /* emas lebih terang */
  --bg: #0a192f;          /* background utama */
  --muted: #8892b0;       /* teks abu2 dark */
  --text: #ffffff;        /* teks putih */
  --card-bg: #1e1e1e;     /* card gelap */
}

/* Reset & Global */
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "Open Sans", system-ui, Arial;
  background: var(--bg);
  color: var(--accent);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }

/* Watermark */
.watermark {
  position: fixed;
  inset: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
  opacity: .06;
}
.watermark-svg {
  width: 420px;
  height: 420px;
  color: var(--accent);
}

/* Container */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* Navbar */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(8,17,38,0.05);
  z-index: 60;
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
}
.nav-logo {
  height: 64px;
  width: auto;
}

/* Nav Links (hidden in hamburger by default) */
.links {
  display: none;
  flex-direction: column;
  position: fixed;         
  top: 60px;                /* di bawah navbar */
  right: 16px;              /* pojok kanan */
  width: 160px;             /* lebar kecil */
  max-height: calc(100vh - 90px); 
  overflow-y: auto;         
  background: #fff;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 12px;
  padding: 10px;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  z-index: 2000;
}
.links.open { display: flex; }
.nav-link {
  display: inline-block;
  color: #000;
  background: #fff;
  padding: 8px 14px;
  border-radius: 10px;
  border: 1px solid rgba(8,17,38,0.06);
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(0,0,0,0.03);
  transition: all .22s ease;
}
.nav-link:hover {
  background: var(--gold);
  color: #111;
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

/* Hero */
.hero {
  background: linear-gradient(135deg, #0a192f, #122039 60%, rgba(212,175,55,0.05));
  color: #fff;
  padding: 120px 0 60px;
  overflow: hidden;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 48px;
  align-items: center;
}
.hero-text { text-align: left; }
.name {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.6rem;
  margin: 0 0 8px;
}
.subtitle {
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 14px;
}
.lead {
  font-size: 1.05rem;
  color: #e6eef7;
  margin-bottom: 12px;
}
.desc {
  color: #dbe8f5;
  max-width: 680px;
}
.hero-actions { margin-top: 18px; }
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: #081126;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 26px rgba(8,17,38,0.12);
  transition: transform 0.25s ease;
}
.btn-primary:hover { transform: translateY(-4px); }
.hero-photo { justify-self: end; }
.profile-img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 18px 50px rgba(2,6,23,0.45);
  border: 6px solid rgba(255,255,255,0.06);
  object-fit: cover;
}

/* Section */
.section { padding: 64px 0; }
.section.alt { background: transparent; }
.container h2 {
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  margin: 0;
}
.accent-line {
  display: block;
  width: 72px;
  height: 3px;
  background: var(--gold);
  margin: 12px auto 28px;
  border-radius: 4px;
}

/* About */
.about-text p {
  max-width: 1000px;
  margin: 10px auto;
  color: var(--muted);
  text-align: justify;
  line-height: 1.7;
}


.services-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:18px;margin-top:18px}
.service-card{background:#fff;border-radius:12px;padding:16px;border:1px solid rgba(8,17,38,0.04);box-shadow:0 10px 30px rgba(8,17,38,0.04)}
.service-card summary{list-style:none;cursor:pointer;font-weight:700;padding:6px 2px}
.service-card[open]{border-color:var(--gold);box-shadow:0 18px 40px rgba(8,17,38,0.06)}
.service-body{color:var(--muted);padding-top:8px;line-height:1.55}


.portfolio-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:20px;margin-top:18px}
.portfolio-card{background:linear-gradient(180deg,#fff,#fbfbfb);border-radius:12px;padding:14px;border:1px solid rgba(8,17,38,0.04);box-shadow:0 10px 24px rgba(8,17,38,0.04)}
.portfolio-thumb{height:160px;overflow:hidden;border-radius:8px;margin-bottom:12px}
.portfolio-thumb img{width:100%;height:100%;object-fit:cover}


.contact-intro {
  text-align: center;
  font-size: 1.25rem;
  font-family: 'Montserrat', serif;
  font-style: italic;
  color: var(--accent);
  max-width: 850px;
  margin: 0 auto 50px;
  line-height: 1.8;
  position: relative;
  padding: 0 20px;
}

.contact-intro::before,
.contact-intro::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 15px auto;
  border-radius: 2px;
}


body.dark-mode .contact-intro {
  color: #f5f5f5;
}

.contact-left .contact-card{background:#fff;padding:18px;border-radius:12px;border:1px solid rgba(8,17,38,0.04);box-shadow:0 12px 28px rgba(8,17,38,0.04)}
.contact-left p{margin:10px 0;color:var(--muted)}
.contact-left .consultation{margin-top:18px}
.contact-left .consultation h4{margin:0 0 8px 0}
.contact-left ul{padding-left:18px;color:var(--muted);line-height:1.6}


.contact-form{background:#fff;padding:18px;border-radius:12px;border:1px solid rgba(8,17,38,0.04);box-shadow:0 12px 28px rgba(8,17,38,0.04)}
.contact-form label{display:block;margin-bottom:10px;font-weight:600;color:var(--accent)}
.contact-form input,.contact-form textarea{width:100%;padding:12px;border:1px solid #e6e9ef;border-radius:8px;margin-bottom:12px;font-family:inherit}
.btn-submit{background:var(--accent);color:var(--gold);border:none;padding:12px 16px;border-radius:10px;font-weight:700;cursor:pointer}
.btn-submit:hover{background:var(--gold);color:var(--accent)}


.footer{padding:22px 0;text-align:center;color:#fff;background:linear-gradient(90deg,#081126,#000);margin-top:24px}


.fade-up{opacity:0;transform:translateY(22px);transition:all .72s cubic-bezier(.2,.9,.3,1)}
.fade-up.show{opacity:1;transform:none}


@media(max-width:1100px){
  .hero-grid{grid-template-columns:1fr 420px}
}

.fade {
  opacity:0;
  transform:translateY(30px);
  transition: all 1s ease;
}
.fade.show {
  opacity:1;
  transform:translateY(0);
}

.card {
  background:#fff;
  padding:24px;
  border-radius:14px;
  box-shadow:0 6px 20px rgba(0,0,0,.06);
  transition: all .4s ease;
  position:relative;
  overflow:hidden;
}
.card:hover {
  transform:translateY(-8px);
  box-shadow:0 12px 30px rgba(0,0,0,.15);
  border:1px solid var(--gold);
}
.card:hover::after {
  content:"";
  position:absolute;
  top:0;left:0;right:0;bottom:0;
  background:rgba(212,175,55,0.05);
  pointer-events:none;
}


.section.about, .footer {
  position:relative;
}
.section.about::before,
.footer::before {
  content:"";
  background:url('scales.png') no-repeat center;
  background-size:300px;
  opacity:0.05;
  position:absolute;
  top:0;left:0;right:0;bottom:0;
  z-index:0;
}
.section.about .container,
.footer p {
  position:relative;
  z-index:1;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 200;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 12px 14px;
  background: linear-gradient(180deg, var(--gold), #c79e2b);
  color: #081126;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(8,17,38,0.18);
  text-decoration: none;
  font-weight:700;
  font-family: 'Montserrat', sans-serif;
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
  opacity: 0.98;
}

.whatsapp-float .wa-text {
  display:inline-block;
  font-size: 14px;
  line-height: 1;
  color: #081126;
}

.whatsapp-float svg { width: 20px; height: 20px; display:block; }

.whatsapp-float:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(8,17,38,0.22);
}

@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 1; }
  70% { transform: scale(1.06); opacity: .95; }
  100% { transform: scale(1); opacity: 1; }
}
.whatsapp-float { animation: wa-pulse 4s ease-in-out infinite; }

@media (max-width: 520px) {
  .whatsapp-float { padding: 10px; right: 14px; bottom: 14px; }
  .whatsapp-float .wa-text { display: none; }
  .whatsapp-float svg { width: 22px; height: 22px; }
}

body.dark-mode {
  background-color: #121212;
  color: #f5f5f5;
}

.dark-mode header,
.dark-mode footer {
  background: #1e1e1e;
}

.dark-toggle {
  border: none;
  background: transparent;
  font-size: 20px;
  cursor: pointer;
  margin-left: 20px;
  color: inherit;
}

.btn-consult {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(8,17,38,0.15);
  transition: all 0.25s ease;
}
.btn-consult:hover {
  background: #c79e2b;
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(8,17,38,0.25);
}


body.dark-mode {
  background-color: #121212;
  color: #f5f5f5;
}
body.dark-mode .nav {
  background: rgba(18, 18, 18, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
body.dark-mode .nav-link {
  background: #1e1e1e;
  color: #eee;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
body.dark-mode .nav-link:hover {
  background: var(--gold);
  color: #121212;
}
body.dark-mode .section {
  background: #181818;
}
body.dark-mode .service-card,
body.dark-mode .contact-form,
body.dark-mode .contact-left .contact-card {
  background: #1e1e1e;
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: #f5f5f5;
}
body.dark-mode .footer {
  background: #0d0d0d;
  color: #aaa;
}

body, .section, .service-card, .nav, .footer, .contact-form, .portfolio-card {
  transition: background 0.3s ease, color 0.3s ease, border 0.3s ease;
}

body.dark-mode .hero,
body.dark-mode .consultation,
body.dark-mode .pre-contact {
  background: #1a1a1a;
  color: #f5f5f5;
}

body.dark-mode .portfolio-card {
  background: #1e1e1e;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

body.dark-mode .btn-primary,
body.dark-mode .btn-consult,
body.dark-mode .btn-submit {
  background: var(--gold);
  color: #121212;
}
body.dark-mode .btn-primary:hover,
body.dark-mode .btn-consult:hover,
body.dark-mode .btn-submit:hover {
  background: #c79e2b;
  color: #121212;
}

body.dark-mode .contact-left .contact-card,
body.dark-mode .contact-form {
  background: #2a2a2a; 
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #f5f5f5;
}

body.dark-mode .contact-left p,
body.dark-mode .contact-left ul,
body.dark-mode .contact-left a {
  color: #ddd;
}

body.dark-mode .contact-form input,
body.dark-mode .contact-form textarea {
  background: #3a3a3a;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
}

body.dark-mode .contact-form input::placeholder,
body.dark-mode .contact-form textarea::placeholder {
  color: #aaa;
}


body.dark-mode .pre-contact .quote {
  color: #e0e0e0; 
}


.shop-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.shop-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.06);
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  min-width: 220px;
  text-align: center;
  position: relative;
}
.shop-card .tag {
  display: block;
  margin-top: 8px;
  background: #eee;
  color: #666;
  font-size: 0.85rem;
  padding: 4px 10px;
  border-radius: 8px;
}


body.dark-mode .shop-card {
  background: #1e1e1e;
  color: #f5f5f5;
  border: 1px solid rgba(255,255,255,0.08);
}
body.dark-mode .shop-card .tag {
  background: #333;
  color: #bbb;
}


.links.open {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 64px;
  right: 0;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 8px;
  padding: 12px;
  gap: 10px;
}
body.dark-mode .links.open {
  background: #1e1e1e;
  border-color: rgba(255,255,255,0.08);
}


.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
  gap: 20px;
  margin-top: 20px;
}
.testimonial-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.06);
  text-align: center;
  font-style: italic;
}
.testimonial-author {
  margin-top: 12px;
  font-weight: 700;
  font-style: normal;
  color: var(--accent);
}

body.dark-mode .testimonial-card {
  background: #1e1e1e;
  border: 1px solid rgba(255,255,255,0.08);
  color: #f5f5f5;
}


.faq-item {
  margin: 12px 0;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  padding: 10px;
  border-radius: 8px;
  background: #f2f3f5;
}
.faq-item[open] summary {
  background: var(--gold);
  color: var(--accent);
}
.faq-item p {
  padding: 10px 14px;
  color: var(--muted);
}

body.dark-mode .faq-item summary {
  background: #2a2a2a;
  color: #ddd;
}
body.dark-mode .faq-item[open] summary {
  background: var(--gold);
  color: #121212;
}


.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
  gap: 20px;
  margin-top: 20px;
}
.blog-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.06);
  text-align: left;
}
.blog-card h3 {
  font-size: 1.2rem;
  margin-top: 0;
}
.blog-card p {
  color: var(--muted);
  font-size: 0.95rem;
}
body.dark-mode .blog-card {
  background: #1e1e1e;
  border: 1px solid rgba(255,255,255,0.08);
  color: #f5f5f5;
}

body.dark-mode .nav {
  background: rgba(18, 18, 18, 0.95);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
body.dark-mode .nav-link {
  background: #1e1e1e;
  color: #eee;
  border: 1px solid rgba(255,255,255,0.08);
}
body.dark-mode .nav-link:hover {
  background: var(--gold);
  color: #121212;
}

body.dark-mode .section {
  background: #181818;
}

body.dark-mode .service-card,
body.dark-mode .portfolio-card,
body.dark-mode .shop-card,
body.dark-mode .blog-card,
body.dark-mode .testimonial-card {
  background: #1e1e1e;
  border: 1px solid rgba(255,255,255,0.08);
  color: #f5f5f5;
}

body.dark-mode .faq-item summary {
  background: #2a2a2a;
  color: #eee;
}
body.dark-mode .faq-item[open] summary {
  background: var(--gold);
  color: #121212;
}
body.dark-mode .faq-item p {
  color: #ccc;
}

body.dark-mode .contact-form,
body.dark-mode .contact-left .contact-card {
  background: #2a2a2a;
  border: 1px solid rgba(255,255,255,0.08);
  color: #f5f5f5;
}
body.dark-mode .contact-form input,
body.dark-mode .contact-form textarea {
  background: #3a3a3a;
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
}
body.dark-mode .contact-form input::placeholder,
body.dark-mode .contact-form textarea::placeholder {
  color: #aaa;
}


body.dark-mode .btn-primary,
body.dark-mode .btn-consult,
body.dark-mode .btn-submit,
body.dark-mode .lang-toggle {
  background: var(--gold);
  color: #121212;
}
body.dark-mode .btn-primary:hover,
body.dark-mode .btn-consult:hover,
body.dark-mode .btn-submit:hover,
body.dark-mode .lang-toggle:hover {
  background: #c79e2b;
  color: #121212;
}


body.dark-mode .footer {
  background: #0d0d0d;
  color: #aaa;
}
.testimonial-author {
  color: var(--gold); 
  font-weight: 600;
  display: block;
  margin-top: 12px;
}
body.dark-mode .testimonial-author {
  color: #f0f0f0; 
}

.testimonial-author {
  color: #444; 
  font-weight: 600;
  margin-top: 8px;
  font-style: normal;
}


body.dark-mode .testimonial-author {
  color: #f5f5f5; 
}

.contact-form label {
  color: var(--accent);
  font-weight: 600;
}


body.dark-mode .contact-form label {
  color: #f5f5f5; 
}


body.dark-mode .contact-form input::placeholder,
body.dark-mode .contact-form textarea::placeholder {
  color: #ccc; 
}

.lang-toggle {
  border: 1px solid var(--gold);
  background: #fff;
  color: var(--accent);
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}
.lang-toggle:hover {
  background: var(--gold);
  color: #fff;
}
body.dark-mode .lang-toggle {
  background: #1e1e1e;
  color: #eee;
  border: 1px solid rgba(255,255,255,0.2);
}
body.dark-mode .lang-toggle:hover {
  background: var(--gold);
  color: #121212;
}


body.dark-mode {
  background: #121212;
  color: #eaeaea;
}

body.dark-mode .nav,
body.dark-mode .footer {
  background: #1f1f1f;
}

body.dark-mode .card,
body.dark-mode .service-card,
body.dark-mode .testimonial-card,
body.dark-mode .portfolio-card,
body.dark-mode .shop-card,
body.dark-mode .blog-card,
body.dark-mode .faq-item {
  background: #1e1e1e;
  color: #f5f5f5;
  border-color: #333;
}


body.dark-mode label span {
  color: #f0f0f0;
}

body.dark-mode input,
body.dark-mode textarea {
  background: #2a2a2a;
  color: #fff;
  border: 1px solid #444;
}

body.dark-mode input::placeholder,
body.dark-mode textarea::placeholder {
  color: #bbb;
}

body.dark-mode .btn-primary,
body.dark-mode .btn-submit,
body.dark-mode .btn-consult {
  background: #333;
  color: #fff;
  border: 1px solid #555;
}

body.dark-mode a {
  color: #6ab0f3;
}

.consultation {
  margin-top: 1.5rem;
  padding: 1rem 1.2rem;
  border-top: 1px solid #ccc;
  font-size: 0.95rem;
  line-height: 1.6;
}

.consultation h4 {
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-color, #222);
}

.consultation ul {
  margin: 0.5rem 0 0.8rem 1.2rem;
  padding: 0;
  list-style: disc;
}

.consultation li {
  margin-bottom: 0.3rem;
}

.consultation .closing-note {
  font-style: italic;
  color: #555;
}
.container.contact-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem 1rem;
  box-sizing: border-box;
}

.container.contact-grid .contact-left,
.container.contact-grid .contact-right {
  flex: 1 1 48%;
  min-width: 320px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  padding: 2rem;
}


.container.contact-grid .contact-left {
  background-color: #eef6ff;
  color: #000;
}
body.dark-mode .container.contact-grid .contact-left {
  background-color: #1e1e1e;
  color: #fff;
}

.container.contact-grid .contact-left {
  background-color: #f9f9f9;
}
body.dark-mode .container.contact-grid .contact-right {
  background-color: #2a2a2a;
  color: #fff;
}


@media (max-width: 992px) {
  .container.contact-grid {
    flex-wrap: wrap;
  }
  .container.contact-grid .contact-left,
  .container.contact-grid .contact-right {
    flex: 1 1 100%;
    order: unset;
  }
}
.container.contact-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem 1rem;
  box-sizing: border-box;
}

.container.contact-grid .contact-left,
.container.contact-grid .contact-right {
  flex: 1 1 48%;   
  min-width: 320px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  padding: 2rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: flex-start;
  margin-top: 2rem;
}

.contact-left, .contact-right {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

body.dark-mode .contact-left,
body.dark-mode .contact-right {
  background: #1e1e1e;
  color: #f5f5f5;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
.contact-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  border-bottom: 2px solid var(--gold);
  display: inline-block;
  padding-bottom: 4px;
}
.consultation h4 {
  margin-top: 20px;
  font-size: 1.1rem;
  color: var(--gold);
}
.consultation ul {
  margin: 10px 0;
  padding-left: 20px;
}
.consultation li {
  margin-bottom: 6px;
}
.consultation .closing-note {
  margin-top: 10px;
  font-style: italic;
  color: var(--muted);
}

body.dark-mode .contact-card h3 {
  background: linear-gradient(90deg, var(--gold), #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  border-bottom-color: var(--gold);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-left, .contact-right {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .hero-photo {
    order: -1; 
    justify-self: center;
  }

  .hero-text {
    text-align: center;
  }

  .hero-text .name {
    font-size: 1.8rem;
  }

  .hero-text .subtitle {
    font-size: 1rem;
  }

  .hero-text .lead,
  .hero-text .desc {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .btn-primary {
    margin: 15px auto 0;
    display: inline-block;
  }
}

.social-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 6px 0;
}

.social-item i {
  color: var(--gold);
  font-size: 1.1rem;
}

.social-item a {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
}

.social-item a:hover {
  color: var(--gold);
}
.social-links {
  display: flex;
  flex-direction: column; 
  gap: 6px;              
  margin-top: 8px;
}

.social-item i {
  margin-right: 6px;
  color: var(--gold); 
}

.social-item a {
  text-decoration: none;
  color: inherit;
  font-weight: 600;
}

.social-item a:hover {
  color: var(--gold);
}
.social-links {
  display: flex;
  flex-direction: column;   
  gap: 6px;                 
  margin-top: 4px;
}

.social-item {
  display: flex;
  align-items: center;
  font-size: 1rem;
  color: var(--accent);     
}

.social-item i {
  margin-right: 8px;
  color: inherit;           
  font-size: 1.1rem;
}

.social-item a {
  text-decoration: none;
  color: inherit;           
  font-weight: normal;
}

.social-item a:hover {
  color: var(--gold);       
}

.social-block {
  margin-top: 6px;
}

.social-line {
  display: flex;
  align-items: center;
  margin: 3px 0;
  font-size: 1rem;
  color: var(--accent);
}

.social-line i {
  margin-right: 6px;
  font-size: 1rem;
  color: var(--accent);   
}

.social-line a {
  text-decoration: none;
  color: inherit;
  font-weight: normal;
}

.social-line a:hover {
  color: var(--gold);
}
.social-list {
  margin-top: 6px;   
}

.social-item {
  display: flex;
  align-items: center;
  gap: 6px;          
  margin: 2px 0;     
  font-size: 0.95rem;
  color: var(--accent);
}

.social-item i {
  font-size: 1rem;
  color: var(--muted);   
}

.social-item a {
  text-decoration: none;
  color: inherit;        
  font-weight: normal;
}
.social-item a:hover {
  color: var(--gold);    
}

/* === Language Toggle === */
.lang-toggle {
  order: 2;
  border: 1px solid var(--gold);
  background: #fff;
  color: var(--accent);
  padding: 6px 12px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}
.lang-toggle:hover { background: var(--gold); color: #fff; }
body.dark-mode .lang-toggle {
  background: #1e1e1e;
  color: #eee;
  border: 1px solid rgba(255,255,255,0.2);
}
body.dark-mode .lang-toggle:hover {
  background: var(--gold);
  color: #121212;
}

/* === Dark Mode Toggle === */
.dark-toggle {
  order: 3;
  border: none;
  background: transparent;
  font-size: 20px;
  cursor: pointer;
  color: inherit;
}
/* === Navbar Controls === */
.nav-controls {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 1002;
}

/* === Hamburger Button (selalu muncul) === */
.hambtn {
  order: 1;
  width: 28px;
  height: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.hambtn span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--accent);
  border-radius: 3px;
  transition: all 0.3s ease-in-out;
}

/* Hover effect → garis emas */
.hambtn:hover span {
  background: var(--gold);
}

/* Animasi jadi X pas aktif */
.hambtn.active span:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
}
.hambtn.active span:nth-child(2) {
  opacity: 0;
}
.hambtn.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px);
}

/* Dark mode → garis putih */
body.dark-mode .hambtn span {
  background: #fff;
}

/* === Hamburger Menu === */
.links {
  display: none; /* sembunyi default */
  flex-direction: column;
  position: fixed;
  top: 70px; /* pas di bawah navbar */
  right: 18px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 10px;
  padding: 14px;
  gap: 12px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.15);
  z-index: 1001;
}

/* kalau open → tampil */
.links.open {
  display: flex;
}

/* Dark mode support */
body.dark-mode .links {
  background: #1e1e1e;
  border: 1px solid rgba(255,255,255,0.1);
}
/* === Services Cards Dark Mode === */
body.dark-mode .service-card {
  background: #1e1e1e; /* abu-abu gelap */
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
  color: #eaeaea;
  transition: all 0.3s ease;
}

/* Hover efek biar elegan */
body.dark-mode .service-card:hover {
  background: linear-gradient(145deg, #242424, #1a1a1a);
  border-color: var(--gold);
  box-shadow: 0 12px 28px rgba(212, 175, 55, 0.25);
  transform: translateY(-4px);
}

/* Judul lebih kontras */
body.dark-mode .service-card summary {
  color: #fff;
}

/* Isi teks lebih soft */
body.dark-mode .service-body {
  color: #ccc;
}
/* Default: tampil logo terang */
.nav-logo img.light-logo { display: block; height: 64px; }
.nav-logo img.dark-logo { display: none; height: 64px; }

/* Kalau dark mode aktif: tampil logo gelap */
body.dark-mode .nav-logo img.light-logo { display: none; }
body.dark-mode .nav-logo img.dark-logo { display: block; }

/* === Logo Styling === */
.nav-logo img {
  height: 90px;      /* ukuran default (desktop) */
  width: auto;
  transition: height 0.25s ease; /* biar halus waktu resize */
}

/* Mobile: kecilin dikit biar gak makan tempat */
@media (max-width: 600px) {
  .nav-logo img {
    height: 60px;
  }
}
/* === Popup Menu (Hamburger Navigation) === */
.nav-menu {
  display: none;
  flex-direction: column;
  position: fixed;      
  top: 70px;             /* jarak dari bawah navbar */
  right: 18px;
  max-height: calc(100vh - 80px); /* biar sesuai tinggi layar */
  overflow-y: auto;       /* bisa discroll kalau itemnya banyak */
  min-width: 220px;
  background: rgba(20, 20, 20, 0.9); 
  backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 16px;
  padding: 16px;
  gap: 10px;
  box-shadow: 0 10px 32px rgba(0,0,0,0.4);
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 2000;
}

/* Saat menu aktif */
.nav-menu.show {
  display: flex;
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

/* Link di dalam menu */
.nav-menu .nav-link {
  background: transparent;
  color: #fff;
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}

/* Hover effect */
.nav-menu .nav-link:hover {
  background: var(--gold);
  color: #111;
  transform: translateX(6px);
}

/* === Versi Light Mode === */
body:not(.dark-mode) .nav-menu {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(0,0,0,0.08);
}

body:not(.dark-mode) .nav-menu .nav-link {
  color: #111;
}

body:not(.dark-mode) .nav-menu .nav-link:hover {
  background: var(--gold);
  color: #fff;
}
/* --- Social List Styling --- */
.social-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}

.social-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 8px;
  background: #fff;
  color: var(--accent);
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
  transition: all 0.25s ease;
}

.social-item i {
  font-size: 1.2rem;
  color: var(--gold);
}

.social-item a {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
}

.social-item:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-3px);
}

.social-item:hover i {
  color: #fff;
}

/* Dark mode tweaks */
body.dark-mode .social-item {
  background: #2a2a2a;
  color: #f5f5f5;
  border: 1px solid rgba(255,255,255,0.08);
}

body.dark-mode .social-item:hover {
  background: var(--gold);
  color: #121212;
}
/* === Compact Contact Items === */
.social-list {
  display: flex;
  flex-direction: column;
  gap: 10px; /* jarak antar item */
  margin-top: 12px;
}

.social-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--accent);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: all 0.2s ease;
}

.social-item i {
  font-size: 1rem;
  width: 22px;
  text-align: center;
}

.social-item a {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
}

.social-item:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-2px);
}

/* === Grid Contact (biar form tetap di kanan) === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

/* responsive biar tetap rapi di HP */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
/* =========================
   Contact area — overrides
   ========================= */

/* Pastikan grid contact cukup lebar seperti screenshot */
.container.contact-grid {
  max-width: var(--container); /* gunakan lebar utama */
  margin: 0 auto;
  padding: 2.2rem 1.25rem;
  display: flex;
  gap: 2.5rem;
  align-items: stretch; /* bikin dua kartu setara tinggi */
  box-sizing: border-box;
}

/* Left & right cards: tampilan kartu putih dengan shadow lembut */
.container.contact-grid .contact-left,
.container.contact-grid .contact-right {
  flex: 1 1 50%;
  min-width: 320px;
  border-radius: 14px;
  padding: 2rem;
  background: #fff;
  box-shadow: 0 18px 50px rgba(2,6,23,0.06); /* lebih halus & besar */
  border: 1px solid rgba(8,17,38,0.04);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

/* Jika dark-mode aktif, override di sini */
body.dark-mode .container.contact-grid .contact-left,
body.dark-mode .container.contact-grid .contact-right {
  background: #1f1f1f;
  color: #f5f5f5;
  border: 1px solid rgba(255,255,255,0.06);
}

/* Judul kartu kiri */
.contact-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.35rem;
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  display: inline-block;
  padding-bottom: 6px;
  border-bottom: 3px solid var(--gold);
}

/* Social list di kiri: kotak putih kecil, ikon emas */
.social-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 6px;
}
.social-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid rgba(8,17,38,0.04);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 0.97rem;
  box-shadow: 0 6px 18px rgba(2,6,23,0.04);
  transition: transform .18s ease, background .18s ease;
  color: var(--accent);
}
.social-item i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(212,175,55,0.08);
  color: var(--gold);
  font-size: 1.05rem;
  flex-shrink: 0;
}

/* hover effect */
.social-item:hover {
  transform: translateY(-4px);
  background: var(--gold);
  color: #081126;
}
.social-item:hover i { color: #081126; background: #fff; }

/* consultation block look */
.consultation {
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(8,17,38,0.04);
}
.consultation h4 { color: var(--gold); margin-bottom: 0.6rem; font-weight:700; }
.consultation ul { margin: 6px 0 0 1.1rem; color: var(--muted); line-height:1.6; }
.consultation .closing-note { margin-top: 10px; font-style: italic; color: var(--muted); }

/* Contact form (kanan) */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(8,17,38,0.04);
  box-shadow: 0 18px 48px rgba(2,6,23,0.06);
}

/* Label & inputs */
.contact-form label { color: var(--accent); font-weight:700; margin-bottom:6px; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid #e6e9ef;
  background: #fbfdff;
  font-family: inherit;
  color: var(--accent);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
  transition: box-shadow .15s ease, transform .12s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  box-shadow: 0 6px 20px rgba(8,17,38,0.08);
  transform: translateY(-2px);
  border-color: rgba(8,17,38,0.12);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #98a0a8; }

/* textarea lebih tinggi seperti screenshot */
.contact-form textarea {
  min-height: 160px;
  resize: vertical;
}

/* Tombol kirim: navy background + teks emas pill */
.btn-submit {
  width: fit-content;
  background: var(--accent); /* navy */
  color: var(--gold);
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  font-weight: 800;
  box-shadow: 0 14px 36px rgba(8,17,38,0.16);
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease;
  align-self: flex-start;
}
.btn-submit:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(8,17,38,0.22);
  background: #061024;
  color: var(--gold);
}

/* Pastikan kedua kartu selalu sama tinggi pada layar besar */
.container.contact-grid .contact-left,
.container.contact-grid .contact-right { min-height: 380px; }

/* Responsive: tumpuk di mobile */
@media (max-width: 992px) {
  .container.contact-grid {
    display: block;
    max-width: 760px;
    padding: 1.2rem;
  }
  .container.contact-grid .contact-left,
  .container.contact-grid .contact-right {
    width: 100%;
    min-height: auto;
    margin-bottom: 1rem;
  }
  .btn-submit { width: 100%; text-align: center; align-self: stretch; }
}
/* SECTION BLOG */
#blog-section {
  background: linear-gradient(180deg, #0d0d0d, #1a1a1a);
  padding: 4rem 2rem;
}

/* CARD BLOG */
.blog-card {
  background: rgba(255, 255, 255, 0.05); /* semi transparan */
  backdrop-filter: blur(8px); /* glassmorphism */
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  border-color: rgba(255, 215, 0, 0.6); /* efek glow emas */
}

/* TYPOGRAPHY */
.blog-card h3 {
  color: #fff;
  margin-bottom: 0.5rem;
}

.blog-card p {
  color: #aaa;
}

/* BUTTON */
.blog-card .btn {
  background: linear-gradient(135deg, #FFD700, #FFB400);
  color: #000;
  border-radius: 30px;
  padding: 0.6rem 1.4rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.blog-card .btn:hover {
  background: linear-gradient(135deg, #FFB400, #FFD700);
  transform: scale(1.05);
}
/* BLOG CARD — Light Mode */
body:not(.dark-mode) .blog-card {
  background: #fff;              /* putih solid */
  border: 1px solid rgba(8,17,38,0.06);
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

body:not(.dark-mode) .blog-card h3 {
  color: var(--accent);          /* navy */
  font-weight: 700;
}

body:not(.dark-mode) .blog-card p {
  color: var(--muted);           /* abu-abu elegan */
}

body:not(.dark-mode) .blog-card .btn-primary {
  background: var(--gold);
  color: var(--accent);
  font-weight: 700;
}

body:not(.dark-mode) .blog-card .btn-primary:hover {
  background: #c79e2b;
  color: #fff;
}
/* === FIX OFFSET NAVBAR === */
#home, 
#about, 
#services, 
#portfolio, 
#shop, 
#blog, 
#testimonials, 
#faq, 
#consultation, 
#contact {
  scroll-margin-top: 100px; /* sesuaikan tinggi navbar */
}

/* === PEMBATAS ANTAR SECTION (opsional) === */
section {
  border-top: 1px solid rgba(212, 175, 55, 0.2); /* garis emas samar */
  padding-top: 60px;  /* jarak isi konten dari garis */
}
.testimonial-avatar img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin-bottom: 16px;
  object-fit: cover;
  border: 3px solid var(--gold);
}

.testimonial-text {
  font-style: italic;
  color: var(--accent);
  margin-bottom: 12px;
  line-height: 1.6;
}
/* === Testimonial Dark Mode === */
body.dark-mode .testimonial-card {
  background: #1e1e1e; /* abu gelap biar beda sama background utama */
  border: 1px solid rgba(255, 255, 255, 0.1);
}

body.dark-mode .testimonial-text {
  color: #f0f0f0; /* teks terang */
}

body.dark-mode .testimonial-author {
  color: #ccc; /* abu terang */
}
/* === HAMBURGER MENU MOBILE === */
@media (max-width: 768px) {
  .links {
    width: 150px;             /* lebih kecil */
    top: 55px;                /* agak dekat navbar */
    right: 15px;              /* rapat kanan */
    max-height: 60vh;         /* biar gak full tinggi layar */
    overflow-y: auto;         /* scroll kalau itemnya kepanjangan */
    padding: 12px;
  }

  .links a {
    padding: 10px 12px;
    font-size: 12px;          /* font agak kecil */
  }
}
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: #fff;
  padding: 12px 18px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
  z-index: 999;
}

.whatsapp-float:hover {
  background: #1ebd5a;
  transform: translateY(-2px);
}

.whatsapp-float .wa-content {
  display: flex;
  align-items: center;
  gap: 8px;
}

.whatsapp-float .wa-text {
  font-size: 14px;
  line-height: 1.4;
}
#backToTop {
  display: none;
  position: fixed;
  bottom: 90px; /* dinaikin biar gak ketutup WhatsApp */
  right: 30px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: #d4af37; /* emas */
  color: white;
  cursor: pointer;
  padding: 14px;
  border-radius: 50%;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

#backToTop i {
  font-size: 18px;
}

#backToTop:hover {
  background-color: #b8912f;
  transform: scale(1.1);
}
.accent-line {
  display: block;
  width: 70px;
  height: 3px;
  margin: 0.5rem auto 2rem;
  border-radius: 3px;
  background: linear-gradient(to right, #d4af37, transparent);
}
.service-card,
.portfolio-card,
.testimonial-card,
.blog-card,
.shop-card {
  transition: all 0.3s ease;
}

.service-card:hover,
.portfolio-card:hover,
.testimonial-card:hover,
.blog-card:hover,
.shop-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}
body.dark-mode {
  background: #1a1a1a;
  color: #f0f0f0;
}

body.dark-mode h2,
body.dark-mode h3 {
  color: #fff;
}

body.dark-mode .accent-line {
  background: linear-gradient(to right, #d4af37, transparent);
}

body.dark-mode a {
  color: #d4af37;
}
#backToTop {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s;
}

#backToTop.show {
  opacity: 1;
  visibility: visible;
}
/* 1. Hover effect */
button, .btn, .nav-link {
  transition: all 0.3s ease;
}
button:hover, .btn:hover, .nav-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

/* 2. Page fade-in */
body {
  opacity: 0;
  transition: opacity 0.6s ease;
}
body.loaded {
  opacity: 1;
}

/* 4. Glassmorphism card/nav */
.glass {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.3);
}

/* 5. Back-to-top floating */
#backToTop {
  position: fixed;
  bottom: 24px;
  right: 20px;
  background: var(--accent, #0077ff);
  color: #fff;
  padding: 12px 16px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: transform 0.3s ease, opacity 0.3s ease;
  z-index: 1000;
}
#backToTop.show {
  opacity: 1;
  transform: translateY(0);
}
/* ===== HAMBURGER MENU ===== */
.links {
  position: fixed;
  top: 60px; /* sesuaikan sama tinggi navbar */
  right: 20;
  width: 170px;
  height: calc(80vh - 60px);
  background: var(--accent, #0a192f);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  padding: 20px;
  z-index: 999;
}
.links.open {
  transform: translateX(0);
}
.links a {
  color: black;
  margin: 10px 0;
  text-decoration: none;
  font-size: 1.1rem;
}
.links a:hover {
  color: var(--gold, #f5c542);
}

/* overlay */
.nav-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 998;
}
.nav-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
/* pastikan link hamburger kelihatan */
.links a,
.nav-link {
  color: #0a192f; /* pakai gelap, kontras dengan background putih */
  font-size: 1.1rem;
  font-weight: 500;
  display: block;
  margin: 12px 0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.links a:hover,
.nav-link:hover {
  color: var(--gold, #d4af37); /* biar ada efek hover */
}
.links {
  background: #0a192f; /* dark navy */
}
.links a,
.nav-link {
  color: black;
}
/* Fade-up animation */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}
/* === Hamburger Menu Fix === */
.links {
  position: fixed;
  top: 60px; /* sedikit di bawah navbar */
  right: 20;
  width: 170px;
  height: calc(80vh - 60px);
  background: #fff;
  border-left: 1px solid rgba(0,0,0,0.08);
  box-shadow: -6px 0 20px rgba(0,0,0,0.15);
  border-radius: 12px 0 0 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 2000;
  overflow-y: auto; /* biar bisa scroll kalau panjang */
}
.links.open {
  transform: translateX(0);
}
.links a {
  color: #081126;
  font-weight: 600;
  font-size: 1rem;
  padding: 10px;
  border-radius: 8px;
  transition: all 0.25s ease;
}
.links a:hover {
  background: var(--gold);
  color: #fff;
}

/* Overlay di belakang menu */
.nav-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1500;
}
.nav-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* Dark mode support */
body.dark-mode .links {
  background: #1e1e1e;
  border-left: 1px solid rgba(255,255,255,0.08);
}
body.dark-mode .links a {
  color: #eee;
}
body.dark-mode .links a:hover {
  background: var(--gold);
  color: #121212;
}
/* === Consultation Page Styling === */
.consult-options, .consult-sidebar {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.06);
}
.consult-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: 10px;
  border: 1px solid #e6e9ef;
  margin-bottom: 14px;
  transition: all 0.2s ease;
  cursor: pointer;
}
.consult-option:hover {
  background: rgba(212,175,55,0.06);
  transform: translateY(-2px);
}
.price-box {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--gold);
}

/* Dark mode version */
body.dark-mode .consult-options,
body.dark-mode .consult-sidebar {
  background: #1e1e1e;
  border: 1px solid rgba(255,255,255,0.08);
  color: #f5f5f5;
}
body.dark-mode .consult-option {
  border: 1px solid rgba(255,255,255,0.08);
}
body.dark-mode .consult-option:hover {
  background: rgba(255,255,255,0.05);
}
body.dark-mode .price-box {
  color: var(--gold);
}
/* === Consultation Page Polish === */

/* Card */
.consult-options, .consult-sidebar {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.consult-options:hover, .consult-sidebar:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.08);
}

/* Option box */
.consult-option {
  border: 1px solid #e5e8ec;
  border-radius: 12px;
  padding: 16px;
  transition: all 0.2s ease;
}
.consult-option:hover {
  border-color: var(--gold);
  background: #fffdf6;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.08);
}
.consult-option strong {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
}

/* Input & textarea */
input, textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #d8dde6;
  border-radius: 10px;
  font-size: 0.95rem;
  transition: all 0.25s ease;
}
input:focus, textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.25);
}

/* Buttons */
.btn-mail, .btn-consult, .btn-calendar {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  padding: 12px 18px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.25s ease;
}
.btn-mail {
  background: linear-gradient(135deg, var(--gold), #e5c86c);
  color: #081126;
}
.btn-mail:hover {
  background: linear-gradient(135deg, #e5c86c, var(--gold));
  transform: translateY(-2px);
}
.btn-consult {
  background: #081126;
  color: #fff;
}
.btn-consult:hover {
  background: #0d1a3a;
  transform: translateY(-2px);
}
.btn-calendar {
  background: #f5f7fa;
  color: var(--accent);
  border: 1px solid #d9dee7;
}
.btn-calendar:hover {
  background: #e9eef9;
  transform: translateY(-2px);
}

/* Section heading */
.section-heading {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 16px;
  color: var(--accent);
  border-bottom: 2px solid var(--gold);
  display: inline-block;
  padding-bottom: 4px;
}
/* === Hero Section === */
.consultation-hero { 
  padding: 140px 20px 120px; 
  text-align: center; 
  background: linear-gradient(135deg, #0a192f 0%, #1e3a5f 100%);
  color: #fff; 
  position: relative;
}
.consultation-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.05);
}
.consultation-hero h1 {
  margin: 0 0 8px; 
  font-family: 'Montserrat', sans-serif; 
  font-size: 2.2rem; 
}
.consultation-hero p {
  margin: 0; 
  color: rgba(255,255,255,0.88);
  font-size: 1rem;
}

/* === Grid Layout === */
.consultation-grid {
  max-width: 1100px; 
  margin: 40px auto; 
  display: grid; 
  grid-template-columns: 1fr 420px; 
  gap: 28px; 
  padding: 0 20px; 
  align-items: start;
}
@media(max-width:900px){
  .consultation-grid { grid-template-columns: 1fr; }
}

/* === Cards === */
.consult-options, .consult-sidebar {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.consult-options:hover, .consult-sidebar:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.08);
}

/* === Section Heading === */
.section-heading {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 18px;
  color: var(--accent);
  border-bottom: 2px solid var(--gold);
  display: inline-block;
  padding-bottom: 4px;
}

/* === Options === */
.consult-option {
  border: 1px solid #e5e8ec;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  transition: all 0.2s ease;
  margin-bottom: 12px;
}
.consult-option:hover {
  border-color: var(--gold);
  background: #fffdf6;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.08);
}
.consult-option strong {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
}
.consult-option input[type="radio"] {
  accent-color: var(--gold);
  margin-top: 4px;
}

/* === Price Box === */
.price-box {
  display: inline-block;
  background: #fff8e1;
  color: #a67c00;
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  box-shadow: inset 0 0 0 1px rgba(166,124,0,0.2);
  margin: 12px 0 18px;
}

/* === Inputs === */
input, textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d8dde6;
  border-radius: 10px;
  font-size: 0.95rem;
  transition: all 0.25s ease;
  font-family: 'Open Sans', sans-serif;
}
input:focus, textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.25);
}

/* === Buttons === */
.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.btn-mail, .btn-consult, .btn-calendar {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  padding: 12px 18px;
  border-radius: 12px;
  text-decoration: none;
  min-width: 180px;
  text-align: center;
  transition: all 0.25s ease;
}
.btn-mail {
  background: linear-gradient(135deg, var(--gold), #e5c86c);
  color: #081126;
}
.btn-mail:hover {
  background: linear-gradient(135deg, #e5c86c, var(--gold));
  transform: translateY(-2px);
}
.btn-consult {
  background: #081126;
  color: #fff;
}
.btn-consult:hover {
  background: #0d1a3a;
  transform: translateY(-2px);
}
.btn-calendar {
  background: #f5f7fa;
  color: var(--accent);
  border: 1px solid #d9dee7;
}
.btn-calendar:hover {
  background: #e9eef9;
  transform: translateY(-2px);
}

/* === Small Note / Tip === */
.small-note {
  background: #f9fafc;
  border-left: 4px solid var(--gold);
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 0.9rem;
  color: #555;
  margin-top: 16px;
}

/* === Dark Mode === */
body.dark-mode .consultation-hero {
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
  color: #f5f5f5;
}
body.dark-mode .consultation-hero::after { background: rgba(0,0,0,0.2); }
body.dark-mode .consultation-hero p { color: #ccc; }

body.dark-mode .consult-options,
body.dark-mode .consult-sidebar {
  background: #1e1e1e;
  border: 1px solid rgba(255,255,255,0.08);
  color: #f5f5f5;
}
body.dark-mode .consult-option { border: 1px solid rgba(255,255,255,0.08); }
body.dark-mode .consult-option:hover { background: rgba(255,255,255,0.04); }

body.dark-mode input,
body.dark-mode textarea {
  background: #121212;
  border: 1px solid rgba(255,255,255,0.1);
  color: #f5f5f5;
}
body.dark-mode input::placeholder,
body.dark-mode textarea::placeholder { color: #888; }

body.dark-mode .price-box {
  background: #332b00;
  color: #f5f5f5;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.15);
}
body.dark-mode .small-note {
  background: #2a2a2a;
  color: #aaa;
}

body.dark-mode .btn-mail {
  background: linear-gradient(135deg, #d4af37, #e5c86c);
  color: #121212;
}
body.dark-mode .btn-consult {
  background: #f5f5f5;
  color: #121212;
}
body.dark-mode .btn-consult:hover {
  background: #e2e2e2;
}
body.dark-mode .btn-calendar {
  background: #2a2a2a;
  color: #f5f5f5;
  border: 1px solid rgba(255,255,255,0.08);
}
/* Tombol row rapi */
.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

/* Semua tombol */
.btn-mail, .btn-consult, .btn-calendar {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 18px;
  border-radius: 12px;
  text-decoration: none;
  text-align: center;
  min-width: 180px;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Tombol Email (Gold) */
.btn-mail {
  background: linear-gradient(135deg, var(--gold), #e5c86c);
  color: #081126;
}
.btn-mail:hover {
  background: linear-gradient(135deg, #e5c86c, var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(212,175,55,0.25);
}

/* Tombol WhatsApp (Navy) */
.btn-consult {
  background: #081126;
  color: #fff;
}
.btn-consult:hover {
  background: #0d1a3a;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}

/* Tombol Kalender (Light) */
.btn-calendar {
  background: #f5f7fa;
  color: var(--accent);
  border: 1px solid #d9dee7;
}
.btn-calendar:hover {
  background: #e9eef9;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}
/* Bungkus tombol biar punya background */
.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
  padding: 18px;
  background: linear-gradient(135deg, #fdfdfd, #f7f9fc);
  border: 1px solid #e8ecf3;
  border-radius: 14px;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.04), 0 6px 16px rgba(0,0,0,0.06);
}

/* Tambah judul kecil di atas tombol */
.btn-row::before {
  content: "Choose your action:";
  font-weight: 600;
  font-size: 0.9rem;
  color: #444;
  width: 100%;
  margin-bottom: 6px;
}
/* Bungkus area tombol */
.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
  padding: 20px;
  background: linear-gradient(145deg, #ffffff, #f7f9fc);
  border: 1px solid #e6ebf2;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Animasi saat hover di seluruh box */
.btn-row:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

/* Judul kecil */
.btn-row::before {
  content: "Choose your action:";
  font-weight: 600;
  font-size: 0.9rem;
  color: #333;
  width: 100%;
  margin-bottom: 8px;
}

/* Tombol */
.btn-mail, .btn-consult, .btn-calendar {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 18px;
  border-radius: 12px;
  text-decoration: none;
  text-align: center;
  min-width: 180px;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Hover animasi tombol */
.btn-mail:hover, .btn-consult:hover, .btn-calendar:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
/* Area tombol */
.btn-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 20px;
  padding: 20px;
  background: linear-gradient(145deg, #ffffff, #f7f9fc);
  border: 1px solid #e6ebf2;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

/* Tombol umum */
.btn-mail, .btn-consult, .btn-calendar {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 20px;
  border-radius: 12px;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Email (elegan navy) */
.btn-mail {
  background: #081126;
  color: #f5d96b;
}
.btn-mail:hover {
  background: #0d1a3a;
  box-shadow: 0 0 12px rgba(245, 217, 107, 0.5);
  transform: translateY(-2px);
}

/* WhatsApp (emas) */
.btn-consult {
  background: linear-gradient(135deg, #e9c046, #d4a62a);
  color: #1e1e1e;
}
.btn-consult:hover {
  background: linear-gradient(135deg, #f0cf5d, #d4a62a);
  box-shadow: 0 0 15px rgba(233, 192, 70, 0.5);
  transform: translateY(-2px);
}

/* Calendar (soft blue) */
.btn-calendar {
  background: #eef3ff;
  color: #1a1a1a;
  border: 1px solid #d8e2f7;
}
.btn-calendar:hover {
  background: #dce7ff;
  box-shadow: 0 0 10px rgba(116, 159, 255, 0.4);
  transform: translateY(-2px);
}
/* 🌙 Dark mode styling tombol */
body.dark-mode .btn-row {
  background: linear-gradient(145deg, #1c1c1c, #2a2a2a);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 6px 14px rgba(0,0,0,0.5);
}

body.dark-mode .btn-row::before {
  color: #ddd;
}

/* Tombol dalam dark mode */
body.dark-mode .btn-mail {
  background: #f5d96b;
  color: #1c1c1c;
}
body.dark-mode .btn-mail:hover {
  background: #eac94f;
  box-shadow: 0 0 12px rgba(245, 217, 107, 0.5);
}

body.dark-mode .btn-consult {
  background: #081126;
  color: #fff;
}
body.dark-mode .btn-consult:hover {
  background: #0d1a3a;
  box-shadow: 0 0 14px rgba(255, 255, 255, 0.25);
}

body.dark-mode .btn-calendar {
  background: #2e2e2e;
  color: #eee;
  border: 1px solid rgba(255,255,255,0.12);
}
body.dark-mode .btn-calendar:hover {
  background: #3a3a3a;
  box-shadow: 0 0 12px rgba(116, 159, 255, 0.4);
}
/* 🎨 Kotak opsi konsultasi */
.consult-option {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 16px;
  border-radius: 12px;
  background: linear-gradient(145deg, #ffffff, #f9f9f9);
  border: 1px solid #e6e6e6;
  margin-bottom: 14px;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 3px 6px rgba(0,0,0,0.03);
}

.consult-option:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 8px 20px rgba(212,175,55,0.15);
  background: #fffef9;
}

/* Radio custom */
.consult-option input[type="radio"] {
  accent-color: var(--gold);
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.consult-option strong {
  font-size: 1.05rem;
  color: var(--accent);
}

.consult-option .option-desc {
  color: var(--muted);
  font-size: 0.92rem;
  margin-top: 2px;
}

/* Judul section biar elegan */
.consult-options h2 {
  margin-top: 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--accent);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 8px;
  margin-bottom: 18px;
}
/* 🌙 Dark mode consultation box */
body.dark-mode .consult-option {
  background: linear-gradient(145deg, #1e1e1e, #262626);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
}

body.dark-mode .consult-option:hover {
  background: #2c2c2c;
  border-color: var(--gold);
  box-shadow: 0 8px 20px rgba(212,175,55,0.2);
}

body.dark-mode .consult-option strong {
  color: #fff;
}

body.dark-mode .consult-option .option-desc {
  color: #bbb;
}

/* Judul section di dark mode */
body.dark-mode .consult-options h2 {
  color: #f5f5f5;
  border-bottom: 2px solid var(--gold);
}
/* Styling tombol Book Now */
.btn-book {
  display: inline-block;              /* biar nggak full width */
  background: linear-gradient(135deg, var(--gold), #e5c86c);
  color: #081126;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 14px 36px;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
  width: auto;                        /* override biar nggak 100% */
  min-width: 200px;                   /* kasih minimal size */
  text-align: center;
}

/* Hover efek */
.btn-book:hover {
  background: linear-gradient(135deg, #e5c86c, var(--gold));
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(212,175,55,0.3);
}

/* Dark mode */
body.dark-mode .btn-book {
  background: linear-gradient(135deg, #f5d96b, #eac94f);
  color: #121212;
}
body.dark-mode .btn-book:hover {
  background: linear-gradient(135deg, #eac94f, #f5d96b);
}
/* Styling untuk Book Now */
.btn-consult {
  display: inline-block;
  background: linear-gradient(135deg, #f5d96b, #eac94f);
  color: #1a1a1a !important;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 14px 36px;
  border-radius: 12px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
  width: auto !important;
  min-width: 200px;
}

.btn-consult:hover {
  background: linear-gradient(135deg, #eac94f, #f5d96b);
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(245, 217, 107, 0.4);
}

body.dark-mode .btn-consult {
  background: linear-gradient(135deg, #f5d96b, #eac94f);
  color: #121212 !important;
}
/* Hilangkan efek biru saat klik */
.btn-consult:focus,
.btn-consult:active {
  background: linear-gradient(135deg, #f5d96b, #eac94f) !important;
  color: #1a1a1a !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(245, 217, 107, 0.4); /* glowing emas cantik */
}
/* Reset warna link di semua state */
a.btn-consult,
a.btn-consult:link,
a.btn-consult:visited,
a.btn-consult:focus,
a.btn-consult:active {
  color: #1a1a1a !important;
  background: linear-gradient(135deg, #f5d96b, #eac94f) !important;
  text-decoration: none !important;
}
a.btn-consult:active {
  transform: scale(0.96);
  box-shadow: 0 0 0 3px rgba(245, 217, 107, 0.5);
}
/* --- Premium Gradient Buttons --- */
.btn-gradient {
  display: inline-block;
  background: linear-gradient(135deg, #f9e07f, #fff6d6);
  color: #1a1a1a !important;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 14px 32px;
  border-radius: 12px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 16px rgba(249, 224, 127, 0.4);
  border: none;
  min-width: 200px;
}

/* Hover: lebih glowing */
.btn-gradient:hover {
  background: linear-gradient(135deg, #fff6d6, #f9e07f);
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(249, 224, 127, 0.55);
}

/* Active/Click */
.btn-gradient:active {
  transform: scale(0.96);
  box-shadow: 0 0 0 4px rgba(249, 224, 127, 0.4);
}

/* Dark mode versi */
body.dark-mode .btn-gradient {
  background: linear-gradient(135deg, #f5d96b, #eac94f);
  color: #121212 !important;
  box-shadow: 0 6px 16px rgba(245, 217, 107, 0.35);
}
body.dark-mode .btn-gradient:hover {
  background: linear-gradient(135deg, #eac94f, #f5d96b);
  box-shadow: 0 10px 24px rgba(245, 217, 107, 0.5);
}
/* Dasar tombol */
.btn {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 12px 24px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  margin: 6px 0;
  min-width: 220px;
}

/* Premium Gold */
.btn-gold {
  background: linear-gradient(135deg, #f9e07f, #fff6d6);
  color: #1a1a1a !important;
}
.btn-gold:hover {
  background: linear-gradient(135deg, #fff6d6, #f9e07f);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(249, 224, 127, 0.45);
}
.btn-gold:active {
  transform: scale(0.96);
}

/* Premium Dark (WhatsApp style) */
.btn-dark {
  background: linear-gradient(135deg, #1f2937, #111827);
  color: #f5f5f5 !important;
}
.btn-dark:hover {
  background: linear-gradient(135deg, #2d3748, #1f2937);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.45);
}
.btn-dark:active {
  transform: scale(0.96);
}

/* Premium Light (Calendar) */
.btn-light {
  background: linear-gradient(135deg, #f3f4f6, #ffffff);
  color: #1a1a1a !important;
  border: 1px solid #e5e7eb;
}
.btn-light:hover {
  background: linear-gradient(135deg, #ffffff, #f3f4f6);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(200,200,200,0.45);
}
.btn-light:active {
  transform: scale(0.96);
}

