/* Tambahkan CSS ini ke file CSS utama Anda (misalnya app.css atau custom.css) */

/* Navbar styles */
/* Navbar Styling dengan Efek Scroll yang Lebih Baik */
#mainNav {
  background: transparent;
  transition: all 0.4s ease-in-out;
  padding: 15px 0;
  z-index: 1030;
}
.no-line::after {
  display: none !important;
} 
#mainNav.scrolled {
  background: rgba(0, 76, 158, 0.98); /* Warna biru primary dengan opacity */
  padding: 8px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}

/* Logo dan Branding */
#mainNav .navbar-brand {
  display: flex;
  align-items: center;
  padding: 0;
}

#mainNav .logo {
  height: 40px;
  width: auto;
  transition: all 0.3s ease;
}

#mainNav.scrolled .logo {
  height: 35px; /* Ukuran logo sedikit berkurang saat scroll */
}

#mainNav .brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}


#mainNav .kt-text {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

#mainNav .gianyar-text {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

#mainNav.scrolled .kt-text {
  font-size: 12px;
}

#mainNav.scrolled .gianyar-text {
  font-size: 14px;
}

/* Styling Nav Links */
.navbar-nav .nav-link {
  color: var(--white) !important;
  font-weight: 600;
  padding: 10px 15px !important;
  position: relative;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent-yellow);
  transition: all 0.3s ease;
  transform: translateX(-50%);
  border-radius: 2px;
  opacity: 0;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 60%;
  opacity: 1;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--accent-yellow) !important;
}

/* Mobile Navbar Styling */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: var(--primary-blue);
    border-radius: 10px;
    padding: 20px;
    margin-top: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  }
  
  .navbar-nav .nav-link {
    padding: 12px 15px !important;
    border-radius: 8px;
  }
  
  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-link.active {
    background: rgba(255, 255, 255, 0.1);
  }
  
  .navbar-nav .nav-link::after {
    display: none;
  }
  
  /* Tombol bergabung pada mobile */
  .navbar-nav .btn-accent {
    width: 100%;
    text-align: center;
    margin-top: 10px;
  }
}

/* Toggle Button Styling */
.navbar-toggler {
  border: none;
  background: transparent;
  padding: 0;
  width: 30px;
  height: 30px;
  position: relative;
}

.navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}

.navbar-toggler-icon {
  background-image: none !important;
  position: relative;
  height: 2px;
  width: 100%;
  background-color: #fff;
  transition: all 0.3s ease;
  display: block;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: '';
  position: absolute;
  height: 2px;
  width: 100%;
  background-color: #fff;
  transition: all 0.3s ease;
}

.navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler-icon::after {
  bottom: -8px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background-color: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
  transform: translateY(8px) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
  transform: translateY(-8px) rotate(-45deg);
}
  
  /* Adjust padding for main content to prevent navbar overlay */
  body {
    padding-top: 76px; /* Sesuaikan dengan tinggi navbar */
  }
  
  @media (max-width: 992px) {
    #mainNav .navbar-nav {
      padding-top: 1rem;
      padding-bottom: 1rem;
    }
    
    #mainNav .navbar-nav .nav-item .nav-link.active::after,
    #mainNav .navbar-nav .nav-item .nav-link:hover::after {
      width: 30px;
      left: 1rem;
    }
  }
  /* ====================================================
   FOOTER COMPACT - MOBILE OPTIMIZED
   Ganti semua CSS footer sebelumnya dengan ini
   ==================================================== */

/* Footer Area */
.footer-area {
  position: relative;
  margin-top: 0;
}

/* Wave Top - Ukuran lebih kecil */
.wave-top {
  position: relative;
  height: 60px; /* Kurangi dari 100px */
  overflow: hidden;
  margin-bottom: -3px;
  z-index: 1;
}

.wave-top svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  vertical-align: bottom;
}

/* Footer Main - Padding lebih kecil */
.footer-main {
  background: linear-gradient(135deg, #212529 0%, #343a40 100%);
  padding: 40px 0 20px 0; /* Kurangi dari 60px 0 30px 0 */
  position: relative;
  margin-top: -1px;
  z-index: 2;
}

/* Footer Brand - Compact */
.footer-brand {
  margin-bottom: 20px; /* Kurangi dari 30px */
}

.footer-brand h3 {
  font-size: 1.3rem; /* Kurangi dari 1.5rem */
  font-weight: 700;
  margin-bottom: 10px; /* Kurangi dari 15px */
}

.footer-brand p {
  color: #adb5bd;
  font-size: 0.85rem; /* Kurangi dari 0.95rem */
  line-height: 1.5; /* Kurangi dari 1.6 */
  margin-bottom: 0;
}

/* Logo Hexagon - Ukuran lebih kecil */
.logo-hex svg {
  width: 45px !important; /* Kurangi dari 60px */
  height: 45px !important;
  filter: drop-shadow(0 2px 6px rgba(13, 110, 253, 0.3));
  transition: transform 0.3s ease;
}

.logo-hex:hover svg {
  transform: scale(1.05); /* Kurangi efek hover */
}

/* Contact Info - Compact */
.contact-info {
  margin-top: 15px; /* Kurangi dari 25px */
}

.contact-info .d-flex {
  align-items: flex-start;
  margin-bottom: 10px; /* Kurangi dari 15px */
}

.icon-bubble {
  background: linear-gradient(45deg, #0d6efd, #0056b3);
  color: white;
  width: 32px; /* Kurangi dari 40px */
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.75rem; /* Kurangi dari 0.875rem */
  box-shadow: 0 2px 8px rgba(13, 110, 253, 0.3);
  transition: all 0.3s ease;
}

.contact-info a,
.contact-info span {
  color: #adb5bd;
  text-decoration: none;
  font-size: 0.8rem; /* Kurangi dari 0.9rem */
  line-height: 1.3;
  transition: color 0.3s ease;
}

/* Footer Links - Compact */
.footer-links {
  margin-bottom: 20px; /* Kurangi dari 30px */
}

.footer-links h4 {
  font-size: 1.1rem; /* Kurangi dari 1.2rem */
  font-weight: 600;
  margin-bottom: 15px; /* Kurangi dari 25px */
  position: relative;
  padding-bottom: 8px; /* Kurangi dari 10px */
}

.footer-links h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px; /* Kurangi dari 50px */
  height: 2px; /* Kurangi dari 3px */
  background: linear-gradient(45deg, #0d6efd, #0056b3);
  border-radius: 2px;
}

.list-links li {
  margin-bottom: 8px; /* Kurangi dari 12px */
}

.footer-link {
  color: #adb5bd;
  text-decoration: none;
  font-size: 0.8rem; /* Kurangi dari 0.9rem */
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  padding: 3px 0; /* Kurangi dari 5px 0 */
}

.link-icon {
  margin-right: 8px; /* Kurangi dari 10px */
  color: #0d6efd;
  font-size: 0.7rem; /* Kurangi dari 0.75rem */
  transition: transform 0.3s ease;
}

/* Newsletter - Compact */
.footer-newsletter {
  margin-bottom: 20px; /* Kurangi dari 30px */
}

.footer-newsletter h4 {
  font-size: 1.1rem; /* Kurangi dari 1.2rem */
  font-weight: 600;
  margin-bottom: 10px; /* Kurangi dari 15px */
  position: relative;
  padding-bottom: 8px;
}

.footer-newsletter h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(45deg, #0d6efd, #0056b3);
  border-radius: 2px;
}

.footer-newsletter p {
  color: #adb5bd;
  font-size: 0.8rem; /* Kurangi dari 0.9rem */
  line-height: 1.4; /* Kurangi dari 1.6 */
  margin-bottom: 15px; /* Kurangi dari 20px */
}

/* Newsletter Form - Compact */
.newsletter-form {
  margin-bottom: 20px; /* Kurangi dari 30px */
}

.newsletter-input {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 10px 12px; /* Kurangi dari 12px 15px */
  border-radius: 6px 0 0 6px; /* Kurangi dari 8px */
  font-size: 0.8rem; /* Kurangi dari 0.9rem */
  transition: all 0.3s ease;
}

.btn-subscribe {
  background: linear-gradient(45deg, #0d6efd, #0056b3);
  border: none;
  color: white;
  padding: 10px 15px; /* Kurangi dari 12px 20px */
  border-radius: 0 6px 6px 0;
  font-weight: 600;
  font-size: 0.8rem; /* Kurangi dari 0.9rem */
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  white-space: nowrap;
}

/* Social Media - Compact */
.social-media {
  margin-top: 15px; /* Kurangi dari 25px */
}

.social-media h5 {
  font-size: 0.9rem; /* Kurangi dari 1rem */
  font-weight: 600;
  margin-bottom: 10px; /* Kurangi dari 15px */
}

.social-icons {
  display: flex;
  gap: 10px; /* Kurangi dari 15px */
  flex-wrap: wrap;
}

.social-icon {
  width: 35px; /* Kurangi dari 45px */
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.9rem; /* Kurangi dari 1.1rem */
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Footer Bottom - Compact */
.footer-bottom {
  background: #1a1d20;
  padding: 15px 0; /* Kurangi dari 20px 0 */
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
  color: #6c757d;
  font-size: 0.75rem; /* Kurangi dari 0.85rem */
  margin: 0;
}

.footer-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: flex-end;
  gap: 15px; /* Kurangi dari 20px */
  flex-wrap: wrap;
}

.footer-menu-list a {
  color: #6c757d;
  text-decoration: none;
  font-size: 0.75rem; /* Kurangi dari 0.85rem */
  transition: color 0.3s ease;
}

/* ====================================================
   RESPONSIVE DESIGN - SUPER COMPACT
   ==================================================== */

/* Tablet */
@media (max-width: 991.98px) {
  .footer-main {
    padding: 30px 0 15px 0; /* Lebih compact */
  }
  
  .footer-brand,
  .footer-links,
  .footer-newsletter {
    margin-bottom: 25px;
  }
  
  .wave-top {
    height: 50px; /* Kurangi dari 80px */
  }
}

/* Mobile Large */
@media (max-width: 767.98px) {
  .footer-main {
    padding: 25px 0 15px 0; /* Sangat compact */
  }
  
  .footer-brand {
    text-align: center;
    margin-bottom: 20px;
  }
  
  .footer-brand h3 {
    font-size: 1.2rem;
  }
  
  .footer-brand p {
    font-size: 0.8rem;
  }
  
  .footer-links h4,
  .footer-newsletter h4 {
    text-align: center;
    font-size: 1rem;
  }
  
  .footer-links h4::after,
  .footer-newsletter h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .list-links {
    text-align: center;
  }
  
  .newsletter-form .input-group {
    flex-direction: column;
  }
  
  .newsletter-input {
    border-radius: 6px;
    margin-bottom: 8px;
    padding: 8px 10px;
  }
  
  .btn-subscribe {
    border-radius: 6px;
    justify-content: center;
    padding: 8px 12px;
  }
  
  .social-icons {
    justify-content: center;
  }
  
  .contact-info {
    text-align: center;
  }
  
  .contact-info .d-flex {
    justify-content: center;
    text-align: left;
    margin-bottom: 8px;
  }
  
  .wave-top {
    height: 40px; /* Sangat kecil untuk mobile */
  }
  
  .footer-bottom .row {
    text-align: center;
  }
  
  .footer-menu-list {
    justify-content: center;
    margin-top: 10px;
    gap: 10px;
  }
}

/* Mobile Small */
@media (max-width: 575.98px) {
  .footer-main {
    padding: 20px 0 10px 0; /* Ultra compact */
  }
  
  .footer-brand h3 {
    font-size: 1.1rem;
  }
  
  .logo-hex svg {
    width: 40px !important;
    height: 40px !important;
  }
  
  .icon-bubble {
    width: 28px;
    height: 28px;
    font-size: 0.7rem;
  }
  
  .social-icon {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
  }
  
  .social-icons {
    gap: 8px;
  }
  
  .footer-menu-list {
    flex-direction: column;
    gap: 8px;
  }
  
  .wave-top {
    height: 30px; /* Minimal untuk mobile kecil */
  }
  
  .contact-info .d-flex {
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }
  
  .footer-brand,
  .footer-links,
  .footer-newsletter {
    margin-bottom: 15px;
  }
}

/* Extra Small Mobile */
@media (max-width: 375px) {
  .footer-main {
    padding: 15px 0 10px 0; /* Minimal padding */
  }
  
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  
  .footer-brand .d-flex {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  
  .footer-brand h3 {
    font-size: 1rem;
    margin-bottom: 8px;
  }
  
  .newsletter-input,
  .btn-subscribe {
    font-size: 0.75rem;
    padding: 8px 10px;
  }
  
  .wave-top {
    height: 25px; /* Ultra minimal */
  }
  
  /* Sembunyikan beberapa elemen di layar sangat kecil */
  .contact-info .icon-bubble {
    width: 24px;
    height: 24px;
    font-size: 0.65rem;
  }
  
  .footer-newsletter p {
    font-size: 0.75rem;
  }
}

/* ====================================================
   LOADING ANIMATION - Compact Version
   ==================================================== */
.newsletter-form.loading .btn-subscribe::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px; /* Kurangi dari 20px */
  height: 16px;
  border: 2px solid transparent;
  border-top: 2px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* ====================================================
   UTILITY CLASSES
   ==================================================== */

/* Hide elements pada mobile jika perlu ruang lebih */
@media (max-width: 575.98px) {
  .footer-description-long {
    display: none;
  }
  
  .contact-info-minimal .d-flex:nth-child(n+3) {
    display: none; /* Sembunyikan contact info ketiga dst */
  }
}

/* Tambahan untuk footer yang sangat minimal */
.footer-minimal .footer-brand p,
.footer-minimal .footer-newsletter p {
  display: none;
}

.footer-minimal .contact-info .d-flex:not(:first-child) {
  display: none;
}

.footer-minimal .list-links li:nth-child(n+4) {
  display: none;
}

/**/
/* App CSS - Karang Taruna Professional Theme */
:root {
    /* Primary Colors - Based on Indonesian Blue Theme */
    --primary-blue: #1e3a8a;
    --primary-blue-dark: #1e2f5c;
    --primary-blue-light: #2563eb;
    --secondary-blue: #3b82f6;
    --accent-blue: #60a5fa;
    
    /* Secondary Colors */
    --secondary-green: #16a34a;
    --secondary-yellow: #facc15;
    --secondary-red: #dc2626;
    
    /* Neutral Colors */
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--gray-900);
    background-color: var(--gray-50);
}

/* Tentang Kami Section Specific Styles */
#tentang-kami {
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

/* Add subtle pattern overlay */
#tentang-kami::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 1px 1px, var(--gray-200) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.3;
    pointer-events: none;
}

/* Hero/Header Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    color: var(--white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 60px;
    background: var(--white);
    clip-path: polygon(0 20px, 100% 0, 100% 100%, 0 100%);
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-yellow) 0%, var(--secondary-green) 100%);
    border-radius: 2px;
}

.section-subtitle {
    color: var(--gray-600);
    font-size: 1.125rem;
    margin-bottom: 3rem;
}

/* Feature Cards */
.feature-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-blue-light);
}

.feature-card .icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue-light) 0%, var(--primary-blue) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: var(--white);
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--gray-600);
    line-height: 1.75;
}

/* Mission Vision Boxes */
.mv-box {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    color: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.mv-box::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    transform: rotate(45deg);
}

.mv-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.mv-box p {
    font-size: 1rem;
    line-height: 1.75;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

/* Values Section */
.values-section {
    background: var(--white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    margin-top: 3rem;
}

.value-item {
    display: flex;
    align-items: center;
    padding: 1.25rem;
    background: var(--gray-50);
    border-radius: 12px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
}

.value-item:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
    transform: translateX(8px);
    border-color: var(--primary-blue-light);
}

.value-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--secondary-blue) 0%, var(--primary-blue) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: var(--white);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.value-text h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.value-text p {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin: 0;
}

/* Program Cards */
.program-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid var(--gray-200);
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.program-icon {
    background: linear-gradient(135deg, var(--primary-blue-light) 0%, var(--primary-blue) 100%);
    color: var(--white);
    padding: 1.5rem;
    text-align: center;
    font-size: 2rem;
}

.program-info {
    padding: 1.5rem;
}

.program-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.program-desc {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* Team/Structure Section */
.team-member {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.profile-image-container {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--gray-200);
    background: var(--gray-100);
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.member-position {
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.375rem 1rem;
    border-radius: 20px;
    display: inline-block;
}

.ketua-color {
    background: var(--primary-blue);
    color: var(--white);
}

.sekretaris-color {
    background: var(--secondary-green);
    color: var(--white);
}

.bendahara-color {
    background: var(--secondary-yellow);
    color: var(--gray-900);
}

/* CTA Section - Fixed */
.cta-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    padding: 4rem 3rem;
    border-radius: 16px;
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.cta-section::before {
    content: "";
    position: absolute;
    top: 0;
    right: -25%;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    transform: rotate(45deg);
}

.cta-title {
    color: var(--white) !important;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.cta-desc {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1.125rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.cta-section .btn {
    position: relative;
    z-index: 1;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue-light) 0%, var(--primary-blue) 100%);
    color: var(--white);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    color: var(--white);
}

.btn-light {
    background: var(--white);
    color: var(--primary-blue);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-light:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: var(--gray-50);
    color: var(--primary-blue-dark);
}

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero-section {
        padding: 60px 0;
    }
    
    .feature-card,
    .values-section,
    .team-member {
        padding: 1.5rem;
    }
    
    .cta-section {
        padding: 3rem 2rem;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .program-card {
        margin-bottom: 1rem;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.rounded { border-radius: 0.5rem; }
.shadow { box-shadow: var(--shadow-md); }

/* Additional Components */

/* Divider with Icon */
.divider-custom {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
}

.divider-line {
    height: 2px;
    width: 100px;
    background: linear-gradient(90deg, transparent, var(--gray-300), transparent);
}

.divider-icon {
    padding: 0 1rem;
    color: var(--primary-blue);
    font-size: 1.25rem;
}

/* About Image Section */
.about-image {
    position: relative;
    margin-bottom: 2rem;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.img-caption {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    background: rgba(30, 58, 138, 0.95);
    padding: 1rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.img-caption p {
    color: var(--white);
    font-size: 0.875rem;
    margin: 0;
    font-style: italic;
}

/* Content Sections */
.about-content h2 {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-text {
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

/* Modal Styles */
.modal-content {
    border: none;
    border-radius: 12px;
    overflow: hidden;
}

.modal-header {
    border-bottom: none;
    padding: 1.5rem;
}

.modal-header.bg-primary {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%) !important;
}

.modal-header.bg-success {
    background: linear-gradient(135deg, var(--secondary-green) 0%, #15803d 100%) !important;
}

.modal-header.bg-info {
    background: linear-gradient(135deg, var(--secondary-blue) 0%, var(--primary-blue) 100%) !important;
}

.modal-body {
    padding: 2rem;
}

.modal-title {
    font-weight: 600;
}

/* Timeline Style */
.timeline {
    position: relative;
    padding-left: 2rem;
    margin-top: 2rem;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gray-300);
}

.timeline-item {
    position: relative;
    padding-bottom: 1.5rem;
}

.timeline-item::before {
    content: "";
    position: absolute;
    left: -2.05rem;
    top: 0.5rem;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary-blue);
    border: 2px solid var(--white);
    box-shadow: 0 0 0 2px var(--gray-300);
}

.year {
    background: var(--primary-blue);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.event {
    color: var(--gray-700);
    font-size: 0.875rem;
}

/* List Styles */
.list-group {
    border-radius: 8px;
    overflow: hidden;
}

.list-group-item {
    border: none;
    border-bottom: 1px solid var(--gray-200);
    padding: 1rem 1.25rem;
    background: var(--white);
    transition: all 0.2s ease;
}

.list-group-item:last-child {
    border-bottom: none;
}

.list-group-item:hover {
    background: var(--gray-50);
    padding-left: 1.75rem;
}

.list-group-flush .list-group-item {
    border-radius: 0;
}

/* Badge Styles */
.badge {
    padding: 0.375rem 0.75rem;
    font-weight: 500;
    font-size: 0.75rem;
    border-radius: 20px;
}

.badge.bg-primary {
    background: var(--primary-blue) !important;
}

.badge.bg-success {
    background: var(--secondary-green) !important;
}

.badge.rounded-pill {
    border-radius: 50px;
}

/* Accordion Styles */
.accordion-item {
    border: 1px solid var(--gray-200);
    margin-bottom: 0.5rem;
    border-radius: 8px;
    overflow: hidden;
}

.accordion-button {
    background: var(--white);
    color: var(--gray-900);
    font-weight: 600;
    padding: 1.25rem;
    border: none;
}

.accordion-button:not(.collapsed) {
    background: var(--gray-50);
    color: var(--primary-blue);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-body {
    padding: 1.25rem;
    background: var(--white);
}

/* Form Styles */
.form-control {
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.form-control:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
    outline: none;
}

.form-label {
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

/* Icon Enhancements */
.bi {
    vertical-align: middle;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-blue-light) 0%, var(--primary-blue) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
    box-shadow: var(--shadow-md);
}

/* Overlay Effects */
.position-relative {
    position: relative;
}

.overflow-hidden {
    overflow: hidden;
}

/* Animation Classes */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeIn {
    animation: fadeIn 0.6s ease-out;
}

/* Hover Effects */
.hover-lift {
    transition: transform 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
}

/* Background Patterns */
.bg-pattern {
    position: relative;
}

.bg-pattern::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 35px,
            rgba(30, 58, 138, 0.03) 35px,
            rgba(30, 58, 138, 0.03) 70px
        );
    pointer-events: none;
}

/* Print Styles */
@media print {
    .no-print {
        display: none !important;
    }
    
    body {
        background: white;
    }
    
    .shadow,
    .shadow-md,
    .shadow-lg,
    .shadow-xl {
        box-shadow: none !important;
    }
}
