* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Inter, Arial, sans-serif;
    color: #fff;
}
html {
  scroll-behavior: smooth;
}
body {
    background: radial-gradient(circle at 50% 20%, #3a5227 0%, #1d2a14 60%);
}
body::-webkit-scrollbar {
    width: 0;                  /* Chrome, Safari, Opera */
}
/* =========================
   LOGO
========================= */
.logo-img {
    height: 39px;
    cursor: pointer;
    display: block;
}

/* =========================
   NAVBAR BASE
========================= */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;

    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(12px);
}
/* =========================
   NAVBAR BACKGROUND
   (PURE TRANSPARENT)
========================= */
.textured-nav {
    position: relative;
    background: rgba(0, 0, 0, 0.25); /* transparent biasa */
    backdrop-filter: blur(16px); 
}

/* =========================
   CONTAINER
========================= */
.nav-container {
    max-width: 1200px;
    margin: auto;
    height: 72px;
    padding: 0 24px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

/* =========================
   LOGO (CENTER PERFECT)
========================= */
.nav-logo {
    position: absolute;
    left: 50%;
    top: 50%;               /* ADD */
    transform: translate(-50%, -50%);  /* UPDATE */

    display: flex;
    align-items: center;
    justify-content: center;
}

/* =========================
   LEFT NAV
========================= */
.nav-left {
    display: flex;
    gap: 22px;
    align-items: center;   /* ADD THIS */
}

.nav-left a {
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    opacity: 0.6;
    position: relative;
    transition: opacity 0.3s ease;
}

/* hover */
.nav-left a:hover {
    opacity: 1;
}

/* ACTIVE PAGE */
.nav-left a.active {
    opacity: 1;
}
/* underline glow */
.nav-left a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: #ffffff;
    box-shadow: 0 0 8px rgba(255,255,255,0.9);
}
/* =========================
   RIGHT NAV
========================= */
.nav-right {
	justify-content: flex-end;
    display: flex;
    gap: 18px;
}
.nav-right a {
    color: #ffffff;
    font-size: 21px;
    opacity: 0.85;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* hover effect */
.nav-right a:hover {
    opacity: 1;
    transform: scale(1.15);
}
.nav-left,
.nav-right {
    flex: 1;
}
/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
    .nav-left {
        display: none;
    }

    .nav-container {
        padding: 0 20px;
    }
}
/* SECTION */
.contact-section {
  padding: 100px 20px 80px;
  background: linear-gradient(
  to bottom,
  #4a6b33 0%,   /* atas (hijau cerah tapi toned down) */
  #355224 40%,  /* tengah */
  #1f3418 100%  /* bawah (gelap) */
);
}

/* TITLE */
.contact-title {
  font-family: 'Teko', sans-serif;
  text-align: center;
  font-size: 48px;
  margin-bottom: 60px;
  font-weight: 700;
  text-transform: uppercase;
  transform: skewX(-8deg);
  color: #fff;
}

/* WRAPPER (CENTER BETUL) */
.contact-wrapper {
  max-width: 1200px;
  margin: auto;
}

/* LAYOUT */
.contact-container {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

/* LEFT INFO */
.contact-info {
  flex: 1;
  padding-top: 10px;
}

.info-block {
  display: flex;
  gap: 18px;
  margin-bottom: 35px;
}

.info-block i {
  font-size: 22px;
  color: #F2F2F2;
  margin-top: 4px;
}

.info-block h3 {
  font-size: 16px;
  margin-bottom: 6px;
  color: #F2F2F2;
  letter-spacing: 1px;
}

.info-block p {
  font-size: 14px;
  color: #F2F2F2;
  line-height: 1.7;
}

/* RIGHT MAP */
.map-wrapper {
  flex: 2;
  height: 500px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  background: #fff;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-container {
    flex-direction: column;
  }

  .map-wrapper {
    height: 350px;
  }
}
.whatsapp-float {
    position: fixed;
    right: 25px;
    bottom: 130px;

    background-color: #25D366;
    color: #fff;
    border-radius: 50px;

    padding: 10px 18px;
    text-decoration: none;

    display: flex;
    align-items: center;
    justify-content: center; /* ✅ center semua */
    gap: 10px;

    font-size: 14px;
    font-weight: 600; /* bagi nampak solid */

    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 9999;

    transition: 0.3s;
}

/* icon */
.whatsapp-float i {
    font-size: 20px;
}

/* text */
.wa-text {
    font-weight: 500;
	position: center;
}

/* hover effect */
.whatsapp-float:hover {
    background-color: #1ebe5d;
    transform: scale(1.05);
}