/* ============================================
   LAW IS MY PROTECTOR - WordPress Theme CSS
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  --primary-dark: #0a1628;
  --primary-blue: #0d2137;
  --primary-navy: #132d46;
  --primary-medium: #1a3a5c;
  --primary-light: #245580;
  --gold: #c9a84c;
  --gold-light: #dfc06e;
  --gold-dark: #a68a32;
  --gold-glow: rgba(201, 168, 76, 0.35);
  --white: #ffffff;
  --off-white: #f4f6f9;
  --light-gray: #e8ecf1;
  --gray: #8e99a9;
  --dark-gray: #3a4553;
  --glass-bg: rgba(13, 33, 55, 0.65);
  --glass-border: rgba(255, 255, 255, 0.12);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  --font-heading: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
  --section-padding: 100px 0;
  --container-max: 1280px;
  --transition-fast: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  --topbar-height: 44px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; scroll-padding-top: 80px; }
body {
  font-family: var(--font-body);
  color: var(--dark-gray);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--primary-dark);
}
a { text-decoration: none; transition: var(--transition-fast); }
img { max-width: 100%; height: auto; }

/* ---------- Utility Classes ---------- */
.section-padding { padding: var(--section-padding); }
.section-dark {
  background: linear-gradient(160deg, var(--primary-dark) 0%, var(--primary-navy) 100%);
  color: var(--white);
}
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-light { background: var(--off-white); }
.gold-text { color: var(--gold); }

.section-title { text-align: center; margin-bottom: 60px; }
.section-title h2 { font-size: 2.75rem; margin-bottom: 16px; }
.section-title .title-line {
  width: 70px; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 0 auto 20px; border-radius: 2px;
}
.section-title p { font-size: 1.1rem; color: var(--gray); max-width: 620px; margin: 0 auto; }
.section-dark .section-title p { color: rgba(255, 255, 255, 0.7); }

/* ---------- WordPress Core Alignments ---------- */
.alignwide { max-width: 1280px; margin: 2rem auto; }
.alignfull { width: 100vw; margin-left: calc(-50vw + 50%); }

/* ---------- WordPress Search Form ---------- */
.search-form .search-field {
  width: 100%; padding: 12px 16px; border: 1px solid var(--light-gray);
  border-radius: 10px; font-size: 0.95rem; transition: var(--transition-fast);
}
.search-form .search-field:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,0.15); outline: none;
}
.search-form .search-submit {
  display: none;
}

/* ---------- WordPress Pagination ---------- */
.pagination {
  display: flex; gap: 8px; justify-content: center; flex-wrap: wrap;
}
.pagination .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--white); border: 1px solid var(--light-gray);
  color: var(--dark-gray); font-weight: 500; font-size: 0.9rem;
  transition: var(--transition-fast); text-decoration: none;
}
.pagination .page-numbers:hover,
.pagination .page-numbers.current {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--primary-dark); border-color: var(--gold);
}

/* ---------- WordPress Entry Content ---------- */
.entry-content p { margin-bottom: 1.2rem; }
.entry-content ul, .entry-content ol { padding-left: 1.5rem; margin-bottom: 1.2rem; }
.entry-content li { margin-bottom: 0.5rem; }
.entry-content blockquote {
  border-left: 4px solid var(--gold); padding: 1.5rem 2rem;
  margin: 2rem 0; background: var(--off-white); border-radius: 0 12px 12px 0;
  font-family: var(--font-heading); font-style: italic; font-size: 1.1rem;
}
.entry-content table { width: 100%; border-collapse: collapse; margin-bottom: 1.5rem; }
.entry-content th, .entry-content td { padding: 12px 16px; border: 1px solid var(--light-gray); text-align: left; }
.entry-content th { background: var(--off-white); font-weight: 600; }

/* ---------- Preloader ---------- */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--primary-dark);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.loaded { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader .loader {
  width: 50px; height: 50px;
  border: 3px solid rgba(201, 168, 76, 0.2);
  border-top-color: var(--gold); border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Top Bar ---------- */
.top-bar {
  background: var(--primary-dark);
  padding: 8px 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.top-bar a { color: rgba(255, 255, 255, 0.7); }
.top-bar a:hover { color: var(--gold); }
.top-bar .social-links a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  margin-left: 6px; font-size: 0.75rem;
  transition: var(--transition-fast);
}
.top-bar .social-links a:hover { background: var(--gold); color: var(--primary-dark); }

/* ---------- Navbar (Sticky - No header overlap) ---------- */
.navbar {
  padding: 16px 0;
  transition: var(--transition-smooth);
  z-index: 1050;
  position: sticky;
  top: 0;
  background: rgba(10, 22, 40, 0.97);
}
.navbar.scrolled {
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 10px 0;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}
.navbar-brand { display: flex; align-items: center; gap: 12px; }
.navbar-brand .brand-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.2rem; font-weight: 800;
  color: var(--primary-dark);
  transition: var(--transition-bounce);
}
.navbar-brand:hover .brand-icon { transform: scale(1.08) rotate(-3deg); }
.navbar-brand .brand-text {
  font-family: var(--font-heading);
  font-size: 1.15rem; font-weight: 700;
  color: var(--white); line-height: 1.2;
}
.navbar-brand .brand-text small {
  display: block; font-family: var(--font-body);
  font-size: 0.65rem; font-weight: 400;
  color: var(--gold); letter-spacing: 3px; text-transform: uppercase;
}
.navbar .nav-link {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem; font-weight: 500;
  padding: 8px 16px !important; border-radius: 6px;
  transition: var(--transition-fast); position: relative;
}
.navbar .nav-link::after {
  content: ''; position: absolute; bottom: 2px; left: 50%;
  width: 0; height: 2px; background: var(--gold);
  transition: var(--transition-smooth);
  transform: translateX(-50%); border-radius: 2px;
}
.navbar .nav-link:hover, .navbar .nav-link.active { color: var(--gold); }
.navbar .nav-link:hover::after, .navbar .nav-link.active::after { width: 60%; }
.navbar .dropdown-menu {
  background: var(--primary-dark);
  border: 1px solid var(--glass-border);
  border-radius: 12px; padding: 12px; margin-top: 8px;
  box-shadow: var(--glass-shadow); min-width: 220px;
}
.navbar .dropdown-item {
  color: rgba(255, 255, 255, 0.8);
  padding: 8px 14px; border-radius: 8px;
  font-size: 0.88rem; transition: var(--transition-fast);
}
.navbar .dropdown-item:hover { background: rgba(201, 168, 76, 0.12); color: var(--gold); }
.navbar-toggler { border: none; padding: 6px; }
.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(255, 255, 255, 0.85)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.btn-nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--primary-dark) !important;
  font-weight: 600; padding: 10px 24px !important;
  border-radius: 8px !important;
  transition: var(--transition-fast) !important;
}
.btn-nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px var(--gold-glow); }

/* ---------- Buttons ---------- */
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--primary-dark); font-weight: 600;
  padding: 14px 36px; border-radius: 8px; border: none;
  font-size: 1rem; display: inline-flex; align-items: center; gap: 8px;
  transition: var(--transition-fast); position: relative; overflow: hidden;
}
.btn-gold::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  opacity: 0; transition: var(--transition-fast);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 8px 30px var(--gold-glow); color: var(--primary-dark); }
.btn-gold:hover::before { opacity: 1; }
.btn-gold span, .btn-gold i { position: relative; z-index: 1; }
.btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: var(--white); padding: 13px 36px; border-radius: 8px;
  font-weight: 600; font-size: 1rem; transition: var(--transition-fast);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline-light:hover { background: var(--white); color: var(--primary-dark); border-color: var(--white); transform: translateY(-3px); }

/* ---------- Hero Section ---------- */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  background: linear-gradient(160deg, var(--primary-dark) 0%, var(--primary-navy) 50%, var(--primary-blue) 100%);
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(201,168,76,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(26,58,92,0.5) 0%, transparent 50%);
  z-index: 1;
}
.hero::after {
  content: ''; position: absolute; top: -50%; right: -20%;
  width: 800px; height: 800px;
  border: 1px solid rgba(201,168,76,0.08);
  border-radius: 50%; z-index: 1;
}
.hero-particles { position: absolute; inset: 0; z-index: 1; overflow: hidden; }
.hero-particles .particle {
  position: absolute; width: 4px; height: 4px;
  background: var(--gold); border-radius: 50%; opacity: 0.3;
  animation: float-particle 15s infinite ease-in-out;
}
@keyframes float-particle {
  0%, 100% { transform: translateY(0) translateX(0); opacity: 0.3; }
  25% { transform: translateY(-30px) translateX(15px); opacity: 0.6; }
  50% { transform: translateY(-15px) translateX(-10px); opacity: 0.2; }
  75% { transform: translateY(-40px) translateX(20px); opacity: 0.5; }
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.25);
  color: var(--gold); padding: 8px 20px; border-radius: 50px;
  font-size: 0.85rem; font-weight: 500; margin-bottom: 24px;
  backdrop-filter: blur(8px);
}
.hero-badge i { font-size: 0.75rem; }
.hero h1 { font-size: 3.75rem; font-weight: 800; color: var(--white); line-height: 1.15; margin-bottom: 24px; }
.hero h1 .highlight { color: var(--gold); position: relative; }
.hero h1 .highlight::after {
  content: ''; position: absolute; bottom: 4px; left: 0;
  width: 100%; height: 12px; background: rgba(201,168,76,0.2);
  border-radius: 4px; z-index: -1;
}
.hero .lead { font-size: 1.2rem; color: rgba(255,255,255,0.75); max-width: 560px; margin-bottom: 40px; line-height: 1.8; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-image { position: relative; z-index: 2; }
.hero-image .hero-img-frame { position: relative; border-radius: 20px; overflow: hidden; box-shadow: 0 30px 60px rgba(0,0,0,0.35); }
.hero-image .hero-img-frame img { border-radius: 20px; }
.hero-image .hero-img-frame::before {
  content: ''; position: absolute; inset: 0;
  border: 1px solid rgba(201,168,76,0.2); border-radius: 20px;
  z-index: 2; pointer-events: none;
}
.hero-float-card {
  position: absolute; background: var(--glass-bg);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border); border-radius: 14px;
  padding: 16px 20px; z-index: 3;
  animation: hero-float 6s ease-in-out infinite;
}
.hero-float-card.card-1 { bottom: 30px; left: -30px; }
.hero-float-card.card-2 { top: 30px; right: -20px; animation-delay: -3s; }
@keyframes hero-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.hero-float-card .card-icon {
  width: 42px; height: 42px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--white); margin-bottom: 8px;
}
.hero-float-card .card-icon.gold-bg { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--primary-dark); }
.hero-float-card .card-icon.blue-bg { background: var(--primary-medium); }
.hero-float-card h6 { color: var(--white); font-size: 0.8rem; margin-bottom: 2px; }
.hero-float-card small { color: var(--gold); font-size: 0.75rem; font-weight: 600; }
.hero-scroll {
  position: absolute; bottom: 30px; left: 50%;
  transform: translateX(-50%); z-index: 3; text-align: center;
}
.hero-scroll a { color: rgba(255,255,255,0.5); font-size: 0.75rem; display: flex; flex-direction: column; align-items: center; gap: 6px; }
.hero-scroll a .mouse {
  width: 24px; height: 38px; border: 2px solid rgba(255,255,255,0.3);
  border-radius: 12px; position: relative;
}
.hero-scroll a .mouse::after {
  content: ''; width: 4px; height: 8px; background: var(--gold);
  border-radius: 2px; position: absolute; top: 6px; left: 50%;
  transform: translateX(-50%); animation: scroll-anim 2s infinite;
}
@keyframes scroll-anim {
  0% { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

/* ---------- Statistics ---------- */
.stats-section { background: var(--white); position: relative; z-index: 5; margin-top: -50px; }
.stat-card {
  background: var(--white); border-radius: 16px; padding: 36px 24px;
  text-align: center; box-shadow: 0 10px 40px rgba(0,0,0,0.06);
  border: 1px solid var(--light-gray); transition: var(--transition-smooth);
  position: relative; overflow: hidden;
}
.stat-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0); transition: var(--transition-smooth); transform-origin: left;
}
.stat-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,0.1); }
.stat-card:hover::before { transform: scaleX(1); }
.stat-card .stat-icon {
  width: 64px; height: 64px; border-radius: 16px;
  background: linear-gradient(135deg, rgba(201,168,76,0.1), rgba(201,168,76,0.05));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; font-size: 1.5rem; color: var(--gold);
  transition: var(--transition-fast);
}
.stat-card:hover .stat-icon { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--white); transform: scale(1.1) rotate(-5deg); }
.stat-card .stat-number { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 800; color: var(--primary-dark); line-height: 1; margin-bottom: 6px; }
.stat-card .stat-label { font-size: 0.9rem; color: var(--gray); font-weight: 500; }

/* ---------- About Preview ---------- */
.about-preview .about-image-wrapper { position: relative; }
.about-preview .about-image-wrapper img { border-radius: 16px; box-shadow: 0 20px 50px rgba(0,0,0,0.12); }
.about-preview .experience-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--primary-dark); padding: 24px; border-radius: 16px;
  text-align: center; box-shadow: 0 10px 30px var(--gold-glow);
}
.about-preview .experience-badge .number { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 800; line-height: 1; }
.about-preview .experience-badge .text { font-size: 0.85rem; font-weight: 600; }
.about-preview .about-list { list-style: none; padding: 0; }
.about-preview .about-list li { display: flex; align-items: flex-start; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--light-gray); }
.about-preview .about-list li:last-child { border-bottom: none; }
.about-preview .about-list li i { color: var(--gold); font-size: 1.1rem; margin-top: 3px; flex-shrink: 0; }
.about-preview .about-list li strong { color: var(--primary-dark); }

/* ---------- Founder Message ---------- */
.founder-section { position: relative; }
.founder-section::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  background: radial-gradient(ellipse at 0% 50%, rgba(201,168,76,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.founder-card { display: flex; align-items: center; gap: 50px; }
.founder-card .founder-image { flex-shrink: 0; position: relative; }
.founder-card .founder-image img {
  width: 280px; height: 320px; border-radius: 20px;
  object-fit: cover; border: 3px solid rgba(201,168,76,0.3);
}
.founder-card .founder-image .founder-quote {
  position: absolute; bottom: -20px; right: -20px;
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 16px; display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: var(--primary-dark); box-shadow: 0 8px 24px var(--gold-glow);
}
.founder-card .founder-quote-text { position: relative; padding-left: 24px; border-left: 3px solid var(--gold); }
.founder-card .founder-quote-text blockquote { font-family: var(--font-heading); font-size: 1.3rem; font-style: italic; color: rgba(255,255,255,0.9); line-height: 1.7; margin-bottom: 20px; }
.founder-card .founder-name { font-family: var(--font-heading); font-size: 1.2rem; color: var(--white); margin-bottom: 4px; }
.founder-card .founder-title { color: var(--gold); font-size: 0.9rem; font-weight: 500; }

/* ---------- Core Services ---------- */
.service-card {
  background: var(--white); border-radius: 16px; padding: 40px 28px;
  text-align: center; border: 1px solid var(--light-gray);
  transition: var(--transition-smooth); position: relative;
  overflow: hidden; height: 100%;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(160deg, var(--primary-dark) 0%, var(--primary-navy) 100%);
  opacity: 0; transition: var(--transition-smooth); z-index: 0;
}
.service-card:hover { transform: translateY(-10px); box-shadow: 0 20px 50px rgba(0,0,0,0.12); }
.service-card:hover::before { opacity: 1; }
.service-card > * { position: relative; z-index: 1; }
.service-card .service-icon {
  width: 80px; height: 80px; border-radius: 20px;
  background: linear-gradient(135deg, rgba(201,168,76,0.12), rgba(201,168,76,0.05));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-size: 2rem; color: var(--gold);
  transition: var(--transition-bounce);
}
.service-card:hover .service-icon { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--primary-dark); transform: scale(1.1) rotate(-5deg); }
.service-card h4 { font-size: 1.2rem; margin-bottom: 12px; transition: var(--transition-fast); }
.service-card:hover h4 { color: var(--white); }
.service-card p { font-size: 0.92rem; color: var(--gray); margin-bottom: 20px; transition: var(--transition-fast); }
.service-card:hover p { color: rgba(255,255,255,0.7); }
.service-card .service-link { color: var(--gold); font-weight: 600; font-size: 0.9rem; display: inline-flex; align-items: center; gap: 6px; transition: var(--transition-fast); }
.service-card .service-link i { transition: var(--transition-fast); }
.service-card:hover .service-link { color: var(--gold-light); }
.service-card:hover .service-link i { transform: translateX(4px); }

/* ---------- Why Choose Us ---------- */
.why-us-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px; padding: 32px; transition: var(--transition-smooth);
  backdrop-filter: blur(8px); height: 100%;
}
.why-us-card:hover { background: rgba(255,255,255,0.1); border-color: rgba(201,168,76,0.3); transform: translateY(-6px); }
.why-us-card .icon-wrap {
  width: 56px; height: 56px; border-radius: 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--primary-dark); margin-bottom: 18px;
}
.why-us-card h5 { color: var(--white); font-size: 1.1rem; margin-bottom: 10px; }
.why-us-card p { color: rgba(255,255,255,0.65); font-size: 0.9rem; margin-bottom: 0; }

/* ---------- Human Rights (ISSUE #2 FIX: proper contrast) ---------- */
/* Cards on dark section use why-us-card (white text) */
/* Cards on light section use hr-card-light (dark text) */
.hr-card-light {
  background: var(--white); border: 1px solid var(--light-gray);
  border-radius: 16px; padding: 32px; transition: var(--transition-smooth);
  box-shadow: 0 6px 20px rgba(0,0,0,0.04); height: 100%;
}
.hr-card-light:hover { transform: translateY(-6px); box-shadow: 0 12px 30px rgba(0,0,0,0.08); border-color: rgba(201,168,76,0.3); }
.hr-card-light .icon-wrap {
  width: 56px; height: 56px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(201,168,76,0.12), rgba(201,168,76,0.06));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--gold); margin-bottom: 18px;
}
.hr-card-light:hover .icon-wrap { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--primary-dark); }
.hr-card-light h5 { color: var(--primary-dark); font-size: 1.1rem; margin-bottom: 10px; }
.hr-card-light p { color: var(--gray); font-size: 0.9rem; margin-bottom: 0; }

/* ---------- Women Empowerment ---------- */
.empowerment-card {
  background: var(--white); border-radius: 16px; overflow: hidden;
  border: 1px solid var(--light-gray); transition: var(--transition-smooth); height: 100%;
}
.empowerment-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,0.1); }
.empowerment-card .card-image { position: relative; overflow: hidden; height: 220px; }
.empowerment-card .card-image img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition-smooth); }
.empowerment-card:hover .card-image img { transform: scale(1.08); }
.empowerment-card .card-image .card-tag {
  position: absolute; top: 14px; left: 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--primary-dark); padding: 4px 14px; border-radius: 6px;
  font-size: 0.78rem; font-weight: 600;
}
.empowerment-card .card-body { padding: 24px; }
.empowerment-card .card-body h5 { font-size: 1.1rem; margin-bottom: 10px; }
.empowerment-card .card-body p { font-size: 0.9rem; color: var(--gray); }

/* ---------- Testimonials (Bootstrap 5 Carousel) ---------- */
.testimonials-carousel .carousel-inner { padding: 10px 0; }
.testimonials-carousel .carousel-control-prev,
.testimonials-carousel .carousel-control-next {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%; top: 50%;
  transform: translateY(-50%);
  opacity: 0.9; z-index: 5;
}
.testimonials-carousel .carousel-control-prev { left: -24px; }
.testimonials-carousel .carousel-control-next { right: -24px; }
.testimonials-carousel .carousel-control-prev-icon,
.testimonials-carousel .carousel-control-next-icon { width: 16px; height: 16px; }
.testimonials-carousel .carousel-indicators {
  position: relative; margin-top: 20px;
  bottom: auto; margin-left: auto; margin-right: auto;
}
.testimonials-carousel .carousel-indicators [data-bs-target] {
  width: 12px; height: 12px; border-radius: 50%;
  background-color: var(--gray); border: none;
  transition: var(--transition-fast);
}
.testimonials-carousel .carousel-indicators .active {
  background-color: var(--gold); width: 32px; border-radius: 6px;
}
.testimonial-card {
  background: var(--white); border-radius: 16px; padding: 36px;
  box-shadow: 0 6px 30px rgba(0,0,0,0.05); border: 1px solid var(--light-gray);
  position: relative; height: 100%; margin: 0 12px;
}
.testimonial-card::before {
  content: '\201C'; position: absolute; top: 16px; right: 24px;
  font-family: var(--font-heading); font-size: 5rem; line-height: 1;
  color: rgba(201,168,76,0.15);
}
.testimonial-card .stars { color: var(--gold); margin-bottom: 14px; font-size: 0.85rem; }
.testimonial-card .quote { font-size: 0.95rem; color: var(--dark-gray); font-style: italic; margin-bottom: 20px; line-height: 1.8; }
.testimonial-card .author { display: flex; align-items: center; gap: 12px; }
.testimonial-card .author .avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-navy), var(--primary-medium));
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-weight: 700; font-size: 1rem;
  overflow: hidden; flex-shrink: 0;
}
.testimonial-card .author .avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.testimonial-card .author .name { font-weight: 600; color: var(--primary-dark); font-size: 0.95rem; }
.testimonial-card .author .role { font-size: 0.8rem; color: var(--gray); }

/* ---------- Latest Blogs ---------- */
.blog-card {
  background: var(--white); border-radius: 16px; overflow: hidden;
  border: 1px solid var(--light-gray); transition: var(--transition-smooth); height: 100%;
}
.blog-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,0.1); }
.blog-card .blog-image { position: relative; overflow: hidden; height: 200px; }
.blog-card .blog-image img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition-smooth); }
.blog-card:hover .blog-image img { transform: scale(1.08); }
.blog-card .blog-image .blog-date {
  position: absolute; bottom: 14px; left: 14px;
  background: var(--primary-dark); color: var(--white);
  padding: 6px 14px; border-radius: 8px; font-size: 0.78rem; font-weight: 500;
}
.blog-card .blog-image .blog-category {
  position: absolute; top: 14px; left: 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--primary-dark); padding: 4px 12px; border-radius: 6px;
  font-size: 0.75rem; font-weight: 600; text-transform: uppercase;
}
.blog-card .blog-body { padding: 24px; }
.blog-card .blog-body h5 { font-size: 1.1rem; margin-bottom: 10px; line-height: 1.4; }
.blog-card .blog-body h5 a { color: var(--primary-dark); transition: var(--transition-fast); }
.blog-card .blog-body h5 a:hover { color: var(--gold); }
.blog-card .blog-body p { font-size: 0.9rem; color: var(--gray); margin-bottom: 16px; }
.blog-card .blog-body .blog-meta {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; border-top: 1px solid var(--light-gray);
  font-size: 0.8rem; color: var(--gray);
}
.blog-card .blog-body .blog-meta a { color: var(--gold); font-weight: 600; }
.blog-card .blog-body .blog-meta a:hover { color: var(--gold-dark); }

/* ---------- Events ---------- */
.event-card {
  background: var(--white); border-radius: 16px; overflow: hidden;
  border: 1px solid var(--light-gray); transition: var(--transition-smooth);
  display: flex; height: 100%;
}
.event-card:hover { transform: translateY(-6px); box-shadow: 0 15px 40px rgba(0,0,0,0.08); }
.event-card .event-date-box {
  flex-shrink: 0; width: 100px;
  background: linear-gradient(160deg, var(--primary-dark), var(--primary-navy));
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--white);
}
.event-card .event-date-box .day { font-family: var(--font-heading); font-size: 2.2rem; font-weight: 800; line-height: 1; color: var(--gold); }
.event-card .event-date-box .month { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,0.7); }
.event-card .event-info { padding: 24px; flex: 1; }
.event-card .event-info .event-type {
  display: inline-block; background: rgba(201,168,76,0.1);
  color: var(--gold-dark); padding: 3px 12px; border-radius: 6px;
  font-size: 0.75rem; font-weight: 600; margin-bottom: 10px;
}
.event-card .event-info h5 { font-size: 1.05rem; margin-bottom: 8px; }
.event-card .event-info h5 a { color: var(--primary-dark); text-decoration: none; transition: var(--transition-fast); }
.event-card .event-info h5 a:hover { color: var(--gold); }
.event-card .event-info p { font-size: 0.88rem; color: var(--gray); margin-bottom: 12px; }
.event-card .event-info .event-meta { font-size: 0.8rem; color: var(--gray); display: flex; gap: 16px; flex-wrap: wrap; }
.event-card .event-info .event-meta i { color: var(--gold); margin-right: 4px; }

/* ---------- CTA Section ---------- */
.cta-section { position: relative; overflow: hidden; }
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(201,168,76,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.cta-section h2 { font-size: 2.75rem; color: var(--white); margin-bottom: 20px; }
.cta-section p { color: rgba(255,255,255,0.75); font-size: 1.1rem; max-width: 560px; margin: 0 auto 36px; }

/* ---------- Footer ---------- */
.footer { background: var(--primary-dark); padding-top: 80px; }
.footer h5 { color: var(--white); font-size: 1.1rem; margin-bottom: 24px; position: relative; padding-bottom: 12px; }
.footer h5::after { content: ''; position: absolute; left: 0; bottom: 0; width: 35px; height: 3px; background: var(--gold); border-radius: 2px; }
.footer p { color: rgba(255,255,255,0.6); font-size: 0.9rem; line-height: 1.8; }
.footer .footer-about p { margin-bottom: 20px; }
.footer .footer-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.6);
  margin-right: 8px; transition: var(--transition-fast); font-size: 0.9rem;
}
.footer .footer-social a:hover { background: var(--gold); color: var(--primary-dark); transform: translateY(-3px); }
.footer .footer-links { list-style: none; padding: 0; }
.footer .footer-links li { margin-bottom: 10px; }
.footer .footer-links li a {
  color: rgba(255,255,255,0.6); font-size: 0.9rem;
  display: flex; align-items: center; gap: 8px;
  transition: var(--transition-fast);
}
.footer .footer-links li a::before {
  content: '\f105'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
  font-size: 0.75rem; color: var(--gold);
}
.footer .footer-links li a:hover { color: var(--gold); transform: translateX(4px); }
.footer .contact-item { display: flex; gap: 14px; margin-bottom: 18px; color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.footer .contact-item i {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(201,168,76,0.1); display: flex; align-items: center; justify-content: center;
  color: var(--gold); flex-shrink: 0; font-size: 0.85rem;
}
.footer .footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 20px 0; margin-top: 40px; }
.footer .footer-bottom p { font-size: 0.85rem; margin-bottom: 0; }
.footer .footer-bottom .footer-bottom-links a { color: rgba(255,255,255,0.5); font-size: 0.85rem; margin-left: 16px; }
.footer .footer-bottom .footer-bottom-links a:hover { color: var(--gold); }

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  background: linear-gradient(160deg, var(--primary-dark) 0%, var(--primary-navy) 100%);
  padding: 140px 0 80px; text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 80%, rgba(201,168,76,0.06) 0%, transparent 60%);
}
.page-hero h1 { font-size: 3rem; color: var(--white); position: relative; z-index: 1; }
.page-hero .breadcrumb { position: relative; z-index: 1; }
.page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.3); }
.page-hero .breadcrumb-item a { color: var(--gold); }
.page-hero .breadcrumb-item.active { color: rgba(255,255,255,0.6); }

/* ---------- Legal Content ---------- */
.legal-content h2 { font-size: 1.6rem; margin: 2rem 0 1rem; color: var(--primary-dark); }
.legal-content h3 { font-size: 1.25rem; margin: 1.5rem 0 0.75rem; color: var(--primary-dark); }
.legal-content p { margin-bottom: 1rem; color: var(--dark-gray); line-height: 1.8; }
.legal-content ul, .legal-content ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-content li { margin-bottom: 0.5rem; color: var(--dark-gray); line-height: 1.7; }

/* ---------- Real Image Styles ---------- */
.real-img { width: 100%; object-fit: cover; border-radius: inherit; }
.real-img-cover { width: 100%; height: 100%; object-fit: cover; }
.img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,22,40,0.1) 0%, rgba(10,22,40,0.3) 100%);
  pointer-events: none; border-radius: inherit;
}

/* ---------- Scroll Animations ---------- */
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(0.9); transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* ---------- Back to Top ---------- */
.back-to-top {
  position: fixed; bottom: 30px; right: 30px;
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--primary-dark); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; z-index: 999; opacity: 0; visibility: hidden;
  transform: translateY(20px); transition: var(--transition-smooth);
  cursor: pointer; border: none; box-shadow: 0 4px 20px var(--gold-glow);
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-4px); box-shadow: 0 8px 30px var(--gold-glow); }

/* ---------- Glassmorphism Utility ---------- */
.glass { background: var(--glass-bg); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid var(--glass-border); border-radius: 16px; }

/* ---------- WordPress Comment Styles ---------- */
.comment-list { list-style: none; padding: 0; }
.comment-list .comment {
  padding: 24px; background: var(--off-white); border-radius: 12px;
  margin-bottom: 16px;
}
.comment-list .comment .comment-author img { border-radius: 50%; margin-right: 12px; }
.comment-list .comment .comment-metadata { font-size: 0.85rem; color: var(--gray); margin-bottom: 12px; }
.comment-list .comment .comment-content { line-height: 1.8; }
.comment-respond { margin-top: 2rem; }
.comment-respond .comment-form label { font-weight: 600; font-size: 0.9rem; color: var(--primary-dark); display: block; margin-bottom: 6px; }
.comment-respond .comment-form input[type="text"],
.comment-respond .comment-form input[type="email"],
.comment-respond .comment-form textarea {
  width: 100%; padding: 12px 16px; border: 1px solid var(--light-gray);
  border-radius: 10px; font-size: 0.95rem; transition: var(--transition-fast);
}
.comment-respond .comment-form input:focus,
.comment-respond .comment-form textarea:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,0.15); outline: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 1199px) {
  .hero h1 { font-size: 3rem; }
  .section-title h2 { font-size: 2.25rem; }
  .cta-section h2 { font-size: 2.25rem; }
}
@media (max-width: 991px) {
  :root { --section-padding: 70px 0; }
  .hero { min-height: auto; padding: 120px 0 80px; }
  .hero h1 { font-size: 2.5rem; }
  .hero .hero-image { margin-top: 40px; }
  .stats-section { margin-top: -30px; }
  .founder-card { flex-direction: column; text-align: center; }
  .founder-card .founder-quote-text { border-left: none; padding-left: 0; border-top: 3px solid var(--gold); padding-top: 24px; }
  .hero-scroll { display: none; }
  .hero-float-card { display: none; }
  .testimonials-carousel .carousel-control-prev { left: 0; }
  .testimonials-carousel .carousel-control-next { right: 0; }
}
@media (max-width: 767px) {
  :root { --section-padding: 60px 0; }
  .section-title h2 { font-size: 1.85rem; }
  .section-title { margin-bottom: 40px; }
  .hero h1 { font-size: 2rem; }
  .hero .lead { font-size: 1rem; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn-gold, .hero-btns .btn-outline-light { width: 100%; justify-content: center; }
  .page-hero { padding: 120px 0 50px; }
  .page-hero h1 { font-size: 2rem; }
  .stat-card { padding: 24px 16px; }
  .stat-card .stat-number { font-size: 2rem; }
  .event-card { flex-direction: column; }
  .event-card .event-date-box { width: 100%; flex-direction: row; gap: 8px; padding: 12px; }
  .event-card .event-date-box .day { font-size: 1.5rem; }
  .cta-section h2 { font-size: 1.85rem; }
  .footer h5::after { left: 0; }
  .testimonial-card { margin: 0 8px; padding: 24px; }
  .testimonial-card::before { font-size: 3rem; }
}
@media (max-width: 575px) {
  .hero h1 { font-size: 1.75rem; }
  .stat-card .stat-number { font-size: 1.75rem; }
  .about-preview .experience-badge { bottom: -10px; right: 10px; padding: 16px; }
  .about-preview .experience-badge .number { font-size: 1.8rem; }
  /* Testimonials: show 1 per slide on mobile */
  .testimonials-carousel .carousel-inner .col-lg-4:nth-child(n+2) { display: none; }
}
@media (min-width: 768px) and (max-width: 991px) {
  /* Testimonials: show 2 per slide on tablet */
  .testimonials-carousel .carousel-inner .col-lg-4:nth-child(3) { display: none; }
}

.fa-hands-holding-heart:before {
    content: "\f4be";
}

.fa-venus-shield:before {
    content: "\f221";
}