/* ===== Google Fonts ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500&family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ===== Global Styles ===== */
:root {
  --primary: #1a2d6b;
  --primary-light: #243d8a;
  --primary-dark: #0f1a3d;
  --accent: #3da542;
  --accent-light: #4cb852;
  --gold: #3da542;
  --text-dark: #1a1a2e;
  --text-muted: #6b7280;
  --bg-light: #f5f8f5;
  --bg-white: #ffffff;
  --border: #dce5dc;
  --shadow: 0 4px 24px rgba(26, 45, 107, 0.06), 0 1px 3px rgba(26, 45, 107, 0.04);
  --shadow-lg: 0 12px 48px rgba(26, 45, 107, 0.1), 0 4px 12px rgba(26, 45, 107, 0.05);
  --radius: 12px;
  --transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-dark);
  background: #fafaf7;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
}

section {
  padding: 90px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 56px;
}

.section-title h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.section-title p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
  font-weight: 400;
  line-height: 1.7;
}

.section-title .underline {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--accent-light));
  margin: 16px auto 0;
  border-radius: 2px;
}

/* ===== Site Header ===== */
.site-header {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  position: sticky;
  top: 0;
  z-index: 1050;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-bottom: none;
  box-shadow: 0 1px 0 rgba(26, 45, 107, 0.05);
}

.site-header::before {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg,
    var(--primary, #1a2d6b) 0%,
    #243d8a 25%,
    var(--accent, #3da542) 50%,
    #c9a227 75%,
    var(--primary, #1a2d6b) 100%);
  background-size: 200% 100%;
  animation: headerShimmer 6s linear infinite;
}

@keyframes headerShimmer {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.site-header.scrolled {
  box-shadow: 0 8px 32px rgba(26, 45, 107, 0.12);
  background: rgba(255, 255, 255, 0.96);
}

.site-header.scrolled .top-logo-bar {
  padding: 10px 0;
}

.site-header.scrolled .top-logo-bar .logo-link img {
  height: 64px;
}

/* Top Logo Bar — premium refined look */
.top-logo-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  background: transparent;
  border-bottom: 1px solid rgba(26, 45, 107, 0.06);
  transition: padding 0.4s ease;
}

.top-logo-bar .logo-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  width: 100%;
}

.top-logo-bar .logo-left-group {
  display: flex;
  align-items: center;
  gap: 26px;
  flex: 1 1 auto;
  min-width: 0;
}

.top-logo-bar .logo-link {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  padding-right: 26px;
  position: relative;
}

.top-logo-bar .logo-link::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  bottom: 15%;
  width: 1px;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(26, 45, 107, 0.18) 20%,
    rgba(26, 45, 107, 0.18) 80%,
    transparent 100%);
}

.top-logo-bar .logo-link img {
  height: 82px;
  width: auto;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.3s ease;
  filter: drop-shadow(0 4px 8px rgba(26, 45, 107, 0.08));
}

.top-logo-bar .logo-link:hover img {
  transform: scale(1.04) rotate(-1deg);
}

.top-logo-bar .logo-text-group {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  min-width: 0;
  position: relative;
}

.top-logo-bar .site-title {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-weight: 800;
  font-size: 2.25rem;
  line-height: 1.05;
  margin: 0 0 8px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  position: relative;
}

.top-logo-bar .site-title .title-primary {
  color: var(--primary, #1a2d6b);
  background: linear-gradient(135deg, #0f1a3d 0%, var(--primary, #1a2d6b) 50%, #243d8a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.top-logo-bar .site-title .title-accent {
  color: var(--accent, #3da542);
  position: relative;
  background: linear-gradient(135deg, #2e8a35 0%, var(--accent, #3da542) 50%, #4cb852 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.top-logo-bar .site-title .title-accent::after {
  content: '';
  position: absolute;
  left: -10px;
  top: 50%;
  width: 4px;
  height: 4px;
  background: var(--gold, #c9a227);
  border-radius: 50%;
  transform: translateY(-50%);
  opacity: 0.7;
  box-shadow: 0 0 8px rgba(201, 162, 39, 0.6);
}

.top-logo-bar .site-tagline {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: 0.95rem;
  font-weight: 500;
  font-style: italic;
  color: var(--text-muted, #6c757d);
  margin: 0;
  letter-spacing: 0.6px;
  text-transform: none;
  padding-top: 10px;
  position: relative;
}

.top-logo-bar .site-tagline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 56px;
  height: 2px;
  background: linear-gradient(90deg,
    var(--primary, #1a2d6b) 0%,
    var(--accent, #3da542) 60%,
    transparent 100%);
  border-radius: 2px;
}

.top-logo-bar .site-tagline::after {
  content: '';
  position: absolute;
  top: -1px;
  left: 56px;
  width: 4px;
  height: 4px;
  background: var(--accent, #3da542);
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(61, 165, 66, 0.5);
}

.top-logo-bar .header-right-group {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.top-logo-bar .header-search,
.top-logo-bar .header-visitor {
  position: static;
  transform: none;
}

.header-search-form {
  margin: 0;
}

.header-search-input {
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #fafbfc 0%, #ffffff 100%);
  border: 1.5px solid rgba(26, 45, 107, 0.1);
  border-radius: 44px;
  padding: 5px 6px 5px 20px;
  width: 360px;
  max-width: 100%;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow:
    inset 0 1px 2px rgba(26, 45, 107, 0.03),
    0 1px 3px rgba(26, 45, 107, 0.04);
  position: relative;
}

.header-search-input::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 46px;
  background: linear-gradient(135deg,
    rgba(26, 45, 107, 0) 0%,
    rgba(61, 165, 66, 0) 50%,
    rgba(201, 162, 39, 0) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: -1;
}

.header-search-input:hover {
  border-color: rgba(26, 45, 107, 0.25);
  box-shadow:
    inset 0 1px 2px rgba(26, 45, 107, 0.03),
    0 4px 12px rgba(26, 45, 107, 0.08);
}

.header-search-input:focus-within {
  border-color: var(--primary, #1a2d6b);
  background: #fff;
  box-shadow:
    0 0 0 4px rgba(26, 45, 107, 0.1),
    0 6px 20px rgba(26, 45, 107, 0.12);
  transform: translateY(-1px);
}

.header-search-input i {
  color: var(--primary, #1a2d6b);
  font-size: 0.95rem;
  margin-right: 12px;
  opacity: 0.6;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.header-search-input:focus-within i {
  opacity: 1;
  transform: scale(1.1);
}

.header-search-input input {
  flex: 1 1 auto;
  border: none;
  background: transparent;
  outline: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark, #1a1a1a);
  padding: 8px 4px;
  min-width: 0;
  letter-spacing: 0.2px;
}

.header-search-input input::placeholder {
  color: #9ca3af;
  font-size: 0.86rem;
  font-weight: 400;
}

.header-search-input button {
  border: none;
  background: linear-gradient(135deg,
    var(--primary, #1a2d6b) 0%,
    #243d8a 50%,
    var(--primary, #1a2d6b) 100%);
  background-size: 200% 100%;
  background-position: 0% 50%;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 11px 24px;
  border-radius: 32px;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow:
    0 3px 10px rgba(26, 45, 107, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
}

.header-search-input button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
    transparent,
    rgba(255, 255, 255, 0.25),
    transparent);
  transition: left 0.5s ease;
}

.header-search-input button:hover::before {
  left: 100%;
}

.header-search-input button:hover {
  background: linear-gradient(135deg,
    var(--accent, #3da542) 0%,
    #2e8a35 50%,
    var(--accent, #3da542) 100%);
  box-shadow:
    0 6px 18px rgba(61, 165, 66, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.header-search-input button:active {
  transform: translateY(0);
  box-shadow:
    0 2px 6px rgba(26, 45, 107, 0.25),
    inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Search results page */
.search-results-section .search-group-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary, #1a2d6b);
  margin-bottom: 18px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--border, #e1e3ec);
}

.search-results-section .search-group-title .badge {
  font-size: 0.75rem;
  vertical-align: middle;
  margin-left: 6px;
}

.search-page-form .input-group .form-control {
  border-radius: 30px 0 0 30px;
  padding-left: 18px;
}

.search-page-form .input-group .btn {
  border-radius: 0 30px 30px 0;
  padding-left: 22px;
  padding-right: 22px;
}

/* responsive logo bar */
@media (max-width: 1199px) {
  .top-logo-bar .site-title {
    font-size: 1.7rem;
    letter-spacing: 1px;
  }
  .top-logo-bar .logo-link img {
    height: 68px;
  }
  .header-search-input {
    width: 280px;
  }
}

@media (max-width: 991px) {
  .top-logo-bar {
    padding: 12px 20px;
  }
  .top-logo-bar .site-title {
    font-size: 1.45rem;
  }
  .top-logo-bar .site-tagline {
    font-size: 0.85rem;
  }
  .top-logo-bar .logo-link img {
    height: 58px;
  }
  .top-logo-bar .logo-link {
    padding-right: 16px;
  }
  .header-search-input {
    width: 240px;
  }
  .header-search-input button {
    padding: 9px 16px;
    font-size: 0.72rem;
  }
}

@media (max-width: 767px) {
  .top-logo-bar {
    flex-wrap: wrap;
    padding: 12px 15px;
    justify-content: center;
    gap: 12px;
  }
  .top-logo-bar .logo-bar-inner {
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
  }
  .top-logo-bar .logo-left-group {
    flex: 1 1 100%;
    justify-content: center;
    text-align: center;
    gap: 14px;
  }
  .top-logo-bar .logo-text-group {
    text-align: center;
  }
  .top-logo-bar .logo-link {
    border-right: none;
    padding-right: 0;
  }
  .top-logo-bar .site-title {
    font-size: 1.15rem;
    letter-spacing: 0.8px;
  }
  .top-logo-bar .site-tagline {
    font-size: 0.75rem;
    padding-top: 4px;
  }
  .top-logo-bar .site-tagline::before {
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
  }
  .top-logo-bar .logo-link img {
    height: 48px;
  }
  .top-logo-bar .header-right-group {
    width: 100%;
    justify-content: center;
  }
  .header-search-input {
    width: 100%;
    max-width: 420px;
  }
}

.search-toggle {
  background: none;
  border: none;
  color: var(--text-dark);
  font-size: 1.3rem;
  cursor: pointer;
  padding: 10px;
  transition: var(--transition);
}

.search-toggle:hover {
  color: var(--gold);
}

/* Visitor Counter */
.visitor-counter {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* debug section styling */
.settings-debug ul.list-group-item {
  word-break: break-all;
  font-size: 0.95rem;
}
.settings-debug h3 {
  font-size: 1.5rem;
  font-weight: 600;
}
  padding: 5px 14px;
  background: var(--bg-light);
  border-radius: 20px;
  border: 1px solid var(--border);
}

.visitor-counter i {
  color: var(--gold);
}

/* ===== Navbar ===== */
.navbar {
  background: var(--primary) !important;
  box-shadow: none;
  padding: 0;
  justify-content: center;
  border-top: none;
}

.navbar-brand {
  display: none;
}

.navbar .navbar-collapse {
  flex-grow: 0;
}

.navbar .navbar-nav {
  gap: 0;
}

.navbar .nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.78rem;
  padding: 12px 22px !important;
  transition: var(--transition);
  position: relative;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
  width: 100%;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.08);
}

.navbar .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.25);
  padding: 4px 10px;
}

.navbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar .dropdown-menu {
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius);
  padding: 8px;
  margin-top: 0;
  background: var(--bg-white);
}

.navbar .dropdown-item {
  border-radius: 8px;
  padding: 10px 18px;
  font-size: 0.88rem;
  font-weight: 450;
  color: var(--text-dark);
  transition: var(--transition);
}

.navbar .dropdown-item:hover {
  background: rgba(61, 165, 66, 0.08);
  color: var(--gold);
}

/* Search Overlay */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(8, 14, 32, 0.92);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(16px);
}

.search-overlay.active {
  display: flex;
}

.search-overlay .search-box {
  width: 90%;
  max-width: 700px;
  position: relative;
}

.search-overlay input {
  width: 100%;
  padding: 22px 60px 22px 28px;
  font-size: 1.2rem;
  border: none;
  border-radius: 16px;
  background: var(--bg-white);
  outline: none;
  color: var(--text-dark);
  font-family: 'Inter', sans-serif;
  border-bottom: 3px solid var(--gold);
}

.search-overlay .close-search {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.search-overlay .close-search:hover {
  color: var(--gold);
}

/* ===== Hero Section ===== */
.hero-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 40%, var(--primary-light) 100%);
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(61, 165, 66, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: heroFloat 12s ease-in-out infinite;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(61, 165, 66, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  animation: heroFloat 15s ease-in-out infinite reverse;
}

@keyframes heroFloat {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -20px); }
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content .badge-text {
  display: inline-block;
  background: rgba(61, 165, 66, 0.12);
  color: var(--accent-light);
  padding: 8px 22px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 24px;
  border: 1px solid rgba(61, 165, 66, 0.25);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
}

.hero-content h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3.6rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 22px;
  letter-spacing: -0.5px;
}

.hero-content h1 span {
  background: linear-gradient(90deg, var(--gold), var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 500px;
  margin-bottom: 36px;
  line-height: 1.8;
  font-weight: 300;
}

.hero-btns .btn {
  padding: 15px 34px;
  font-weight: 600;
  border-radius: 8px;
  font-size: 0.92rem;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.3px;
}

.btn-hero-primary {
  background: linear-gradient(135deg, var(--gold), var(--accent-light));
  color: var(--primary-dark);
  border: none;
  font-weight: 700;
}

.btn-hero-primary:hover {
  background: linear-gradient(135deg, var(--accent-light), #5cc961);
  color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(61, 165, 66, 0.35);
}

.btn-hero-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(61, 165, 66, 0.4);
}

.btn-hero-outline:hover {
  background: rgba(61, 165, 66, 0.1);
  border-color: var(--gold);
  color: var(--gold);
}

.hero-image {
  position: relative;
  z-index: 2;
}

.hero-image img {
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(61, 165, 66, 0.15);
}

/* Hero Image Card — clean image only, no overlay */
.hero-image-card {
  position: relative;
  z-index: 2;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.25);
  background: transparent;
}

.hero-image-card img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

@media (max-width: 991px) {
  .hero-image-card {
    margin-top: 30px;
  }
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 52px;
  padding-top: 36px;
  border-top: 1px solid rgba(61, 165, 66, 0.15);
}

.hero-stats .stat-item h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
}

.hero-stats .stat-item p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

/* ===== Page Banner ===== */
.page-banner {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 90px 0 65px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-banner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.page-banner h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
  letter-spacing: -0.3px;
}

.page-banner .breadcrumb {
  justify-content: center;
  position: relative;
  z-index: 1;
}

.page-banner .breadcrumb-item,
.page-banner .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  font-weight: 400;
}

.page-banner .breadcrumb-item a:hover {
  color: var(--gold);
}

.page-banner .breadcrumb-item.active {
  color: var(--gold);
}

.page-banner .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(61, 165, 66, 0.4);
}

/* ===== Why Join Section ===== */
.why-join-section {
  background: var(--bg-light);
}

.benefit-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 36px 30px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--accent-light), var(--gold));
  opacity: 0;
  transition: var(--transition);
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(61, 165, 66, 0.3);
}

.benefit-card:hover::before {
  opacity: 1;
}

.benefit-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--gold);
  transition: var(--transition);
}

.benefit-card:hover .benefit-icon {
  background: linear-gradient(135deg, var(--gold), var(--accent-light));
  color: var(--primary-dark);
  transform: scale(1.05);
}

.benefit-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.benefit-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
}

/* ===== CTA Section ===== */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(61, 165, 66, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  max-width: 550px;
  margin: 0 auto 32px;
}

.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-cta-primary {
  background: linear-gradient(135deg, var(--gold), var(--accent-light));
  color: var(--primary-dark);
  border: none;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-cta-primary:hover {
  background: #fff;
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(61, 165, 66, 0.3);
}

.btn-cta-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-cta-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--gold);
  color: var(--gold);
}

/* ===== Advertisement Section — premium design ===== */
.activity-section {
  background:
    radial-gradient(ellipse at top left, rgba(26, 45, 107, 0.04) 0%, transparent 45%),
    radial-gradient(ellipse at bottom right, rgba(61, 165, 66, 0.04) 0%, transparent 45%),
    linear-gradient(180deg, #fafaf7 0%, var(--bg-light, #f5f8f5) 100%);
  position: relative;
  overflow: hidden;
}

.activity-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, transparent, var(--gold, #c9a227), transparent);
  opacity: 0.5;
}

.activity-section .section-title {
  position: relative;
}

.activity-section .section-title::before {
  content: '— PREMIUM —';
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  text-align: center;
  color: var(--gold, #c9a227);
  font-size: 0.75rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 14px;
  opacity: 0.9;
}

.activity-section .section-title h2 {
  position: relative;
  display: inline-block;
}

.activity-section .section-title h2::before,
.activity-section .section-title h2::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold, #c9a227));
  opacity: 0.6;
}

.activity-section .section-title h2::before {
  right: calc(100% + 20px);
  background: linear-gradient(90deg, transparent, var(--gold, #c9a227));
}

.activity-section .section-title h2::after {
  left: calc(100% + 20px);
  background: linear-gradient(90deg, var(--gold, #c9a227), transparent);
}

.gallery-slider-item {
  padding: 10px;
}

.gallery-slider-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 2px 12px rgba(26, 45, 107, 0.06);
  border: 1px solid var(--border);
}

.gallery-slider-item img:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

/* ===== Advertisement Vertical List — premium alternating rows ===== */
.activity-list {
  display: flex;
  flex-direction: column;
  gap: 72px;
  position: relative;
  z-index: 1;
}

.activity-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 72px;
  position: relative;
  padding: 36px 0 64px;
  border-bottom: 1px solid rgba(26, 45, 107, 0.08);
}

.activity-row::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold, #c9a227), transparent);
  opacity: 0.6;
}

.activity-row:last-child {
  border-bottom: none;
  padding-bottom: 36px;
}

.activity-row:last-child::after {
  display: none;
}

.activity-row--reverse .activity-row-content {
  order: 2;
}

.activity-row--reverse .activity-row-image {
  order: 1;
}

.activity-row-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8px 0;
  position: relative;
}

.activity-row-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}

.activity-row-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3rem;
  font-weight: 900;
  line-height: 0.9;
  background: linear-gradient(135deg, var(--primary, #1a2d6b) 0%, var(--accent, #3da542) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -1px;
  position: relative;
  padding-right: 16px;
}

.activity-row-number::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  bottom: 15%;
  width: 2px;
  background: linear-gradient(180deg, var(--gold, #c9a227), transparent);
  border-radius: 2px;
}

.activity-row-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--primary, #1a2d6b);
  position: relative;
  padding-left: 2px;
}

.activity-row-label::before {
  content: '✦';
  margin-right: 8px;
  color: var(--gold, #c9a227);
  font-size: 0.85rem;
  opacity: 0.8;
}

.activity-row-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  font-weight: 700;
  color: var(--primary, #1a2d6b);
  margin: 0 0 18px;
  line-height: 1.2;
  letter-spacing: -0.3px;
  position: relative;
}

.activity-row-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent, #3da542), var(--gold, #c9a227));
  margin-top: 14px;
  border-radius: 2px;
  transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.activity-row:hover .activity-row-title::after {
  width: 90px;
}

.activity-row-text {
  font-family: 'Inter', sans-serif;
  font-size: 1.02rem;
  line-height: 1.85;
  color: var(--text-muted, #4a5568);
  margin: 0 0 28px;
  font-weight: 400;
}

.activity-row-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  align-self: flex-start;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary, #1a2d6b);
  text-decoration: none;
  padding: 12px 0;
  position: relative;
  transition: all 0.3s ease;
}

.activity-row-link::before {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary, #1a2d6b), var(--accent, #3da542));
  transform: scaleX(0.4);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), background 0.3s ease;
}

.activity-row-link:hover::before {
  transform: scaleX(1);
  background: linear-gradient(90deg, var(--accent, #3da542), var(--gold, #c9a227));
}

.activity-row-link i {
  font-size: 0.78rem;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  color: var(--accent, #3da542);
}

.activity-row-link:hover {
  color: var(--accent, #3da542);
  letter-spacing: 2px;
}

.activity-row-link:hover i {
  transform: translateX(10px);
}

.activity-row-image {
  position: relative;
  padding: 0;
}

.activity-row-image-link {
  position: relative;
  display: block;
  border-radius: 6px;
  overflow: hidden;
  box-shadow:
    0 30px 60px -15px rgba(26, 45, 107, 0.3),
    0 12px 24px rgba(26, 45, 107, 0.1);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: translateZ(0);
}

.activity-row:hover .activity-row-image-link {
  transform: translateY(-6px);
  box-shadow:
    0 40px 80px -15px rgba(26, 45, 107, 0.35),
    0 20px 30px rgba(26, 45, 107, 0.15);
}

.activity-row-image-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg,
      rgba(26, 45, 107, 0) 60%,
      rgba(26, 45, 107, 0.55) 100%);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.activity-row-image-link:hover::before {
  opacity: 1;
}

.activity-row-image-link img {
  display: block;
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.activity-row-image-link:hover img {
  transform: scale(1.08);
}

.activity-row-image-overlay {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary, #1a2d6b);
  border-radius: 50%;
  font-size: 1rem;
  opacity: 0;
  transform: translateY(-10px) scale(0.85);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 2;
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.activity-row-image-link:hover .activity-row-image-overlay {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* premium decorative frame behind image */
.activity-row-image::before {
  content: '';
  position: absolute;
  width: 75%;
  height: 75%;
  border: 2px solid var(--gold, #c9a227);
  border-radius: 6px;
  top: 40px;
  left: -36px;
  z-index: 0;
  opacity: 0.5;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.activity-row-image::after {
  content: '';
  position: absolute;
  width: 40%;
  height: 40%;
  background:
    radial-gradient(circle, rgba(61, 165, 66, 0.1) 0%, transparent 70%);
  bottom: -20px;
  right: -20px;
  z-index: 0;
  border-radius: 50%;
}

.activity-row:hover .activity-row-image::before {
  top: 30px;
  left: -46px;
  opacity: 0.7;
  border-color: var(--accent, #3da542);
}

.activity-row--reverse .activity-row-image::before {
  left: auto;
  right: -36px;
}

.activity-row--reverse .activity-row-image::after {
  right: auto;
  left: -20px;
}

.activity-row--reverse:hover .activity-row-image::before {
  left: auto;
  right: -46px;
}

/* corner accent dots on image link */
.activity-row-image-link > .activity-row-corner {
  position: absolute;
  width: 14px;
  height: 14px;
  border: 2px solid var(--gold, #c9a227);
  z-index: 3;
}

@media (max-width: 991px) {
  .activity-row {
    gap: 42px;
    padding: 28px 0 48px;
  }
  .activity-row-image-link img {
    height: 320px;
  }
  .activity-row-image::before,
  .activity-row-image::after {
    display: none;
  }
  .activity-section .section-title h2::before,
  .activity-section .section-title h2::after {
    width: 28px;
  }
}

@media (max-width: 767px) {
  .activity-list {
    gap: 40px;
  }
  .activity-row {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 20px 0 40px;
  }
  .activity-row--reverse .activity-row-content,
  .activity-row-content {
    order: 2;
  }
  .activity-row--reverse .activity-row-image,
  .activity-row-image {
    order: 1;
  }
  .activity-row-image-link img {
    height: 260px;
  }
  .activity-row-number {
    font-size: 2.2rem;
  }
  .activity-row-title {
    font-size: 1.5rem;
  }
  .activity-row-title::after {
    width: 40px;
  }
  .activity-row:hover .activity-row-title::after {
    width: 60px;
  }
  .activity-section .section-title h2::before,
  .activity-section .section-title h2::after {
    display: none;
  }
}

/* ===== Member Cards ===== */
.member-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
  border: 1px solid var(--border);
  position: relative;
}

.member-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--accent-light), var(--gold));
  z-index: 2;
}

.member-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(26, 45, 107, 0.12);
  border-color: rgba(61, 165, 66, 0.3);
}

.member-card .card-img-wrapper {
  position: relative;
  overflow: hidden;
  height: 260px;
}

.member-card .card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.member-card:hover .card-img-wrapper img {
  transform: scale(1.05);
}

.member-card .card-body {
  padding: 22px 20px;
  text-align: center;
}

.member-card .card-body h5 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 5px;
}

.member-card .card-body .designation {
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.member-card .card-body .company {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 400;
}

/* Detailed Member Card - Full Width, Image Top Center */
.member-detail-card {
  background: var(--bg-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(26, 45, 107, 0.05);
  transition: var(--transition);
  border: 1px solid var(--border);
  text-align: center;
  margin-bottom: 10px;
  position: relative;
}

.member-detail-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  z-index: 0;
}

.member-detail-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--accent-light), var(--gold));
  z-index: 1;
}

.member-detail-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(26, 45, 107, 0.12);
  border-color: rgba(61, 165, 66, 0.3);
}

.member-detail-card .member-img-top {
  display: flex;
  justify-content: center;
  padding: 40px 30px 0;
  position: relative;
  z-index: 1;
}

.member-detail-card .member-img-top img {
  width: 200px;
  height: 240px;
  object-fit: cover;
  border-radius: 14px;
  border: 4px solid var(--bg-white);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
  background: var(--bg-white);
}

.member-detail-card:hover .member-img-top img {
  transform: scale(1.03);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.25);
}

.member-detail-card .member-id-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--accent-light));
  color: var(--primary-dark);
  padding: 6px 24px;
  border-radius: 24px;
  font-size: 0.78rem;
  font-weight: 700;
  margin-top: 18px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 14px rgba(61, 165, 66, 0.3);
  font-family: 'Inter', sans-serif;
}

.member-detail-card .member-info {
  padding: 20px 40px 36px;
  position: relative;
  z-index: 1;
}

.member-detail-card .member-info h5 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
  letter-spacing: -0.3px;
  position: relative;
}

.member-detail-card .member-info h5::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: var(--gold);
}

.member-detail-card .info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.member-detail-card .info-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  text-align: left;
  padding: 13px 16px;
  background: var(--bg-light);
  border-radius: 10px;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.member-detail-card .info-row:hover {
  background: rgba(61, 165, 66, 0.04);
  border-color: rgba(61, 165, 66, 0.25);
}

.member-detail-card .info-row .icon-circle {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.82rem;
}

.member-detail-card .info-row i {
  color: var(--gold);
  width: 20px;
  text-align: center;
  flex-shrink: 0;
  font-size: 0.9rem;
}

.member-detail-card .info-row .info-content {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.member-detail-card .info-row .label {
  font-weight: 700;
  color: var(--text-dark);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-family: 'Inter', sans-serif;
}

.member-detail-card .info-row .value {
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 500;
}

@media (max-width: 767.98px) {
  .member-detail-card .info-grid {
    grid-template-columns: 1fr;
  }
  .member-detail-card .member-info {
    padding: 20px 20px 28px;
  }
  .member-detail-card::before {
    height: 160px;
  }
}

/* ===== About Page — Profile Cards (col-6/col-6) ===== */
.about-profile-section {
  padding: 80px 0 64px;
}

.about-profile-card {
  background: var(--bg-white);
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  text-align: center;
  padding: 48px 32px 36px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: var(--transition);
  position: relative;
}

.about-profile-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

/* Circular Photo */
.about-profile-photo {
  width: 180px;
  height: 220px;
  border-radius: 8px;
  overflow: hidden;
  border: 3px solid var(--border);
  box-shadow: 0 4px 16px rgba(26, 45, 107, 0.1);
  margin-bottom: 24px;
  flex-shrink: 0;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-profile-photo i {
  font-size: 3rem;
  color: var(--text-muted);
}

/* Name & Role Box */
.about-profile-info {
  background: var(--bg-light);
  border-radius: 12px;
  padding: 16px 28px;
  margin-bottom: 20px;
  width: 100%;
}

.about-profile-info h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 2px;
}

.about-profile-role {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 0;
  letter-spacing: 0.3px;
}

/* Content Text */
.about-profile-text {
  width: 100%;
  text-align: left;
  margin-bottom: 20px;
}

.about-profile-text p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 10px;
  font-size: 0.88rem;
}

/* Social Icons */
.about-profile-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  width: 100%;
}

.about-profile-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 0.85rem;
  transition: var(--transition);
}

.about-profile-social a:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 991px) {
  .about-profile-section {
    padding: 60px 0 48px;
  }
  .about-profile-card {
    padding: 40px 26px 30px;
  }
  .about-profile-photo {
    width: 160px;
    height: 195px;
  }
  .about-profile-info h3 {
    font-size: 1.25rem;
  }
}

@media (max-width: 767px) {
  .about-profile-section {
    padding: 48px 0 36px;
  }
  .about-profile-card {
    padding: 36px 22px 28px;
  }
  .about-profile-photo {
    width: 140px;
    height: 170px;
    margin-bottom: 20px;
  }
  .about-profile-info {
    padding: 14px 20px;
  }
  .about-profile-info h3 {
    font-size: 1.15rem;
  }
  .about-profile-text p {
    font-size: 0.84rem;
  }
  .about-profile-social a {
    width: 34px;
    height: 34px;
    font-size: 0.8rem;
  }
}

@media (max-width: 575px) {
  .about-profile-photo {
    width: 120px;
    height: 146px;
  }
  .about-profile-card {
    padding: 30px 18px 24px;
  }
  .about-profile-social {
    gap: 8px;
  }
}

/* ===== Mission & Vision ===== */
.about-mv-section {
  padding: 70px 0 80px;
  background: var(--bg-light);
}

.mv-card {
  display: flex;
  gap: 22px;
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  height: 100%;
  transition: var(--transition);
  align-items: flex-start;
}

.mv-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(61, 165, 66, 0.2);
}

.mv-card-icon {
  width: 54px;
  height: 54px;
  min-width: 54px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
}

.mv-card-body h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.mv-card-body p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 0;
  font-size: 0.9rem;
}

@media (max-width: 767px) {
  .mv-card {
    flex-direction: column;
    gap: 16px;
    padding: 24px 20px;
  }
}

/* legacy compat */
.mission-vision-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.mission-vision-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--gold), var(--primary));
}

.mission-vision-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(61, 165, 66, 0.2);
}

.mission-vision-card .icon-box {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.mission-vision-card h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 14px;
}

.mission-vision-card p {
  color: var(--text-muted);
  line-height: 1.75;
}

/* ===== Gallery Page ===== */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.gallery-filters .filter-btn {
  padding: 10px 26px;
  border: 1px solid var(--border);
  background: var(--bg-white);
  color: var(--text-dark);
  border-radius: 30px;
  font-weight: 500;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.3px;
  font-family: 'Inter', sans-serif;
}

.gallery-filters .filter-btn:hover,
.gallery-filters .filter-btn.active {
  background: linear-gradient(135deg, var(--gold), var(--accent-light));
  border-color: var(--gold);
  color: var(--primary-dark);
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(61, 165, 66, 0.25);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  height: 260px;
  transition: var(--transition);
  box-shadow: 0 2px 12px rgba(26, 45, 107, 0.06);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-item .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(26, 45, 107, 0.85), rgba(61, 165, 66, 0.4));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}

.gallery-item .overlay i {
  color: #fff;
  font-size: 2rem;
  width: 56px;
  height: 56px;
  background: rgba(61, 165, 66, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(61, 165, 66, 0.5);
  backdrop-filter: blur(4px);
}

.gallery-item .overlay span {
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  margin-top: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-family: 'Inter', sans-serif;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover .overlay {
  opacity: 1;
}

.gallery-item:hover {
  box-shadow: 0 10px 36px rgba(26, 45, 107, 0.15);
}

/* ===== Contact Page ===== */
.contact-form-wrapper {
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 44px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.contact-form-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--accent-light), var(--gold));
}

.contact-form-wrapper h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 28px;
}

.contact-form-wrapper .form-control {
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.92rem;
  transition: var(--transition);
  background: var(--bg-light);
  font-family: 'Inter', sans-serif;
}

.contact-form-wrapper .form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(61, 165, 66, 0.1);
  background: var(--bg-white);
}

.contact-form-wrapper .btn-submit {
  background: linear-gradient(135deg, var(--gold), var(--accent-light));
  color: var(--primary-dark);
  border: none;
  padding: 14px 42px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.92rem;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.3px;
}

.contact-form-wrapper .btn-submit:hover {
  background: linear-gradient(135deg, var(--accent-light), #5cc961);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(61, 165, 66, 0.3);
  color: var(--primary-dark);
}

/* ===== Registration Form ===== */
.registration-wrapper {
  background: var(--bg-white);
  border-radius: 16px;
  padding: 0;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid var(--border);
}

.registration-wrapper .reg-header {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary), var(--primary-light));
  padding: 34px 40px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.registration-wrapper .reg-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.registration-wrapper .reg-header h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.registration-wrapper .reg-header p {
  opacity: 0.75;
  font-size: 0.9rem;
  margin: 0;
  font-weight: 300;
}

.registration-wrapper .reg-body {
  padding: 40px;
}

.reg-category-select {
  margin-bottom: 30px;
  text-align: center;
}

.reg-category-select label.cat-label {
  display: block;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 14px;
  font-size: 1rem;
  font-family: 'Playfair Display', Georgia, serif;
}

.reg-category-select .category-options {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.reg-category-select .category-btn {
  padding: 10px 28px;
  border: 1px solid var(--border);
  border-radius: 50px;
  background: var(--bg-white);
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.88rem;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
}

.reg-category-select .category-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(61, 165, 66, 0.04);
}

.reg-category-select .category-btn.active {
  background: linear-gradient(135deg, var(--gold), var(--accent-light));
  border-color: var(--gold);
  color: var(--primary-dark);
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(61, 165, 66, 0.25);
}

.reg-photo-upload {
  text-align: center;
  margin-bottom: 30px;
}

.reg-photo-upload .photo-preview {
  width: 140px;
  height: 160px;
  border-radius: 14px;
  border: 2px dashed rgba(61, 165, 66, 0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  cursor: pointer;
  transition: var(--transition);
  overflow: hidden;
  background: var(--bg-light);
  position: relative;
}

.reg-photo-upload .photo-preview:hover {
  border-color: var(--gold);
  background: rgba(61, 165, 66, 0.04);
}

.reg-photo-upload .photo-preview i {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 6px;
  opacity: 0.6;
}

.reg-photo-upload .photo-preview span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.reg-photo-upload .photo-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

.reg-photo-upload .photo-preview.has-image img {
  display: block;
}

.reg-photo-upload .photo-preview.has-image i,
.reg-photo-upload .photo-preview.has-image span {
  display: none;
}

.reg-form .form-label {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-dark);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.reg-form .form-label i {
  color: var(--gold);
  font-size: 0.85rem;
  width: 18px;
  text-align: center;
}

.reg-form .form-control,
.reg-form .form-select {
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.92rem;
  transition: var(--transition);
  background: var(--bg-light);
  font-family: 'Inter', sans-serif;
}

.reg-form .form-control:focus,
.reg-form .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(61, 165, 66, 0.1);
  background: var(--bg-white);
}

.reg-form .form-control::placeholder {
  color: #b0b0a8;
}

.reg-form .section-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 32px 0 22px;
}

.reg-form .section-divider span {
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  white-space: nowrap;
  font-family: 'Inter', sans-serif;
}

.reg-form .section-divider::before,
.reg-form .section-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--border), rgba(61, 165, 66, 0.2));
}

.reg-form .section-divider::after {
  background: linear-gradient(90deg, rgba(61, 165, 66, 0.2), var(--border));
}

.reg-form .membership-id-box {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  border-radius: 12px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  border: 1px solid rgba(61, 165, 66, 0.15);
}

.reg-form .membership-id-box .id-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.reg-form .membership-id-box .id-value {
  color: var(--gold);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 2px;
  font-family: 'Inter', sans-serif;
}

.reg-form .btn-register {
  background: linear-gradient(135deg, var(--gold), var(--accent-light));
  color: var(--primary-dark);
  border: none;
  padding: 15px 50px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.5px;
}

.reg-form .btn-register:hover {
  background: linear-gradient(135deg, var(--accent-light), #5cc961);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(61, 165, 66, 0.35);
  color: var(--primary-dark);
}

.reg-form .btn-register i {
  font-size: 0.9rem;
}

.contact-info-card {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  border-radius: var(--radius);
  padding: 44px;
  color: #fff;
  height: 100%;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(61, 165, 66, 0.1);
}

.contact-info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--accent-light), var(--gold));
}

.contact-info-card::after {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(61, 165, 66, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.contact-info-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 28px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-info-item .icon {
  width: 48px;
  height: 48px;
  background: rgba(61, 165, 66, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  color: var(--gold);
  border: 1px solid rgba(61, 165, 66, 0.15);
}

.contact-info-item h6 {
  font-weight: 600;
  margin-bottom: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-info-item p {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-bottom: 0;
}

.contact-social {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}

.contact-social a {
  width: 44px;
  height: 44px;
  background: rgba(61, 165, 66, 0.1);
  border: 1px solid rgba(61, 165, 66, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  transition: var(--transition);
}

.contact-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(61, 165, 66, 0.3);
}

.map-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 50px;
  border: 1px solid var(--border);
}

.map-wrapper iframe {
  width: 100%;
  height: 400px;
  border: none;
}

/* ===== Footer ===== */
.site-footer {
  background: linear-gradient(180deg, var(--primary-dark) 0%, #060b18 100%);
  color: rgba(255, 255, 255, 0.75);
  padding: 70px 0 0;
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.site-footer h5 {
  font-family: 'Playfair Display', Georgia, serif;
  color: #fff;
  font-weight: 600;
  font-size: 1.15rem;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}

.site-footer h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gold);
}

.site-footer p {
  font-size: 0.9rem;
  line-height: 1.75;
  opacity: 0.65;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: var(--transition);
  position: relative;
  padding-left: 0;
}

.footer-links a::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 8px;
}

.footer-links a:hover::before {
  width: 20px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-contact-item i {
  color: var(--gold);
  margin-top: 3px;
}

.footer-contact-item span {
  font-size: 0.9rem;
  opacity: 0.65;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(61, 165, 66, 0.08);
  border: 1px solid rgba(61, 165, 66, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(61, 165, 66, 0.25);
}

.footer-bottom {
  border-top: 1px solid rgba(61, 165, 66, 0.08);
  padding: 22px 0;
  margin-top: 44px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.82rem;
  opacity: 0.45;
  margin: 0;
  letter-spacing: 0.3px;
}

/* ===== Lightbox ===== */
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(8, 14, 32, 0.96);
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(20px);
  animation: lightboxFadeIn 0.3s ease;
}

@keyframes lightboxFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes lightboxImgIn {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}

.lightbox-overlay.active {
  display: flex;
}

.lightbox-overlay .lightbox-content {
  position: relative;
  max-width: 88%;
  max-height: 88vh;
  animation: lightboxImgIn 0.35s ease;
}

.lightbox-overlay .lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: 10px;
  box-shadow: 0 0 80px rgba(0, 0, 0, 0.5);
  display: block;
  border: 1px solid rgba(61, 165, 66, 0.15);
}

.lightbox-overlay .lightbox-caption {
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
  margin-top: 16px;
  font-weight: 400;
  letter-spacing: 0.3px;
}

.lightbox-overlay .lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: rgba(61, 165, 66, 0.1);
  border: 1px solid rgba(61, 165, 66, 0.2);
  color: var(--gold);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 10;
}

.lightbox-overlay .lightbox-close:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--primary-dark);
  transform: rotate(90deg);
}

.lightbox-overlay .lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(61, 165, 66, 0.08);
  border: 1px solid rgba(61, 165, 66, 0.2);
  color: var(--gold);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.lightbox-overlay .lightbox-nav:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--primary-dark);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-overlay .lightbox-prev {
  left: 24px;
}

.lightbox-overlay .lightbox-next {
  right: 24px;
}

.lightbox-overlay .lightbox-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 600;
  background: rgba(26, 45, 107, 0.6);
  padding: 6px 20px;
  border-radius: 20px;
  border: 1px solid rgba(61, 165, 66, 0.15);
  letter-spacing: 1px;
  font-family: 'Inter', sans-serif;
}

/* ===== Slick Slider Arrows ===== */
.slick-prev,
.slick-next {
  width: 44px;
  height: 44px;
  background: var(--bg-white) !important;
  border-radius: 50%;
  box-shadow: var(--shadow);
  z-index: 10;
  border: 1px solid var(--border);
}

.slick-prev:hover,
.slick-next:hover {
  border-color: var(--gold) !important;
}

.slick-prev:before,
.slick-next:before {
  color: var(--primary) !important;
  font-size: 20px;
}

.slick-prev:hover:before,
.slick-next:hover:before {
  color: var(--gold) !important;
}

.slick-prev {
  left: -10px;
}

.slick-next {
  right: -10px;
}

.slick-dots li button:before {
  font-size: 10px;
  color: var(--gold);
}

.slick-dots li.slick-active button:before {
  color: var(--primary);
}

/* ===== Back to Top ===== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--gold), var(--accent-light));
  color: var(--primary-dark);
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  transition: var(--transition);
  box-shadow: 0 4px 18px rgba(61, 165, 66, 0.35);
}

.back-to-top.show {
  display: flex;
}

.back-to-top:hover {
  background: linear-gradient(135deg, var(--accent-light), #5cc961);
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(61, 165, 66, 0.45);
}

/* ===== Animations ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Selection Color ===== */
::selection {
  background: rgba(61, 165, 66, 0.2);
  color: var(--primary-dark);
}

::-moz-selection {
  background: rgba(61, 165, 66, 0.2);
  color: var(--primary-dark);
}

/* ===== Scrollbar Styling ===== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gold), var(--primary-light));
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--accent-light), var(--primary));
}

/* ===== Responsive ===== */
@media (max-width: 991.98px) {
  .navbar-brand {
    display: flex;
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95) !important;
    align-items: center;
  }

  .navbar {
    border-top: none;
    padding: 5px 0;
  }

  .hero-content h1 {
    font-size: 2.6rem;
  }

  .hero-stats {
    gap: 24px;
  }

  section {
    padding: 60px 0;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767.98px) {
  .hero-section {
    min-height: auto;
    padding: 80px 0 60px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-stats {
    gap: 16px;
  }

  .hero-stats .stat-item h3 {
    font-size: 1.5rem;
  }

  .hero-image {
    margin-top: 40px;
  }

  .section-title h2 {
    font-size: 1.8rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-banner h1 {
    font-size: 2rem;
  }

  .page-banner {
    padding: 60px 0 40px;
  }

  .contact-info-card {
    margin-top: 30px;
  }

  /* Registration responsive */
  .registration-wrapper .reg-header {
    padding: 22px 20px;
  }

  .registration-wrapper .reg-header h3 {
    font-size: 1.2rem;
  }

  .registration-wrapper .reg-body {
    padding: 24px 20px;
  }

  .reg-category-select .category-options {
    flex-direction: column;
    align-items: center;
  }

  .reg-category-select .category-btn {
    width: 100%;
    max-width: 280px;
  }

  .reg-form .membership-id-box {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .reg-form .membership-id-box .id-value {
    font-size: 1.1rem;
  }

  .reg-form .section-divider {
    margin: 22px 0 14px;
  }

  .reg-form .btn-register {
    width: 100%;
    justify-content: center;
    padding: 14px 30px;
  }

  /* Lightbox responsive */
  .lightbox-overlay .lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .lightbox-overlay .lightbox-prev {
    left: 10px;
  }

  .lightbox-overlay .lightbox-next {
    right: 10px;
  }

  .lightbox-overlay .lightbox-close {
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }

  .lightbox-overlay .lightbox-content {
    max-width: 94%;
  }

  /* Header responsive */
  .top-logo-bar .header-search,
  .top-logo-bar .header-visitor {
    position: static;
    transform: none;
  }

  .cta-content h2 {
    font-size: 1.8rem;
  }

  .cta-btns {
    flex-direction: column;
    align-items: center;
  }

  .cta-btns .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .benefit-card {
    padding: 28px 24px;
  }

  .benefit-icon {
    width: 60px;
    height: 60px;
    font-size: 1.3rem;
  }
}

@media (max-width: 575.98px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-btns .btn {
    display: block;
    width: 100%;
    margin-bottom: 12px;
  }

  .reg-photo-upload .photo-preview {
    width: 120px;
    height: 140px;
  }

  .registration-wrapper .reg-body {
    padding: 20px 16px;
  }

  .cta-content h2 {
    font-size: 1.5rem;
  }
}
