/* ==== NAVBAR ====*/
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 48px;
  background: white;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  width: 100%;
  height: 70px;
}

.nav-logo {
  height: 55px;
  display: flex;
  align-items: center;
  margin-left: 16px;
}

.navbar-logo img {
  height: 40px;
}

.nav-left{
  margin-left: 8px;
}

.nav-center {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-center a {
  position: relative;
  text-decoration: none;
  color: #0f2a44;
  font-weight: 600;
  padding: 8px 4px;
}

.nav-center a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 0;
  height: 3px;
  background-color: #0f2a44;
  border-radius: 2px;
  transition: all 0.25s ease;
  transform: translateX(-50%);
}

.nav-center a:hover::after {
  width: 100%;
}

.nav-center a.active::after {
  width: 100%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.navbar-menu {
  display: flex;
  gap: 28px;
  list-style: none;
}

.navbar-menu a {
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  color: #333;
  transition: color 0.2s ease;
}

.navbar-menu a:hover {
  color: #1d75d4;
}

.navbar-menu li {
  position: relative;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  min-width: 180px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
}

.dropdown a {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
  color: #333;
}

.dropdown a:hover {
  background-color: #f5f7fa;
}

.navbar-menu li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-login {
  padding: 8px 16px;
  background-color: #0056b3;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
}

.btn-login:hover {
  background-color: #004494;
}

.profile-icon {
    font-size: 20px;
    color: #333;
    text-decoration: none;
    transition: 0.3s;
}

.profile-icon:hover {
    color: #0077ff;
    transform: scale(1.1);
}

.admin-login {
    display: flex;
    align-items: center;
    margin-right: 8px;
}

.desktop-only { 
  display: block; 
}

.mobile-only { 
  display: none; 
}

.hamburger {
  display: none;
  font-size: 26px;
  cursor: pointer;
  color: #0f2a44;
}

/* ==== BUTTONS ==== */
.btn-primary {
  background: var(--navy);
  color: white;
  padding: 10px 18px;
  border: none;
  cursor: pointer;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--navy);
  padding: 10px 18px;
}

.btn {
  background: var(--gold);
  border: none;
  padding: 12px 24px;
  font-weight: bold;
}

/* ==== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  margin-top: -30px;

  background-image: url("../assets/images/001.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15,42,68,0.78),   
    rgba(200,160,60,0.45) 
  );
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top center,
    rgba(255,255,255,0.10),
    transparent 60%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 0;
}

.hero-logo {
  height: 150px;
  margin-bottom: 12px;
  transform: translateY(-12px);
}

.hero-badge {
  margin-bottom: 24px;
  padding: 6px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.25);
  font-size: 14px;
}

.hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 42px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.3px;
  margin-bottom: 18px;
  max-width: 1000px;
  white-space: nowrap;
}

.hero-desc {
  font-family: 'Inter', sans-serif;
  font-style: italic;
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 36px;
  max-width: 680px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
}

@media (max-width: 768px) {
  .hero h1 {
    white-space: normal;
    font-size: 34px;
  }
}

.btn-rounded {
  background: #0f2a44;
  color: white;
  padding: 14px 38px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: all 0.25s ease;
}

.btn-rounded:hover {
  background: #2d6eaa;
  transform: translateY(-2px);
  box-shadow: 0 8px 22x rgba(0,0,0,0.18);
}

.btn-outline-rounded {
  border: 1.5px solid white;
  padding: 14px 36px;
  border-radius: 999px;
  color: white;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: all 0.25s ease;
}

.btn-outline-rounded:hover {
   background: white;
  color: #0f2a44;
  transform: translateY(-2px);
}

/* ==== TRUST ==== */
.trust-box {
  padding: 70px 0;
  background: #f7f9fc;
}

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

.trust-card {
  background: white;
  border-radius: 20px;
  padding: 40px 24px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px; 
}

.trust-card:hover {
  transform: translateY(-6px);
}

.trust-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 2px; 
}

.trust-card h2 {
  font-size: 36px;
  color: var(--navy);
  margin: 2px 0 0;
}

.trust-card p {
  margin: 0;
  font-size: 15px;
  color: #555;
}

/* ==== TENTANG ==== */
.about {
  padding: 90px 4%;
}

.about-section{
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.about-section.expanded::after{
  display:none;
}

.about-section.expanded .about-desc{
  max-height: none;
}

.about-section::after{
  content:"";
  position:absolute;
  bottom:40px;
  left:0;
  width:100%;
  height:40px;
  background:linear-gradient(to bottom, rgba(255,255,255,0), white);
  pointer-events:none;
}

.about-image {
  width: 100%;
  border-radius: 20px;
  margin-bottom: 50px;
}

.about-title {
  text-align: center;
  font-size: 32px;
  color: #0f2a44;
  margin-bottom: 16px;
}

.about-desc {
  width: 100%;
  text-align: justify;
  font-size: 17px;
  line-height: 1.8;
  color: #444;
  position: relative;
  max-height: 95px;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.about-desc.expanded{
  max-height: 500px;
}

.about-desc.expanded::after{
  display:none;
}

.more-text{
  display: none;
  margin-top: 16px;
}

.read-more-btn{
  margin-top:14px;
  background:none;
  border:none;
  color:#0f2a44;
  font-weight:600;
  font-size: 15px;
  cursor:pointer;
  padding:0;
}

.read-more-btn:hover{
  text-decoration:underline;
}

.about-link {
  display: inline-block;
  margin-top: 14px;
  color: #0f2a44;
  font-weight: 600;
  text-decoration: none;
  position: relative;
}

.about-link::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: #0f2a44;
  transition: width 0.3s ease;
  margin-top: 4px;
}

.about-link:hover::after {
  width: 100%;
}

.vision-mission {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px,1fr));
  gap: 30px;
  margin-top: 50px;
}

.box {
  background: white;
  padding: 32px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  border-left: 5px solid #0f2a44;

  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.vm-icon {
  width: 72px;
  height: 72px;
  object-fit: contain;
  flex-shrink: 0;
}

.box h3,
.box p {
  display: block;
}

.box h3 {
  margin: 0;
  margin-bottom: 6px;
  color: #0f2a44;
  font-size: 20px;
}

.box p {
  margin: 0;
  line-height: 1.6;
  color: #555;
  font-size: 15px;
  max-width: 420px;
}

/* ==== PROGRAM CARD ==== */
.card{
  background: linear-gradient(
    145deg,
    #ffffff 0%,
    #f7f9fc 60%,
    #eef3f8 100%
  );

  border-radius:16px;
  overflow:hidden;
  box-shadow:0 10px 28px rgba(0,0,0,0.08);
  transition: all .35s ease;
  display:flex;
  flex-direction:column;
  min-width:0;

  border:1px solid rgba(11,42,74,0.06);
}

.card-grid {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:28px;
  align-items: start;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow:0 18px 45px rgba(11,42,74,0.15);
}

.card:hover {
  transform: translateY(-6px);
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.program-content {
  padding: 20px;
  flex: 1;
}

.program-content h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #0f2a44;
}

.program-content p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  text-align: justify;
  text-justify: inter-word;
}

.btn-detail {
  margin-top: 14px;
  padding: 8px 16px;
  background: #0f2a44;
  color: white;
  border-radius: 8px;
  font-size: 14px;
  text-decoration: none;
  display: inline-block;
}

.program-section{
  margin-top: -60px;
}

.program-section .section-title{
  text-align:center;
}

.program-content a{
  display:inline-block;
  margin-top:12px;
  font-size:13px;
  color:#6B7280;
  text-decoration:none;
  font-weight:500;
  transition:.25s;
}

.program-content a:hover{
  color:var(--navy);
}

.program-detail-box{
  max-height:0;
  overflow:hidden;
  transition:max-height .45s ease;
  padding:0;
}

.program-detail-box .detail-card{
  opacity:0;
  transform:translateY(10px);
  transition:all .35s ease;
}

.card.active .program-detail-box .detail-card{
  opacity:1;
  transform:translateY(0);
}

.card.active{
box-shadow:0 18px 45px rgba(0,0,0,0.12);
transform:translateY(-4px);
z-index: 5;
position: relative;
}

.card.active .program-detail-box{
  max-height:900px;
  padding:0 20px 20px;
}

.program-detail-box h4{
  margin-top:14px;
  font-size:15px;
  color:var(--navy);
  display:flex;
  align-items:center;
  gap:8px;
}

.program-detail-box h4 i{
  color:var(--gold);
}

.program-detail-box ul{
  list-style:none;
  padding:0;
  margin:8px 0;
}

.program-detail-box li{
  display:flex;
  gap:10px;
  font-size:14px;
  color:#555;
  margin-bottom:6px;
}

.program-detail-box li i{
  color:var(--gold);
  width:16px;
}

.program-price{
  margin-top:14px;
}

.price-box{
  margin-top:18px;
  text-align: center;
}

.btn-primary{
display:inline-block;
padding:10px 22px;
border-radius:999px; 
font-size:13px;
font-weight:600;
background:linear-gradient(135deg,var(--navy),#1b4a78);
color:#fff;
text-decoration:none;
margin-top:12px;
transition:all .25s ease;
}

.btn-primary:hover{
transform:translateY(-2px);
box-shadow:0 8px 18px rgba(11,42,74,0.25);
background:linear-gradient(135deg,#1b4a78,var(--navy));
}

.price-old{
display:block;
font-size:14px;
text-decoration:line-through;
color:#999;
margin-top:8px;
}

.price-new{
  font-size:28px;
  font-weight:700;
  margin-top: 4px;
  background:linear-gradient(90deg,#0f2a44,#c9a24d);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.discount-badge{
  display:inline-block;
  background:#ef4444;
  color:white;
  font-size:12px;
  font-weight:600;
  padding:4px 10px;
  border-radius:999px;
  margin-top:14px;
}

.program-collapse{
display:block;
margin:18px auto 0;
font-size:13px;
color:#6B7280;
background:none;
border:none;
cursor:pointer;
}

.program-collapse:hover{
  color:var(--navy);
}

.more-programs{
display:none;
}

.more-programs.show{
display:contents;
}

.program-more-toggle{
text-align:center;
margin-top:40px;
}

.program-more-toggle a{
font-size:14px;
color:#6B7280;
cursor:pointer;
}

.detail-card p{
font-size:13px;
line-height:1.6;
color:#555;
}

/* ==== ARTIKEL ==== */

.artikel-section{
padding:90px 20px;
background:linear-gradient(
180deg,
#f8fbff 0%,
#eef3f8 100%
);
}

.section-sub{
text-align:center;
color:#666;
margin-bottom:50px;
}

.artikel-grid{
display:grid;
grid-template-columns:repeat(3,minmax(0,1fr));
gap:28px;
align-items:start;
}

.artikel-card{
background:linear-gradient(
145deg,
#ffffff 0%,
#f9fbff 60%,
#eef3f8 100%
);

border-radius:16px;
overflow:hidden;

box-shadow:0 10px 28px rgba(0,0,0,0.08);

transition:.35s;

display:flex;
flex-direction:column;

border:1px solid rgba(11,42,74,0.06);
}

.artikel-card:hover{
transform:translateY(-6px);
box-shadow:0 18px 45px rgba(11,42,74,0.15);
}

.artikel-card img{
width:100%;
height:180px;
object-fit:cover;
}

.artikel-content{
padding:20px;
flex:1;
display:flex;
flex-direction:column;
}

.artikel-content h3{
font-size:18px;
margin-bottom:8px;
color:#0f2a44;
}

.artikel-content p{
font-size:14px;
color:#555;
line-height:1.6;
text-align: justify;
text-justify: inter-word;
}

.artikel-link{
margin-top:auto;
font-size:13px;
color:#6B7280;
text-decoration:none;
font-weight:500;
}

.artikel-link:hover{
color:var(--navy);
}

/* TOGGLE */

.more-artikel{
display:none;
}

.more-artikel.show{
display:contents;
}

.artikel-more-toggle{
text-align:center;
margin-top:40px;
}

.artikel-more-toggle a{
font-size:14px;
color:#6B7280;
cursor:pointer;
}

.artikel-more-toggle a:hover{
color:var(--navy);
}

/* RESPONSIVE */

@media (max-width:1024px){

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

}

@media (max-width:640px){

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

}

/* ===== ARTIKEL DETAIL ===== */
.article-detail{
padding:30px 20px 80px;
}

.back-btn{
display:inline-flex;
align-items:center;
gap:8px;
font-size:14px;
color:#6B7280;
text-decoration:none;
margin-bottom:32px;
}

.back-btn:hover{
color:#0f2a44;
}

.article-hero{
margin-bottom:40px;
}

.article-hero img{
width:100%;
height:420px;
object-fit:cover;
border-radius:18px;
}
.article-title{
  font-size:38px;
  font-weight:700;
  color:#0f2a44;
  margin-bottom:14px;
}

.article-meta{
  color:#64748b;
  margin-bottom:40px;
}

.article-content{
  width:100%;
  line-height:1.9;
  color:#374151;
  font-size:16px;
  margin-bottom:60px;
  text-align:justify;
}

.article-title,
.article-meta,
.article-content{
margin-left:auto;
margin-right:auto;
}

.speaker-gallery{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:28px;
margin-bottom:70px;
}

.speaker-card{
text-align:center;
}

.speaker-card img{
width:100%;
height:240px;
object-fit:cover;
border-radius:18px;
margin-bottom:12px;
}

.speaker-card h4{
font-size:16px;
color:#0f2a44;
margin-bottom:4px;
}

.speaker-card span{
font-size:13px;
color:#6b7280;
}

.speaker-card img{
width:100%;
height:240px;
object-fit:cover;
border-radius:18px;
margin-bottom:12px;
transition:.3s;
cursor:pointer;
}

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

.gallery-title{
text-align:center;
font-size:28px;
margin-bottom:36px;
}

.activity-gallery{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:20px;
margin-top:20px;
}

.activity-gallery img{
width:100%;
height:220px;
object-fit:cover;
border-radius:16px;
transition:.3s;
}

.activity-gallery img:hover,
.speaker-card img:hover{
transform:scale(1.05);
box-shadow:0 10px 30px rgba(0,0,0,0.15);
}

.reading-bar{
position:fixed;
top:0;
left:0;
height:4px;
width:0%;
background:#1d4ed8;
z-index:9999;
}

.lightbox{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.85);
display:flex;
align-items:center;
justify-content:center;
opacity:0;
pointer-events:none;
transition:0.3s;
z-index:9999;
}

.lightbox img{
max-width:90%;
max-height:90%;
border-radius:12px;
}

.lightbox.active{
opacity:1;
pointer-events:auto;
}

.lightbox-btn{
position:absolute;
top:50%;
transform:translateY(-50%);
background:rgba(255,255,255,0.15);
border:none;
color:white;
font-size:28px;
padding:12px 16px;
border-radius:8px;
cursor:pointer;
transition:.3s;
}

.lightbox-btn:hover{
background:rgba(255,255,255,0.3);
}

.lightbox-btn.prev{
left:30px;
}

.lightbox-btn.next{
right:30px;
}

/* ==== AKREDITASI ==== */
.accreditation{
  background: linear-gradient(135deg,#0f2a44,#163d63);
  padding:120px 0;
  text-align:center;
  position:relative;
  overflow:hidden;
}

.accreditation::before{
  content:"";
  position:absolute;
  width:500px;
  height:500px;
  background: radial-gradient(circle,rgba(255,255,255,0.15),transparent 70%);
  top:-120px;
  right:-120px;
}

.accreditation-card{
  max-width:720px;
  margin:auto;
  background:white;
  border-radius:28px;
  padding:56px 42px;
  box-shadow:0 30px 70px rgba(0,0,0,0.18);
  position:relative;
  z-index:2;
  transition:.3s;
}

.accreditation-card:hover{
  transform:translateY(-6px);
}

.accreditation-icon{
  width:82px;
  margin-bottom:22px;
}

.accreditation h2{
  font-size:32px;
  margin-bottom:14px;
  color:#0f2a44;
  font-weight:700;
}

.accreditation p{
  font-size:16px;
  line-height:1.75;
  color:#555;
  margin-bottom:26px;
  max-width:520px;
  margin-left:auto;
  margin-right:auto;
}

.accreditation .badge{
  display:inline-block;
  background:linear-gradient(135deg,#0f2a44,#1e4f7a);
  color:white;
  font-weight:600;
  padding:12px 22px;
  border-radius:999px;
  font-size:14px;
  letter-spacing:.4px;
  box-shadow:0 10px 22px rgba(15,42,68,.25);
}

/* ===== PARTNERSHIP ===== */

.partnership{
padding:60px 20px;
background:#F9FAFB;
text-align:center;
}

.section-title{
font-size:28px;
font-weight:600;
margin-bottom:40px;
}

.logo-slider{
overflow:hidden;
position:relative;
width:100%;
}

.logo-track{
display:flex;
gap:60px;
width:max-content;
animation:scrollLogo 20s linear infinite;
align-items: center;
}

.logo-track img{
height:100px;
width:auto;
opacity:0.8;
transition:0.3s;
}

.logo-track img:hover{
opacity:1;
transform:scale(1.05);
}

@keyframes scrollLogo{
0%{
transform:translateX(0);
}
100%{
transform:translateX(-50%);
}
}

@media (max-width:768px){
.logo-track img{
height:60px;
}
}

/* ==== TESTIMONI ==== */
.testimonial-section {
  padding: 80px 0;
  background: #f7f9fc;
}

.section-title {
  text-align: center;
  margin-bottom: 48px;
}

.testimonial-card {
  background:white;
  border-radius:20px;
  padding:36px 40px;
  display:grid;
  grid-template-columns:1.5fr auto;
  gap:32px;
  align-items:center;
  box-shadow:0 20px 45px rgba(0,0,0,0.08);
  position:relative;
  transition:.3s;
}

.testimonial-card:hover{
  transform:translateY(-6px);
  box-shadow:0 30px 60px rgba(0,0,0,0.12);
}

.testimonial-card::after {
  content: "";
  position: absolute;
  left: 60px;
  bottom: -14px;
  width: 28px;
  height: 28px;
  background: white;
  transform: rotate(45deg);
  box-shadow: 6px 6px 20px rgba(0,0,0,0.04);
}

.testimonial-quote p {
  font-size: 17px;
  line-height: 1.8;
  color: #374151;
  margin-bottom: 24px;
}

.testimonial-author strong {
  display: block;
  font-size: 15px;
  color: #0f2a44;
}

.testimonial-author span {
  font-size: 13px;
  color: #6b7280;
}

.testimonial-avatar img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #f7f9fc;
}

.testimonial-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:40px;
}

.testimonial-avatar{
  display:flex;
  justify-content:center;
  align-items:center;
}

/* ==== CTA ==== */
.cta{
  padding:110px 20px;
  text-align:center;
  background:linear-gradient(135deg,#eef4ff,#f8fafc);
  position:relative;
  overflow:hidden;
}

.cta::before{
  content:"";
  position:absolute;
  width:500px;
  height:500px;
  background:#2e8b6f;
  opacity:.08;
  filter:blur(140px);
  top:-200px;
  left:50%;
  transform:translateX(-50%);
}

.cta-box{
  max-width:700px;
  margin:0 auto;
  position:relative;
  z-index:1;
}

.cta-box h2{
  font-size:36px;
  font-weight:800;
  color:#0f2a44;
  margin-bottom:14px;
  line-height:1.3;
}

.cta-box p{
  font-size:17px;
  color:#4b5563;
  margin-bottom:32px;
}

.btn-cta{
  display:inline-block;
  background:#0f2a44;
  color:white;
  padding:14px 30px;
  border-radius:999px;
  font-weight:600;
  font-size:15px;
  text-decoration:none;
  transition:.3s;
  box-shadow:0 8px 22px rgba(15,42,68,.25);
}

.btn-cta:hover{
  transform:translateY(-3px);
  background:#0b2238;
  box-shadow:0 14px 34px rgba(15,42,68,.35);
}

.btn-cta:active{
  transform:translateY(0);
}

@keyframes pulse{
  0%{box-shadow:0 0 0 0 rgba(46,139,111,.5);}
  70%{box-shadow:0 0 0 20px rgba(46,139,111,0);}
  100%{box-shadow:0 0 0 0 rgba(46,139,111,0);}
}

/* ==== LOKASI ==== */

.location-section{
background:linear-gradient(180deg,#f7f9fc,#eef3f9);
padding:70px 20px;
}

.section-subtitle{
text-align:center;
color:#6b7280;
margin-bottom:35px;
font-size:14px;
}

.location-box{
display:grid;
grid-template-columns:1.2fr 1fr;
gap:32px;
background:linear-gradient(135deg,#ffffff,#f8fbff);
border-radius:20px;
padding:32px;
box-shadow:0 18px 40px rgba(0,0,0,0.08);
align-items:center;
}

.location-map iframe{
width:100%;
height:300px;
border-radius:14px;
border:none;
transition:0.4s;
}

.location-map iframe:hover{
transform:scale(1.02);
}

.location-info h3{
color:#0f2a44;
margin-bottom:16px;
font-size:18px;
}

.location-list{
list-style:none;
padding:0;
margin:0;
display:flex;
flex-direction:column;
gap:12px;
}

.location-list li{
display:flex;
gap:12px;
align-items:flex-start;
font-size:14px;
line-height:1.5;
color:#444;
}

.location-list i{
font-size:16px;
color:#0f2a44;
margin-top:2px;
min-width:18px;
}

@media(max-width:768px){

.location-box{
grid-template-columns:1fr;
padding:26px;
}

.location-map iframe{
height:250px;
}

}

.location-actions{
display:flex;
gap:14px;
margin-top:20px;
flex-wrap:wrap;
}

.location-actions a{
display:inline-flex;
align-items:center;
gap:8px;
padding:10px 16px;
border-radius:10px;
font-size:14px;
text-decoration:none;
font-weight:500;
transition:0.3s;
}

.btn-map{
background:#eef3fb;
color:#1f4fa3;
}

.btn-map:hover{
background:#dfe9f7;
transform:translateY(-2px);
}

.btn-wa{
background:#25D366;
color:white;
}

.btn-wa:hover{
background:#1ebe5d;
transform:translateY(-2px);
}

/* ==== FOOTER ==== */
.footer{
  background:rgba(255,255,255,0.78);
  color:#0f2a44;
  padding:80px 10%;
}

.footer a{
  text-decoration:none;
}

.footer-grid{
  display:grid;
  grid-template-columns: 1fr 1fr 2fr;
  gap:40px;
  align-items:start;

}

.footer h4{
  margin-bottom:14px;
  font-size:18px;
  font-weight:700;
}

.footer p{
  font-size:14px;
  line-height:1.6;
  color:#334155;
}

/* ==== FORM ==== */
.contact-form input,
.contact-form textarea{
  width:100%;
  padding:12px;
  margin-bottom:12px;
  border-radius:8px;
  border:1.5px solid #cbd5e1;
  font-size:14px;
  transition:.25s;
  display: block;
}

.contact-form input:focus,
.contact-form textarea:focus{
  outline:none;
  border-color:#235e95;
  box-shadow:0 0 0 3px rgba(35,94,149,0.15);
}

.contact-form button{
  background:#235e95;
  color:white;
  font-weight:700;
  padding:12px;
  border-radius:999px;
  border:none;
  cursor:pointer;
  transition:.3s;
  width:100%;
}

.contact-form button:hover{
  background:#1d4f7d;
  transform:translateY(-2px);
}

.contact-form{
  width:100%;
}

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

.form-column{
  grid-column: span 2;
}

/* ==== SOCIAL ==== */
.social{
  display:flex;
  gap:14px;
  margin-top:16px;
  flex-wrap: flex-start;
  grid-column:1;
  align-self:end;
  margin-top:auto;
}

.social a{
  width:40px;
  height:40px;
  border-radius:50%;
  background:rgba(255,255,255,0.15);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#0f2a44;
  transition:.3s;
}

.social a:hover{
  background:#235e95;
  color:white; 
}

/* ==== BOTTOM ==== */
.footer-bottom{
  margin-top:60px;
  text-align:center;
  font-size:14px;
  opacity:.7;
}

.footer-bottom img{
  margin-bottom:10px;
}

@media(max-width:992px){
  .footer-grid{
    grid-template-columns:repeat(2,1fr);
    gap:30px;
  }
}

@media(max-width:600px){
  .footer{
    padding:60px 24px;
  }

  .footer-grid{
    grid-template-columns:1fr;
    text-align:left;
  }

  .social{
    justify-content:flex-start;
  }

  .contact-form button{
    width:100%;
  }
}

@media (max-width: 768px) {
.nav-center {
  position: fixed;
  top: 70px;
  right: -100%;
  width: 100%;
  height: calc(100vh - 70px);
  background: white;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transition: right 0.3s ease;
}

.nav-center.active {
  right: 0;
}

.nav-right {
  display: none;
}

.hamburger {
  display: block;
}

.desktop-only { 
  display: none; 
}
.mobile-only { 
  display: block; 
}

.mobile-lang {
  display: block;
  margin-top: 16px;
  text-align: left;
}

.nav-center .lang-list {
  position: relative;
  top: 8px;
  right: auto;
  margin-top: 6px;
}

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

  .trust-card {
    padding: 32px 20px;
  }

  .vision-mission {
    grid-template-columns: 1fr;
  }

  .about-title {
    font-size: 26px;
  }
.program-content {
    grid-template-columns: 1fr;
  }

  .pricing-box {
    position: static;
    margin-top: 40px;
  }
  .content-card {
    padding: 24px 22px;
  }

   .program-header {
    padding: 40px 24px;
  }

  .program-header h1 {
    font-size: 28px;
  }

  .program-header .subtitle {
    font-size: 16px;
  }

  .program-image {
    height: 220px;
  }

  .testimonial-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .testimonial-card::after {
    display: none;
  }

  .testimonial-avatar {
    order: -1;
  }

  .location-box {
    grid-template-columns: 1fr;
  }

}
  
@media (max-width:1024px){
  .card-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media (max-width:640px){
  .card-grid{
    grid-template-columns:1fr;
  }
}

@media (max-width:640px){

  .accreditation{
    padding:80px 0;
  }

  .accreditation-card{
    padding:36px 22px;
    border-radius:22px;
  }

  .accreditation h2{
    font-size:24px;
  }

  .accreditation p{
    font-size:14px;
  }

  .accreditation-icon{
    width:64px;
  }

}

@media (max-width:768px){

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

  .testimonial-card{
    grid-template-columns:1fr;
    text-align:center;
  }

  .testimonial-avatar{
    margin-top:20px;
  }

}

@media(max-width:768px){

  .cta{
    padding:80px 20px;
  }

  .cta-box h2{
    font-size:26px;
  }

  .cta-box p{
    font-size:15px;
  }

  .btn-cta{
    padding:12px 26px;
    font-size:14px;
  }
}

@media (max-width:1024px){

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

.more-artikel{
grid-template-columns:repeat(2,minmax(0,1fr));
}

}

@media (max-width:640px){

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

.more-artikel{
grid-template-columns:1fr;
}

}

@media (max-width:768px){

.article-title{
font-size:28px;
}

.article-hero img{
height:260px;
}

.article-content{
font-size:15px;
line-height:1.8;
}

}

@media (max-width:1024px){

.article-title{
font-size:32px;
}

.article-content{
font-size:15.5px;
}

}

@media (max-width:768px){

.article-title{
font-size:26px;
}

.article-hero img{
height:240px;
}

}

@media (max-width:480px){

.article-detail{
padding:20px 18px 60px;
}

.article-title{
font-size:22px;
}

.article-content{
font-size:15px;
}

}