/* ============================================================
   PRAMBANAN BETON - Main Stylesheet
   Color Palette:
   - Dark Forest Green: #0d2b0f
   - Medium Green: #1B5E20
   - Accent Green: #2E7D32
   - Gold/Amber: #F9A825
   - Light Gold: #FFD54F
   - Off-White: #F5F5F0
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800&family=Poppins:wght@300;400;500;600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-dark: #0d2b0f;
  --green-mid: #1B5E20;
  --green-accent: #2E7D32;
  --green-light: #4CAF50;
  --gold: #F9A825;
  --gold-light: #FFD54F;
  --gold-dim: #F57F17;
  --white: #ffffff;
  --off-white: #F5F5F0;
  --gray-100: #f0f0eb;
  --gray-300: #d0d0c8;
  --gray-600: #6b7280;
  --shadow-sm: 0 2px 8px rgba(13,43,15,0.08);
  --shadow-md: 0 8px 24px rgba(13,43,15,0.14);
  --shadow-lg: 0 20px 60px rgba(13,43,15,0.18);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  background: var(--off-white);
  color: #1a1a1a;
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3 { 
  font-family: 'Montserrat', sans-serif; 
  font-weight: 700; 
}

a { text-decoration: none; color: inherit; }

img { max-width: 100%; display: block; } /*gambar*/

/* ======================== SCROLLBAR ======================== */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--green-dark); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ======================== NAVBAR ======================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 2rem;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.navbar.scrolled {
  background: rgba(13, 43, 15, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
  padding: 0 2rem;
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.nav-brand { display: flex; align-items: center; }

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform var(--transition);
}
.logo-wrapper:hover { transform: scale(1.03); }

.logo-icon svg { width: 70px; height: 70px; }
.logo-icon.small svg { width: 36px; height: 36px; }

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-main {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.05em;
}

.brand-sub {
  font-family: 'Poppins', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav-link {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 0.9rem;
  border-radius: 8px;
  transition: all var(--transition);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform var(--transition);
}

.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link:hover::after, .nav-link.active::after { transform: translateX(-50%) scaleX(1); }

.nav-cta {
  background: var(--gold);
  color: var(--green-dark) !important;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.6rem 1.3rem;
  border-radius: 50px;
  margin-left: 0.5rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249,168,37,0.4);
}

.btn-shine::before {
  content: '';
  position: absolute;
  top: -50%; left: -60%;
  width: 40%;
  height: 200%;
  background: rgba(255,255,255,0.25);
  transform: skewX(-20deg);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% { left: -60%; }
  20% { left: 120%; }
  100% { left: 120%; }
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ======================== BUTTONS ======================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background 0.2s;
}

.btn:active::after { background: rgba(255,255,255,0.15); }

.btn-primary {
  background: var(--gold);
  color: var(--green-dark);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(249,168,37,0.45);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-3px);
}

.btn-green {
  background: var(--green-mid);
  color: var(--white);
}
.btn-green:hover {
  background: var(--green-accent);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(27,94,32,0.35);
}

/* ======================== SECTION COMMONS ======================== */
.section { padding: 6rem 2rem; }
.section-sm { padding: 4rem 2rem; }

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249,168,37,0.12);
  color: var(--gold-dim);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
  border: 1px solid rgba(249,168,37,0.2);
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--green-dark);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-title span { color: var(--green-accent); }

.section-desc {
  color: var(--gray-600);
  font-size: 1.05rem;
  max-width: 600px;
  line-height: 1.7;
}

/* ======================== STATS STRIP ======================== */
.stats-strip {
  background: var(--green-dark);
  padding: 2.5rem;
}

.stats-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.stat-item {
  text-align: center;
  padding: 1.5rem 1rem;
  border-right: 1px solid rgba(249,168,37,0.2);
  transition: transform var(--transition);
}

.stat-item:last-child { border-right: none; }
.stat-item:hover { transform: translateY(-4px); }

.stat-icon {
  width: 48px; height: 48px;
  background: rgba(249,168,37,0.12);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 0.75rem;
  color: var(--gold);
}

.stat-icon svg { width: 24px; height: 24px; }

.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  color: rgba(255,255,255,0.65);
  font-size: 0.82rem;
  margin-top: 0.25rem;
  letter-spacing: 0.05em;
}

/* ======================== CARDS ======================== */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

/* ======================== PRODUCT CARDS ======================== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 2px solid transparent;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-mid), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.product-card:hover {
  border-color: rgba(27,94,32,0.15);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.product-card:hover::before { transform: scaleX(1); }

.product-card.featured {
  border-color: var(--gold);
  background: linear-gradient(135deg, #fff 60%, #fffde7);
}

.product-card.featured::before { transform: scaleX(1); background: var(--gold); }

.product-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--gold);
  color: var(--green-dark);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.7rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.product-grade {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--green-mid);
  margin-bottom: 0.25rem;
}

.product-strength {
  color: var(--gray-600);
  font-size: 0.85rem;
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.product-uses {
  list-style: none;
  margin-bottom: 1.5rem;
}

.product-uses li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.88rem;
  color: #444;
  padding: 0.3rem 0;
  border-bottom: 1px solid var(--gray-100);
}

.product-uses li:last-child { border-bottom: none; }

.check-icon {
  width: 18px; height: 18px;
  background: rgba(46,125,50,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.check-icon svg { width: 10px; height: 10px; color: var(--green-accent); }

/* ======================== CERTIFICATIONS ======================== */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
}

.cert-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: all var(--transition);
}

.cert-card:hover {
  transform: translateY(-4px);
  border-color: rgba(249,168,37,0.4);
  box-shadow: 0 8px 24px rgba(249,168,37,0.15);
}

.cert-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 0.75rem;
  color: var(--white);
}

.cert-icon svg { width: 28px; height: 28px; }

.cert-name {
  font-weight: 700;
  color: var(--green-mid);
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.cert-issuer {
  font-size: 0.78rem;
  color: var(--gray-600);
}

.cert-year {
  font-size: 0.75rem;
  color: var(--gold-dim);
  font-weight: 600;
  margin-top: 0.25rem;
}

/* ======================== PORTFOLIO CARDS ======================== */
.porto-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.75rem;
}

.porto-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.porto-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.porto-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: linear-gradient(135deg, #e8f5e9, #f9fbe7);
  display: flex; align-items: center; justify-content: center;
}

.porto-img-placeholder {
  font-size: 4rem;
  opacity: 0.3;
}

.porto-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.porto-card:hover .porto-img-wrap img { transform: scale(1.06); }

.porto-tag {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--green-mid);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  letter-spacing: 0.05em;
}

.porto-body { padding: 1.5rem; }

.porto-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 0.75rem;
}

.porto-meta {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.84rem;
  color: var(--gray-600);
}

.porto-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.porto-meta svg { width: 14px; height: 14px; color: var(--gold-dim); flex-shrink: 0; }

/* ======================== REVIEWS ======================== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: all var(--transition);
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(249,168,37,0.3);
}

.review-stars { color: var(--gold); font-size: 1rem; margin-bottom: 0.75rem; }

.review-text {
  color: #555;
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 1rem;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-mid), var(--green-accent));
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.review-name { font-weight: 600; font-size: 0.9rem; color: var(--green-dark); }
.review-role { font-size: 0.78rem; color: var(--gray-600); }

/* ======================== CONTACT ======================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 2rem;
}

.contact-info {
  background: var(--green-dark);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: var(--white);
}

.contact-info h3 {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.contact-info p { color: rgba(255,255,255,0.7); margin-bottom: 2rem; font-size: 0.9rem; }

.contact-items { display: flex; flex-direction: column; gap: 1.25rem; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.ci-icon {
  width: 44px; height: 44px;
  background: rgba(249,168,37,0.15);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.ci-icon svg { width: 20px; height: 20px; }

.ci-label { font-size: 0.75rem; color: rgba(255,255,255,0.5); margin-bottom: 0.2rem; }
.ci-value { font-size: 0.92rem; color: var(--white); font-weight: 500; }

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 0.4rem;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--gray-300);
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  color: #1a1a1a;
  background: var(--off-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--green-accent);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(46,125,50,0.1);
}

textarea.form-control { resize: vertical; min-height: 130px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ======================== FOOTER ======================== */
.footer {
  background: #0a1f0b;
  color: var(--white);
  padding: 2rem 1rem; 
  width: 100%;
}
.footer-bottom {
  display: flex;
  text-align: center; 
  justify-content: center;
  align-items: center;
  
}

.footer-bottom p {
  text-align: center;
  margin: 0;
}

.footer-wave { line-height: 0; }
.footer-wave svg { width: 100%; height: 60px; display: block; }

.footer-body { padding: 3rem 2rem 2rem; max-width: 1280px; margin: 0 auto; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
}

.footer-brand-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.05em;
}

.footer-brand-tagline {
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.footer-desc {
  color: rgba(255,255,255,0.55);
  font-size: 0.86rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-socials { display: flex; gap: 0.6rem; }

.social-btn {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition);
}

.social-btn:hover {
  background: var(--gold);
  color: var(--green-dark);
  transform: translateY(-3px);
}

.social-btn svg { width: 16px; height: 16px; }

.footer-col h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
  display: inline-block;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }

.footer-col ul li a {
  color: rgba(255,255,255,0.55);
  font-size: 0.87rem;
  transition: color var(--transition);
}

.footer-col ul li a:hover { color: var(--gold); }

.contact-list li {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255,255,255,0.55) !important;
  font-size: 0.84rem !important;
}

.contact-list li svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: 3px; color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 0.8rem; }

/* ======================== HERO (index) ======================== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--green-dark) 0%, #1a3a1c 50%, #0f2810 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 0 2rem;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(249,168,37,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(46,125,50,0.15) 0%, transparent 40%),
    radial-gradient(circle at 60% 80%, rgba(249,168,37,0.05) 0%, transparent 40%);
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 8rem 0 5rem;
  position: relative;
  z-index: 1;
}

.hero-left { }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249,168,37,0.15);
  border: 1px solid rgba(249,168,37,0.35);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.08em;
  animation: fadeDown 0.8s ease both;
}

.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.25rem;
  animation: fadeUp 0.9s ease 0.1s both;
}

.hero-title span {
  color: var(--gold);
  position: relative;
}

.hero-subtitle {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.9s ease 0.2s both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.9s ease 0.3s both;
}

.hero-right { animation: fadeLeft 1s ease 0.2s both; }

.hero-card-stack {
  position: relative;
}

.hero-main-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  padding: 2rem;
}

.hero-card-title {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero-products-mini {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hpm-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255,255,255,0.08);
  transition: all var(--transition);
}

.hpm-item:hover {
  background: rgba(249,168,37,0.1);
  border-color: rgba(249,168,37,0.3);
}

.hpm-grade {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}

.hpm-desc { color: rgba(255,255,255,0.5); font-size: 0.78rem; }

.hpm-bar-wrap { flex: 1; margin: 0 1rem; }
.hpm-bar {
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
}
.hpm-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green-light), var(--gold));
  border-radius: 2px;
  animation: barFill 1.5s ease 0.8s both;
  transform-origin: left;
}

@keyframes barFill { from { transform: scaleX(0); } to { transform: scaleX(1); } }

.hero-floating-badge {
  position: absolute;
  bottom: -1rem; left: -1.5rem;
  background: var(--gold);
  color: var(--green-dark);
  border-radius: 14px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 12px 32px rgba(249,168,37,0.4);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hfb-icon { font-size: 1.5rem; }
.hfb-num { font-family: 'Montserrat', sans-serif; font-size: 1.4rem; font-weight: 800; line-height: 1; }
.hfb-label { font-size: 0.72rem; font-weight: 600; opacity: 0.75; }

/* Keyframes */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(32px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ======================== WHY US ======================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-mid), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.why-card:hover::after { transform: scaleX(1); }

.why-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(27,94,32,0.1), rgba(249,168,37,0.1));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--green-accent);
  transition: all var(--transition);
}

.why-card:hover .why-icon {
  background: var(--green-mid);
  color: var(--white);
}

.why-icon svg { width: 26px; height: 26px; }

.why-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--green-dark);
  margin-bottom: 0.5rem;
}

.why-desc { color: var(--gray-600); font-size: 0.88rem; line-height: 1.65; }

/* ======================== CTA BANNER ======================== */
.cta-banner {
  background: linear-gradient(135deg, var(--green-dark) 0%, #1a3a1c 100%);
  border-radius: var(--radius-lg);
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -40%; right: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(249,168,37,0.12), transparent 70%);
  pointer-events: none;
}

.cta-banner h2 { color: var(--white); font-size: 2.2rem; margin-bottom: 0.75rem; }
.cta-banner p { color: rgba(255,255,255,0.65); font-size: 1rem; margin-bottom: 2rem; }

/* ======================== PAGE HERO (inner pages) ======================== */
.page-hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, #1a3a1c 100%);
  padding: 8rem 2rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 30% 60%, rgba(249,168,37,0.08) 0%, transparent 50%),
    radial-gradient(circle at 75% 30%, rgba(46,125,50,0.1) 0%, transparent 40%);
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero-label {
  display: inline-block;
  background: rgba(249,168,37,0.18);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
  border: 1px solid rgba(249,168,37,0.3);
}

.page-hero h1 { color: var(--white); font-size: clamp(2.2rem, 5vw, 3.4rem); margin-bottom: 0.75rem; }
.page-hero p { color: rgba(255,255,255,0.65); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }

/* ======================== ANIMATE ON SCROLL ======================== */
.aos {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.aos.visible {
  opacity: 1;
  transform: translateY(0);
}
.aos-delay-1 { transition-delay: 0.1s; }
.aos-delay-2 { transition-delay: 0.2s; }
.aos-delay-3 { transition-delay: 0.3s; }
.aos-delay-4 { transition-delay: 0.4s; }

/* ======================== RESPONSIVE ======================== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .hero-content { grid-template-columns: 1fr; gap: 2.5rem; padding-top: 9rem; }
  .hero-right { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  /* ===== MOBILE SIDEBAR MENU ===== */
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%; height: 100vh;
    background: rgba(10, 28, 11, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0;
    z-index: 999;
    gap: 0;
    box-shadow: none;
    overflow-y: auto;
    justify-content: center;
    align-items: center;
  }
  .nav-links.open { display: flex; }

  .nav-links li {
    width: auto;
    list-style: none;
  }

  .nav-link {
    width: auto;
    padding: 1rem 2.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: rgba(255,255,255,0.65);
    border-bottom: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    transition: all 0.25s ease;
    border-radius: 12px;
    position: relative;
  }
  .nav-link::after { display: none !important; }

  .nav-link svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    opacity: 0.5;
    transition: all 0.25s ease;
  }

  .nav-link:hover,
  .nav-link.active {
    color: var(--gold);
    background: rgba(249,168,37,0.1);
  }
  .nav-link:hover svg,
  .nav-link.active svg {
    opacity: 1;
    color: var(--gold);
  }

  .nav-toggle { display: flex; z-index: 1001; }
  .nav-cta { margin: 1.5rem 2.5rem 0; width: calc(100% - 5rem); text-align: center; justify-content: center; }

  /* TENTANG KAMI - video atas, teks bawah */
  .profil-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  .profil-grid video {
    height: 250px !important;
  }

  /* Hilangkan justify di mobile */
  p[style*="text-align:justify"] {
    text-align: left !important;
  }

  /* Contact grid mobile */
  .contact-grid {
    grid-template-columns: 1fr !important;
  }

  /* Visi misi mobile */
  .visi-misi-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(249,168,37,0.15); }
  .stat-item:nth-child(2n) { border-right: none; }

  .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .why-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .porto-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-banner { padding: 2.5rem 1.5rem; }
}