* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-gold: #d4af37;
  --dark-gold: #8e6a27;
  --light-gold: #f8d348;
  --cream: #fff9e8;
  --dark-brown: #5a4a2a;
  --white: #ffffff;
  --shadow: rgba(0, 0, 0, 0.1);
  --shadow-hover: rgba(0, 0, 0, 0.15);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background: var(--cream);
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
}

/* NAVIGATION */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 249, 232, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 2rem;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.25);
  background: linear-gradient(135deg, #fff9e8, #f6e7b8);
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.nav-toggle:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.12);
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark-brown);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.logo img {
  height: 36px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--dark-brown);
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-gold);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--dark-gold);
}

.nav-links a:hover::after {
  width: 100%;
}

@media (max-width: 900px) {
  .navbar {
    padding: 0.8rem 1rem;
  }
  .nav-toggle {
    display: inline-flex;
  }
  .nav-links {
    display: none;
    position: fixed;
    top: 64px;
    right: 12px;
    left: 12px;
    flex-direction: column;
    gap: 12px;
    background: var(--white);
    border-radius: 14px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
    padding: 16px;
    border: 1px solid rgba(212, 175, 55, 0.25);
    z-index: 1000;
  }
  .nav-links.open {
    display: flex;
  }
}

/* simple mobile menu (no backdrop/lock) */
/* HERO */
.hero {
  padding: 180px 20px 120px;
  text-align: center;
  background: linear-gradient(135deg, #fff9e8 0%, #f8d34815 50%, #fff9e8 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('img/hero-bg.png');
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(248, 211, 72, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--dark-gold);
  margin-bottom: 20px;
  font-weight: 800;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.05);
}

.hero p {
  max-width: 650px;
  margin: 0 auto 30px;
  color: var(--dark-brown);
  opacity: 0.9;
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.8;
}

.cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(135deg, var(--primary-gold), var(--light-gold));
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
  transition: all 0.3s ease;
  margin-top: 10px;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

/* SECTION TITLE */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  text-align: center;
  margin: 0 0 15px;
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--dark-gold);
  font-weight: 800;
  position: relative;
  display: block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--dark-brown);
  opacity: 0.8;
  max-width: 600px;
  margin: 25px auto 0;
  line-height: 1.6;
}

.text-center {
  text-align: center;
}

.mb-5 {
  margin-bottom: 3rem;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* VIDEO SECTION */
.video-section {
  max-width:500px;
  margin: 80px auto;
  padding: 0 20px;
}
.video-frame {
  position: relative;
  background: linear-gradient(135deg, rgba(254, 224, 114, 0.18), rgba(212, 175, 55, 0.12));
  border-radius: 22px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  box-shadow: 0 18px 40px var(--shadow);
  overflow: hidden;
  padding: 10px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.video-frame::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 26px;
 
  filter: blur(12px);
  opacity: 0.35;
  pointer-events: none;
}
.video-frame::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, rgba(212,175,55,0.35), rgba(254,224,114,0.25));
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  opacity: 0.6;
  pointer-events: none;
}
.video-frame:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 60px var(--shadow-hover);
}
.video-player {
  width: 100%;
  height: auto;
  background: #000;
  display: block;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}

.video-frame.portrait .video-player {
  aspect-ratio: 9 / 16;
}
.video-frame.landscape .video-player {
  aspect-ratio: 16 / 9;
}

/* SERVICES */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.card {
  background: var(--white);
  border-radius: 20px;
  padding: 35px 30px;
  box-shadow: 0 10px 30px var(--shadow);
  border: 2px solid transparent;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-gold), var(--light-gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 50px var(--shadow-hover);
  border-color: var(--primary-gold);
}

.card:hover::before {
  transform: scaleX(1);
}

.card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-gold), var(--light-gold));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 2rem;
  color: white;
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.card h3 {
  margin: 0 0 15px 0;
  color: var(--dark-gold);
  font-size: 1.5rem;
  font-weight: 700;
}

.card p {
  color: var(--dark-brown);
  opacity: 0.85;
  line-height: 1.7;
  font-size: 1rem;
}

/* HIGHLIGHT SECTION */
.highlight {
  margin: 80px auto;
  padding: 70px 40px;
  background: linear-gradient(135deg, var(--primary-gold) 0%, var(--light-gold) 100%);
  color: white;
  text-align: center;
  border-radius: 30px;
  max-width: 1100px;
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
  position: relative;
  overflow: hidden;
}

.highlight::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.highlight::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 350px;
  height: 350px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.highlight-content {
  position: relative;
  z-index: 1;
}

.highlight h2 {
  margin: 0 0 20px 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.highlight p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  opacity: 0.95;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

/* ABOUT */
.about {
  max-width: 1100px;
  margin: auto;
  padding: 20px;
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.about-text {
  color: #5a4a2a;
  line-height: 1.7;
}

.about-img img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* CONTACT */
.contact {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(to bottom, var(--cream), var(--white));
  margin-top: 80px;
}

.contact-content {
  max-width: 600px;
  margin: 0 auto;
}

.contact p {
  max-width: 500px;
  margin: 0 auto 40px;
  color: var(--dark-brown);
  opacity: 0.85;
  font-size: 1.1rem;
  line-height: 1.8;
}

.contact-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: var(--white);
  color: var(--dark-gold);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 5px 20px var(--shadow);
  transition: all 0.3s ease;
  border: 2px solid var(--primary-gold);
}

.contact-btn:hover {
  background: linear-gradient(135deg, var(--primary-gold), var(--light-gold));
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.contact-btn i {
  font-size: 1.2rem;
}

.footer {
  background: linear-gradient(135deg, var(--dark-gold), #6b5020);
  padding: 40px 20px;
  text-align: center;
  color: white;
  margin-top: 60px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer p {
  margin: 10px 0;
  opacity: 0.9;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  color: white;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
}

/* SCROLL TO TOP BUTTON */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-gold), var(--light-gold));
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
  transition: all 0.3s ease;
  z-index: 999;
}

.scroll-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
}

.scroll-top.show {
  display: flex;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .navbar {
    padding: 1rem;
  }

  .nav-links {
    display: none;
  }

  .hero {
    padding: 150px 20px 80px;
  }

  .services {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-btn {
    justify-content: center;
  }

  .scroll-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
}

.kenali-kami {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
  position: relative;
  z-index: 1;
}

.kk-left {
  padding: 50px 40px;
  background: var(--white);
  border-radius: 25px 0 0 25px;
  position: relative;
}

.kk-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  color: var(--dark-gold);
  margin-bottom: 25px;
  font-weight: 800;
  line-height: 1.2;
  position: relative;
  display: inline-block;
}

.kk-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-gold), var(--light-gold));
  border-radius: 2px;
}

.kk-logo {
  width: 240px;
  max-width: 100%;
  margin: 30px 0 35px;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.12));
  transition: transform 0.3s ease;
}

.kk-logo:hover {
  transform: scale(1.05);
}

.kk-points {
  display: grid;
  gap: 18px;
  margin-top: 35px;
}

.kk-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 249, 232, 0.8));
  padding: 22px 25px;
  border-radius: 16px;
  color: var(--dark-brown);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.kk-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary-gold), var(--light-gold));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s ease;
}

.kk-item:hover {
  transform: translateX(8px) translateY(-3px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
  border-color: var(--primary-gold);
  background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(255, 249, 232, 0.95));
}

.kk-item:hover::before {
  transform: scaleY(1);
}

.kk-item-content {
  flex: 1;
}

.kk-item p {
  margin: 0;
  font-weight: 500;
  line-height: 1.7;
  font-size: 1rem;
  color: var(--dark-brown);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.kk-item p strong {
  color: var(--dark-gold);
  font-weight: 700;
  font-size: 1.05rem;
}

.kk-number {
  background: linear-gradient(135deg, var(--dark-gold), #6b5020);
  min-width: 70px;
  min-height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 18px;
  font-weight: 800;
  color: white;
  font-size: 1.4rem;
  box-shadow: 0 8px 20px rgba(142, 106, 39, 0.3);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.kk-number::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: rotate(45deg);
  transition: all 0.5s ease;
}

.kk-item:hover .kk-number::before {
  animation: shine 0.8s ease;
}

@keyframes shine {
  0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
  100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.kk-icon {
  font-size: 1.3rem;
  margin-right: 5px;
  opacity: 0.9;
}

/* Right logo */
.kk-right {
  text-align: center;
  padding: 50px 40px;
  
  border-radius: 0 25px 25px 0;
  position: relative;
  overflow: hidden;
}

.kk-right::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  
  border-radius: 50%;
}

.kk-right::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 350px;
  height: 350px;
  
  border-radius: 50%;
}

.kk-big-logo {
  width: 100%;
  max-width: 500px;
  animation: floating 5s ease-in-out infinite;
  filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.15));
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.kk-big-logo:hover {
  animation-play-state: paused;
  transform: scale(1.05);
}

/* Floating animation */
@keyframes floating {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-15px) rotate(1deg); }
  50% { transform: translateY(-8px) rotate(0deg); }
  75% { transform: translateY(-12px) rotate(-1deg); }
}

/* Polygon Gold Cut Background */
.kk-frame {
  position: relative;
  background: linear-gradient(135deg, rgba(212, 194, 134, 0.15), rgba(254, 224, 114, 0.2));
  padding: 80px 20px;
  border-radius: 30px;
  overflow: visible;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
  margin: 100px auto;
  max-width: 1300px;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.kk-frame::before {
   content: '';
  position: absolute;
  inset: 0;
  background-image: url('img/bg-tentang.png');
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  z-index: 0;
}

.kk-frame::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -100px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  transform: translateY(-50%);
}

/* KONSEP PROGRAM SECTION */
.konsep-section {
  max-width: 1400px;
  margin: 100px auto;
  padding: 0 20px;
  position: relative;
}

.konsep-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--white);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.konsep-left {
  background: var(--white);
  padding: 60px 50px;
  position: relative;
  overflow: hidden;
}

.konsep-decorative-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.konsep-shape {
  position: absolute;
  background: linear-gradient(135deg, var(--primary-gold), var(--light-gold));
  border-radius: 50%;
  opacity: 0.15;
}

.shape-top-left {
  width: 200px;
  height: 200px;
  top: -80px;
  left: -80px;
  border-radius: 50% 0 50% 50%;
}

.shape-bottom-left {
  width: 150px;
  height: 150px;
  bottom: -60px;
  left: -60px;
  border-radius: 50% 50% 0 50%;
}

.konsep-dots {
  position: absolute;
  top: 20px;
  right: 30px;
  width: 100px;
  height: 100px;
  background-image: radial-gradient(circle, var(--primary-gold) 2px, transparent 2px);
  background-size: 15px 15px;
  opacity: 0.2;
}

.konsep-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #2a2a2a;
  margin: 0 0 30px 0;
  position: relative;
  z-index: 1;
}

.konsep-logo-wrapper {
  margin: 30px 0;
  position: relative;
  z-index: 1;
}

.konsep-logo {
  width: 280px;
  max-width: 100%;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

.konsep-highlight-box {
  background: linear-gradient(135deg, var(--primary-gold), var(--light-gold));
  color: white;
  padding: 18px 25px;
  border-radius: 12px;
  margin: 30px 0;
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
  position: relative;
  z-index: 1;
}

.konsep-highlight-box p {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.5;
}

.konsep-points {
  list-style: none;
  padding: 0;
  margin: 30px 0 0 0;
  position: relative;
  z-index: 1;
}

.konsep-points li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  padding: 20px;
  background: rgba(255, 249, 232, 0.5);
  border-radius: 15px;
  border-left: 4px solid var(--primary-gold);
  transition: all 0.3s ease;
}

.konsep-points li:hover {
  background: rgba(255, 249, 232, 0.8);
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.konsep-points li i {
  color: var(--primary-gold);
  font-size: 1.3rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.konsep-points li span {
  color: var(--dark-brown);
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 500;
}

.konsep-right {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(248, 211, 72, 0.1));
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.konsep-photo-frame {
  position: relative;
  width: 100%;
  max-width: 600px;
}

.konsep-photo-frame::before {
  content: "";
  position: absolute;
  top: -20px;
  right: -20px;
  left: -20px;
  bottom: -20px;
  background: linear-gradient(135deg, var(--primary-gold), var(--light-gold));
  border-radius: 30px;
  z-index: 0;
  opacity: 0.8;
}

.konsep-photo-frame::after {
  content: "";
  position: absolute;
  top: -10px;
  right: -10px;
  left: -10px;
  bottom: -10px;
  background: var(--white);
  border-radius: 25px;
  z-index: 1;
}

.konsep-photo-frame img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  position: relative;
  z-index: 2;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.konsep-photo-frame:hover img {
  transform: scale(1.02);
}

/* KEUNIKAN PROGRAM SECTION */
.uniq-section {
  padding-top: 60px;
  position: relative;
  overflow: hidden;
  max-width: 1500px;
  margin: 100px auto;
  padding-left: 20px;
  padding-right: 20px;
}

.uniq-header {
  margin-bottom: 80px;
}

.uniq-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.uniq-title-wrapper {
  position: relative;
}

.uniq-title-badge {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, var(--primary-gold), var(--light-gold));
  color: white;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 2px;
  border-radius: 30px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Title */
.uniq-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 800;
  color: #2a2a2a;
  line-height: 1.1;
  margin: 0 0 15px 0;
}

.uniq-title-accent {
  background: linear-gradient(135deg, var(--primary-gold), var(--light-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.uniq-subtitle {
  font-size: 1.1rem;
  color: var(--dark-brown);
  opacity: 0.8;
  margin-bottom: 30px;
  font-weight: 500;
}

/* Logo */
.uniq-logo {
  width: 220px;
  max-width: 100%;
  margin-top: 20px;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.15));
  transition: transform 0.3s ease;
}

.uniq-logo:hover {
  transform: scale(1.05) rotate(2deg);
}

/* Image frame - ADAPTS TO PHOTO SIZE */
.uniq-img-wrapper {
  position: relative;
  padding: 20px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(248, 211, 72, 0.15));
  border-radius: 30px;
}

.uniq-img-frame {
  position: relative;
  border-radius: 25px;
  overflow: visible;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s ease;
  width: 100%;
  display: inline-block;
}

.uniq-img-frame::before {
  content: "";
  position: absolute;
  top: -15px;
  right: -15px;
  left: -15px;
  bottom: -15px;
  border: 4px solid var(--primary-gold);
  border-radius: 25px;
  z-index: -1;
  opacity: 0.6;
  transition: all 0.4s ease;
}

.uniq-img-wrapper:hover .uniq-img-frame {
  transform: translateY(-10px);
}

.uniq-img-wrapper:hover .uniq-img-frame::before {
  top: -10px;
  right: -10px;
  left: -10px;
  bottom: -10px;
  opacity: 0.8;
}

.uniq-img-frame img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 25px;
  transition: transform 0.4s ease;
}

.uniq-img-wrapper:hover .uniq-img-frame img {
  transform: scale(1.05);
}

/* GOLD BACKGROUND SHAPE */
.uniq-gold-bg {
  background: linear-gradient(135deg, #c9a227 0%, #d4af37 50%, #c9a227 100%);
  padding: 80px 50px;
  border-radius: 35px;
  clip-path: polygon(0 0, 94% 0, 100% 100%, 0% 100%);
  color: white;
  box-shadow: 0 25px 60px rgba(201, 162, 39, 0.4);
  position: relative;
  overflow: hidden;
}

.uniq-gold-bg::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 4s ease-in-out infinite;
}

.uniq-gold-bg::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.1); opacity: 1; }
}

/* Icons grid */
.uniq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  position: relative;
  z-index: 1;
}

.uniq-item {
  color: white;
  padding: 35px 25px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 25px;
  backdrop-filter: blur(15px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: floatUp 0.8s ease;
  border: 2px solid rgba(255, 255, 255, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.uniq-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.uniq-item:hover::before {
  left: 100%;
}

.uniq-item:hover {
  transform: translateY(-8px) scale(1.02);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.4);
}

.uniq-icon-wrapper {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.4s ease;
  border: 2px solid rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.uniq-icon-wrapper::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s ease;
}

.uniq-item:hover .uniq-icon-wrapper {
  transform: rotate(5deg) scale(1.1);
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
}

.uniq-item:hover .uniq-icon-wrapper::before {
  width: 100px;
  height: 100px;
}

.uniq-icon-wrapper i {
  font-size: 2.5rem;
  color: white;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.3));
  transition: transform 0.4s ease;
}

.uniq-item:hover .uniq-icon-wrapper i {
  transform: scale(1.1);
}

.uniq-item-content {
  flex: 1;
}

.uniq-item-content strong {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: 700;
  line-height: 1.3;
}

.uniq-item-content p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.95;
  font-weight: 400;
}

/* Simple smooth appear */
@keyframes floatUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Mobile fix */
@media(max-width: 780px) {
  .uniq-section {
    margin: 60px auto;
    padding-top: 40px;
  }

  .uniq-header {
    margin-bottom: 50px;
  }

  .uniq-top {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .uniq-title-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .uniq-title-badge {
    align-self: center;
  }

  .uniq-subtitle {
    text-align: center;
  }
  
  .uniq-gold-bg {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    border-radius: 25px;
    padding: 50px 25px;
  }

  .uniq-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .uniq-item {
    padding: 30px 20px;
  }

  .uniq-icon-wrapper {
    width: 70px;
    height: 70px;
  }

  .uniq-icon-wrapper i {
    font-size: 2rem;
  }

  .uniq-img-wrapper {
    padding: 15px;
  }

  .kenali-kami {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .kk-left {
    padding: 40px 25px;
    border-radius: 25px 25px 0 0;
  }

  .kk-right {
    padding: 40px 25px;
    border-radius: 0 0 25px 25px;
  }

  .kk-item {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .kk-item:hover {
    transform: translateY(-5px);
  }

  .kk-item p {
    justify-content: center;
    text-align: center;
  }

  .kk-frame {
    padding: 50px 15px;
    margin: 60px auto;
  }

  .kk-title {
    text-align: center;
  }

  .kk-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  /* KONSEP SECTION RESPONSIVE */
  .konsep-container {
    grid-template-columns: 1fr;
  }

  .konsep-left {
    padding: 40px 30px;
  }

  .konsep-right {
    padding: 30px 20px;
  }

  .konsep-photo-frame {
    max-width: 100%;
  }

  .konsep-logo {
    width: 220px;
  }

  .konsep-title {
    text-align: center;
  }

  .konsep-logo-wrapper {
    text-align: center;
  }
}

.org-section {
  max-width: 1200px;
  margin: 100px auto;
  padding: 0 20px;
}

.org-header {
  text-align: center;
  margin-bottom: 40px;
}

.org-subtitle {
  color: var(--dark-brown);
  opacity: 0.85;
  margin-top: 10px;
  font-size: 1rem;
}

.org-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.org-card {
  background: var(--white);
  border-radius: 22px;
  box-shadow: 0 10px 25px var(--shadow);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.org-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px var(--shadow-hover);
}

.org-photo {
  position: relative;
  aspect-ratio: 3 / 4;
  background: #f5f5f5;
  overflow: hidden;
  border-radius: 14px;
  margin-bottom: 12px;
}

.org-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.image-section {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
}

.image-header {
  text-align: center;
  margin-bottom: 20px;
}

.image-subtitle {
  color: var(--dark-brown);
  opacity: 0.9;
  font-size: 1rem;
  margin-top: 8px;
}

.image-frame {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.image-frame::before {
  content: "";
  position: absolute;
  top: -18px;
  right: -18px;
  left: -18px;
  bottom: -18px;
  background: linear-gradient(135deg, var(--primary-gold), var(--light-gold));
  border-radius: 26px;
  z-index: 0;
  opacity: 0.9;
}

.image-frame::after {
  content: "";
  position: absolute;
  top: -8px;
  right: -8px;
  left: -8px;
  bottom: -8px;
  background: var(--white);
  border-radius: 22px;
  z-index: 1;
}

.image-frame img {
  width: 100%;
  display: block;
  border-radius: 18px;
  position: relative;
  z-index: 2;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.image-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  background: rgba(212, 175, 55, 0.95);
  color: white;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.5);
}

@media(max-width: 780px) {
  .image-section {
    margin: 60px auto;
  }
  .image-badge {
    font-size: 0.85rem;
    padding: 6px 12px;
  }
}

.leader-section {
  max-width: 1200px;
  margin: 100px auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.leader-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--white);
  border-radius: 30px;
  box-shadow: 0 20px 40px rgba(142, 106, 39, 0.1);
  overflow: hidden;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.leader-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(142, 106, 39, 0.2);
}

.leader-text {
  padding: 50px 40px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #fffbf0;
  background-image: radial-gradient(var(--primary-gold) 0.5px, transparent 0.5px);
  background-size: 20px 20px;
}

.leader-text::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary-gold), var(--dark-gold));
}

.leader-text::after {
  content: '"';
  position: absolute;
  top: 10px;
  right: 30px;
  font-family: "Playfair Display", serif;
  font-size: 8rem;
  color: var(--primary-gold);
  opacity: 0.1;
  line-height: 1;
  pointer-events: none;
}

.leader-card.alt .leader-text::before {
  left: auto;
  right: 0;
}

.leader-card.alt .leader-text::after {
  right: auto;
  left: 30px;
}

.leader-title {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  color: var(--dark-gold);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.leader-text p {
  font-size: 1.05rem;
  color: var(--dark-brown);
  line-height: 1.8;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.leader-caption {
  margin-top: 30px;
  padding: 20px;
  background: var(--white);
  border-radius: 16px;
  border-left: 4px solid var(--primary-gold);
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.leader-card:hover .leader-caption {
  transform: translateX(10px);
}

.leader-caption strong {
  display: block;
  font-size: 1.2rem;
  color: var(--dark-gold);
  font-weight: 800;
  margin-bottom: 6px;
}

.leader-caption span {
  font-size: 0.9rem;
  color: #666;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.leader-image {
  position: relative;
  height: 100%;
  min-height: 400px;
  background: linear-gradient(135deg, #fdfbf5 0%, #fff0c7 100%);
  overflow: hidden;
}

.leader-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  position: relative;
  z-index: 1;
  transition: transform 0.5s ease;
}

.leader-card:hover .leader-image img {
  transform: scale(1.05);
}

@media(max-width: 900px) {
  .leader-card {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  .leader-image {
    height: 350px;
    order: -1;
  }
  .leader-text::before {
    width: 100%;
    height: 6px;
  }
  .leader-card.alt .leader-text::before {
    left: 0;
    right: auto;
  }
  .leader-card:hover .leader-caption {
    transform: none;
  }
}
.org-info {
  padding: 22px;
  text-align: center;
}

.org-info h3 {
  font-size: 1.2rem;
  color: var(--dark-gold);
  margin-bottom: 8px;
  font-weight: 700;
}

.org-info p {
  margin: 0;
  color: var(--dark-brown);
  opacity: 0.85;
  font-size: 0.95rem;
}

@media(max-width: 780px) {
  .org-section {
    margin: 60px auto;
  }
}

.org-tree {
  margin-top: 50px;
}

.org-level {
  display: flex;
  justify-content: center;
  align-items: center;
}

.org-node {
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 10px 25px var(--shadow);
  padding: 18px 22px;
  text-align: center;
  position: relative;
  min-width: 280px;
  max-width: 520px;
  border: 1px solid rgba(212, 175, 55, 0.25);
}

.org-role {
  color: var(--dark-brown);
  font-weight: 700;
  margin-bottom: 6px;
}

.org-name {
  color: var(--dark-gold);
  font-weight: 600;
  margin-bottom: 4px;
}

.org-unit {
  color: var(--dark-brown);
  opacity: 0.85;
  font-size: 0.95rem;
}

.org-avatar {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 14px;
  border: 4px solid var(--primary-gold);
  background: var(--white);
  box-shadow: 0 6px 14px var(--shadow);
}

.org-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.org-connector-v {
  width: 2px;
  height: 30px;
  background: var(--primary-gold);
  margin: 10px auto;
}

.org-level.level-3 {
  justify-content: center;
}

.org-branch {
  display: grid;
  grid-template-columns: repeat(3, minmax(240px, 1fr));
  gap: 20px;
  position: relative;
  padding-top: 30px;
}

.org-branch::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--primary-gold);
}

.org-branch .org-node {
  position: relative;
}

.org-branch .org-node::before {
  content: '';
  position: absolute;
  top: -30px;
  left: 50%;
  width: 2px;
  height: 30px;
  background: var(--primary-gold);
  transform: translateX(-50%);
}

@media(max-width: 780px) {
  .org-branch {
    grid-template-columns: 1fr;
  }
  .org-branch::before,
  .org-branch .org-node::before {
    display: none;
  }
  .org-node {
    max-width: 100%;
    min-width: 0;
  }
}

