/* =========================
   GLOBAL VARIABLES & RESET
========================= */
:root {
  --gow-orange: #ff7f00;       /* Warna Utama */
  --gow-orange-dark: #e65c00;  /* Warna Hover */
  --gow-gray: #64748b;
  --gow-font-primary: 'Roboto', sans-serif;
  --gow-font-nav: 'Inter', sans-serif;
}

body {
  font-family: var(--gow-font-primary);
  color: #1f2937;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
}

main {
  flex: 1 0 auto;
}

h1, h2, h3, h4, h5 {
  font-weight: 700;
}

a {
  text-decoration: none;
}

/* =========================
   NAVBAR (GLASSMORPHISM STYLE)
========================= */
.gow-navbar-wrapper {
  position: fixed;
  top: 16px;
  left: 0;
  width: 100%;
  z-index: 999;
  pointer-events: none; /* Biar klik tembus di area kosong */
}

.gow-navbar {
  pointer-events: auto; /* Aktifkan klik di navbar */
  max-width: 1100px;
  margin: auto;
  background: rgba(255, 255, 255, 0.35); /* Transparan */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  padding: 10px 24px;
}

.gow-navbar .navbar-brand {
    font-weight: 700;
    color: #000; /* Warna brand text */
}

.gow-navbar .nav-link {
  font-family: var(--gow-font-nav);
  font-weight: 530;
  color: #222;
  margin: 0 6px;
  transition: color 0.3s ease;
}

.gow-navbar .nav-link:hover,
.gow-navbar .nav-link.active {
  color: var(--gow-orange);
}

/* =========================
   MOBILE NAVBAR TWEAK (TRANSPARENT DROPDOWN)
========================= */
@media (max-width: 991px) {
  .gow-navbar {
    /* 1. Background Induk Transparan (Glass Effect) */
    background: rgba(255, 255, 255, 0.45) !important; 
    
    /* Blur diperkuat biar tulisan menu tetap terbaca */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    border-radius: 20px; /* Sedikit lebih kotak biar muat menu */
    padding: 12px 20px;
    max-width: 95%;
    
    /* Border halus biar kelihatan batasnya */
    border: 1px solid rgba(255, 255, 255, 0.3);
  }
  
  /* 2. AREA DROPDOWN MENU */
  .navbar-collapse {
      /* PENTING: Background TRANSPARAN biar nyatu sama navbar induk */
      background: transparent !important; 
      
      margin-top: 15px;
      padding-top: 10px;
      /* Garis pemisah halus antara logo dan menu drop down */
      border-top: 1px solid rgba(255, 255, 255, 0.3);
  }

  .brand-text {
      display: none;
  }

  /* Styling Item Menu Mobile */
  .navbar-nav .nav-link {
      color: #111 !important; /* Warna teks gelap pekat biar kontras */
      font-weight: 600;
      padding: 10px 5px;
      border-bottom: 1px dashed rgba(0,0,0,0.05); /* Garis putus-putus tipis */
  }

  .navbar-nav .nav-link:hover {
      color: var(--gow-orange) !important;
      padding-left: 10px; /* Efek geser dikit pas disentuh */
      transition: all 0.3s;
  }
  
  /* Tombol CTA (Kontak) di Mobile */
  .btn-outline-warning {
      width: 100%;
      margin-top: 10px;
      background: rgba(255, 127, 0, 0.1);
  }
}
/* =========================
   FOOTER
========================= */
footer {
  background-color: #0f172a;
  color: #cbd5f5;
  flex-shrink: 0;
  padding: 2rem 0;
  text-align: center;
  margin-top: auto;
}

footer a {
  color: #cbd5f5;
  transition: color 0.2s;
}

footer a:hover {
  color: var(--gow-orange);
}

/* =========================
   GLOBAL COMPONENTS
========================= */
/* Card Styling */
.card {
  border: none;
  border-radius: 14px;
  transition: all 0.3s ease;
  background: #fff;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Button Warning (Orange Theme) Override */
.btn-outline-warning {
    --bs-btn-color: var(--gow-orange);
    --bs-btn-border-color: var(--gow-orange);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--gow-orange);
    --bs-btn-hover-border-color: var(--gow-orange);
    border-radius: 50px;
    font-weight: 500;
}

/* Pagination */
.pagination {
  --bs-pagination-color: var(--gow-orange);
  --bs-pagination-active-bg: var(--gow-orange);
  --bs-pagination-active-border-color: var(--gow-orange);
}

/* ===========================
   Contact Info Section Styles
   =========================== */

.contact-info-section {
    background-color: #FFF5E6; /* Oranye pastel muda */
    padding: 60px 0;
    border-top: 4px solid #EF6C00; /* Aksen garis oranye di atas */
    color: #333;
}

.contact-logo {
    max-width: 160px; /* Ukuran logo dirapikan */
    height: auto;
    /* Agar logo visualnya sejajar dengan teks heading di sebelah */
    margin-top: -5px; 
}

.contact-heading {
    font-family: 'Roboto', sans-serif;
    color: #D84315; /* Oranye tua */
    font-weight: 800; /* Lebih tebal */
    font-size: 1.1rem;
    margin-bottom: 15px; /* Jarak ke isi konten */
    margin-top: 0; /* Pastikan tidak ada margin atas */
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-text, 
.contact-details li {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 8px;
}

.contact-details strong {
    color: #000;
    font-weight: 600;
}

/* Social Media Icons */
.social-icons {
    display: flex;
    gap: 12px;
    justify-content: center; /* Default tengah (HP) */
}

@media (min-width: 992px) {
    .social-icons {
        justify-content: flex-start; /* Kiri (Desktop) */
    }
    .contact-logo {
        margin-bottom: 0;
    }
}

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #EF6C00;
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background-color: #bf360c;
    transform: translateY(-3px);
    color: #fff;
}