/* =============================================
   EFF - Education For Future
   Main Stylesheet
   ============================================= */
:root {
  --primary-green: #0d6e85;
  --secondary-green: #49c5b6;
  --light-green: #b3e5fc;
  --dark-green: #02bd5c;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --light-bg: #f9fafb;
}

/* =============================================
   Global Styles
   ============================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-green);
}

/* =============================================
   Navigation Bar
   ============================================= */

.navbar {
  background-color: var(--primary-green) !important;
  box-shadow: 0 2px 10px rgba(3, 169, 244, 0.1);
}

.navbar-brand {
  font-size: 1.5rem;
  color: white !important;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
}

.navbar-logo {
  height: 50px;
  width: auto;
  object-fit: contain;
  margin-right: 8px;
}

.navbar-brand i {
  margin-right: 8px;
  color: #ffd700;
}

.navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.85) !important;
  font-weight: 500;
  margin: 0 10px;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: white !important;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.5);
  color: rgba(255, 255, 255, 0.85);
}

.btn-outline-light:hover {
  background-color: white;
  color: var(--primary-green) !important;
  border-color: white;
}

.btn-outline-light.active {
  background-color: white;
  color: var(--primary-green) !important;
  border-color: white;
}

/* =============================================
   Hero Section
   ============================================= */

.hero {
  background: url("../../img/hero.jpeg") center/cover no-repeat;
  color: white;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 40px;
  opacity: 0.95;
  font-weight: 300;
}

.hero-logo {
  max-width: 300px;
  height: auto;
  margin: 0 auto 30px auto;
  display: block;
  object-fit: contain;
}

.hero .btn-primary {
  background-color: white;
  color: var(--primary-green);
  border: 2px solid white;
  font-weight: 600;
  padding: 12px 40px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.hero .btn-primary:hover {
  background-color: var(--primary-green);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* =============================================
   About Section
   ============================================= */

.about-section {
  background: #f8fafc; /* abu muda supaya card putih terlihat */
  padding: 80px 20px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--primary-green);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 40px;
  margin-top: 25px;
}

.about-content p {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.8;
}

.vision-mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .vision-mission {
    grid-template-columns: 1fr;
  }
}

.vision-box,
.mission-box {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(3, 169, 244, 0.08);
  border-left: 5px solid var(--primary-green);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.vision-box:hover,
.mission-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(3, 169, 244, 0.15);
}

.vision-box h4,
.mission-box h4 {
  color: var(--primary-green);
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.vision-box p,
.mission-box p {
  color: var(--text-light);
  line-height: 1.8;
}

/* =============================================
   Services Section
   ============================================= */

.services-section {
  padding: 80px 0;
}

.service-card {
  background: white;
  border-radius: 12px;
  padding: 40px 25px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-top: 4px solid var(--primary-green);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(3, 169, 244, 0.15);
}

.service-icon {
  font-size: 3.5rem;
  color: var(--primary-green);
  margin-bottom: 20px;
}

.service-card h4 {
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.service-card p {
  color: var(--text-light);
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-levels {
  background: var(--light-green);
  padding: 15px;
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--dark-green);
  font-weight: 500;
}

/* =============================================
   Why Choose Us Section
   ============================================= */

.why-us-section {
  padding: 80px 0;
  background: linear-gradient(
    135deg,
    rgba(3, 169, 244, 0.05) 0%,
    rgba(3, 169, 244, 0.1) 100%
  );
}

.feature-item {
  text-align: center;
  padding: 30px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--primary-green) 0%,
    var(--secondary-green) 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2.2rem;
  color: white;
  box-shadow: 0 4px 15px rgba(3, 169, 244, 0.3);
}

.feature-item h4 {
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.feature-item p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* =============================================
   Footer
   ============================================= */

footer {
  background-color: #1f2937 !important;
  margin-top: 60px;
}

footer h5 {
  color: white;
  font-weight: 700;
  margin-bottom: 15px;
}

footer h5 i {
  color: var(--primary-green);
  margin-right: 8px;
}

footer p {
  line-height: 1.8;
}

footer ul li {
  margin-bottom: 10px;
  color: #9ca3af;
  transition: color 0.3s ease;
}

footer ul li:hover {
  color: var(--primary-green);
}

footer ul li i {
  color: var(--primary-green);
  margin-right: 10px;
  width: 20px;
}

footer .btn-outline-light {
  border-color: #4b5563;
  color: #9ca3af;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

footer .btn-outline-light:hover {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
  color: white;
}

footer hr {
  margin: 30px 0;
  border-color: #374151;
}

footer .text-muted {
  color: #9ca3af !important;
}

/* =============================================
   Utility Classes
   ============================================= */

.btn-primary {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
  font-weight: 600;
  padding: 10px 30px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--secondary-green);
  border-color: var(--secondary-green);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(3, 169, 244, 0.3);
}

.btn-primary:active {
  background-color: var(--dark-green);
  border-color: var(--dark-green);
}

.text-primary {
  color: var(--primary-green) !important;
}

.bg-primary {
  background-color: var(--primary-green) !important;
}

.border-primary {
  border-color: var(--primary-green) !important;
}

/* =============================================
   Responsive Design
   ============================================= */

@media (max-width: 1200px) {
  .hero h1 {
    font-size: 3rem;
  }

  .section-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 991px) {
  .navbar-nav .nav-link {
    margin: 5px 0;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .program-card {
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 60px 0;
    min-height: 400px;
  }

  .hero h1 {
    font-size: 2rem;
    margin-bottom: 15px;
  }

  .hero p {
    font-size: 0.95rem;
    margin-bottom: 25px;
  }

  .section-title {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }

  .section-subtitle {
    margin-top: 15px;
  }

  .about-section,
  .services-section,
  .why-us-section {
    padding: 60px 0;
  }

  .service-card {
    margin-bottom: 30px;
  }

  .feature-icon {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
  }

  footer {
    padding: 40px 0 20px 0;
  }

  .vision-mission {
    gap: 20px;
  }

  .contact-info-box {
    margin-bottom: 20px;
  }

  .page-header {
    padding: 40px 0;
    margin-bottom: 30px;
  }

  .page-header h1 {
    font-size: 1.8rem;
  }

  .page-header .lead {
    font-size: 0.95rem;
  }

  .advantage-box {
    margin-bottom: 20px;
  }
}

@media (max-width: 576px) {
  .hero {
    padding: 40px 0;
    min-height: 300px;
  }

  .hero h1 {
    font-size: 1.5rem;
    line-height: 1.2;
  }

  .hero p {
    font-size: 0.85rem;
    margin-bottom: 20px;
  }

  .section-title {
    font-size: 1.3rem;
  }

  .section-subtitle {
    font-size: 0.9rem;
  }

  .service-card {
    padding: 20px 15px;
    margin-bottom: 20px;
  }

  .vision-box,
  .mission-box {
    padding: 15px;
    margin-bottom: 15px;
  }

  .feature-item {
    padding: 15px;
  }

  .feature-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .page-header {
    padding: 30px 0;
    margin-bottom: 20px;
  }

  .page-header h1 {
    font-size: 1.5rem;
  }

  .page-header .lead {
    font-size: 0.85rem;
  }

  .navbar-toggler {
    padding: 0.2rem 0.5rem;
  }

  .navbar-brand {
    font-size: 1.1rem;
  }

  .navbar-logo {
    height: 35px;
  }

  .btn-sm {
    padding: 0.35rem 0.5rem;
    font-size: 0.75rem;
  }

  .stat-box {
    padding: 20px 15px;
    margin-bottom: 15px;
  }

  .stat-box h3 {
    font-size: 0.95rem;
  }

  .program-card {
    padding: 15px;
    margin-bottom: 15px;
  }

  .program-icon {
    font-size: 28px;
  }

  .contact-info-box {
    margin-bottom: 15px;
    padding: 20px;
  }

  .contact-icon-top {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .info-text-wrapper {
    min-height: 70px;
  }

  .btn-circle-custom {
    width: 45px;
    height: 45px;
  }

  .benefit-section {
    padding: 20px;
    margin-bottom: 15px;
  }

  .benefit-list span {
    font-size: 0.85rem;
  }

  .advantage-box {
    padding: 20px;
    margin-bottom: 15px;
  }

  .advantage-icon {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
  }

  .advantage-box h3 {
    font-size: 1rem;
  }

  .comparison-table {
    font-size: 0.85rem;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 12px 8px;
  }

  .method-box {
    padding: 15px;
    margin-bottom: 15px;
  }

  .vision-mission-card {
    padding: 20px;
  }

  .vision-mission-card .card-icon {
    font-size: 2.5rem;
  }

  .value-card {
    padding: 20px;
    margin-bottom: 15px;
  }

  .value-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  footer {
    padding: 30px 0 15px 0;
  }

  footer h5 {
    font-size: 1rem;
    margin-bottom: 10px;
  }

  footer p {
    font-size: 0.85rem;
  }

  .text-center {
    text-align: center;
  }
}

@media (max-width: 360px) {
  .hero h1 {
    font-size: 1.2rem;
  }

  .hero p {
    font-size: 0.75rem;
  }

  .section-title {
    font-size: 1.1rem;
  }

  .btn-lg {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }

  .navbar-brand {
    font-size: 0.9rem;
  }

  .navbar-brand .ms-2 {
    display: none;
  }

  .page-header h1 {
    font-size: 1.2rem;
  }
}

/* =============================================
   Animations
   ============================================= */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* =============================================
   Page Header Section
   ============================================= */

.page-header {
  background: linear-gradient(
    135deg,
    var(--primary-green) 0%,
    var(--secondary-green) 100%
  );
  color: white;
  padding: 60px 0;
  margin-bottom: 40px;
}

.page-header h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.page-header .lead {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* =============================================
   Stat Box
   ============================================= */

.stat-box {
  background: #ffffff;
  border-radius: 14px;
  padding: 30px 20px;
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.stat-box h3 {
  color: #167a6e;
  font-weight: 700;
  font-size: 1.1rem;
}

.stat-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* =============================================
   Program Card
   ============================================= */

.program-card {
  background: #fff;
  padding: 30px 22px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.program-card:hover {
  transform: translateY(-8px); /* Mengangkat kartu */
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15) !important; /* Shadow tipis yang elegan */
  background-color: #ffffff;
}

.program-icon {
  font-size: 36px;
  color: #167a6e;
  margin-bottom: 15px;
}

.text-justify {
  text-align: left;
}

/* =============================================
   Method Box
   ============================================= */

.method-box {
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(3, 169, 244, 0.08);
  transition: all 0.3s ease;
}

.method-box:hover {
  box-shadow: 0 8px 25px rgba(3, 169, 244, 0.15);
  transform: translateY(-3px);
}

.method-box h4 {
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 12px;
}

.method-box i {
  margin-right: 10px;
}

/* =============================================
   Vision & Mission Card
   ============================================= */

.vision-mission-card {
  background: white;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  min-height: 450px;
  display: flex;
  flex-direction: column;
}

.vision-mission-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(3, 169, 244, 0.2);
}

.vision-mission-card .card-icon {
  font-size: 3.5rem;
  color: var(--primary-green);
  margin-bottom: 20px;
}

.vision-mission-card h3 {
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 15px;
}

.vision-mission-card p {
  color: var(--text-light);
  line-height: 1.8;
}

.mission-list {
  list-style: disc;
  text-align: left;
  color: var(--text-light);
  line-height: 1.8;
  margin: 0;
  padding-left: 20px;
}

.mission-list li {
  margin-bottom: 10px;
}

/* =============================================
   Text Justify
   ============================================= */

.justify-text {
  text-align: justify;
}

/* =============================================
   Value Card
   ============================================= */

.value-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;

  /* supaya kotak terlihat */
  border: 1px solid rgba(0, 0, 0, 0.06);

  /* shadow halus & modern */
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);

  transition: all 0.3s ease;
  min-height: 280px;

  display: flex;
  flex-direction: column;
  text-align: center;
}

/* Hover effect */
.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(3, 169, 244, 0.15);
}

.value-icon {
  width: 70px;
  height: 70px;

  background: linear-gradient(
    135deg,
    var(--primary-green) 0%,
    var(--secondary-green) 100%
  );

  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  margin: 0 auto 20px;
  font-size: 2rem;
  color: white;

  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.value-card h4 {
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 12px;
}

.value-card p {
  color: #6b7280;
  line-height: 1.6;
  font-size: 0.95rem;
}
/* =============================================
   Advantage Box
   ============================================= */

.advantage-box {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;

  min-height: 380px; /* samakan tinggi minimum */
  display: flex;
  flex-direction: column;
}

.advantage-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(3, 169, 244, 0.15);
}

.advantage-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--primary-green) 0%,
    var(--secondary-green) 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2.2rem;
  color: white;
}

.advantage-box h3 {
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.advantage-box p {
  color: var(--text-light);
  line-height: 1.8;
  flex-grow: 1; /* bikin isi dorong tinggi supaya rata */
}

/* =============================================
   Benefit List
   ============================================= */

.benefit-section {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(3, 169, 244, 0.08);
}

.benefit-list {
  list-style: none;
  padding: 0;
}

.benefit-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--light-bg);
}

.benefit-list li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.benefit-list i {
  margin-right: 12px;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.benefit-list span {
  color: var(--text-light);
  line-height: 1.6;
}

/* =============================================
   Comparison Table
   ============================================= */

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  box-shadow: 0 4px 15px rgba(3, 169, 244, 0.08);
  border-radius: 12px;
  overflow: hidden;
}

.comparison-table thead {
  background-color: var(--primary-green);
  color: white;
}

.comparison-table th {
  padding: 20px;
  text-align: center;
  font-weight: 700;
}

.comparison-table td {
  padding: 20px;
  border-bottom: 1px solid var(--light-bg);
  color: var(--text-dark);
}

.comparison-table tbody tr:hover {
  background-color: var(--light-bg);
}

.comparison-table .table-primary {
  background-color: var(--primary-green) !important;
  color: white !important;
}

.comparison-table .text-center {
  text-align: center;
}

/* =============================================
   Contact Info Box
   ============================================= */

/* Kotak Utama */
.contact-info-box {
  background: white;
  padding: 30px;
  border-radius: 15px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%; /* Pastikan kotak putih tingginya sama */
}

/* Efek Hover */
.contact-info-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
}

/* Ikon Lingkaran Hijau di Atas */
.contact-icon-top {
  width: 70px;
  height: 70px;
  background: #ffffff; /* Sesuaikan warna hijau Anda */
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

/* Judul */
.contact-info-box h4 {
  font-weight: 700;
  margin-bottom: 10px;
}

/* AREA TEXT (Kunci Agar Sejajar) */
.info-text-wrapper {
  min-height: 80px; /* Atur tinggi ini agar logo bawah sejajar */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.info-text-wrapper p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* Tombol Bulat di Bawah */
.btn-circle-custom {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: auto; /* Memastikan tombol selalu di posisi dasar area teks */
}

/* =============================================
   Operating Hours Box
   ============================================= */

.operating-hours-box {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-left: 5px solid var(--primary-green);
}

.hour-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid var(--light-bg);
}

.hour-item:last-child {
  border-bottom: none;
}

.hour-item span:first-child {
  color: var(--text-dark);
  font-weight: 500;
}

.hour-item span:last-child {
  color: var(--primary-green);
}

/* =============================================
   Contact Form
   ============================================= */

.form-control,
.form-select {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 12px 15px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 0.2rem rgba(3, 169, 244, 0.25);
}

.form-label {
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 8px;
}

/* =============================================
   Print Styles
   ============================================= */

@media print {
  .navbar,
  footer,
  .btn-primary {
    display: none;
  }
}

/* Styling Pop-up */
.custom-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  align-items: center; /* Untuk menengahkan vertikal */
  justify-content: center; /* Untuk menengahkan horizontal */
}

.custom-modal-content {
  background-color: #fff;
  padding: 30px;
  border-radius: 15px;
  width: 90%;
  max-width: 450px;
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  animation: slideDown 0.4s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.close-btn {
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 28px;
  font-weight: bold;
  color: #888;
  cursor: pointer;
}

.close-btn:hover {
  color: #333;
}

/* Gallery Section */
.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover; /* Agar foto tidak gepeng */
  transition: transform 0.3s ease;
  cursor: pointer;
}
