:root {
  --green-950: #003f30;
  --green-900: #004d3a;
  --green-800: #076047;
  --gold: #ffd400;
  --text: #101010;
  --muted: #5f6763;
  --white: #ffffff;
  --surface: #f7faf8;
  --shadow: 0 20px 50px rgba(0, 50, 37, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", Arial, sans-serif;
  color: var(--text);
  background: var(--white);
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--green-900);
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.12);
}

.nav-container {
  width: min(1840px, calc(100% - 56px));
  min-height: 116px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 120px 1fr auto;
  align-items: center;
  gap: 26px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 92px;
  height: 92px;
  object-fit: contain;
  border-radius: 50%;
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 1.5vw, 34px);
}

.main-nav > a,
.nav-dropdown > button,
.search-button {
  position: relative;
  border: 0;
  padding: 13px 0;
  color: var(--white);
  background: transparent;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  cursor: pointer;
}

.main-nav > a::after,
.nav-dropdown > button::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--gold);
  transition: transform 0.25s ease;
}

.main-nav > a:hover::after,
.main-nav > a.active::after,
.nav-dropdown > button:hover::after {
  transform: scaleX(1);
}

.main-nav > a.active {
  color: var(--gold);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown > button i {
  margin-left: 5px;
  font-size: 11px;
  transition: transform 0.2s ease;
}

.nav-dropdown.open > button i {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 9px);
  left: 50%;
  min-width: 190px;
  padding: 10px;
  border-radius: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -8px);
  background: var(--white);
  box-shadow: var(--shadow);
  transition: 0.2s ease;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.dropdown-menu a {
  display: block;
  padding: 11px 12px;
  border-radius: 8px;
  color: var(--green-950);
  font-size: 13px;
}

.dropdown-menu a:hover {
  background: #edf7f2;
}

.search-button {
  padding-inline: 5px;
  font-size: 17px;
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 7px;
}

.lang {
  border: 0;
  padding: 4px;
  background: transparent;
  font-size: 23px;
  line-height: 1;
  cursor: pointer;
  filter: saturate(0.75);
  opacity: 0.82;
  transition: 0.2s ease;
}

.lang:hover,
.lang.active {
  filter: saturate(1);
  opacity: 1;
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
  transition: 0.25s ease;
}

.section-shell {
  width: calc(100% - 60px);
  max-width: 1860px;
  margin-inline: auto;
}

.hero {
  position: relative;
  min-height: 550px;
  margin-top: 0;
  overflow: hidden;
  display: grid;
  place-items: center;
  border-radius: 0 0 44px 44px;
  background:
    linear-gradient(rgba(0, 70, 52, 0.18), rgba(0, 45, 34, 0.24)),
    url("assets/masjid.png") center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 65, 49, 0.58);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1000px, 88%);
  text-align: center;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--gold);
  font-size: 23px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.hero h1 {
  margin: 0;
  font-size: clamp(44px, 4vw, 72px);
  line-height: 1.14;
  font-weight: 700;
  letter-spacing: -0.025em;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
}
/*RESPONSIVE MOBILE*/
@media screen and (max-width:480px) {
.hero h1 {
  margin: 0;
  font-size: 10px;
  line-height: 1.14;
  font-weight: 600;
  letter-spacing: -0.025em;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
}

}
.intro-section {
  padding: 95px 24px 70px;
}

.intro-container {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  align-items: center;
  gap: 70px;
}

.intro-image-wrap {
  position: relative;
  min-height: 340px;
}

.intro-image-wrap img {
  width: 100%;
  height: 360px;
  display: block;
  object-fit: cover;
  object-position: center 35%;
  border-radius: 8px 70px 8px 8px;
  box-shadow: var(--shadow);
}

.image-accent {
  position: absolute;
  left: -16px;
  bottom: -16px;
  width: 145px;
  height: 145px;
  z-index: -1;
  border-radius: 12px;
  background:
    radial-gradient(circle, rgba(0, 77, 58, 0.25) 2px, transparent 3px) 0 0 / 16px 16px;
}

.section-kicker {
  margin: 0 0 8px;
  color: var(--green-800);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.intro-copy h2 {
  margin: 0 0 23px;
  font-size: clamp(34px, 3vw, 48px);
  line-height: 1.15;
}

.intro-copy h2 span {
  color: var(--green-900);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 7px;
}

.profile {
  background:linear-gradient(rgba(0, 70, 52, 0.18), rgba(0, 45, 34, 0.24)), url(assets/SNY06910.jpg)center / cover no-repeat;
  height: 400px;
   position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
}
.profile h1 {
   padding-top: 10%;
  font-size: clamp(44px, 4vw, 72px);
  line-height: 1.14;
  font-weight: 700;
  letter-spacing: -0.025em;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
}
.intro-copy p:not(.section-kicker) {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 13px 20px;
  border-radius: 999px;
  color: var(--white);
  background: var(--green-900);
  font-size: 14px;
  font-weight: 600;
  transition: 0.2s ease;
}

.read-more:hover {
  transform: translateY(-2px);
  background: var(--green-800);
}

.feature-section {
  padding: 40px 24px 100px;
}

.feature-container {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.feature-card {
  padding: 34px 28px;
  border: 1px solid #e3ece7;
  border-radius: 20px;
  background: var(--surface);
  transition: 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.feature-card i {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 16px;
  color: var(--gold);
  background: var(--green-900);
  font-size: 23px;
}

.feature-card h3 {
  margin: 0 0 10px;
  color: var(--green-950);
  font-size: 19px;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.whatsapp-button {
  position: fixed;
  right: 72px;
  bottom: 24px;
  z-index: 900;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 17px;
  border-radius: 999px;
  color: var(--white);
  background: #25d366;
  box-shadow: 0 12px 28px rgba(19, 142, 69, 0.3);
  font-size: 13px;
  font-weight: 600;
}

.whatsapp-button i {
  font-size: 20px;
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 900;
  width: 45px;
  height: 45px;
  border: 0;
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  color: var(--white);
  background: #5d686d;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: 0.2s ease;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.search-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  background: rgba(0, 35, 26, 0.78);
  backdrop-filter: blur(6px);
  transition: 0.2s ease;
}



.gelombang {
  margin-left:15%;
  
  
}

.gelombang td{
  width: 300px;
  text-align: center;
  height: 40px;   
}
.gel{
  
  text-align: center;
  background-color: #25d366;
}

.tgl {
  width: 300px;
  background-color: #f4ffcf;
}

/*RESPONSIVE MOBILE*/
@media screen and (max-width:768px) {
  .gelombang {
  margin-left:2%;
  margin-right: 2%;
  
}

.gelombang td{
  width: 270px;
  text-align: center;
  height: 40px;   
}
.gel{
  
  text-align: center;
  background-color: #25d366;
}

.tgl {
  width: 300px;
  background-color: #f4ffcf;
}
}


/*
.biaya {
  margin-left: 10%;
  background-color: #f4ffcf;
   
  

}

.biaya h3 {
  background-color:#25d366;
  text-align: center;
}
.biy {
  text-align: center;
  height: 10px;  
}

*/

.biaya {
    width: 70%;
    margin: 40px auto;
    border-collapse: separate;
    border-spacing: 0;
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    font-family: "Poppins", Arial, sans-serif;
}

.biaya h3 {
    margin: 0;
    padding: 15px;
    background: linear-gradient(135deg,#25d366,#128c7e);
    color: white;
    text-align: center;
    font-size: 15px;
    letter-spacing: 0.5px;
    font-weight: 700;
}

.biaya .biy:first-of-type td {
    background: #eaffd0;
    color: #1b5e20;
    font-weight: bold;
}

.biaya td {
    border-bottom: 1px solid #e5e5e5;
    padding: 10px 12px;
    text-align: center;
    vertical-align: middle;
}

.biaya p {
    margin: 0;
    font-size: 15px;
    color: #333;
}

.biaya tr.biy {
    height: auto;
}

.biaya tr:hover td {
    background-color: #f7fff0;
    transition: 0.3s ease;
}

.biaya td:last-child {
    font-weight: bold;
    color: #128c7e;
}
.biaya tr:first-child td:first-child {
    border-radius: 15px 15px 0 0;
}


.syarat {
    width: 100%;
    max-width: 1200px;
    margin: 20px auto;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
    background-color: #f4ffcf;
}

.syarat td {
    border: 1px solid #ddd;
    padding: 12px 15px;
    vertical-align: top;
    line-height: 1.6;
}

.syarat h2 {
    text-align: center;
    margin: 0;
    font-size: 24px;
    background-color:#25d366;
   width: 1200px;
}

.nomor {
    width: 40px;
    text-align: center;
    font-weight: bold;
}

.syarat a {
    color: #01aaff;
    text-decoration: underline;
}


/* RESPONSIVE MOBILE */
  @media screen and (max-width:768px){

    .syarat {
        width: 10%;
        font-size: 14px;
        margin-left: 2%;
        margin-right: 2%;
    }


    .syarat td {
        padding: 10px;
        
    }


    .nomor {
        width: 30px;
        min-width:30px;
    }


    .syarat h2 {
        font-size: 18px;
        width: 340px;
    }

}


/* HP kecil */
@media screen and (max-width:480px){

    .syarat {
        font-size: 13px;
    }

    .syarat td {
        padding: 8px;
    }

    .syarat h2 {
        font-size: 16px;
    }

}


.timeline-section{
    width:90%;
    max-width:1100px;
    margin:70px auto;
}

.timeline-section h1{
    text-align:center;
    font-size:42px;
    margin-bottom:10px;
}

.subtitle{
    text-align:center;
    color:#777;
    margin-bottom:60px;
}

.timeline{
    display:grid;
    grid-template-columns:1fr 80px 1fr;
    position:relative;
}

.timeline::before{
    content:"";
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    width:4px;
    height:100%;
    background:#2ca02c;
}

.timeline-item{
    padding:35px 20px;
}

.left{
    text-align:right;
}

.right{
    text-align:left;
}

.timeline-icon{
    display:flex;
    justify-content:center;
    align-items:center;
    position:relative;
    z-index:2;
}

.timeline-icon i{
    width:55px;
    height:55px;
    background:#2ca02c;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:22px;
    border:5px solid #fff;
    box-shadow:0 0 10px rgba(0,0,0,.15);
}

.content h3{
    font-size:28px;
    margin-bottom:10px;
}

.content h4{
    color:#2ca02c;
    font-size:26px;
    margin-bottom:5px;
}

.content p{
    color:#777;
    line-height:1.7;
}

.content span{
    color:#999;
    font-size:15px;
}


.left,
.right{
    text-align:left;
}

.search-modal.open {
  opacity: 1;
  visibility: visible;
}

.search-panel {
  position: relative;
  width: min(620px, 100%);
  padding: 42px;
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.search-panel h2 {
  margin: 0 0 22px;
  color: var(--green-950);
}

.search-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: #eef4f1;
  cursor: pointer;
}

.search-form {
  display: flex;
  gap: 10px;
}

.search-form input {
  flex: 1;
  min-width: 0;
  padding: 13px 15px;
  border: 1px solid #cfdbd5;
  border-radius: 10px;
  outline: none;
}

.search-form input:focus {
  border-color: var(--green-800);
  box-shadow: 0 0 0 3px rgba(7, 96, 71, 0.12);
}

.search-form button {
  border: 0;
  padding: 13px 18px;
  border-radius: 10px;
  color: var(--white);
  background: var(--green-900);
  cursor: pointer;
}

.search-message {
  min-height: 21px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 1440px) {
  .nav-container {
    width: min(1360px, calc(100% - 36px));
    min-height: 102px;
    grid-template-columns: 95px 1fr auto;
    gap: 18px;
  }

  .brand img {
    width: 78px;
    height: 78px;
  }

  .main-nav {
    gap: 18px;
  }

  .main-nav > a,
  .nav-dropdown > button {
    font-size: 17px;
  }

  .hero {
    min-height: 500px;
  }
}

@media (max-width: 1120px) {
  .nav-container {
    grid-template-columns: 1fr auto auto;
  }

  .menu-toggle {
    display: block;
    order: 2;
  }

  .language-switcher {
    order: 3;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    padding: 18px 28px 26px;
    align-items: stretch;
    flex-direction: column;
    gap: 2px;
    background: var(--green-950);
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.18);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav > a,
  .nav-dropdown > button,
  .search-button {
    width: 100%;
    padding: 12px 0;
    text-align: left;
  }

  .nav-dropdown > button {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .dropdown-menu {
    position: static;
    display: none;
    min-width: 0;
    margin: 2px 0 8px;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
  }

  .nav-dropdown:hover .dropdown-menu {
    transform: none;
  }

  .nav-dropdown.open .dropdown-menu {
    display: block;
  }

  .intro-container {
    gap: 38px;
  }
}

@media (max-width: 820px) {
  .nav-container {
    width: calc(100% - 28px);
    min-height: 84px;
  }

  .brand img {
    width: 64px;
    height: 64px;
  }

  .section-shell {
    width: calc(100% - 24px);
  }

  .hero {
    min-height: 470px;
    border-radius: 0 0 28px 28px;
  }

  .hero h1 {
    font-size: clamp(36px, 9vw, 54px);
  }

  .intro-section {
    padding-top: 70px;
  }

  .intro-container,
  .feature-container {
    grid-template-columns: 1fr;
  }

  .intro-image-wrap {
    min-height: 0;
  }

  .intro-image-wrap img {
    height: 330px;
  }

  .feature-container {
    gap: 16px;
  }
}

@media (max-width: 560px) {
  .language-switcher {
    gap: 2px;
  }

  .lang {
    font-size: 20px;
  }

  .hero {
    min-height: 420px;
  }

  .eyebrow {
    font-size: 13px;
  }

  .hero h1 {
    font-size: 35px;
  }

  .intro-section {
    padding-inline: 18px;
  }

  .intro-image-wrap img {
    height: 270px;
    border-radius: 8px 40px 8px 8px;
  }

  .search-panel {
    padding: 34px 22px 24px;
  }

  .search-form {
    flex-direction: column;
  }

  .whatsapp-button {
    right: 68px;
    bottom: 18px;
    padding: 11px 13px;
  }

  .whatsapp-button span {
    display: none;
  }

  .back-to-top {
    right: 16px;
    bottom: 18px;
  }
}


.news-section{

    background:#e9fff7;
    
    padding:60px 20px;

}

.sidebar{

    background:white;
    border-radius:25px;
    padding:30px;
    height:max-content;

}


.sidebar h3{

    margin:0 0 25px;

    font-size:24px;

    color:#004d3b;

}


.latest-item{

    display:flex;

    gap:15px;

    padding:15px 0;

    border-bottom:1px solid #eee;

}


.latest-item img{

    width:80px;
    height:70px;

    object-fit:cover;

    border-radius:10px;

}


.latest-item h4{

    margin:0 0 8px;

    font-size:15px;

    line-height:1.4;

}


.latest-item h4 a{

    color:#004d3b;

    text-decoration:none;

}


.latest-item span{

    font-size:12px;

    color:#777;

}

.news-heading{
  text-align: center;
}
.news-content{

    display:block !important;
    padding:22px 20px 28px;

}


.news-date{

    display:block;
    font-size:13px;
    color:#777;
    margin-bottom:15px;

}


.news-content h2{

    margin:0 0 15px;
    font-size:20px;
    line-height:1.4;
    color:#004d3b;

}


.news-content p{

    margin:0;
    min-height:0;
    color:#777;
    line-height:1.7;

}


.news-content a{

    display:inline-block;
    margin-top:20px;
    color:#00513d;
    font-weight:700;

}

.container{

    width:100%;
    max-width:1200px;

    margin:auto;

}





.heading{

    text-align:center;

    margin-bottom:45px;

}



.heading p{

    font-size:17px;

    color:#263d39;
  
    margin-bottom:10px;

}



.heading h1{


    font-size:42px;

    font-weight:700;

    color:#004d3b;

}





.news-grid{


    display:grid;

    grid-template-columns:
    repeat(3,1fr);
    
    gap:28px;

}






.news-card{


    background:white;
  
    border-radius:35px;

    overflow:hidden;

    border:1px solid #ddd;


    transition:.3s;


}




.news-card:hover{


    transform:translateY(-8px);

    box-shadow:
    0 15px 40px
    rgba(0,0,0,.12);


}






.news-card img{


    width:100%;

    height:180px;

    object-fit:cover;


}







.content{


    padding:22px 18px 28px;


}






.date{


    font-size:13px;

    color:#777;

}





.content h2{


    font-size:20px;

    

    


    color:#111;


}






.content p{


    font-size:14px;

    line-height:1.6;


    color:#777;


    min-height:70px;


}






.content a{


    display:block;


    


    color:#00513d;


    font-weight:700;


    text-decoration:none;


    font-size:14px;


}






.content a:hover{

    color:#d5a900;

}





/* RESPONSIVE */


@media(max-width:900px){


.news-grid{

    grid-template-columns:
    1fr 1fr;

}


}



@media(max-width:600px){


.news-section{

    padding:60px 20px;

}



.heading h1{

    font-size:32px;

}



.news-grid{


    grid-template-columns:1fr;

}



.news-card{


    border-radius:25px;

}




}
*{

margin:0;
padding:0;
box-sizing:border-box;

}



body{

font-family:
"Poppins",
Arial,
sans-serif;

color:#003d32;

}





.why-section{


padding:90px 20px;


background:white;


}





.container{


max-width:1200px;

margin:auto;


}





.mengapa{


text-align:center;

margin-bottom:45px;


}





.mengapa p{


font-size:16px;

letter-spacing:1px;

color:#333;


}





.mengapa h1{


font-size:42px;

color:#004d3b;

margin:10px 0 20px;

font-weight:700;


}





.mengapa span{


font-size:14px;

color:#333;

line-height:1.8;


}








.why-grid{


display:grid;

grid-template-columns:
1fr 1fr 1fr;


gap:35px;


align-items:center;


}








.info-card{


height:370px;


border:1px solid #ddd;


border-radius:20px;


padding:45px;


display:flex;

flex-direction:column;


}





.info-card i{


font-size:40px;

color:#ffc800;


margin-bottom:25px;


}




.info-card h2{


font-size:28px;

font-weight:500;

color:#004d3b;

margin-bottom:15px;


}



.info-card p{


font-size:15px;

line-height:1.6;

color:#333;


}





.line{


height:1px;

background:#ddd;

margin:45px 0 25px;


}





.info-card strong{


font-size:48px;

color:#004d3b;


}





.info-card small{


font-size:16px;

color:#777;


}









.center-image{


height:370px;


overflow:hidden;


border-radius:20px;


}





.center-image img{


width:100%;

height:100%;

object-fit:cover;


}








.bottom-grid{


margin-top:35px;


display:grid;


grid-template-columns:
repeat(3,1fr);


gap:35px;


}







.bottom-card{


height:250px;


border-radius:20px;


overflow:hidden;


position:relative;


border:1px solid #ddd;


}




.bottom-card img{


width:100%;

height:100%;

object-fit:cover;


}







.bottom-card h3{


position:absolute;

bottom:20px;

left:25px;

color:white;

font-size:22px;


text-shadow:
0 2px 5px black;


}





.icon-card{


display:flex;

align-items:center;

justify-content:center;

flex-direction:column;


}





.icon-card i{


font-size:70px;

color:#ffc800;


}




.icon-card h3{


position:static;

color:#004d3b;

text-shadow:none;


}









@media(max-width:900px){


.why-grid{


grid-template-columns:1fr;


}



.bottom-grid{


grid-template-columns:1fr;


}


.info-card{


height:auto;


}



.title h1{


font-size:32px;


}
}


.kenapa {
    width: 100%;
    padding: 80px 20px;
    background: #bbf7e9;
    box-sizing: border-box;
}

.kenapa * {
    box-sizing: border-box;
}

.kenapa-container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.kenapa-content {
    min-width: 0;
}

.kenapa-content h1 {
    margin: 0 0 24px;
    color: #064c3d;
    font-size: clamp(38px, 5vw, 68px);
    line-height: 1.05;
}

.kenapa-content p {
    margin: 0 0 38px;
    color: #333;
    font-size: 17px;
    line-height: 1.8;
}

.kenapa-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 38px;
}

.kenapa-stats card {
  background-color: white;
}
.kenapa-stats h2 {
    margin: 0 0 8px;
    color: #064c3d;
    font-size: 36px;
}

.kenapa-stats span {
    display: block;
    color: #444;
    font-size: 14px;
    text-transform: uppercase;
}

/* Tombol tidak memanjang */

.kenapa-button {
    display: inline-flex;
    width: auto;
    min-width: 200px;
    padding: 16px 28px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #064c3d;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.25s ease;
}

.kenapa-button:hover {
    background: #08705a;
    transform: translateY(-2px);
}

/* Gambar */

.kenapa-image {
    position: relative;
    width: 100%;
    min-width: 0;
}

.kenapa-image img {
    display: block;
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 22px;
}

/* Badge tidak memanjang */

.kenapa-badge {
    position: absolute;
    left: 25px;
    bottom: 25px;

    display: inline-flex;
    width: auto;
    max-width: calc(100% - 50px);

    align-items: center;
    gap: 8px;
    padding: 14px 20px;

    border-radius: 10px;
    background: rgba(255, 255, 255, 0.94);
    color: #111;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.kenapa-badge span {
    color: #6549db;
    font-size: 18px;
}

/* Tablet */

@media screen and (max-width: 992px) {
    .kenapa-container {
        gap: 35px;
    }

    .kenapa-image img {
        height: 420px;
    }

    .kenapa-stats {
        gap: 15px;
    }
}

/* HP */

@media screen and (max-width: 768px) {
    .kenapa {
        padding: 50px 20px;
    }

    .kenapa-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .kenapa-content h1 {
        font-size: 38px;
    }

    .kenapa-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .kenapa-button {
        width: 100%;
    }

    .kenapa-image img {
        height: 380px;
    }

    .kenapa-badge {
        left: 15px;
        bottom: 15px;
        max-width: calc(100% - 30px);
        white-space: normal;
    }
}

/* HP kecil */

@media screen and (max-width: 480px) {
    .kenapa {
        padding: 40px 16px;
    }

    .kenapa-content h1 {
        font-size: 32px;
    }

    .kenapa-stats {
        grid-template-columns: 1fr;
    }

    .kenapa-stats > div {
        padding: 15px;
        text-align: center;
        background: #fff;
        border-radius: 10px;
    }

    .kenapa-stats card {
      background-color: white;
      width: 20px;
    }
    .kenapa-image img {
        height: 300px;
    }

    .kenapa-badge {
        font-size: 12px;
        padding: 11px 14px;
    }
}

.left{
    flex:1;
}


.left h1{
    font-size:50px;
    line-height:1.15;
    margin-bottom:25px;
    font-weight:700;
}

.left p{
    color:#666;
    line-height:1.8;
    margin-bottom:35px;
}

.stats{
    display:flex;
    gap:45px;
    margin-bottom:35px;
}

.stats h2{
    color:#004d3b;
    font-size:34px;
}

.stats span{
    font-size:13px;
    color:#666;
    text-transform:uppercase;
}

.buttons{
    display:flex;
    gap:15px;
}

.btn-primary{
    text-decoration:none;
    background:#004d3b;
    color:white;
    padding:16px 28px;
    border-radius:12px;
    font-weight:600;
}

.btn-secondary{
    text-decoration:none;
    color:#222;
    background:white;
    padding:16px 28px;
    border-radius:12px;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.right{
    flex:1;
    position:relative;
}

.right img{
    width:100%;
    border-radius:28px;
}

.badge{
    position:absolute;
    right:20px;
    bottom:20px;
    background:#0d5cab;
    color:white;
    padding:15px 25px;
    border-radius:40px;
    font-weight:500;
}

.features{
    padding-bottom:70px;
}

.cards{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.card{
    background:white;
    border-radius:18px;
    padding:35px;
    box-shadow:0 5px 20px rgba(0,0,0,.06);
    transition:.3s;
}

.card.active{
    border-top:5px solid #004d3b;
}

.icon{
    width:60px;
    height:60px;
    background:#004d3b;
    color:white;
    border-radius:15px;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:28px;
    margin-bottom:20px;
}

.card h3{
    margin-bottom:15px;
}

.card p{
    color:#666;
    line-height:1.7;
}

@media(max-width:900px){

.hero .container{
    flex-direction:column;
}

.cards{
    grid-template-columns:1fr;
}

.left h1{
    font-size:42px;
}

.stats{
    flex-wrap:wrap;
}

}

.about{
    max-width:1200px;
    margin:auto;
    padding:70px 30px;
}

.title{
    text-align:center;
    margin-bottom:60px;
}

.title h1{
    font-size:52px;
    font-weight:600;
}

.title p{
    color:#9aa4af;
    margin-top:10px;
    font-size:18px;
}

.content{
    display:grid;
    grid-template-columns:350px 1fr;
    gap:70px;
}

.left img{
    width:100%;
    border-radius:18px;
    display:block;
}

.info{
    margin-top:25px;
}

.info p{
    color:#d4d4d4;
    margin:14px 0;
}

.info i{
    color:#54d6b7;
    margin-right:10px;
}

.available{
    display:flex;
    align-items:center;
}

.available span{
    width:10px;
    height:10px;
    border-radius:50%;
    background:#31d67b;
    margin-right:10px;
}

.right p{
    line-height:1.9;
    
    font-size:17px;
}

.skills{
    margin-top:40px;
}

.skill{
    display:flex;
    gap:20px;
    margin-bottom:35px;
}

.icon{
    width:55px;
    height:55px;
    background:#19353b;
    border-radius:12px;

    display:flex;
    justify-content:center;
    align-items:center;

    color:#5ce1c4;
    font-size:22px;
}

.skill h3{
    margin-bottom:8px;
    font-size:22px;
}

.skill p{
    color:#aeb6bf;
    font-size:15px;
}

@media(max-width:900px){

.content{
    grid-template-columns:1fr;
}

.left{
    text-align:center;
}

.left img{
    max-width:320px;
    margin:auto;
}

.title h1{
    font-size:38px;
}
}

.download-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 12px 22px;
  border-radius: 10px;

  background-color:  #0759109b;
  color: #ffffff;

  font-family: Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;

  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  transition: background-color 0.2s ease,
              transform 0.2s ease,
              box-shadow 0.2s ease;
}

.download-button svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.download-button:hover {
  background-color: #0759109b;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
}

.download-button:active {
  transform: translateY(0);
  box-shadow: 0 3px 8px rgba(37, 99, 235, 0.3);
}

.download-button:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.35);
  outline-offset: 3px;
}

.footer {
  background-color: #003d32;
}

/* =========================
   FOOTER
========================= */

.site-footer {
  position: relative;
  background: linear-gradient(135deg, #073f32, #0b604b);
  color: #ffffff;
  padding-top: 70px;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -100px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}

.site-footer::after {
  content: "";
  position: absolute;
  bottom: 30px;
  left: -100px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
}

.footer-container {
  position: relative;
  z-index: 2;
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 45px;
  padding-bottom: 55px;
}

.footer-column h3 {
  position: relative;
  margin: 0 0 25px;
  padding-bottom: 13px;
  font-family: "Poppins", sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: #ffffff;
}

.footer-column h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 45px;
  height: 3px;
  border-radius: 10px;
  background: #f4bd31;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  padding: 12px 18px;
  border-radius: 12px;

}

.footer-logo img {
  display: block;
  width: 170px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.footer-about p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  line-height: 1.8;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 17px;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-social a:hover {
  border-color: #f4bd31;
  background: #f4bd31;
  color: #073f32;
  transform: translateY(-4px);
}

.footer-links,
.footer-contact {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li {
  margin-bottom: 13px;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.78);
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-links a i {
  color: #f4bd31;
  font-size: 11px;
}

.footer-links a:hover {
  color: #ffffff;
  transform: translateX(5px);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin-bottom: 17px;
  color: rgba(255, 255, 255, 0.78);
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  line-height: 1.7;
}

.footer-contact li > i {
  width: 18px;
  margin-top: 4px;
  color: #f4bd31;
  font-size: 16px;
  text-align: center;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-contact a:hover {
  color: #f4bd31;
}

.footer-bottom {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.15);
}

.footer-bottom-container {
  width: min(1200px, calc(100% - 40px));
  min-height: 75px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  line-height: 1.6;
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.7);
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-bottom-links a:hover {
  color: #f4bd31;
}

/* =========================
   RESPONSIVE FOOTER
========================= */

@media screen and (max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 650px) {
  .site-footer {
    padding-top: 55px;
  }

  .footer-container {
    width: min(100% - 30px, 1200px);
    grid-template-columns: 1fr;
    gap: 35px;
    padding-bottom: 40px;
  }

  .footer-bottom-container {
    width: min(100% - 30px, 1200px);
    min-height: auto;
    padding: 22px 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom-links {
    gap: 15px;
  }

  .footer-logo img {
    width: 145px;
  }
}
