:root {
  --primary-color: #7be3eb;
  --primary-dark: #5dcbd3;
  --light-bg: #ffffff;
  --text-color: #222;
}

/* General Styling */
body {
  background-color: var(--light-bg);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-color);
  padding-top: 80px; /* Agar tidak tertutup navbar */
  margin: 0;
}

/* ===================== */
/*        NAVBAR         */
/* ===================== */
.navbar {
  background-color: var(--light-bg);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
  display: flex;
  align-items: center;
  color: var(--text-color);
}

.navbar .logo {
  width: 100px;
  height: auto;
}

.nav-link {
  color: var(--text-color) !important;
}

.nav-link:hover {
  color: var(--primary-color) !important;
}

/* ===================== */
/*     HERO SECTION      */
/* ===================== */
.hero-section {
  background-color: #f5f5f5;
  padding: 80px 20px;
  text-align: center;
}

.hero-section h1 {
  font-size: 3rem;
  font-weight: bold;
  color: var(--primary-color);
}

.btn-green {
  background-color: #7be3eb;
  color: #000;
  border: none;
  border-radius: 8px; /* agak kotak, tidak terlalu membulat */
  padding: 10px 20px;
  font-weight: 500;
  transition: 0.3s;
}

.btn-green:hover {
  background-color: #5dcbd3; /* versi sedikit lebih gelap saat hover */
  color: #000;
}


/* ===================== */
/*     ABOUT SECTION     */
/* ===================== */
.about-section {
  background-color: var(--light-bg);
  padding: 40px;
  border-left: 5px solid var(--primary-color);
  border-radius: 6px;
  margin-top: 40px;
}

.about-section h2 {
  color: var(--primary-color);
}

/* ===================== */
/*        FOOTER         */
/* ===================== */
footer {
  background-color: var(--primary-color);
  color: white;
  text-align: center;
  padding: 15px;
  margin-top: 40px;
}

.main-footer {
  background-color: var(--light-bg);
  color: #333;
  border-top: 1px solid #ddd;
  font-size: 14px;
}

.main-footer h6 {
  color: #333;
  margin-bottom: 15px;
}

.main-footer a {
  color: #000;
  text-decoration: none;
}

.main-footer a:hover {
  color: var(--primary-color);
}

/* ===================== */
/*    CAROUSEL STYLE     */
/* ===================== */
.carousel-item img {
  max-height: 575px;
  object-fit: cover;
}

.carousel-caption {
  background: rgba(0, 0, 0, 0.5);
  padding: 20px;
  border-radius: 10px;
}

.carousel-caption h5 {
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
}

.carousel-caption p {
  color: #ddd;
  font-size: 1.1rem;
}

/* ===================== */
/*    AUTH PAGE STYLE    */
/* ===================== */
body.bg-login,
body.bg-register {
  background-color: #e7f9fc !important;
}

body.bg-auth {
  background-image: url('bg-login.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.bg-auth::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.4);
  z-index: 0;
}

.auth-box {
  position: relative;
  z-index: 1;
  background-color: rgba(255, 255, 255, 0.95);
  border-left: 5px solid var(--primary-color);
  border-radius: 8px;
  padding: 30px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* ===================== */
/*    PENAWARAN FORM     */
/* ===================== */
.penawaran-box {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 30px;
  max-width: 500px;
  margin: auto;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
    .header-custom {
      background-color: #7be3eb;
      color: white;
    }
    .btn-custom {
      background-color: #7be3eb;
      border-color: #7be3eb;
      color: white;
    }
    .btn-custom:hover {
      background-color: #68d1db;
      border-color: #68d1db;
      color: white;
    }
/* ===================== */
/*      KATALOG STYLE    */
/* ===================== */
/* ========== KATALOG ========== */
.card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
}

.card-img-top {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  height: 180px;
  object-fit: cover;
}

.card-title {
  font-size: 1.1rem;
  font-weight: 600;
}

.card-text {
  font-size: 0.95rem;
  color: #555;
}

/* Tombol katalog */
.btn-outline-custom {
  color: #7be3eb;
  border: 1px solid #7be3eb;
  background-color: transparent;
  transition: 0.3s;
}

.btn-outline-custom:hover {
  background-color: #7be3eb;
  color: white;
}

/* ========== MODAL ========== */
.modal-header {
  background-color: var(--primary-color);
  color: white;
  border-bottom: none;
}

.modal-title {
  font-weight: bold;
}

.modal-body img {
  object-fit: cover;
  border-radius: 8px;
}

/* ===================== */
/*     LINK & BUTTON     */
/* ===================== */
a {
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
}

.btn-success {
  background-color: #4bd197;
  border-color: #4bd197;
}

.btn-success:hover {
  background-color: var(--primary-color);
  border-color: #38b67d;
}

.btn-inquiry {
  background-color: var(--primary-color);
  color: white;
  font-weight: bold;
  border: none;
  padding: 10px 16px;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
}

.btn-inquiry:hover {
  background-color: var(--primary-dark);
  color: white;
}
.about-section {
  background-color: #f8f9fa;
  padding: 40px;
  border-radius: 8px;
  margin-bottom: 40px;
}
.about-section h2 {
  color: var(--primary-color);
}
.about-header img {
max-height: 400px;
object-fit: cover;
width: 100%;
    }
    .highlight-box {
      background-color: #e7f9fc;
      padding: 25px;
      border-left: 5px solid var(--primary-color);
      border-radius: 8px;
      margin-bottom: 40px;
    }
    .highlight-box h4 {
      color: var(--primary-color);
    }
    .about-section ul {
      padding-left: 1.2rem;
    }
    .about-section li {
      margin-bottom: 0.5rem;
    }
.team-photo {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.logo-image {
  max-width: 100%;
  height: auto;
  max-height: 180px;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.contact-section {
  background-color: #e7f9fc;
  padding: 40px;
  border-radius: 10px;
  margin-bottom: 40px;
}

.contact-section h2 {
  color: var(--primary-color);
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
}

/* ==================== */
/*      MAP SECTION     */
/* ==================== */
#map {
  height: 300px;
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* ==================== */
/*  INFO KONTAK STYLE   */
/* ==================== */
ul.list-unstyled li {
  margin-bottom: 10px;
  font-size: 16px;
}

/* ==================== */
/*    RESPONSIVE FIX    */
/* ==================== */
@media (max-width: 768px) {
  .navbar .logo {
    width: 80px;
  }

  .contact-section {
    padding: 20px;
  }

  ul.list-unstyled li {
    font-size: 15px;
  }
}
    .hero-banner {
      position: relative;
      height: 300px;
      background: url('cerah.jpg') center center / cover no-repeat;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: white;
    }
    .hero-banner::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.3);
    }
    .hero-banner h1 {
      position: relative;
      z-index: 1;
      font-size: 2.5rem;
      font-weight: bold;
      text-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
    }
    
h1.mb-3 {
  color: var(--primary-dark); /* atau coba #38b6ff */
  font-weight: 700;
  font-size: 2.4rem;
  letter-spacing: 0.5px;
}

.lead.text-muted {
  font-size: 1.1rem;
  color: #555 !important;
}
.box-highlight-blue {
  background-color: #e0faff;
  border: 1px solid #bde6eb;
  border-radius: 12px;
  padding: 25px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s;
}

.box-highlight-blue:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
        body { background-color: #f8f9fa; }
        .table th, .table td {
            vertical-align: middle !important;
            text-align: center;
        }
        .header-box {
            background-color: #7be3eb;
            color: white;
            padding: 20px;
            border-radius: 10px 10px 0 0;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        .card {
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }
        .btn-home {
            margin-top: 20px;
        }