/* ========================================================
   ASWO Website — Main Stylesheet
   Fonts: Abril Fatface (headings) + Lato (body)
   Palette: Emerald Green (#059669) + Warm Amber (#f59e0b)
   Developed by DusiCode — www.dusicode.com
   ======================================================== */

:root {
  /* ── Primary: Emerald Green ─────────────────── */
  --primary:        #059669;
  --primary-dark:   #047857;
  --primary-deep:   #065f46;
  --primary-light:  #d1fae5;
  --primary-glow:   rgba(5, 150, 105, 0.22);

  /* ── Secondary: Warm Amber (complementary) ──── */
  --secondary:      #f59e0b;
  --secondary-dark: #d97706;
  --secondary-light:#fef3c7;

  /* ── Darks (deep forest greens) ─────────────── */
  --dark:           #0c1a12;
  --dark-2:         #0f2d1a;
  --dark-3:         #071510;

  /* ── Neutrals ───────────────────────────────── */
  --text:           #1f2d24;
  --text-muted:     #6b7280;
  --white:          #ffffff;
  --light-bg:       #f0fdf4;
  --border:         #bbf7d0;

  /* ── Shadows ─────────────────────────────────  */
  --card-shadow:       0 2px 20px rgba(5, 150, 105, 0.07);
  --card-shadow-hover: 0 16px 48px rgba(5, 150, 105, 0.18);

  /* ── Typography ───────────────────────────────  */
  --font-heading: 'Abril Fatface', serif;
  --font-body:    'Lato', sans-serif;
}

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

html { overflow-x: hidden; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: #fff;
  line-height: 1.65;
  overflow-x: clip;
}

/* ── Headings → Abril Fatface ──────────────────── */
h1, h2, h3, h4, h5, h6,
.section-title,
.section-title-light,
.hero-title,
.hero-stat-num,
.theme-card-title,
.brand-name,
.card-title-link,
.team-name,
.stat-number,
.page-banner h1,
.footer-heading,
.comment-author {
  font-family: var(--font-heading) !important;
}

/* ══════════════════════════════════════════════════
   LIVE BANNER
══════════════════════════════════════════════════ */
.live-banner { background: linear-gradient(90deg, #dc2626, #991b1b); z-index: 9999; }
.live-dot {
  display: inline-block; width: 10px; height: 10px;
  background: #fff; border-radius: 50%; animation: blink 1.2s infinite;
}
.live-dot-sm {
  display: inline-block; width: 8px; height: 8px;
  background: #ef4444; border-radius: 50%; animation: blink 1.2s infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(1.4); }
}

/* ══════════════════════════════════════════════════
   TOP BAR
══════════════════════════════════════════════════ */
.topbar {
  background: var(--dark);
  color: #9ca3af;
  font-size: 0.8rem;
  padding: 8px 0;
}
.topbar-contact i { color: var(--primary); }
.topbar-social a {
  color: #6b7280; margin-left: 14px;
  text-decoration: none; transition: color 0.2s; font-size: 0.85rem;
}
.topbar-social a:hover { color: var(--secondary); }

/* ══════════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════════ */
#mainNav {
  background: #fff;
  box-shadow: 0 2px 20px rgba(5, 150, 105, 0.08);
  padding: 0;
  transition: all 0.35s cubic-bezier(0.23,1,0.32,1);
  border-bottom: 2px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1030;
}
#mainNav.scrolled {
  box-shadow: 0 6px 36px rgba(5, 150, 105, 0.18);
  border-bottom-color: var(--primary-light);
}
#mainNav.scrolled .navbar-inner { padding: 4px 0; }
#mainNav.scrolled .site-logo-img { height: 42px; }
#mainNav.scrolled .brand-logo-circle { width: 40px; height: 40px; border-radius: 10px; }
#mainNav.scrolled .brand-name { font-size: 0.95rem; }
.navbar-inner { padding: 10px 0; transition: padding 0.35s cubic-bezier(0.23,1,0.32,1); }
.site-logo-img { transition: height 0.35s cubic-bezier(0.23,1,0.32,1); }
.brand-logo-circle { transition: all 0.35s cubic-bezier(0.23,1,0.32,1); }

/* Logo */
.site-logo-img { height: 54px; width: auto; object-fit: contain; }
.brand-logo-circle {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.brand-logo-sm { width: 40px; height: 40px; border-radius: 10px; }
.brand-initials { color: #fff; font-weight: 800; font-size: 0.72rem; text-align: center; line-height: 1; }
.brand-name {
  font-family: var(--font-heading) !important;
  font-size: 1.05rem; color: var(--dark); line-height: 1.2;
}
.brand-sub { font-size: 0.68rem; color: var(--primary); font-weight: 700; letter-spacing: 0.5px; }

/* Nav links */
.navbar-nav .nav-link,
.navbar-nav .nav-link.dropdown-toggle-custom {
  color: #1f2d24 !important;
  font-weight: 700; font-size: 0.875rem;
  padding: 10px 14px !important;
  transition: color 0.2s;
  position: relative;
  display: flex; align-items: center; gap: 4px;
  font-family: var(--font-body);
}
.navbar-nav .nav-link::after,
.navbar-nav .nav-link.dropdown-toggle-custom::after {
  content: ''; position: absolute;
  bottom: 4px; left: 14px; right: 14px; height: 2px;
  background: var(--primary); border-radius: 2px;
  transform: scaleX(0); transition: transform 0.25s;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.dropdown-toggle-custom:hover { color: var(--primary) !important; }
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.dropdown-toggle-custom:hover::after { transform: scaleX(1); }

/* Suppress Bootstrap caret */
.dropdown-toggle-custom::before { display: none !important; }
.navbar-nav .dropdown > .dropdown-toggle-custom::after { display: none !important; }
.dropdown-toggle::after { display: none !important; }

/* Chevron */
.nav-chevron {
  font-size: 0.6rem; color: #9ca3af;
  transition: transform 0.25s, color 0.2s; margin-left: 2px;
}
.dropdown.show > .nav-link .nav-chevron,
.dropdown.show > .dropdown-toggle-custom .nav-chevron {
  transform: rotate(180deg); color: var(--primary);
}

/* Dropdown menu */
.dropdown-menu {
  border: none;
  box-shadow: 0 12px 48px rgba(5, 150, 105, 0.16);
  border-radius: 18px; padding: 12px;
  border-top: 3px solid var(--primary);
  margin-top: 6px;
  animation: dropFade 0.2s ease;
}
@keyframes dropFade {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.dropdown-item {
  border-radius: 10px; padding: 9px 16px;
  font-size: 0.855rem; font-weight: 700; color: #1f2d24;
  transition: all 0.18s; font-family: var(--font-body);
}
.dropdown-item:hover { background: var(--primary-light); color: var(--primary-dark); padding-left: 22px; }

/* ══════════════════════════════════════════════════
   NAVBAR CONTACT BUTTON — Amber accent
══════════════════════════════════════════════════ */
.nav-contact-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  color: #fff !important;
  border-radius: 50px; padding: 10px 24px;
  font-weight: 700; font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.23,1,0.32,1);
  box-shadow: 0 4px 18px rgba(245, 158, 11, 0.35);
  position: relative; overflow: hidden;
  font-family: var(--font-body);
}
.nav-contact-btn::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.18), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.nav-contact-btn:hover {
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245, 158, 11, 0.5);
}
.nav-contact-btn:hover::before { opacity: 1; }
.nav-contact-btn i { font-size: 0.8rem; }

/* ══════════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════════ */
.btn-primary-aswo {
  background: var(--primary); color: #fff; border: none;
  border-radius: 50px; padding: 11px 30px;
  font-weight: 700; font-size: 0.875rem;
  transition: all 0.3s; text-decoration: none; display: inline-block;
  font-family: var(--font-body);
}
.btn-primary-aswo:hover {
  background: var(--primary-dark); color: #fff;
  transform: translateY(-2px); box-shadow: 0 10px 28px var(--primary-glow);
}
.btn-secondary-aswo {
  background: transparent; color: var(--primary);
  border: 2px solid var(--primary); border-radius: 50px;
  padding: 9px 28px; font-weight: 700; font-size: 0.875rem;
  transition: all 0.3s; text-decoration: none; display: inline-block;
  font-family: var(--font-body);
}
.btn-secondary-aswo:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }
.btn-amber-aswo {
  background: var(--secondary); color: #fff; border: none;
  border-radius: 50px; padding: 11px 30px; font-weight: 700; font-size: 0.875rem;
  transition: all 0.3s; text-decoration: none; display: inline-block;
  font-family: var(--font-body);
  box-shadow: 0 4px 16px rgba(245,158,11,0.3);
}
.btn-amber-aswo:hover { background: var(--secondary-dark); color: #fff; transform: translateY(-2px); }
.btn-green-aswo {
  background: var(--primary); color: #fff; border: none;
  border-radius: 50px; padding: 11px 30px; font-weight: 700; font-size: 0.875rem;
  transition: all 0.3s; text-decoration: none; display: inline-block;
  font-family: var(--font-body);
}
.btn-green-aswo:hover { background: var(--primary-dark); color: #fff; transform: translateY(-2px); }
.btn-outline-white {
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,0.55); border-radius: 50px; padding: 10px 28px;
  font-weight: 700; font-size: 0.875rem; transition: all 0.3s;
  text-decoration: none; display: inline-block; font-family: var(--font-body);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.14); border-color: #fff; color: #fff; }

/* ══════════════════════════════════════════════════
   PAGE BANNER
══════════════════════════════════════════════════ */
.page-banner {
  background: linear-gradient(140deg, var(--dark) 0%, var(--dark-2) 60%, #0e3320 100%);
  padding: 80px 0; position: relative; overflow: hidden;
}
.page-banner::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23059669' fill-opacity='0.06'%3E%3Ccircle cx='40' cy='40' r='3'/%3E%3C/g%3E%3C/svg%3E");
}
.page-banner-img { position: absolute; inset: 0; object-fit: cover; width: 100%; height: 100%; opacity: 0.15; }
.page-banner-content { position: relative; z-index: 1; }
.page-banner h1 { font-size: 2.6rem; font-weight: 400; color: #fff; }
.page-banner .breadcrumb { background: none; padding: 0; margin: 8px 0 0; }
.page-banner .breadcrumb-item,
.page-banner .breadcrumb-item a { color: rgba(255,255,255,0.6); font-size: 0.875rem; }
.page-banner .breadcrumb-item.active { color: var(--secondary); }
.page-banner .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.3); }

/* ══════════════════════════════════════════════════
   SECTION LABELS & TITLES
══════════════════════════════════════════════════ */
.section-label {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--primary); display: block; margin-bottom: 10px;
  font-family: var(--font-body);
}
.section-title       { font-size: 2.2rem; color: var(--dark);  line-height: 1.2; }
.section-title-light { font-size: 2.2rem; color: #fff;          line-height: 1.2; }
.section-divider {
  width: 52px; height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 2px; margin: 14px 0 20px;
}

/* ══════════════════════════════════════════════════
   HERO SECTION
══════════════════════════════════════════════════ */
.hero-section {
  min-height: 94vh;
  background: linear-gradient(140deg, var(--dark) 0%, var(--dark-2) 55%, #0e3a1a 100%);
  position: relative; display: flex; align-items: center; overflow: hidden;
}
.hero-section::after {
  content: ''; position: absolute;
  bottom: -1px; left: 0; right: 0; height: 90px;
  background: #fff; clip-path: ellipse(55% 100% at 50% 100%);
}
.hero-bg-pattern {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 15% 50%, rgba(5,150,105,0.18) 0%, transparent 45%),
    radial-gradient(circle at 80% 20%, rgba(245,158,11,0.10) 0%, transparent 40%),
    radial-gradient(circle at 55% 85%, rgba(5,150,105,0.07) 0%, transparent 35%);
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
  background: rgba(5,150,105,0.18); border: 1px solid rgba(5,150,105,0.4);
  color: #6ee7b7; padding: 7px 18px; border-radius: 50px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  display: inline-block; margin-bottom: 22px; font-family: var(--font-body);
}
.hero-title {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 400;  /* Abril Fatface uses weight 400 */
  color: #fff; line-height: 1.15; margin-bottom: 22px;
}
.hero-title span { color: #6ee7b7; }
.hero-title em    { font-style: normal; color: var(--secondary); }
.hero-desc {
  font-size: 1.05rem; color: rgba(255,255,255,0.7);
  margin-bottom: 36px; max-width: 520px; line-height: 1.8;
}
.hero-stats { display: flex; gap: 36px; margin-top: 52px; flex-wrap: wrap; }
.hero-stat-num { font-size: 2rem; color: var(--secondary); line-height: 1; }
.hero-stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.5); font-weight: 700; margin-top: 4px; text-transform: uppercase; letter-spacing: 0.5px; }
.hero-stat-divider { width: 1px; background: rgba(255,255,255,0.1); align-self: stretch; }
.hero-image-block { position: relative; z-index: 2; }
.hero-image-wrapper {
  border-radius: 28px; overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
  border: 3px solid rgba(5,150,105,0.2);
}
.hero-image-wrapper img { width: 100%; height: 490px; object-fit: cover; }
.hero-floating-card {
  position: absolute; bottom: -18px; left: -28px;
  background: #fff; border-radius: 18px; padding: 16px 22px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15); min-width: 190px;
  border-left: 4px solid var(--primary);
}
.hero-floating-card-2 {
  position: absolute; top: -18px; right: -28px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 18px; padding: 16px 22px;
  box-shadow: 0 16px 40px rgba(5,150,105,0.45); min-width: 170px;
}

/* ══════════════════════════════════════════════════
   AOS OVERRIDES
══════════════════════════════════════════════════ */
[data-aos] { transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1) !important; }

/* ══════════════════════════════════════════════════
   THEMATIC AREA CARDS
══════════════════════════════════════════════════ */
.themes-section { background: #fff; }
.theme-card {
  background: #fff; border-radius: 20px; padding: 0;
  box-shadow: var(--card-shadow); transition: all 0.35s cubic-bezier(0.23,1,0.32,1);
  border: 1px solid var(--border); height: 100%; text-decoration: none; display: block; overflow: hidden;
}
.theme-card:hover { transform: translateY(-10px); box-shadow: var(--card-shadow-hover); border-color: var(--primary); text-decoration: none; }
.theme-card-header { padding: 28px 24px 20px; background: var(--primary-light); position: relative; overflow: hidden; }
.theme-card-header::after {
  content: ''; position: absolute; bottom: -20px; right: -20px;
  width: 80px; height: 80px; border-radius: 50%; background: rgba(5,150,105,0.10);
}
.theme-icon {
  width: 64px; height: 64px; background: #fff; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem; color: var(--primary);
  box-shadow: 0 4px 16px rgba(5,150,105,0.15); position: relative; z-index: 1;
}
.theme-card:hover .theme-card-header { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); }
.theme-card:hover .theme-icon { background: rgba(255,255,255,0.18); color: #fff; box-shadow: none; }
.theme-card-body { padding: 20px 24px 24px; }
.theme-card-title { font-size: 1.05rem; color: var(--dark); margin-bottom: 8px; }
.theme-card-desc { font-size: 0.85rem; color: #4b5563; line-height: 1.65; }
.theme-explore-link {
  margin-top: 14px; color: var(--primary); font-size: 0.82rem; font-weight: 700;
  display: flex; align-items: center; gap: 6px; transition: gap 0.2s;
}
.theme-card:hover .theme-explore-link { gap: 10px; }

/* ══════════════════════════════════════════════════
   CONTENT CARDS
══════════════════════════════════════════════════ */
.aswo-card {
  background: #fff; border-radius: 18px; overflow: hidden;
  box-shadow: var(--card-shadow); transition: all 0.35s ease;
  border: 1px solid var(--border); height: 100%;
}
.aswo-card:hover { transform: translateY(-8px); box-shadow: var(--card-shadow-hover); border-color: var(--primary-light); }
.aswo-card-img { width: 100%; height: 230px; object-fit: cover; transition: transform 0.45s; }
.aswo-card:hover .aswo-card-img { transform: scale(1.05); }
.aswo-card-img-wrapper { overflow: hidden; }
.aswo-card-placeholder {
  height: 200px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
}
.aswo-card-body { padding: 22px; }
.card-tag {
  display: inline-block; background: var(--primary-light); color: var(--primary-dark);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase;
  padding: 4px 12px; border-radius: 50px; margin-bottom: 10px;
  font-family: var(--font-body);
}
.card-tag-green { background: var(--secondary-light); color: var(--secondary-dark); }
.card-title-link {
  font-size: 1.05rem; color: var(--dark); text-decoration: none;
  display: block; margin-bottom: 8px; line-height: 1.35; transition: color 0.2s;
}
.card-title-link:hover { color: var(--primary); }
.card-excerpt { font-size: 0.875rem; color: #4b5563; line-height: 1.65; }
.card-meta { font-size: 0.78rem; color: var(--text-muted); display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.card-meta i { color: var(--primary); }

/* ══════════════════════════════════════════════════
   PURPOSE / OBJECTIVES SECTION
══════════════════════════════════════════════════ */
.purpose-section {
  background: linear-gradient(140deg, var(--dark) 0%, var(--dark-2) 100%);
  position: relative; overflow: hidden;
}
.purpose-section::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(5,150,105,0.13) 0%, transparent 70%); border-radius: 50%;
}
.objective-item {
  display: flex; align-items: flex-start; gap: 18px;
  padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative; z-index: 1;
}
.objective-icon {
  width: 46px; height: 46px; background: rgba(5,150,105,0.18);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  color: #6ee7b7; font-size: 1rem; flex-shrink: 0; margin-top: 2px; transition: all 0.3s;
}
.objective-item:hover .objective-icon { background: var(--primary); color: #fff; }
.objective-text { font-size: 0.92rem; color: rgba(255,255,255,0.75); line-height: 1.7; }

/* ══════════════════════════════════════════════════
   STATS STRIP
══════════════════════════════════════════════════ */
.stats-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, #065f46 100%);
  padding: 70px 0; position: relative; overflow: hidden;
}
.stats-section::before {
  content: ''; position: absolute; inset: 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='%23fff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/svg%3E");
}
.stat-item { text-align: center; position: relative; z-index: 1; }
.stat-number { font-size: 3rem; color: #fff; line-height: 1; display: block; }
.stat-suffix { font-size: 2rem; }
.stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.7); font-weight: 700; margin-top: 10px; letter-spacing: 0.5px; }
.stat-icon { font-size: 1.5rem; color: rgba(255,255,255,0.25); margin-bottom: 10px; }

/* ══════════════════════════════════════════════════
   IMAGE SHOWCASE
══════════════════════════════════════════════════ */
.image-showcase { position: relative; overflow: hidden; border-radius: 20px; box-shadow: 0 24px 60px rgba(0,0,0,0.2); }
.image-showcase img { width: 100%; height: 100%; object-fit: cover; }
.image-showcase-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(12,26,18,0.85) 0%, transparent 55%); }
.image-showcase-label { position: absolute; bottom: 20px; left: 20px; color: #fff; z-index: 2; }
.image-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.image-grid-item { border-radius: 16px; overflow: hidden; }
.image-grid-item img { width: 100%; height: 200px; object-fit: cover; transition: transform 0.4s; }
.image-grid-item:hover img { transform: scale(1.05); }
.image-grid-item:first-child { grid-row: span 2; }
.image-grid-item:first-child img { height: 100%; min-height: 416px; }

/* ══════════════════════════════════════════════════
   CTA STRIP
══════════════════════════════════════════════════ */
.cta-strip {
  min-height: 400px;
  background: linear-gradient(135deg, var(--primary-deep) 0%, var(--primary) 50%, var(--dark-2) 100%);
  position: relative; overflow: hidden; display: flex; align-items: center;
}
.cta-strip-bg { position: absolute; inset: 0; background-size: cover; background-position: center; background-attachment: fixed; opacity: 0.12; }
.cta-strip-pattern {
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 0 L100 50 L50 100 L0 50Z' fill='none' stroke='%23fff' stroke-opacity='0.04' stroke-width='1'/%3E%3C/svg%3E") repeat;
}

/* ══════════════════════════════════════════════════
   GALLERY
══════════════════════════════════════════════════ */
.gallery-item { border-radius: 14px; overflow: hidden; position: relative; display: block; aspect-ratio: 1; box-shadow: var(--card-shadow); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.gallery-overlay {
  position: absolute; inset: 0; background: rgba(5,150,105,0.75);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s; color: #fff; font-size: 1.8rem;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ══════════════════════════════════════════════════
   TEAM
══════════════════════════════════════════════════ */
.team-card {
  text-align: center; padding: 36px 20px 28px;
  background: #fff; border-radius: 20px;
  box-shadow: var(--card-shadow); transition: all 0.3s; border: 1px solid var(--border);
}
.team-card:hover { transform: translateY(-8px); box-shadow: var(--card-shadow-hover); border-color: var(--primary); }
.team-avatar {
  width: 110px; height: 110px; border-radius: 50%; object-fit: cover;
  border: 4px solid var(--primary-light); margin: 0 auto 18px; display: block; transition: border-color 0.3s;
}
.team-avatar-placeholder {
  width: 110px; height: 110px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
  margin: 0 auto 18px; display: flex; align-items: center; justify-content: center;
  border: 4px solid var(--primary-light); font-size: 2.2rem; color: var(--primary);
}
.team-card:hover .team-avatar { border-color: var(--primary); }
.team-name { font-size: 1.05rem; color: var(--dark); margin-bottom: 4px; }
.team-title { font-size: 0.82rem; color: var(--primary); font-weight: 700; margin-bottom: 12px; letter-spacing: 0.3px; font-family: var(--font-body); }
.team-bio { font-size: 0.84rem; color: #4b5563; line-height: 1.65; margin-bottom: 16px; }
.team-social a {
  display: inline-flex; width: 34px; height: 34px; background: var(--light-bg); border-radius: 10px;
  align-items: center; justify-content: center; color: #374151; text-decoration: none; margin: 0 3px;
  font-size: 0.8rem; transition: all 0.2s; border: 1px solid var(--border);
}
.team-social a:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ══════════════════════════════════════════════════
   NEWSLETTER
══════════════════════════════════════════════════ */
.newsletter-section { background: var(--light-bg); }
.newsletter-box {
  background: linear-gradient(140deg, var(--dark) 0%, var(--dark-2) 100%);
  border: 1px solid rgba(5,150,105,0.25); position: relative; overflow: hidden;
}
.newsletter-box::before {
  content: ''; position: absolute; top: -50px; right: -50px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(5,150,105,0.18) 0%, transparent 70%); border-radius: 50%;
}
.newsletter-input { max-width: 420px; border-radius: 50px; border: none; padding: 13px 26px; font-size: 0.9rem; font-family: var(--font-body); }
.newsletter-input:focus { outline: none; box-shadow: 0 0 0 3px var(--primary-glow); }

/* ══════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════ */
.footer { background: var(--dark); border-top: 3px solid var(--primary); }
.footer-logo-img { height: 52px; width: auto; object-fit: contain; filter: brightness(0) invert(1); opacity: 0.9; }
.footer-heading {
  color: var(--secondary); font-family: var(--font-body) !important;
  font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2.5px; margin-bottom: 18px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.875rem; font-weight: 400;
  transition: all 0.2s; display: flex; align-items: center; gap: 8px;
}
.footer-links a::before { content: '›'; color: var(--primary); font-size: 1.1rem; line-height: 1; }
.footer-links a:hover { color: #6ee7b7; padding-left: 4px; }
.footer-contact li { color: rgba(255,255,255,0.6); font-size: 0.875rem; margin-bottom: 14px; display: flex; align-items: flex-start; gap: 12px; }
.footer-contact-icon {
  width: 36px; height: 36px; background: rgba(5,150,105,0.18);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  color: var(--primary); font-size: 0.85rem; flex-shrink: 0; margin-top: 1px;
}
.footer-social a {
  display: inline-flex; width: 38px; height: 38px; background: rgba(255,255,255,0.06);
  border-radius: 10px; align-items: center; justify-content: center; color: #9ca3af;
  text-decoration: none; margin-right: 8px; transition: all 0.25s; font-size: 0.9rem;
  border: 1px solid rgba(255,255,255,0.07);
}
.footer-social a:hover { background: var(--primary); color: #fff; border-color: var(--primary); transform: translateY(-3px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); }
.footer-divider { height: 1px; background: rgba(255,255,255,0.05); margin: 0; }
.dusicode-credit { color: rgba(255,255,255,0.4); }
.dusicode-credit a { color: var(--secondary); text-decoration: none; font-weight: 700; transition: color 0.2s; }
.dusicode-credit a:hover { color: #fcd34d; }

/* ══════════════════════════════════════════════════
   BLOG
══════════════════════════════════════════════════ */
.blog-content { line-height: 1.9; font-size: 1.02rem; }
.blog-content img { max-width: 100%; border-radius: 14px; margin: 24px 0; }
.blog-content h2, .blog-content h3 { color: var(--dark); margin-top: 36px; font-family: var(--font-heading); }
.blog-content blockquote {
  border-left: 4px solid var(--primary); background: var(--primary-light);
  padding: 18px 26px; border-radius: 0 14px 14px 0;
  font-style: italic; margin: 28px 0; color: var(--primary-deep);
}
.comment-item { background: var(--light-bg); border-radius: 14px; padding: 22px; margin-bottom: 16px; border: 1px solid var(--border); }
.comment-date { font-size: 0.78rem; color: var(--text-muted); }

/* ══════════════════════════════════════════════════
   RESOURCE CARD
══════════════════════════════════════════════════ */
.resource-card {
  background: #fff; border-radius: 18px; padding: 26px;
  box-shadow: var(--card-shadow); display: flex; gap: 18px; align-items: flex-start;
  transition: all 0.3s; border: 1px solid var(--border);
}
.resource-card:hover { transform: translateY(-4px); box-shadow: var(--card-shadow-hover); border-color: var(--primary-light); }
.resource-icon { width: 58px; height: 58px; background: var(--primary-light); border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--primary); flex-shrink: 0; }
.resource-icon.doc { background: var(--secondary-light); color: var(--secondary-dark); }

/* ══════════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════════ */
.faq-item .accordion-button { font-weight: 700; font-size: 0.95rem; color: var(--dark); background: #fff; border-radius: 12px !important; font-family: var(--font-heading); }
.faq-item .accordion-button:not(.collapsed) { background: var(--primary-light); color: var(--primary-dark); box-shadow: none; }
.faq-item .accordion-item { border-radius: 14px !important; margin-bottom: 12px; border: 1px solid var(--border) !important; overflow: hidden; }

/* ══════════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════════ */
.contact-section { background: var(--light-bg); }
.contact-form-card {
  background: #fff; border-radius: 24px; padding: 48px;
  box-shadow: 0 8px 48px rgba(5,150,105,0.10); border: 1px solid var(--border);
}
.contact-info-panel {
  background: linear-gradient(160deg, var(--dark) 0%, var(--dark-2) 60%, #0e3320 100%);
  border-radius: 24px; padding: 44px 36px; height: 100%; position: relative; overflow: hidden;
}
.contact-info-panel::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(5,150,105,0.2) 0%, transparent 70%); border-radius: 50%;
}
.contact-info-item { display: flex; gap: 18px; align-items: flex-start; margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,0.07); position: relative; z-index: 1; }
.contact-info-icon { width: 52px; height: 52px; background: rgba(5,150,105,0.2); border-radius: 14px; display: flex; align-items: center; justify-content: center; color: #6ee7b7; font-size: 1.1rem; flex-shrink: 0; border: 1px solid rgba(5,150,105,0.25); }
.contact-map-embed { border-radius: 20px; overflow: hidden; border: 3px solid var(--border); box-shadow: var(--card-shadow); }
.form-control, .form-select {
  border-radius: 12px; border: 1.5px solid var(--border);
  padding: 13px 18px; font-size: 0.9rem; transition: border-color 0.2s;
  font-family: var(--font-body); background: var(--light-bg);
}
.form-control:focus, .form-select:focus { border-color: var(--primary); background: #fff; box-shadow: 0 0 0 4px rgba(5,150,105,0.10); }
.form-label { font-weight: 700; font-size: 0.875rem; color: var(--dark); margin-bottom: 6px; }

/* ══════════════════════════════════════════════════
   PAGINATION
══════════════════════════════════════════════════ */
.pagination .page-link { border-radius: 10px; border: 1px solid var(--border); margin: 0 3px; color: var(--dark); font-weight: 700; transition: all 0.2s; }
.pagination .page-item.active .page-link { background: var(--primary); border-color: var(--primary); color: #fff; box-shadow: 0 4px 14px var(--primary-glow); }
.pagination .page-link:hover { background: var(--primary-light); color: var(--primary); border-color: var(--primary-light); }

/* ══════════════════════════════════════════════════
   UTILITIES
══════════════════════════════════════════════════ */
.bg-primary-light   { background: var(--primary-light); }
.text-primary-aswo  { color: var(--primary) !important; }
.text-secondary-aswo{ color: var(--secondary) !important; }
.rounded-xl         { border-radius: 16px !important; }
.rounded-2xl        { border-radius: 24px !important; }
.fw-700             { font-weight: 700 !important; }
.fw-800             { font-weight: 800 !important; }
.bg-light-aswo      { background: var(--light-bg) !important; }

/* ══════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════ */
@media (max-width: 991px) {
  .hero-section { min-height: auto; padding: 90px 0 130px; }
  .hero-image-block { margin-top: 52px; }
  .hero-floating-card, .hero-floating-card-2 { display: none; }
  .section-title, .section-title-light { font-size: 1.8rem; }
  .contact-form-card { padding: 28px; }
  .nav-contact-btn { margin-top: 12px; display: inline-flex; }
}
@media (max-width: 576px) {
  .hero-title { font-size: 2rem; }
  .page-banner h1 { font-size: 1.9rem; }
  .stat-number { font-size: 2.2rem; }
  .contact-info-panel { padding: 28px 22px; }
  .image-grid { grid-template-columns: 1fr; }
  .image-grid-item:first-child img { min-height: 240px; }
}

/* ══════════════════════════════════════════════════
   ENHANCED THEME CARD (theme_list page)
══════════════════════════════════════════════════ */
.theme-card-full {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border);
  transition: all 0.35s cubic-bezier(0.23,1,0.32,1);
}
.theme-card-full:hover {
  transform: translateY(-10px);
  box-shadow: var(--card-shadow-hover);
  border-color: var(--primary);
}
.theme-card-full-header {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: linear-gradient(140deg, var(--dark) 0%, var(--dark-2) 100%);
}
.theme-card-full-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.theme-card-full:hover .theme-card-full-img { transform: scale(1.07); }
.theme-card-full-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(140deg, var(--primary-deep) 0%, var(--primary) 50%, var(--dark-2) 100%);
  opacity: 0.9;
}
.theme-card-full-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12,26,18,0.75) 0%, transparent 55%);
}
.theme-card-full-icon {
  position: absolute; top: 24px; left: 24px;
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: #fff;
  transition: all 0.3s;
}
.theme-card-full:hover .theme-card-full-icon {
  background: var(--primary);
  border-color: var(--primary);
}
.theme-card-full-num {
  position: absolute; bottom: 20px; right: 24px;
  font-family: var(--font-heading) !important;
  font-size: 3rem; color: rgba(255,255,255,0.1);
  line-height: 1; user-select: none;
}
.theme-card-full-body {
  padding: 24px 26px 28px;
}
.theme-card-full-title {
  font-family: var(--font-heading) !important;
  font-size: 1.2rem; color: var(--dark);
  margin-bottom: 10px; line-height: 1.3;
  transition: color 0.2s;
}
.theme-card-full:hover .theme-card-full-title { color: var(--primary); }
.theme-card-full-desc {
  font-size: 0.875rem; color: #4b5563; line-height: 1.7; margin-bottom: 16px;
}
.theme-card-full-meta {
  font-size: 0.78rem; color: #6b7280; margin-bottom: 14px; font-weight: 700;
}
.theme-card-full-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.84rem; font-weight: 700; color: var(--primary);
  transition: gap 0.2s;
}
.theme-card-full:hover .theme-card-full-link { gap: 12px; }

/* ══════════════════════════════════════════════════
   BLOG DETAIL SIDEBAR
══════════════════════════════════════════════════ */
.sidebar-card {
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: var(--card-shadow);
  overflow: hidden;
}
.sidebar-card-header {
  padding: 14px 20px;
  font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  background: var(--light-bg);
  color: var(--dark);
  border-bottom: 1px solid var(--border);
}
.sidebar-card-body { padding: 18px 20px; }

/* Related post hover */
.related-post-item { transition: background 0.2s; }
.related-post-item:hover { background: var(--light-bg); }
.related-post-item:hover .fw-700 { color: var(--primary) !important; }

/* Category sidebar items */
.sidebar-cat-item {
  font-size: 0.875rem; font-weight: 600;
  color: #374151; transition: all 0.18s;
}
.sidebar-cat-item:hover { background: var(--light-bg); color: var(--primary); padding-left: 20px !important; }

/* Comment avatar bubble */
.comment-avatar {
  display: inline-flex; width: 28px; height: 28px;
  background: var(--primary-light); border-radius: 50%;
  align-items: center; justify-content: center;
  color: var(--primary); font-size: 0.7rem;
  margin-right: 8px; flex-shrink: 0;
}

/* Share buttons - inline strip */
.share-btn {
  display: inline-flex; align-items: center; gap: 7px;
  color: #fff; border-radius: 8px; padding: 7px 14px;
  font-size: 0.78rem; font-weight: 700; text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
  font-family: var(--font-body);
}
.share-btn:hover { opacity: 0.88; transform: translateY(-2px); color: #fff; }

/* Share buttons - sidebar icons only */
.share-btn-lg {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 10px;
  color: #fff; font-size: 0.9rem; text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}
.share-btn-lg:hover { opacity: 0.85; transform: translateY(-3px); color: #fff; }

/* Newsletter input inside dark sidebar card */
.sidebar-card input::placeholder { color: rgba(255,255,255,0.4) !important; }
.sidebar-card input[style*="rgba"] { color: #fff !important; }
.sidebar-card input[style*="rgba"]:focus {
  background: rgba(255,255,255,0.12) !important;
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 3px rgba(5,150,105,0.2) !important;
  outline: none;
}

/* ── Video embed (16:9 responsive iframe) ── */
.video-embed-wrapper {
  position: relative; width: 100%; padding-bottom: 56.25%;
  border-radius: 16px; overflow: hidden; background: #000;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}
.video-embed-wrapper iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
}

/* ── Click-to-play video thumbnail (list cards) ── */
.vthumb-trigger {
  position: relative; display: block; height: 230px; overflow: hidden;
  cursor: pointer; border-radius: 0;
}
.aswo-card .vthumb-trigger { border-radius: 0; }
.vthumb-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.45s ease;
  display: block;
}
.vthumb-trigger:hover .vthumb-img { transform: scale(1.05); }

/* Platform-branded placeholder backgrounds */
.vthumb-platform {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
}
.vthumb-fb      { background: linear-gradient(135deg, #1877f2 0%, #0d5fba 100%); }
.vthumb-vimeo   { background: linear-gradient(135deg, #1ab7ea 0%, #00adef 100%); }
.vthumb-generic { background: linear-gradient(135deg, #059669 0%, #0f2d1a 100%); }
.vthumb-platform-icon     { font-size: 2.6rem; color: #fff; opacity: 0.92; }
.vthumb-platform-label    { color: #fff; font-size: 0.82rem; font-weight: 600; opacity: 0.85; letter-spacing: 0.5px; }
.vthumb-platform-icon-lg  { font-size: 4rem; }
.vthumb-platform-label-lg { font-size: 1rem; }
.vthumb-platform-detail   { height: 380px; }

/* Dark overlay (sits between image and play button) */
.vthumb-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.28);
  transition: background 0.25s;
  pointer-events: none;
}
.vthumb-trigger:hover .vthumb-overlay { background: rgba(0,0,0,0.42); }

/* Circular play button */
.vthumb-play-btn {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 58px; height: 58px;
  background: rgba(5,150,105,0.92);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.3rem; padding-left: 4px;
  transition: transform 0.22s ease, background 0.22s;
  box-shadow: 0 4px 22px rgba(0,0,0,0.35);
  z-index: 2;
}
.vthumb-trigger:hover .vthumb-play-btn {
  transform: translate(-50%, -50%) scale(1.12);
  background: var(--primary);
}
.vthumb-play-btn-lg {
  width: 78px; height: 78px; font-size: 1.9rem; padding-left: 5px;
}

/* ── Detail page click-to-play ── */
.vthumb-detail {
  height: auto; border-radius: 16px; margin-bottom: 2rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}
.vthumb-detail-img {
  width: 100%; max-height: 420px; object-fit: cover; display: block;
  transition: transform 0.45s ease;
}
.vthumb-detail:hover .vthumb-detail-img { transform: scale(1.02); }

/* Iframe injected after click on detail page */
.vthumb-iframe-detail {
  width: 100%; aspect-ratio: 16/9; border: 0; border-radius: 16px; display: block;
  margin-bottom: 2rem; box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}

/* Plain video placeholder (no YouTube thumb available) — kept for legacy */
.video-card-placeholder {
  background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
  transition: opacity 0.2s;
}
.video-card-placeholder:hover { opacity: 0.88; }

/* Generic card placeholder (icon only, no image/video) */
.aswo-card-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
}
