:root{
  --cutTop: 75%;
  --cutMid: 60%;
  --cutBot: 75%;
  --maroon:#82292B;
  --gold:#c9a84c;
  --dark-gold:#a8893a;
  --teal:#0B7F80;
  --cardGrey:#ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html{
  height: 100%;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth !important;
  overflow-x: hidden;
  overflow-y: auto;
}

body{
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  overflow-y: auto;
  background: #000;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  position: relative;
}

/* ==================== HEADER ==================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.30);hi
  backdrop-filter: blur(15px);
  box-shadow: 0 2px 15px rgba(0,0,0,0.10);
  transition: all 0.3s ease;
}

body.lightbox-open header {
  z-index: 0;
  pointer-events: none;
}

header.scrolled {
  background: rgba(155, 142, 58, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.20);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 150px;
  display: flex;
  justify-content: center;
  align-items: center;
}

header.scrolled .nav-container {
  padding: 16px 150px;
}

.nav-menu {
  display: flex;
  gap: 45px;
  list-style: none;
}

.nav-menu a {
  color: #000000;
  text-decoration: none;
  font-size: 16px;
  font-weight: 800;
  text-transform: capitalize;
  position: relative;
  transition: all 0.3s ease;
  padding: 8px 0;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 3px;
  background: #000000;
  transition: width 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--gold);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
  background: var(--gold);
}

header.scrolled .nav-menu a {
  color: #ffffff;
}

header.scrolled .nav-menu a::after {
  background: #ffffff;
}

header.scrolled .nav-menu a:hover,
header.scrolled .nav-menu a.active {
  color: #2fd6d6;
}

header.scrolled .nav-menu a:hover::after,
header.scrolled .nav-menu a.active::after {
  background: #2fd6d6;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  width: 28px;
  height: 3px;
  background: #000000;
  transition: all 0.3s ease;
  border-radius: 2px;
}

header.scrolled .nav-toggle span {
  background: #ffffff;
}

/* Mobile Menu */
@media (max-width: 900px) {
  .nav-container {
    padding: 18px 30px;
    justify-content: space-between;
  }

  header.scrolled .nav-container {
    padding: 15px 30px;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(155, 142, 58, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: center;
    padding: 30px 0;
    gap: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu a {
    color: #ffffff;
    font-size: 18px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    width: 80%;
    text-align: center;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -7px);
  }
}

@media (max-width: 600px) {
  .nav-container {
    padding: 15px 20px;
  }

  header.scrolled .nav-container {
    padding: 12px 20px;
  }
}

/* ==================== HERO SECTION ==================== */
.hero{
  position:relative;
  width:100%;
  height:100vh;
  min-height:100vh;
  overflow:hidden;
  background:#000;
}

.hero-side{ position:absolute; inset:0; overflow:hidden; }

.hero-left{
  z-index: 2;
  clip-path: polygon(
    0 0,
    var(--cutTop) 0,
    var(--cutMid) 50%,
    var(--cutBot) 100%,
    0 100%
  );
}

.hero-left::after{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(255,255,255, var(--overlay-opacity, .45));
  pointer-events:none;
}

.hero-right{
  z-index: 1;
  clip-path: polygon(
    var(--cutTop) 0,
    100% 0,
    100% 100%,
    var(--cutBot) 100%,
    var(--cutMid) 50%
  );
}

.hero-right::after{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(255,255,255, var(--overlay-opacity, .45));
  pointer-events:none;
}

.slides{ position:absolute; inset:0; overflow:hidden; }

.slide-item{
  position:absolute;
  inset:0;
  opacity:0;
  transition: opacity .8s ease;
}
.slide-item.active{ opacity:1; }

.slide-blur-bg{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  filter:brightness(0.2);
}

.slides img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  transform: scale(calc(var(--img-scale, 1) * 1.03));
  transition: transform 1.2s ease;
}
.slide-item.active img{
  transform: scale(var(--img-scale, 1));
}

/* Hero Main Content (Center) */
.hero-main-content{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  z-index: 10;
  text-align: center;
  color: #000;
  max-width: 900px;
  width: 90%;
}


.hero-arab{
  font-size: 80px;
  font-family: "Amiri","Noto Naskh Arabic","Scheherazade New",serif;
  direction: rtl;
  margin: 0 0 10px 0;
  font-weight: 700;
  text-shadow:
    0 0 6px #fff,
    0 0 15px #fff,
    0 0 30px rgba(255,255,255,0.95),
    0 0 60px rgba(255,255,255,0.8),
    0 0 100px rgba(255,255,255,0.6),
    0 0 160px rgba(255,255,255,0.4);
}

.hero-title{
  font-size: 45px;
  font-weight: 700;
  letter-spacing: 3px;
  margin: 0 0 20px 0;
  text-transform: uppercase;
  font-family: "Playfair Display SC", serif;
  text-shadow:
    0 0 6px #fff,
    0 0 15px #fff,
    0 0 30px rgba(255,255,255,0.95),
    0 0 60px rgba(255,255,255,0.8),
    0 0 100px rgba(255,255,255,0.6),
    0 0 160px rgba(255,255,255,0.4);
}

.hero-heading{
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 12px 0;
  line-height: 1.3;
  font-family: "Lora", serif;
  text-shadow:
    0 0 6px #fff,
    0 0 15px #fff,
    0 0 30px rgba(255,255,255,0.95),
    0 0 60px rgba(255,255,255,0.8),
    0 0 100px rgba(255,255,255,0.6),
    0 0 160px rgba(255,255,255,0.4);
}

.hero-subtext{
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  opacity: 0.85;
  text-shadow:
    0 0 6px #fff,
    0 0 15px #fff,
    0 0 30px rgba(255,255,255,0.95),
    0 0 60px rgba(255,255,255,0.8),
    0 0 100px rgba(255,255,255,0.6);
}

/* Hero Info Cards */
.hero-cards-container{
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 1400px;
  width: calc(100% - 300px);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  border-radius: 24px 24px 0 0;
  overflow: hidden;
}

.hero-info-card{
  background: transparent;
  backdrop-filter: none;
  border-radius: 0;
  padding: 15px 24px;
  text-align: center;
  box-shadow: none;
  border-right: 1px solid rgba(0,0,0,0.08);
  transition: background 0.3s ease;
}

.hero-info-card:first-child{
  border-radius: 24px 0 0 0;
}

.hero-info-card:last-child{
  border-right: none;
  border-radius: 0 24px 0 0;
}

.hero-info-card:hover{
  background: rgba(155, 142, 58, 0.05);
  transform: none;
}

.hero-card-icon{
  width: 52px;
  height: 52px;
  margin: 0 auto 12px;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.hero-card-icon svg{
  width: 100%;
  height: 100%;
}

.hero-card-title{
  font-size: 15px;
  font-weight: 800;
  color: #000;
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.hero-card-number{
  font-size: 12px;
  font-weight: 600;
  color: #555;
  margin: 0;
  line-height: 1.3;
}

/* Old hero content - keep for backward compatibility but hide */
.hero-content{
  display: none;
}

.arab{
  margin:0 0 10px 0;
  font-size: 44px;
  font-family: "Amiri","Noto Naskh Arabic","Scheherazade New",serif;
  direction: rtl;
}
.title{
  margin:0 0 10px 0;
  font-weight: 900;
  letter-spacing: .8px;
  text-transform: uppercase;
}
.subtitle{
  margin:0;
  font-weight: 700;
  font-size: 18px;
  line-height:1.35;
}

/* ==================== SECTION 2 ==================== */
.section-2{
  position: relative;
  width: 100%;
  height: 100vh;
  background: #f0f9ff;
  padding: 60px 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  overflow: hidden;
}

.content-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.left-column {
  display: flex;
  flex-direction: column;
  gap: 50px;
  height: 100%;
  justify-content: center;
}

h2 {
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 20px;
  color: #000000;
  letter-spacing: -0.5px;
  font-family: 'Segoe UI', sans-serif;
}

.section-2 h2 { font-weight: 900; }

.content-list { list-style: none; padding: 0; }

.content-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 18px;
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  font-weight: 400;
  font-family: 'Segoe UI', sans-serif;
}

.content-list li::before {
  content: '●';
  color: #ff6b35;
  font-size: 18px;
  margin-right: 15px;
  margin-top: 2px;
  flex-shrink: 0;
}

.tujuan-list li{
  margin-bottom: 8px;
  line-height: 1.25;
}

.images-column {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-back {
  position: absolute;
  top: 10%;
  right: 0;
  width: 620px;
  height: 450px;
  object-fit: cover;
  border-radius: 25px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.image-front {
  position: absolute;
  bottom: 10%;
  left: -10%;
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 20px;
  border: 0;
  box-shadow:
    0 0 25px rgba(255, 255, 255, 0.85),
    0 15px 50px rgba(0,0,0,0.25);
  z-index: 2;
}

/* ==================== SECTION 2 ==================== */
.section-3{
  position: relative;
  width: 100%;
  height: auto;
  background: #fff;
  padding: 50px 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  margin: 0;
}

.section-3-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 60px;
  gap: 10px;
}

.section-3-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #c9a84c;
  font-family: 'Segoe UI', sans-serif;
}

.section-3-label::before,
.section-3-label::after {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  background: #c9a84c;
}

.section-3-title {
  font-size: 22px;
  font-weight: 500;
  text-align: center;
  color: #1a3c2e;
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  line-height: 1.2;
}

.section-3-title .title-dark {
  color: #1a3c2e;
}

.section-3-title .title-gold {
  color: #c9a84c;
}

.cards-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1400px;
  width: 100%;
  align-items: stretch; /* penting agar semua kolom bisa seragam */
}

/* Wrapper frame gambar atas */
.card-wrap{
  position: relative;
  width: 100%;
  min-height: 560px;
  --frame-img: url("https://picsum.photos/seed/frame1/1200/600");
  --frame-h: 230px;
  --card-rise: 56px;
  display: flex;
  justify-content: center;
}

.card-wrap::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  right:0;
  height: var(--frame-h);
  background-image: var(--frame-img);
  background-size: var(--frame-size, cover);
  background-position: var(--frame-pos, center);
  background-repeat: no-repeat;
  border-radius: 20px;
  z-index: 0;
}

.card-wrap::after{
  content:"";
  position:absolute;
  top:0;
  left:0;
  right:0;
  height: var(--frame-h);
  background: linear-gradient(0deg, rgba(0,0,0,0.18), rgba(0,0,0,0.18));
  border-radius: 20px;
  pointer-events:none;
  z-index: 0;
}

/* Card putih */
.card{
  position: relative;
  z-index: 1;
  width: 88%;
  margin-top: calc(var(--frame-h) - var(--card-rise));
  background: var(--cardGrey);
  border-radius: 16px;
  padding: 54px 30px 30px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.10);
  display: flex;
  flex-direction: column;
  min-height: 380px;
}

/* Icon bintang nempel di batas gambar-card */
.card-icon{
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 56px;
  filter: drop-shadow(0 3px 2px rgba(0,0,0,0.35));
}

.card-icon svg{ width: 100%; height: 100%; }

/* Bagian konten dibuat flex:1 supaya tombol selalu “terkunci” di bawah */
.card-content{
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1; /* kunci tombol sejajar */
}

.card-title {
  font-size: 18px;
  font-weight: 500;
  margin: 0;
  text-align: center;
  color: #1a3c2e;
  font-family: 'Segoe UI', sans-serif;
}

.card-list { list-style: none; padding: 0; margin: 0; }

.card-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  font-weight: 400;
  font-family: 'Segoe UI', sans-serif;
}

.card-list li::before {
  content: '✓';
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--gold);
  color: #111;
  font-size: 12px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  margin-top: 3px;
  flex-shrink: 0;
}

.card-list-small li{
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 10px;
}

/* Mini box rekening */
.card-info-section{
  margin-top: 6px;
  padding-top: 14px;
  border-top: 2px solid rgba(201,168,76,0.18);
}

.card-subtitle{
  font-size: 14px;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 10px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .4px;
}

.bank-mini{
  background: rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 12px;
  padding: 12px;
}

.bank-mini-row{
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.bank-mini-row:last-child{ border-bottom: 0; }

.bank-mini-label{
  color: #777;
  font-weight: 800;
  font-size: 12px;
}

.bank-mini-value{
  color: #111;
  font-weight: 900;
  font-size: 12px;
  text-align: right;
}

/* Tombol selalu sejajar di bawah */
.card-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 75%;
  margin: 18px auto 0;
  border: none;
  cursor: pointer;
  padding: 12px 18px;
  border-radius: 10px;
  background: #1a3c2e;
  color: #c9a84c;
  font-size: 13px;
  font-weight: 500;
  box-shadow: 0 4px 16px rgba(26,60,46,0.20);
  transition: opacity 0.2s ease;
}

.card-button:hover {
  opacity: 0.85;
}

/* Responsive */
@media (max-width: 1200px) {
  .cards-container { grid-template-columns: 1fr; gap: 30px; }
  .card-wrap { max-width: 620px; margin: 0 auto; }
  .card { width: 92%; }
}

@media (max-width: 600px) {
  .card-title{ font-size: 22px; }
  .card-button{ width: 80%; font-size: 16px; }
}

/* ==================== SECTION 3 ==================== */
.section-3{
  width: 100%;
  height: auto;
  background: #fff;
  padding: 50px 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.s3-wrap{
  width: 100%;
  max-width: 1400px;
}

.s3-head{
  text-align: center;
  margin-bottom: 54px;
}

.s3-head .s3-top{
  font-size: 32px;
  font-weight: 900;
  color: #1a3c2e;
  letter-spacing: -0.6px;
  margin-bottom: 8px;
  font-family: 'Segoe UI', sans-serif;
}

.s3-head .s3-main{
  font-size: 32px;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -0.6px;
  line-height: 1.12;
  font-family: 'Segoe UI', sans-serif;
}

.s3-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  align-items: stretch;
}

.s3-card{
  border-radius: 2px;
  padding: 34px 26px;
  min-height: 620px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  box-shadow: 0 18px 40px rgba(0,0,0,0.28);
}

.s3-card h3{
  font-size: 32px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 18px;
  line-height: 1.25;
  font-family: 'Segoe UI', sans-serif;
}

.s3-card p{
  font-size: 15px;
  line-height: 1.8;
  text-align: center;
  margin: 0;
  opacity: .95;
  font-weight: 400;
  font-family: 'Segoe UI', sans-serif;
}

.s3-green{ background: #7CFF00; color: #000; }
.s3-green h3{ color:#000; }
.s3-green p{ color:#000; opacity: .92; }

.s3-dark{ background: #1b1b1b; color: #fff; }
.s3-dark h3{ color:#fff; }
.s3-dark p{ color: rgba(255,255,255,0.90); }

.s3-white{ background: #f2f2f2; color: #000; }
.s3-white h3{ color:#000; }
.s3-white p{ color: rgba(0,0,0,0.85); }

.s3-navy{ background: #1f2b35; color: #fff; }
.s3-navy h3{ color:#fff; }
.s3-navy p{ color: rgba(255,255,255,0.90); }

/* ==================== SECTION 4 ==================== */
.section-4 {
  width: 100%;
  background: #f5f0e8;
  padding: 70px 150px;
}

.s4-wrap {
  max-width: 1400px;
  margin: 0 auto;
}

.s4-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* --- Konten kiri --- */
.s4-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #c9a84c;
  margin-bottom: 16px;
}

.s4-kicker-line {
  display: block;
  height: 1px;
  width: 40px;
  background: #c9a84c;
  flex-shrink: 0;
}

.s4-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 24px;
  font-family: 'Segoe UI', sans-serif;
}

.s4-title-dark {
  display: block;
  color: #1a1a1a;
}

.s4-title-gold {
  display: block;
  color: #c9a84c;
}

.s4-text {
  font-size: 13px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 14px;
  font-weight: 400;
  font-family: 'Segoe UI', sans-serif;
}

.s4-text:last-of-type { margin-bottom: 0; }

.s4-quote {
  border-left: 3px solid #c9a84c;
  margin: 22px 0 0;
  padding: 10px 16px;
  font-size: 13px;
  font-style: italic;
  color: #555;
  line-height: 1.8;
  background: rgba(201,168,76,0.05);
  border-radius: 0 8px 8px 0;
}

.s4-badge {
  display: inline-block;
  margin-top: 16px;
  padding: 12px 22px;
  background: #1a3c2e;
  color: #c9a84c;
  font-size: 13px;
  font-weight: 500;
  border-radius: 50px;
  line-height: 1.4;
}

/* --- Foto kanan --- */
.s4-photos {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.s4-photo-big {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  transition: transform 0.4s ease;
}

.s4-photos-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.s4-photo-sm {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
  transition: transform 0.4s ease;
}

.s4-photo-big:hover,
.s4-photo-sm:hover { transform: scale(1.02); }

/* ==================== SECTION 5 ==================== */
/* ===== SECTION 5: GALERI ===== */
.section-5 {
  width: 100%;
  background: #fff;
  padding: 70px 150px;
}

.s5-wrap {
  max-width: 1400px;
  margin: 0 auto;
}

/* --- Header --- */
.s5-head {
  text-align: center;
  margin-bottom: 2rem;
}

.s5-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #c9a84c;
  margin-bottom: 8px;
}

.s5-kicker-line {
  display: block;
  height: 1px;
  width: 60px;
  background: #c9a84c;
}

.s5-main-title {
  font-size: 22px;
  font-weight: 500;
  color: #1a3c2e;
  margin: 0 0 6px;
  font-family: 'Segoe UI', sans-serif;
}

.s5-title-dark { font-weight: 700; color: #1a3c2e; }
.s5-title-gold { color: #c9a84c; }

.s5-subtitle {
  font-size: 12px;
  color: #888;
  margin: 0;
  font-weight: 400;
  font-family: 'Segoe UI', sans-serif;
}

/* --- Section label (bar + title) --- */
.s5-gallery-section {
  margin-bottom: 2rem;
}

.s5-section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
}

.s5-label-bar {
  display: block;
  width: 4px;
  height: 20px;
  background: #c9a84c;
  border-radius: 2px;
  flex-shrink: 0;
}

.s5-section-title {
  font-size: 14px;
  font-weight: 600;
  color: #1a3c2e;
  margin: 0;
}

/* --- Slider container --- */
.s5-slider-container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.s5-slider-wrapper {
  flex: 1;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 3 * 10px) / 4);
  gap: 10px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.s5-slider-wrapper::-webkit-scrollbar { display: none; }

/* --- Photo Item --- */
.photo-item {
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid rgba(201,168,76,0.2);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex-shrink: 0;
}

.photo-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.18);
}

.photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* --- Video Item --- */
.video-item {
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid rgba(201,168,76,0.2);
  background: #1a3c2e;
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.18);
}

.video-item iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* --- Slider Buttons --- */
.s5-slider-btn {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: #1a3c2e;
  color: #c9a84c;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease;
  z-index: 10;
}

.s5-slider-btn:hover { opacity: 0.8; }
.s5-btn-left, .s5-btn-right { position: static; transform: none; }

/* ==================== LIGHTBOX ==================== */
.lightbox{
  display: none;
  position: fixed;
  z-index: 999999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  align-items: center;
  justify-content: center;
  transform: translateZ(0);
  isolation: isolate;
}

.lightbox.active{
  display: flex;
}

.lightbox-content{
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 0 50px rgba(0,0,0,0.5);
  border: 2px solid var(--gold);
}

.lightbox-close{
  position: absolute;
  top: 30px;
  right: 40px;
  color: var(--gold);
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1000000;
  background: none;
  border: none;
  transition: all 0.3s;
}

.lightbox-close:hover{
  transform: rotate(90deg);
  color: #fff;
}

.lightbox-nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.2);
  border: 2px solid var(--gold);
  color: var(--gold);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: all 0.3s;
  z-index: 1000000;
}

.lightbox-nav:hover{
  background: var(--gold);
  color: #000;
  transform: translateY(-50%);
}

.lightbox-prev{
  left: 30px;
}

.lightbox-next{
  right: 30px;
}

.lightbox-caption{
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 18px;
  text-align: center;
  background: rgba(0,0,0,0.7);
  padding: 10px 20px;
  border-radius: 8px;
}

/* Responsive section-5 */
@media (max-width: 900px) {
  .section-5 { padding: 50px 30px; }
  .s5-slider-wrapper { grid-auto-columns: calc((100% - 2 * 10px) / 3); }

  .lightbox-close{
    top: 20px;
    right: 20px;
    font-size: 35px;
  }

  .lightbox-nav{
    width: 44px;
    height: 44px;
    font-size: 20px;
    padding: 0;
  }
}

@media (max-width: 600px) {
  .section-5 { padding: 40px 20px; }
  .s5-slider-wrapper { grid-auto-columns: calc((100% - 10px) / 2); }

  .lightbox-nav{
    width: 38px;
    height: 38px;
    font-size: 16px;
    padding: 0;
  }

  .lightbox-prev{
    left: 10px;
  }

  .lightbox-next{
    right: 10px;
  }
}

/* ==================== SECTION 6 ==================== */
/* ===== SECTION 6: CTA + TESTIMONI ===== */
.section-6 {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 70px 150px;
}

.section-6::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #0a2a1e 0%, #1a3c2e 40%, #0d3d2e 70%, #061a12 100%);
  z-index: 0;
}

.section-6::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("https://picsum.photos/seed/alhumaira-cta/1920/700") center/cover no-repeat;
  opacity: 0.20;
  z-index: 0;
}

/* Inner container */
.s6-inner {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
}

/* --- CTA --- */
.s6-cta {
  text-align: center;
  padding-bottom: 2.5rem;
  margin-bottom: 2.5rem;
  border-bottom: 0.5px solid rgba(201,168,76,0.2);
}

.s6-cta-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  font-weight: 500;
  color: #c9a84c;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.s6-kicker-line {
  display: block;
  height: 1px;
  width: 60px;
  background: #c9a84c;
}

.s6-cta-sub {
  font-size: 14px;
  font-weight: 400;
  color: #c9a84c;
  letter-spacing: 1px;
  margin: 0 0 6px;
}

.s6-cta-brand {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 1.5rem;
  font-family: 'Segoe UI', sans-serif;
}

.s6-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #c9a84c;
  color: #1a3c2e;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 32px;
  border-radius: 10px;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: opacity 0.2s;
}
.s6-hero-btn:hover { opacity: 0.85; }

.s6-divider { display: none; }

/* --- Testimoni --- */
.s6-wrap { position: relative; z-index: 1; }

.s6-head {
  text-align: center;
  margin-bottom: 1.75rem;
}

.s6-kicker {
  font-size: 12px;
  color: #c9a84c;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 6px;
}

.s6-title {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
}

/* Slider */
.s6-slider {
  display: flex;
  align-items: center;
  gap: 12px;
}

.s6-track {
  flex: 1;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 3 * 12px) / 4);
  gap: 12px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.s6-track::-webkit-scrollbar { display: none; }

/* Testimoni Card */
.testimoni-item {
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: 14px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease;
}

.testimoni-item:hover { transform: translateY(-4px); }

.testimoni-item .stars {
  font-size: 14px;
  color: #c9a84c;
  letter-spacing: 2px;
}

.testimoni-item p {
  font-size: 12px;
  color: #e8e0cc;
  line-height: 1.7;
  margin: 0;
  flex: 1;
  font-style: italic;
}

.testimoni-author {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  color: #c9a84c;
  margin-top: auto;
}

/* Nav buttons */
.s6-nav {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.4);
  cursor: pointer;
  background: rgba(201,168,76,0.15);
  color: #c9a84c;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}
.s6-nav:hover { opacity: 0.75; }
.s6-prev, .s6-next { position: static; transform: none; }

/* Write button */
.s6-action {
  display: flex;
  justify-content: center;
  margin-top: 1.75rem;
}

.s6-write-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.5);
  color: #c9a84c;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 10px;
  text-decoration: none;
  transition: opacity 0.2s;
  backdrop-filter: blur(10px);
}
.s6-write-btn:hover { opacity: 0.75; }

/* Responsive */
@media (max-width: 900px) {
  .section-6 { padding: 50px 30px; }
  .s6-track { grid-auto-columns: calc((100% - 2 * 12px) / 3); }
}

@media (max-width: 600px) {
  .section-6 { padding: 40px 20px; }
  .s6-track { grid-auto-columns: calc((100% - 12px) / 2); }
  .s6-cta-brand { font-size: 26px; }
}

/* ==================== FOOTER ==================== */
.footer{
  position: relative;
  width: 100%;
  background: #b89f46;
  padding: 50px 150px 25px;
  margin: 0;
}

.footer-top{
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto 0px;
  align-items: start;
}

.footer-message{
  background: #344a57;
  border-radius: 28px;
  padding: 40px 40px 34px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.25);
}

.message-header{
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 18px;
}

.message-photo{
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 4px solid #9B8E3A;
  object-fit: cover;
  flex-shrink: 0;
}

.message-title-group{ flex: 1; }

.message-subtitle{
  color: #d9c56a;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 6px;
}

.message-title{
  color: #ffffff;
  font-size: 34px;
  font-weight: 900;
  margin: 0;
  letter-spacing: 0.2px;
}

.message-text{
  color: rgba(255,255,255,0.88);
  font-size: 14.5px;
  line-height: 1.9;
  margin: 0;
}

.footer-articles{
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-section-title{
  background: rgba(255,255,255,0.95);
  color: #1f2b35;
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
  padding: 14px 18px;
  border-radius: 16px;
  letter-spacing: 0.4px;
}

.article-list{
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.article-item{
  display: flex;
  gap: 12px;
  background: rgba(255,255,255,0.20);
  border: 1px solid rgba(0,0,0,0.06);
  padding: 14px;
  border-radius: 14px;
  cursor: pointer;
  transition: transform .25s ease, background .25s ease;
}

.article-item:hover{
  background: rgba(255,255,255,0.26);
  transform: translateY(-2px);
}

.article-thumbnail{
  width: 70px;
  height: 70px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}

.article-info{ flex: 1; }

.article-date{
  color: #1f2b35;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 6px;
}

.article-title-text{
  color: #1f2b35;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 650;
}

.details-button{
  background: #344a57;
  color: #ffffff;
  border: none;
  width: 100%;
  padding: 14px 18px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.18);
}

.details-button:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.22);
}

.footer-midband{
  max-width: 1400px;
  margin: 0 auto 5px;
  background: transparent;
  padding: 26px 28px;
}

.footer-bottom-content{
  display: grid;
  grid-template-columns: 220px 1fr 420px;
  gap: 40px;
  align-items: center;
}

.footer-logo-small{
  width: 170px;
  height: 170px;
  border: 0px;
  background: transparent;
}

.footer-logo-small img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.footer-contact{
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-item-footer{
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: #1f2b35;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.5;
}

.contact-icon-footer{
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon-footer svg{
  width: 28px;
  height: 28px;
  fill: #1f2b35;
}

.footer-social{
  display: flex;
  justify-content: flex-end;
}

.social-box{
  background: transparent; 
  padding: 18px 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  min-width: 360px;
}

.social-icons{
  display: flex;
  gap: 14px;
}

.social-icons a{
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffffff;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(0,0,0,0.18);
  transition: transform .25s ease;
}

.social-icons a:hover{
  transform: translateY(-2px) scale(1.03);
}

.social-icons svg{
  width: 28px;
  height: 28px;
}

.footer-copyright{
  border-top: 3px solid #344a57;
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #000000;
  font-size: 14px;
  max-width: 1400px;
  margin: 0 auto;
  font-weight: 650;
}

.footer-links{
  display: flex;
  gap: 28px;
}

.footer-links a{
  color: #1f2b35;
  text-decoration: none;
  font-weight: 800;
  transition: color .25s ease;
}

.footer-links a:hover{ color: #ffffff; }

/* ==================== DYNAMIC SCROLL BUTTON ==================== */
.dynamic-scroll-btn{
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(231, 76, 60, 0.5);
  z-index: 9999;
  transition: all 0.3s ease;
  border: none;
  pointer-events: auto !important;
}

.dynamic-scroll-btn:hover{
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(231, 76, 60, 0.6);
}

.dynamic-scroll-btn:active{
  transform: translateY(-1px) scale(1.02);
}

.scroll-icon{
  width: 28px;
  height: 28px;
  position: absolute;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.scroll-icon.active{
  opacity: 1;
}

.dynamic-scroll-btn.animating{
  animation: pulse 0.6s ease;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.scroll-top {
  display: none;
}

/* ==================== TESTIMONI MODAL ==================== */
.testimoni-modal{
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.7);
  align-items: center;
  justify-content: center;
  overflow-y: auto;
  padding: 20px;
}

.testimoni-modal.active{
  display: flex;
}

.testimoni-modal-content{
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.testimoni-modal-close{
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 35px;
  font-weight: bold;
  color: #999;
  cursor: pointer;
  transition: color 0.3s ease;
}

.testimoni-modal-close:hover{
  color: #e74c3c;
}

.testimoni-modal-title{
  font-size: 32px;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 8px;
  text-align: center;
}

.testimoni-modal-subtitle{
  font-size: 16px;
  color: #666;
  text-align: center;
  margin-bottom: 30px;
}

.testimoni-form{
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group{
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label{
  font-size: 15px;
  font-weight: 700;
  color: #333;
}

.required{
  color: #e74c3c;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea{
  padding: 12px 16px;
  border: 2px solid #ddd;
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus{
  outline: none;
  border-color: var(--gold);
}

.form-group textarea{
  resize: vertical;
  min-height: 120px;
}

/* Star Rating */
.star-rating{
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 5px;
}

.star-rating input[type="radio"]{
  display: none;
}

.star-rating label{
  font-size: 40px;
  color: #ddd;
  cursor: pointer;
  transition: color 0.2s ease;
}

.star-rating input[type="radio"]:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label{
  color: #ffd700;
}

.form-actions{
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.btn-cancel,
.btn-submit{
  flex: 1;
  padding: 14px 24px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-cancel{
  background: #e0e0e0;
  color: #666;
}

.btn-cancel:hover{
  background: #d0d0d0;
}

.btn-submit{
  background: linear-gradient(90deg, var(--gold) 0%, var(--dark-gold) 100%);
  color: #fff;
  box-shadow: 0 4px 15px rgba(155, 142, 58, 0.3);
}

.btn-submit:hover{
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(155, 142, 58, 0.4);
}

/* Success Message */
.success-message{
  background: #4caf50;
  color: white;
  padding: 15px 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  display: none;
  align-items: center;
  gap: 10px;
  animation: slideDown 0.3s ease;
}

.success-message.show{
  display: flex;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Modal */
@media (max-width: 600px) {
  .testimoni-modal-content{
    padding: 30px 20px;
  }

  .testimoni-modal-title{
    font-size: 26px;
  }

  .testimoni-modal-subtitle{
    font-size: 14px;
  }

  .star-rating label{
    font-size: 35px;
  }

  .form-actions{
    flex-direction: column;
  }
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1600px){
  .nav-container { padding: 20px 120px; }
  header.scrolled .nav-container { padding: 16px 120px; }
  .section-1, .section-2, .section-3, .section-4, .section-5, .section-6, .footer{
    padding-left: 120px; padding-right: 120px;
  }
  .hero-cards-container{
    width: calc(100% - 240px);
  }
}

@media (max-width: 1400px){
  .nav-container { padding: 20px 100px; }
  header.scrolled .nav-container { padding: 16px 100px; }
  .section-1, .section-2, .section-3, .section-4, .section-5, .section-6, .footer{
    padding-left: 100px; padding-right: 100px;
  }
  .hero-cards-container{
    width: calc(100% - 200px);
  }
  .s6-track{ grid-auto-columns: calc((100% - 3*18px) / 4); }
  .s3-grid{ grid-template-columns: repeat(2, 1fr); }
  .s3-card{ min-height: 560px; }
  .s4-grid{ gap: 40px; }
}

@media (max-width: 1200px){
  .nav-container { padding: 18px 80px; }
  header.scrolled .nav-container { padding: 15px 80px; }
  .nav-menu { gap: 35px; }
  .nav-menu a { font-size: 15px; }

  .section-1, .section-2, .section-3, .section-4, .section-5, .section-6, .footer{
    padding-left: 80px; padding-right: 80px;
  }
  .hero-cards-container{
    width: calc(100% - 160px);
  }
  .cards-container { grid-template-columns: 1fr; gap: 30px; }
  .card-wrap { max-width: 620px; margin: 0 auto; }
  .card { width: 92%; }

  .s5-grid{ grid-template-columns: 1fr; }
  .s6-track{ grid-auto-columns: calc((100% - 2*18px) / 3); }

  .s4-grid{ grid-template-columns: 1fr; }
  .s4-photos{ order: -1; }
  .s4-photo-big{ height: 260px; }
  .s4-photo-sm{ height: 140px; }
}

@media (max-width: 900px){
  .hero-right{ display:none; }
  .hero-left{ clip-path:none; }
  .hero-left::after{ background: rgba(255,255,255, var(--overlay-opacity, .55)); }
  .arab{ font-size: 36px; }

  .hero-main-content{
    transform: translate(-50%, -65%);
  }

  .hero-arab{ font-size: 40px; }
  .hero-title{ font-size: 24px; }
  .hero-heading{ font-size: 22px; }
  .hero-subtext{ font-size: 14px; }

  .hero-cards-container{
    grid-template-columns: 1fr;
    gap: 0;
    width: calc(100% - 60px);
    border-radius: 20px 20px 0 0;
  }

  .hero-info-card{
    padding: 16px 16px;
    border-right: none;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    border-radius: 0;
  }

  .hero-info-card:first-child{
    border-radius: 20px 20px 0 0;
  }

  .hero-info-card:last-child{
    border-bottom: none;
    border-radius: 0;
  }

  .hero-card-icon{
    width: 44px;
    height: 44px;
    margin: 0 auto 8px;
  }

  .hero-card-title{
    font-size: 13px;
    margin: 0 0 5px 0;
  }

  .hero-card-number{
    font-size: 11px;
  }

  .section-2{ height: auto; min-height: 100vh; padding: 40px 30px; }
  .section-1, .section-2, .section-3, .section-4, .section-5, .section-6, .footer{ padding: 40px 30px; }

  .content-wrapper { grid-template-columns: 1fr; gap: 40px; height: auto; }
  .left-column { gap: 40px; height: auto; }
  h2, .section-3-title { font-size: 20px; }
  .section-3-header { margin-bottom: 50px; }

  .card-wrap{ min-height: 520px; }
  .card{ border-radius: 0 100px 0 0; }

  .s3-head .s3-top, .s3-head .s3-main{ font-size: 32px; }
  .s3-grid{ grid-template-columns: 1fr; }
  .s3-card{ min-height: auto; }

  .s4-title{ font-size: 24px; }

  .s6-slider{ padding: 8px 52px; }
  .s6-track{ grid-auto-columns: calc((100% - 18px) / 2); }

  .footer-top{ grid-template-columns: 1fr; }
  .footer-midband{ padding: 22px; }
  .footer-bottom-content{
    grid-template-columns: 1fr;
    gap: 22px;
    justify-items: center;
    text-align: center;
  }
  .footer-logo-small{ margin: 0 auto; }
  .footer-contact{ align-items: center; }
  .contact-item-footer{ justify-content: center; text-align: left; max-width: 720px; }
  .footer-social{ justify-content: center; }
  .social-box{ min-width: 0; width: 100%; max-width: 520px; }

  .footer-copyright{
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .dynamic-scroll-btn{
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }

  .scroll-icon{
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 600px){
  .hero-main-content{
    width: 95%;
    transform: translate(-50%, -70%);
  }

  .hero-arab{ font-size: 32px; }
  .hero-title{ font-size: 20px; letter-spacing: 1px; }
  .hero-heading{ font-size: 18px; }
  .hero-subtext{ font-size: 13px; }

  .hero-cards-container{
    gap: 0;
    width: calc(100% - 40px);
    border-radius: 16px 16px 0 0;
  }

  .hero-info-card{
    padding: 14px 12px;
  }

  .hero-info-card:first-child{
    border-radius: 16px 16px 0 0;
  }

  .hero-card-icon{
    width: 36px;
    height: 36px;
    margin: 0 auto 6px;
  }

  .hero-card-title{
    font-size: 11px;
  }

  .hero-card-number{
    font-size: 9px;
  }

  .section-1, .section-2, .section-3, .section-4, .section-5, .section-6, .footer{ padding: 30px 20px; }
  h2, .section-3-title { font-size: 18px; }
  .section-3-header { margin-bottom: 40px; }
  .section-3-label { font-size: 11px; letter-spacing: 2px; }
  .section-3-label::before, .section-3-label::after { width: 35px; }

  .card-wrap{ --frame-h: 210px; --card-rise: 50px; }
  .card{
    width: 94%;
    border-radius: 0 90px 0 0;
    padding: 34px 24px 26px;
  }
  .card-title{ font-size: 22px; }
  .card-list li{ font-size: 15px; }
  .card-button{ width: 80%; font-size: 16px; }

  .message-title{ font-size: 24px; }
  .message-photo{ width: 80px; height: 80px; }
  .footer-section-title{ font-size: 18px; }
  .footer-logo-small{ width: 150px; height: 150px; }
  .social-icons a{ width: 50px; height: 50px; }

  .s6-track{ grid-auto-columns: 100%; }
  .s6-nav{ width: 52px; height: 52px; font-size: 34px; }
  .s4-title{ font-size: 20px; }

  .dynamic-scroll-btn{
    width: 46px;
    height: 46px;
    bottom: 15px;
    right: 15px;
  }

  .scroll-icon{
    width: 22px;
    height: 22px;
  }
}

/* ==================== DETAIL MODAL (SECTION 2) ==================== */
.detail-modal{
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10050;
  background: rgba(0,0,0,0.75);
  align-items: center;
  justify-content: center;
  padding: 26px;
}

.detail-modal.active{
  display: flex;
}

/* Kotak modal: gaya seperti contoh (dark + border gold) */
.detail-modal-content{
  position: relative;
  width: min(920px, 96vw);
  max-height: 90vh;
  overflow: auto;
  padding: 46px 46px 40px;
  border-radius: 22px;
  background: radial-gradient(circle at 20% 10%, rgba(255,255,255,0.08), rgba(255,255,255,0.02) 45%, rgba(0,0,0,0.1)),
              linear-gradient(180deg, rgba(25,25,25,0.95) 0%, rgba(10,10,10,0.98) 100%);
  border: 2px solid var(--gold);
  box-shadow: 0 30px 80px rgba(0,0,0,0.55);
  animation: detailModalIn .22s ease;
}

@keyframes detailModalIn{
  from{ opacity:0; transform: translateY(-18px) scale(0.98); }
  to{ opacity:1; transform: translateY(0) scale(1); }
}

/* Tombol close X */
.detail-modal-close{
  position: absolute;
  top: 16px;
  right: 18px;
  font-size: 28px;
  font-weight: 1000;
  color: var(--gold);
  cursor: pointer;
  user-select: none;
  line-height: 1;
  padding: 6px 10px;
  border-radius: 10px;
  transition: background .2s ease, transform .2s ease;
}
.detail-modal-close:hover{
  background: rgba(155,142,58,0.12);
  transform: scale(1.05);
}

.detail-modal-title{
  text-align: center;
  font-size: 40px;
  font-weight: 1000;
  color: var(--gold);
  margin: 0 0 10px;
  letter-spacing: -0.6px;
  text-transform: uppercase;
}

.detail-modal-divider{
  height: 2px;
  width: 100%;
  margin: 18px 0 26px;
  background: linear-gradient(90deg, transparent 0%, rgba(155,142,58,0.8) 15%, rgba(155,142,58,0.8) 85%, transparent 100%);
}

.detail-modal-body{
  color: rgba(255,255,255,0.9);
  font-size: 16px;
  line-height: 1.75;
}

.detail-section-title{
  color: rgba(255,255,255,0.92);
  font-size: 18px;
  font-weight: 900;
  margin: 0 0 16px;
}

/* List model checklist */
.detail-list{
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.detail-list li{
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 12px;
  align-items: start;
}

.detail-list-icon{
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--gold);
  color: #111;
  font-weight: 1000;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.detail-note{
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.88);
}

/* STEP layout untuk "Cara Pendaftaran" */
.detail-step{
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(155,142,58,0.18);
}
.detail-step:last-child{ border-bottom: 0; }

.step-number{
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(155,142,58,0.22);
  border: 1px solid rgba(155,142,58,0.55);
  color: var(--gold);
  font-weight: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-content h4{
  margin: 0 0 8px;
  color: #fff;
  font-size: 18px;
  font-weight: 950;
}

.bank-info{
  margin-top: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  padding: 14px 16px;
}

.bank-row{
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.bank-row:last-child{ border-bottom: 0; }

.bank-label{
  color: rgba(255,255,255,0.70);
  font-weight: 800;
}

.bank-value{
  color: rgba(255,255,255,0.92);
  font-weight: 900;
  text-align: right;
}

.bank-value.highlight{
  color: var(--gold);
}

.whatsapp-box{
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(155,142,58,0.12);
  border: 1px solid rgba(155,142,58,0.35);
  color: rgba(255,255,255,0.92);
  font-weight: 900;
}

.wa-label{
  font-weight: 700;
  color: rgba(255,255,255,0.70);
}

.contact-grid{
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
}

.contact-card{
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  padding: 14px 14px;
}

.contact-name{
  font-weight: 950;
  color: #fff;
  margin-bottom: 4px;
}

.contact-phone{
  font-weight: 900;
  color: var(--gold);
}

/* Tombol CTA bawah (dipakai modal syarat/jadwal kalau masih ingin).
   Modal Cara nanti kita hapus tombolnya dari HTML. */
.detail-modal-btn{
  margin-top: 26px;
  width: 100%;
  border: none;
  cursor: pointer;
  padding: 16px 18px;
  border-radius: 14px;
  background: linear-gradient(90deg, var(--gold) 0%, #000 100%);
  color: #fff;
  font-size: 18px;
  font-weight: 950;
  box-shadow: 0 14px 34px rgba(0,0,0,0.35);
  transition: transform .2s ease, box-shadow .2s ease;
}
.detail-modal-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(0,0,0,0.45);
}

/* Responsive */
@media (max-width: 700px){
  .detail-modal-content{
    padding: 34px 22px 26px;
    border-radius: 18px;
  }
  .detail-modal-title{ font-size: 28px; }
  .contact-grid{ grid-template-columns: 1fr; }
}

/* ==================== TIMELINE (Modal Jadwal) ==================== */
.timeline { display: flex; flex-direction: column; gap: 16px; margin-bottom: 20px; }
.timeline-item { display: flex; gap: 16px; align-items: flex-start; }
.timeline-icon { font-size: 24px; flex-shrink: 0; }
.timeline-content { flex: 1; }
.timeline-title { font-weight: 900; color: #fff; font-size: 16px; margin-bottom: 4px; }
.timeline-date { color: var(--gold); font-size: 14px; font-weight: 700; }
.divider-section { height: 1px; background: rgba(155,142,58,0.3); margin: 20px 0; }

/* ==================== PRICE GRID (Modal Jadwal) ==================== */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 16px 0; }
.price-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(155,142,58,0.3); border-radius: 14px; padding: 20px 14px; text-align: center; }
.price-card.highlight-price { background: rgba(155,142,58,0.15); border-color: var(--gold); }
.price-icon { font-size: 28px; margin-bottom: 8px; }
.price-label { font-size: 13px; color: rgba(255,255,255,0.7); font-weight: 700; margin-bottom: 6px; }
.price-amount { font-size: 20px; font-weight: 1000; color: var(--gold); margin-bottom: 4px; }
.price-note { font-size: 11px; color: rgba(255,255,255,0.55); }
@media (max-width: 600px) { .price-grid { grid-template-columns: 1fr; } }

/* ==================== SECTION 0: ARTIKEL ==================== */
/* ===== SECTION 0: ARTIKEL ===== */
.section-1 {
  background: #fff;
  padding: 70px 150px;
}
.s1-wrap {
  max-width: 1400px;
  margin: 0 auto;
}

/* --- Header --- */
.s1-head {
  text-align: center;
  margin-bottom: 2rem;
}
.s1-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #c9a84c;
  margin-bottom: 8px;
}
.s1-kicker-line {
  display: block;
  height: 1px;
  width: 60px;
  background: #c9a84c;
}
.s1-title {
  font-size: 22px;
  font-weight: 500;
  color: #1a3c2e;
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
}
.s1-title-gold { color: #c9a84c; }

/* --- Rows --- */
.s1-row-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.s1-row-small {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}

/* --- Card base --- */
.s1-card {
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.s1-card-dark  { background: #1a3c2e; }
.s1-card-light { background: #fff; border: 0.5px solid #e0d8cc; }
.s1-card-gold  { background: #c9a84c; }

/* --- Featured card image (200px) --- */
.s1-card-img {
  height: 300px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.s1-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.s1-card-img:hover img { transform: scale(1.04); }

/* --- Small card image (130px) --- */
.s1-card-img-sm {
  height: 190px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.s1-card-img-sm img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.s1-card-img-sm:hover img { transform: scale(1.04); }

/* --- Badges --- */
.s1-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 10px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 10px;
}
.s1-badge-gold  { background: #c9a84c; color: #1a3c2e; }
.s1-badge-green { background: #1a3c2e; color: #c9a84c; }
.s1-card-img-sm .s1-badge { font-size: 9px; padding: 2px 8px; }

.s1-date-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0,0,0,0.4);
  color: #fff;
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 6px;
}

/* --- Featured card body --- */
.s1-card-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.s1-card-title {
  font-size: 15px;
  font-weight: 500;
  margin: 0 0 8px;
  line-height: 1.5;
}
.s1-card-dark  .s1-card-title { color: #fff; }
.s1-card-light .s1-card-title { color: #1a3c2e; }
.s1-card-excerpt {
  font-size: 11px;
  line-height: 1.7;
  margin: 0;
}
.s1-card-dark  .s1-card-excerpt { color: #aaa; }
.s1-card-light .s1-card-excerpt { color: #888; }
.s1-read-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #c9a84c;
  font-weight: 500;
  text-decoration: none;
  margin-top: 1rem;
  transition: opacity 0.2s;
}
.s1-read-link:hover { opacity: 0.75; }

/* --- Small card body --- */
.s1-card-body-sm {
  padding: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.s1-card-date {
  font-size: 10px;
  margin: 0 0 6px;
}
.s1-card-dark  .s1-card-date { color: #c9a84c; }
.s1-card-light .s1-card-date { color: #c9a84c; }
.s1-card-gold  .s1-card-date { color: #1a3c2e; opacity: 0.7; }
.s1-card-title-sm {
  font-size: 13px;
  font-weight: 500;
  margin: 0 0 6px;
  line-height: 1.5;
}
.s1-card-dark  .s1-card-title-sm { color: #fff; }
.s1-card-light .s1-card-title-sm { color: #1a3c2e; }
.s1-card-gold  .s1-card-title-sm { color: #1a3c2e; }
.s1-card-excerpt-sm {
  font-size: 11px;
  line-height: 1.6;
  margin: 0 0 10px;
  flex: 1;
}
.s1-card-dark  .s1-card-excerpt-sm { color: #aaa; }
.s1-card-light .s1-card-excerpt-sm { color: #888; }
.s1-card-gold  .s1-card-excerpt-sm { color: #1a3c2e; opacity: 0.75; }
.s1-read-link-sm {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.2s;
}
.s1-card-dark  .s1-read-link-sm { color: #c9a84c; }
.s1-card-light .s1-read-link-sm { color: #c9a84c; }
.s1-card-gold  .s1-read-link-sm { color: #1a3c2e; }
.s1-read-link-sm:hover { opacity: 0.75; }

/* --- More button --- */
.s1-more {
  text-align: center;
  margin-top: 1.75rem;
}
.s1-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1a3c2e;
  color: #c9a84c;
  font-size: 13px;
  font-weight: 500;
  padding: 10px 24px;
  border-radius: 10px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.s1-more-btn:hover { opacity: 0.85; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .section-1 { padding: 50px 40px; }
  .s1-row-small { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .section-1 { padding: 40px 20px; }
  .s1-row-featured { grid-template-columns: 1fr; }
  .s1-row-small { grid-template-columns: 1fr; }
  .s1-title { font-size: 18px; }
}

/* ===================================================== */
/* FLOATING CTA BUTTONS */
/* ===================================================== */
.cta-wa-left,
.cta-wa-right {
    position: fixed;
    bottom: 95px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 13px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    cursor: pointer;
}

.cta-wa-left:hover,
.cta-wa-right:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 28px rgba(0,0,0,0.25);
}

.cta-wa-left {
    left: 25px;
    background: #0F6B3C;
    color: #fff;
}

.cta-wa-right {
    right: 25px;
    background: #96281B;
    color: #fff;
}
