
/* =========================================================
   GLOBAL
========================================================= */
:root {
  --primary-color: #0072ce;
  --dark-color: #00122d;
  --light-bg: #f8f9fa;
  --text-dark: #2c3e50;
  --border-soft: rgba(0, 0, 0, 0.08);
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Ubuntu, "Helvetica Neue", Arial, sans-serif;
  color: var(--text-dark);
  background-color: #ffffff;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* =========================================================
   HEADER & NAVBAR
========================================================= */
.shell-header {
  background-color: #ffffff;
  box-shadow: 0 2px 10px var(--border-soft);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.shell-logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark-color);
}

/* =========================================================
   NAVIGATION - BUTTON STYLE (BARU)
========================================================= */
.navbar-nav {
  gap: 0.5rem;
}

.navbar .nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;

  padding: 0.45rem 1rem;
  font-size: 0.95rem;
  font-weight: 500;

  border-radius: 999px;
  border: 1px solid transparent;
  background-color: transparent;

  color: var(--dark-color);
  transition: all 0.25s ease;
}

/* Hover & focus */
.navbar .nav-link:hover,
.navbar .nav-link:focus {
  background-color: rgba(0, 114, 206, 0.08);
  border-color: rgba(0, 114, 206, 0.25);
  color: var(--primary-color);
}

/* Active state (optional) */
.navbar .nav-link.active {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #ffffff;
}

/* =========================================================
   DROPDOWN
========================================================= */
.dropdown-menu {
  border: none;
  border-radius: 0.75rem;
  padding: 0.5rem 0;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.dropdown-item {
  padding: 0.6rem 1.25rem;
  font-size: 0.9rem;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.dropdown-item:hover {
  background-color: var(--light-bg);
  color: var(--primary-color);
}

/* Dropdown icon (tanda spesial) */
.dropdown-icon {
  font-size: 0.7rem;
  transition: transform 0.25s ease;
  opacity: 0.7;
}

/* Icon rotate when open */
.show > .nav-link .dropdown-icon {
  transform: rotate(180deg);
  opacity: 1;
}

/* =========================================================
   MOBILE NAVIGATION
========================================================= */
@media (max-width: 991px) {
  .navbar-nav {
    padding-top: 0.75rem;
    gap: 0.25rem;
  }

  .navbar .nav-link {
    width: 100%;
    border-radius: 0.5rem;
    justify-content: space-between;
  }
}

/* =========================================================
   HERO
========================================================= */
.hero-image {
  margin: 1.5rem 0;
  border-radius: 0.5rem;
  overflow: hidden;
  position: relative;
}

.hero-image img {
  width: 100%;
  filter: brightness(0.55);
  transition: filter 0.3s ease;
}

.hero-image:hover img {
  filter: brightness(0.65);
}

/* =========================================================
   SOCIAL SECTION
========================================================= */
.social-section {
  background-color: var(--light-bg);
  padding: 3rem 0;
}

.social-card {
  background-color: #ffffff;
  border-radius: 0.75rem;
  padding: 2rem 1.5rem;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
}

.social-item {
  height: 100%;
  padding: 1rem;
  text-align: center;
  border-radius: 0.5rem;
  transition: all 0.25s ease;
}

.social-item:hover {
  background-color: #f0f4f8;
  transform: translateY(-4px);
}

.social-icon {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.instagram {
  color: #e1306c;
}

.twitter {
  color: #1da1f2;
}

.linkedin {
  color: #0077b5;
}

/* =========================================================
   CONTACT
========================================================= */
.contact-section {
  background-color: #ffffff;
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
}

.contact-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.contact-icon {
  color: var(--primary-color);
  margin-right: 0.5rem;
}

/* Map */
.map-container {
  margin-top: 1rem;
  height: 280px;
  border-radius: 0.5rem;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* =========================================================
   FOOTER
========================================================= */
footer {
  margin-top: 3rem;
  background-color: var(--dark-color);
  color: #ffffff;
}

footer p {
  margin: 0;
  padding: 1.25rem 0;
  font-size: 0.9rem;
}

/* =========================================================
   UTILITIES
========================================================= */
hr {
  margin: 2rem 0;
  border-color: #eaeaea;
}

/* =========================================================
   live
========================================================= */

.iframe-wrapper {
  position: relative;
  width: 100%;
  height: 600px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 12px rgba(0,0,0,0.1);
}

.iframe-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}


/* =========================================================
   REPEC SECTION
========================================================= */
.repec-section {
  margin-bottom: 4rem;
}

.repec-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

.repec-iframe-wrapper {
  width: 100%;
  height: 550px;
  border-radius: 12px;
  overflow: hidden;
  background-color: #ffffff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.repec-iframe-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 768px) {
  .repec-iframe-wrapper {
    height: 450px;
  }
}

