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

:root {
  --cream: #f5efe0;
  --cream-light: #faf6ee;
  --green: #4a6741;
  --green-light: #6b8c62;
  --green-pale: #e8efe6;
  --brown: #8b6347;
  --brown-light: #c4a882;
  --gold: #c9a84c;
  --gold-light: #e2c97b;
  --white: #ffffff;
  --text-dark: #2c2416;
  --text-mid: #5c4a32;
  --text-light: #8a7560;
  --border: rgba(139, 99, 71, 0.18);
  --shadow: 0 8px 40px rgba(44, 36, 22, 0.1);
  --shadow-sm: 0 2px 12px rgba(44, 36, 22, 0.07);
  --radius: 12px;
  --radius-lg: 20px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: var(--cream-light);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
  line-height: 1.25;
}

/* ─── NAVBAR ─── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 0 5%;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(250, 246, 238, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}

#navbar.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-icon {
  width: 38px;
  height: 38px;
  background: var(--green);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 18px;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-text strong {
  font-family: "Playfair Display", serif;
  font-size: 16px;
  color: var(--text-dark);
  font-weight: 700;
}

.nav-logo-text span {
  font-size: 10px;
  color: var(--text-light);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-mid);
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.25s;
}

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

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  background: var(--green) !important;
  color: var(--white) !important;
  padding: 8px 20px !important;
  border-radius: 50px !important;
  font-size: 13px !important;
  transition:
    background 0.2s,
    transform 0.15s !important;
}

.nav-cta:hover {
  background: var(--green-light) !important;
  transform: translateY(-1px);
}

.nav-cta::after {
  display: none !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: var(--cream-light);
  border-bottom: 1px solid var(--border);
  padding: 20px 5%;
  flex-direction: column;
  gap: 16px;
  z-index: 998;
  box-shadow: var(--shadow-sm);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-mid);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.mobile-menu a:last-child {
  border-bottom: none;
}

/* ─── HERO ─── */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 70px;
  position: relative;
  overflow: hidden;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 6% 80px 8%;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-pale);
  color: var(--green);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 28px;
  width: fit-content;
}

.hero-badge i {
  font-size: 10px;
}

.hero-left h1 {
  font-size: clamp(38px, 4.5vw, 60px);
  color: var(--text-dark);
  margin-bottom: 24px;
  font-weight: 700;
}

.hero-left h1 em {
  color: var(--green);
  font-style: italic;
}

.hero-left h1 .gold {
  color: var(--gold);
  font-style: normal;
}

.hero-desc {
  font-size: 15px;
  color: var(--text-mid);
  max-width: 440px;
  margin-bottom: 40px;
  font-weight: 300;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition:
    background 0.2s,
    transform 0.15s,
    box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(74, 103, 65, 0.35);
}

.btn-primary:hover {
  background: var(--green-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(74, 103, 65, 0.4);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--brown-light);
  color: var(--brown);
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s;
  background: transparent;
}

.btn-outline:hover {
  background: var(--brown-light);
  color: var(--white);
  border-color: var(--brown-light);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  gap: 32px;
}

.hero-stat {
  text-align: left;
}

.hero-stat strong {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 30px;
  color: var(--text-dark);
  font-weight: 700;
}

.hero-stat strong span {
  color: var(--gold);
}

.hero-stat small {
  font-size: 12px;
  color: var(--text-light);
  font-weight: 400;
}

.hero-right {
  position: relative;
  overflow: hidden;
}

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

.hero-right::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to right, var(--cream-light) 0%, transparent 20%);
}

.hero-float-card {
  position: absolute;
  bottom: 48px;
  right: 36px;
  z-index: 3;
  background: rgba(250, 246, 238, 0.94);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow);
  min-width: 180px;
}

.hero-float-card .rating {
  color: var(--gold);
  font-size: 12px;
  margin-bottom: 4px;
}

.hero-float-card strong {
  display: block;
  font-size: 15px;
  font-family: "Playfair Display", serif;
  color: var(--text-dark);
}

.hero-float-card small {
  font-size: 11px;
  color: var(--text-light);
}

/* ─── SECTION BASE ─── */
section {
  padding: 96px 8%;
}

section:nth-child(even) {
  background: var(--white);
}

.section-label {
  display: inline-block;
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(30px, 3.5vw, 44px);
  color: var(--text-dark);
  margin-bottom: 18px;
}

.section-sub {
  font-size: 15px;
  color: var(--text-light);
  max-width: 560px;
  font-weight: 300;
  line-height: 1.8;
}

.section-head {
  margin-bottom: 60px;
}

.section-head.centered {
  text-align: center;
}

.section-head.centered .section-sub {
  margin: 0 auto;
}

/* ─── TENTANG KAMI ─── */
#tentang {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.tentang-images {
  position: relative;
  height: 520px;
}

.tentang-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 72%;
  height: 80%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.tentang-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tentang-img-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 52%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 5px solid var(--white);
}

.tentang-img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tentang-badge {
  position: absolute;
  top: 40%;
  left: 60%;
  background: var(--green);
  color: var(--white);
  border-radius: var(--radius);
  padding: 18px 22px;
  box-shadow: var(--shadow);
  text-align: center;
  z-index: 2;
}

.tentang-badge strong {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 28px;
}

.tentang-badge span {
  font-size: 11px;
  font-weight: 300;
  opacity: 0.85;
}

.tentang-content .section-sub {
  margin-bottom: 30px;
}

.tentang-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 36px;
}

.tentang-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.tentang-feature-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--green-pale);
  color: var(--green);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.tentang-feature h3 {
  font-size: 13.5px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 3px;
}

.tentang-feature p {
  font-size: 12.5px;
  color: var(--text-light);
  font-weight: 300;
}

/* ─── LAYANAN ─── */
#layanan {
  background: var(--cream-light) !important;
}

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

.layanan-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.layanan-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.layanan-card-img {
  height: 220px;
  overflow: hidden;
}

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

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

.layanan-card-body {
  padding: 28px;
}

.layanan-icon {
  width: 48px;
  height: 48px;
  background: var(--green-pale);
  color: var(--green);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 18px;
}

.layanan-card-body h3 {
  font-size: 20px;
  font-family: "Playfair Display", serif;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.layanan-card-body p {
  font-size: 13.5px;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 20px;
  font-weight: 300;
}

.layanan-list {
  list-style: none;
  margin-bottom: 24px;
}

.layanan-list li {
  font-size: 13px;
  color: var(--text-mid);
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.layanan-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  min-width: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.layanan-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green);
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  transition: gap 0.2s;
}

.layanan-link:hover {
  gap: 10px;
}

/* ─── PORTOFOLIO ─── */
#portofolio {
  background: var(--white) !important;
}

.porto-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.porto-tab {
  padding: 8px 22px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--text-mid);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  font-family: "Poppins", sans-serif;
}

.porto-tab.active {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.porto-tab:hover:not(.active) {
  border-color: var(--green);
  color: var(--green);
}

.porto-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.porto-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background-color: var(--cream);
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.porto-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.porto-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.porto-item:hover img {
  transform: scale(1.05);
}

.porto-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(44, 36, 22, 0.85) 0%, transparent 70%);
  padding: 20px 16px 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.porto-item:hover .porto-overlay {
  opacity: 1;
}

.porto-overlay-text h3 {
  font-size: 14px;
  color: var(--white);
  margin-bottom: 4px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}

.porto-overlay-text span {
  font-size: 11px;
  color: var(--gold-light);
  font-weight: 300;
}

/* ─── TESTIMONI ─── */
#testimoni {
  background: var(--cream-light) !important;
}

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

.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.testi-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.testi-stars {
  color: var(--gold);
  font-size: 13px;
  margin-bottom: 18px;
  letter-spacing: 2px;
}

.testi-quote {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
  font-weight: 300;
}

.testi-quote::before {
  content: '"';
  font-size: 36px;
  color: var(--green-pale);
  font-family: "Playfair Display", serif;
  line-height: 0;
  position: relative;
  top: 14px;
  margin-right: 4px;
}

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

.testi-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--green-pale);
}

.testi-author h3 {
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: var(--text-dark);
}

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

/* ─── KONTAK ─── */
#kontak {
  background: var(--white) !important;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.kontak-info {
  padding-top: 8px;
}

.kontak-info .section-sub {
  margin-bottom: 40px;
}

.kontak-detail {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 40px;
}

.kontak-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.kontak-item-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--green-pale);
  color: var(--green);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
}

.kontak-item h3 {
  font-size: 13px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 2px;
}

.kontak-item p {
  font-size: 13.5px;
  color: var(--text-dark);
  font-weight: 400;
}

.kontak-sosmed {
  display: flex;
  gap: 12px;
}

.sosmed-btn {
  width: 40px;
  height: 40px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-mid);
  font-size: 15px;
  text-decoration: none;
  transition: all 0.2s;
}

.sosmed-btn:hover {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.kontak-form-wrap {
  background: var(--cream-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.form-title {
  font-size: 22px;
  font-family: "Playfair Display", serif;
  color: var(--text-dark);
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 7px;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  color: var(--text-dark);
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(74, 103, 65, 0.12);
}

.form-group textarea {
  height: 120px;
  resize: vertical;
}

.form-submit {
  width: 100%;
  padding: 15px;
  border-radius: 50px;
  background: var(--green);
  color: var(--white);
  border: none;
  font-size: 14.5px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.15s,
    box-shadow 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 20px rgba(74, 103, 65, 0.3);
}

.form-submit:hover {
  background: var(--green-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(74, 103, 65, 0.38);
}

.form-success {
  display: none;
  background: var(--green-pale);
  border: 1px solid var(--green);
  border-radius: 10px;
  padding: 16px 20px;
  margin-top: 16px;
  color: var(--green);
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}

/* ─── FOOTER ─── */
footer {
  background: var(--text-dark);
  color: rgba(255, 255, 255, 0.65);
  padding: 64px 8% 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand .nav-logo-text strong {
  color: var(--white);
}

.footer-brand .nav-logo-text span {
  color: rgba(255, 255, 255, 0.4);
}

.footer-brand .nav-logo {
  margin-bottom: 18px;
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.8;
  margin-bottom: 22px;
}

.footer-sosmed {
  display: flex;
  gap: 10px;
}

.footer-sosmed a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s;
}

.footer-sosmed a:hover {
  background: var(--green);
  color: var(--white);
}

.footer-col h3 {
  font-size: 13px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 18px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--gold-light);
}

.footer-col address {
  font-style: normal;
  font-size: 13px;
  line-height: 1.85;
}

.footer-col address i {
  color: var(--gold);
  margin-right: 8px;
  width: 14px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 12.5px;
}

.footer-bottom span {
  color: var(--gold-light);
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* ─── WHATSAPP FLOAT ─── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 888;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  animation: pulse 2.5s infinite;
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
  animation: none;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  }

  50% {
    box-shadow: 0 4px 32px rgba(37, 211, 102, 0.75);
  }
}

/* ─── FADE IN ANIMATION ─── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 {
  transition-delay: 0.1s;
}

.fade-in-delay-2 {
  transition-delay: 0.2s;
}

.fade-in-delay-3 {
  transition-delay: 0.3s;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  section {
    padding: 72px 6%;
  }

  .layanan-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .porto-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .porto-item:first-child {
    grid-row: span 1;
  }

  .porto-item:not(:first-child) img,
  .porto-item:first-child img {
    height: 220px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-cta {
    display: none;
  }
  .porto-item {
    aspect-ratio: 4 / 3;
  }

  .hamburger {
    display: flex;
  }

  #hero {
    grid-template-columns: 1fr;
  }

  .hero-right {
    height: 300px;
    position: absolute;
    inset: 0;
    z-index: 0;
  }

  .hero-right::before {
    background: linear-gradient(
      to bottom,
      rgba(250, 246, 238, 0.1) 0%,
      rgba(250, 246, 238, 0.92) 60%
    );
  }

  .hero-left {
    position: relative;
    z-index: 2;
    padding: 110px 6% 60px;
    background: transparent;
  }

  .hero-float-card {
    display: none;
  }

  .hero-stats {
    gap: 20px;
  }

  #tentang,
  #kontak {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .tentang-images {
    height: 320px;
  }

  .tentang-badge {
    display: none;
  }

  .tentang-features {
    grid-template-columns: 1fr;
  }

  .layanan-grid {
    grid-template-columns: 1fr;
  }

  .porto-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
  }

  .testimoni-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  section {
    padding: 60px 5%;
  }

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

  .hero-stats {
    flex-wrap: wrap;
  }
}
