/* ==== NAVBAR ====*/
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  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;
}

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

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

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

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

.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: #0056b3;
}

.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;
}

.lang-toggle {
  position: relative;
  font-weight: 600;
  color: #0f2a44;
  cursor: pointer;
  user-select: none;
}

.lang-toggle::after {
  content: "▾";
  font-size: 12px;
  margin-left: 6px;
}

.lang-list {
  position: absolute;
  top: 140%;
  right: 0;
  background: white;
  border-radius: 10px;
  border: 1px solid #e5e5e5;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  display: none;
  overflow: hidden;
  z-index: 999;
}

.lang-list span {
  display: block;
  padding: 10px 18px;
  font-size: 14px;
  cursor: pointer;
}

.lang-list span:hover {
  background: #f2f6fa;
}

.lang-toggle.active .lang-list {
  display: block;
}

.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 0;
}

.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 {
  max-width: 820px;
  margin: 0 auto;
  text-align: left;
  font-size: 16px;
  line-height: 1.7;
  color: #444;
}

.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(2, 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;
}

.vm-icon {
  width: 64px;
  height: auto;
  margin-bottom: 8px;
}

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

/* ==== PROGRAM CARD ==== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  height: 100%;
  align-items:stretch;
}

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

.card{
  background:white;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 10px 28px rgba(0,0,0,0.08);
  transition: transform .3s ease;
  display:flex;
  flex-direction:column;
}

.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;
}

.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 DETAILS ==== */
.program-text{
  display:flex;
  flex-direction:column;
  gap:40px;
}

.back-btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:14px;
  font-weight:500;
  text-decoration:none;
  color:#0f2a44;
  background:#f1f5f9;
  padding:10px 16px;
  border-radius:999px;
  transition:.25s;
  order:999;
  margin-top:30px;
}

.back-btn:hover{
  background:#e2e8f0;
  transform:translateX(-3px);
}

.program-header{
  text-align:center;
  padding:64px 40px;
  background:linear-gradient(135deg,#f8fafc,#eef2ff);
  border-radius:26px;
  box-shadow:0 20px 50px rgba(0,0,0,.05);
}

.program-header h1{
  font-size:38px;
  font-weight:700;
  color:#0f2a44;
  margin-bottom:14px;
}

.program-header .subtitle{
  font-size:18px;
  color:#64748b;
  line-height:1.7;
  max-width:640px;
  margin:auto;
}

.program-hero{
  display:grid;
  grid-template-columns:1fr;
  gap:40px;
  margin-bottom:70px;
}

.program-image{
  width:100%;
  height:380px;
  border-radius:26px;
  overflow:hidden;
  box-shadow:0 30px 60px rgba(0,0,0,.18);
}

.program-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.program-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
}

.content-card{
  background:#fff;
  border-radius:20px;
  padding:30px 32px;
  box-shadow:0 15px 35px rgba(0,0,0,.07);
  transition:.25s;
}

.content-card.intro{
  grid-column:1 / -1;
}

.content-card:hover{
  transform:translateY(-6px);
  box-shadow:0 25px 55px rgba(0,0,0,.12);
}

.content-card h2{
  font-family:'Poppins',sans-serif;
  font-size:20px;
  margin-bottom:12px;
  color:#0f2a44;
}

.content-card p{
  color:#555;
  line-height:1.8;
  font-size:15px;
}

.icon-list{
  list-style:none;
  padding:0;
  margin-top:12px;
}

.icon-list li{
  display:flex;
  align-items:flex-start;
  gap:12px;
  margin-bottom:8px;
  font-size:15px;
  color:#444;
  padding:2px 0;
}

.icon-list i{
  color:#0f2a44;
  font-size:15px;
  margin-top:4px;
  min-width:18px;
}

.content-card.highlight{
  background:linear-gradient(180deg,#eff6ff,#ffffff);
  border:1px solid #dbeafe;
}

.content-card.intro{
  padding:34px 36px;
}

.pricing-box{
  background:linear-gradient(180deg,#ffffff,#f8fafc);
  border-radius:26px;
  padding:38px 32px;
  box-shadow:0 25px 60px rgba(0,0,0,.12);
  position:sticky;
  top:120px;
  border:1px solid #eef2f7;
  display:flex;
  flex-direction:column;
  align-items:stretch;
  gap:20px;
}

.price-wrap{
  text-align:center;
  margin-bottom:6px;
}

.badge-discount{
  display:inline-block;
  background:#ef4444;
  color:#fff;
  font-size:13px;
  font-weight:600;
  padding:6px 14px;
  border-radius:999px;
  margin-bottom:18px;
  align-self: center;
}

.price-old{
  color:#999;
  font-size:15px;
  text-decoration:line-through;
  margin-bottom:6px;
}

.price-new{
  font-size:38px;
  font-weight:800;
  color:#0f172a;
}

.price-note{
  color:#777;
  margin-bottom:26px;
}

.btn-primary{
  display:block;
  background:#0f2a44;
  text-decoration:none;
  padding:16px;
  border-radius:999px;
  font-weight:700;
  letter-spacing:.3px;
  transition:.25s;
  width:100%;
  text-align:center;
  color:#fff !important;
  text-align: center;
  margin-top:6px;
}

.btn-primary:hover{
  background:#0f2a44;
  transform:translateY(-3px);
  box-shadow:0 12px 30px rgba(37,99,235,.35);
}

.note{
  font-size:12px;
  color:#777;
  margin-top:16px;
}

.btn-primary,
.btn-primary:visited{
  color:#fff !important;
}

.program-meta{
  border-top:1px solid #e5e7eb;
  padding-top:18px;
  display:flex;
  flex-direction:column;
  gap:10px;
}

.program-meta div{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:14px;
  color:#475569;
}

.program-meta i{
  color:#0f172a;
  width:18px;
}

@media(max-width:768px){

  .program-header{
    padding:48px 26px;
  }

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

  .program-image{
    height:260px;
  }

  .pricing-box{
    position:static;
  }

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

/* ==== ARTIKEL ==== */
.artikel {
  padding: 90px 20px;
  background: #f9fbff;
  text-align: center;
}

.section-title {
  font-size: 32px;
  margin-bottom: 10px;
}

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

.artikel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
  gap: 30px;
}

.artikel-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  transition: 0.3s;
}

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

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

.artikel-content {
  padding: 20px;
  text-align: left;
}

.artikel-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.artikel-content p {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

.artikel-link {
  font-size: 14px;
  color: #777c83;
  text-decoration: none;
}

.artikel-link:hover {
  opacity: 0.7;
}

/* ===== ARTICLE DETAIL ===== */
.article-detail{
  padding:100px 0;
}

.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;
}

.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;
}

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

.activity-gallery{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:18px;
}

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

.activity-gallery img:hover{
  transform:scale(1.04);
}

/* ==== 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);
}


/* ==== 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: #f7f9fc;
}

.section-subtitle {
  text-align: center;
  color: #6b7280;
  margin-bottom: 40px;
}

.location-box {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 32px;
  background: white;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.location-info h3 {
  color: #0f2a44;
  margin-bottom: 12px;
}

.location-info p {
  line-height: 1.8;
  color: #444;
}

.location-map iframe {
  width: 100%;
  height: 260px;
  border-radius: 16px;
  border: none;
}

/* ==== 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;
  }
}