/* ============================= */
/* 🌐 Layout Wrapper & Structure */
/* ============================= */

.elementor-element-fc39385 {
  padding: 60px 20px;
  background: #fafafa;
}

.elementor-element-303cbf8,
.elementor-element-620e28b {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================= */
/* 🖼️ Carousel Image Styling */
/* ============================= */

.elementor-carousel-image {
  width: 100%;
  height: 400px;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.elementor-carousel-image:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* ============================= */
/* 📰 Pengumuman Section */
/* ============================= */

.elementor-element-a7a1a04 h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1e293b;
  text-align: left;
  margin-bottom: 20px;
}

.elementor-element-dd898c0 p {
  color: #555;
  line-height: 1.6;
  font-size: 1rem;
  text-align: left;
}

/* Tombol "Unduh Brosur" */
.elementor-element-984befd .elementor-button {
  background-color: #0066cc;
  color: white;
  border-radius: 8px;
  padding: 12px 22px;
  transition: background 0.3s ease;
}

.elementor-element-984befd .elementor-button:hover {
  background-color: #004a99;
}

/* ============================= */
/* 🧾 Pendaftaran Section */
/* ============================= */

.elementor-element-3321eed h2 {
  font-size: 1.8rem;
  color: #1e293b;
  margin-top: 30px;
  text-align: left;
}

.elementor-element-fbdbc11 p {
  color: #555;
  line-height: 1.7;
  text-align: left;
  max-width: 600px;
  margin: 10px auto 30px;
}

/* ============================= */
/* 📱 Icon List (Telepon, WA, Email) */
/* ============================= */

.elementor-icon-list-items {
  list-style: none;
  padding: 0;
  margin: 0 auto 30px;
  max-width: 400px;
}

.elementor-icon-list-item {
  display: flex;
  align-items: left;
  justify-content: left;
  margin: 10px 0;
}

.elementor-icon-list-icon svg {
  width: 20px;
  height: 20px;
  fill: #0066cc;
  margin-right: 10px;
}

.elementor-icon-list-text {
  color: #1e293b;
  font-size: 1rem;
}

/* ============================= */
/* 🖱️ Buttons "Pelajari Selengkapnya" & "Saya Ingin Daftar" */
/* ============================= */

.elementor-element-164f24e {
  display: flex;
  justify-content: left;
  gap: 16px;
  flex-wrap: wrap;
}

.elementor-element-164f24e .elementor-button {
  background: #0066cc;
  color: #fff;
  border-radius: 6px;
  padding: 12px 20px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.elementor-element-164f24e .elementor-button:hover {
  background: #004a99;
  transform: translateY(-3px);
}

/* ============================= */
/* 📱 Responsive Breakpoints */
/* ============================= */

/* Tablet */
@media (max-width: 1024px) {
  .elementor-carousel-image {
    height: 300px;
  }

  .elementor-element-a7a1a04 h2 {
    font-size: 1.8rem;
  }

  .elementor-element-dd898c0 p {
    font-size: 0.95rem;
  }
}

/* Mobile Landscape */
@media (max-width: 768px) {
  .elementor-element-fc39385 {
    padding: 40px 15px;
  }

  .elementor-carousel-image {
    height: 250px;
  }

  .elementor-element-164f24e {
    flex-direction: column;
    align-items: right;
  }

  .elementor-element-164f24e .elementor-button {
    width: 100%;
    text-align: right;
  }
}

/* Mobile Portrait */
@media (max-width: 480px) {
  .elementor-element-a7a1a04 h2,
  .elementor-element-3321eed h2 {
    font-size: 1.5rem;
  }

  .elementor-element-dd898c0 p,
  .elementor-element-fbdbc11 p {
    font-size: 0.9rem;
  }

  .elementor-carousel-image {
    height: 200px;
  }

  .elementor-icon-list-item {
    flex-direction: column;
    text-align: right;
  }

  .elementor-icon-list-icon svg {
    margin-right: 0;
    margin-bottom: 6px;
  }
}

.elementor-accordion {
      max-width: 700px;
      margin: 50px auto;
      border-radius: 10px;
      background: #fafafa;
      box-shadow: 0 4px 12px rgba(0,0,0,0.05);
      overflow: hidden;
    }

    .elementor-accordion-item {
      border-bottom: 1px solid #ddd;
      transition: background 0.3s;
    }

    .elementor-accordion-item:last-child {
      border-bottom: none;
    }

    .elementor-tab-title {
      display: flex;
      align-items: center;
      justify-content: space-between;
      cursor: pointer;
      padding: 18px 20px;
      font-weight: 600;
      font-size: 1rem;
      color: #333;
      background: #fff;
      transition: all 0.3s ease;
    }

    .elementor-tab-title:hover {
      background: #f0f7ff;
      color: #0066cc;
    }

    .elementor-accordion-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      color: #0066cc;
      transition: transform 0.3s ease;
    }

    .elementor-tab-content {
      display: none;
      padding: 15px 20px;
      background: #fff;
      color: #555;
      line-height: 1.6;
      animation: fadeIn 0.3s ease-in-out;
    }

    .elementor-tab-content.active {
      display: block;
    }

    .elementor-tab-title.active .elementor-accordion-icon {
      transform: rotate(180deg);
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(-5px); }
      to { opacity: 1; transform: translateY(0); }
    }

/* === Footer Base === */
.footer {
  position: relative;
  overflow: hidden;
  background-color: #f0f0f0;
  color: #f0f0f0;
  padding: 60px 20px;
  font-family: "Poppins", sans-serif;
}

.footer-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #D4AF37 0%, #096B68 50%, #096B68 100%);
  opacity: 0.95;
  z-index: 0;
}

.footer-container {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: auto;
}

/* === Brand === */
.footer-brand {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.brand-logo {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  background: linear-gradient(to bottom right, #f9b234, #ff6b00);
  padding: 2px;
  box-shadow: 0 4px 10px rgba(255, 191, 0, 0.2);
}

.brand-inner {
  width: 100%;
  height: 100%;
  border-radius: 14px;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-inner span {
  font-size: 28px;
  font-weight: bold;
  background: linear-gradient(to bottom right, #f9b234, #ff6b00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-desc {
  color: #f0f0f0;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 40px;
}

/* === Contact Cards === */
.footer-contacts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  margin-bottom: 50px;
}

.contact-card {
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 16px;
  padding: 20px;
  transition: 0.3s;
}

.contact-card:hover {
  transform: translateY(-5px);
  border-color: #f9b234;
  box-shadow: 0 5px 15px rgba(255, 191, 0, 0.1);
}

.contact-icon {
  font-size: 26px;
  margin-bottom: 10px;
}

.contact-label {
  color: #f0f0f0;
  font-size: 12px;
  margin-bottom: 4px;
}

.contact-value {
  font-weight: 600;
  font-size: 15px;
  color: #fff;
}

/* === Divider === */
.footer-divider {
  border: none;
  height: 1px;
  background: linear-gradient(to right, transparent, #f9b234, transparent);
  margin: 50px 0;
}

/* === Address Section === */
.footer-address {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 50px;
}

.footer-address h4 {
  font-weight: 600;
  margin-bottom: 8px;
  color: #fff;
}

.footer-address p {
  color: #f0f0f0;
  font-size: 14px;
  line-height: 1.6;
}

/* === Bottom Section === */
.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  border-top: 1px solid #222;
  padding-top: 20px;
}

.footer-info p {
  margin: 5px 0;
  font-size: 14px;
  color: #f0f0f0;
}

.footer-info a {
  color: #f9b234;
  text-decoration: none;
  font-weight: 500;
}

.footer-info a:hover {
  text-decoration: underline;
}

/* === Social Icons === */
.footer-socials {
  display: flex;
  gap: 15px;
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #1a1a1a;
  border: 1px solid #333;
  font-size: 20px;
  transition: 0.3s;
}

.footer-socials a:hover {
  border-color: #f9b234;
  transform: scale(1.1);
  box-shadow: 0 4px 10px rgba(255, 191, 0, 0.1);
}

/* === Responsive === */
@media (min-width: 768px) {
  .footer-contacts {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-address {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}