/* ===== SWEAR TRUST - Main Stylesheet ===== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Open+Sans:wght@300;400;500;600&display=swap');

:root {
  --primary: #1a7a4a;
  --secondary: #2ecc71;
  --accent: #f39c12;
  --dark: #0d3d24;
  --light: #f0faf5;
  --text: #2c3e50;
  --text-light: #7f8c8d;
  --white: #ffffff;
  --shadow: 0 4px 20px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.15);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s ease;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Open Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

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

/* ===== PRELOADER ===== */
#preloader {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: var(--dark); z-index: 99999;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.5s;
}
.preloader-inner { text-align: center; }
.preloader-logo { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 800; color: var(--white); letter-spacing: 4px; }
.preloader-logo span { color: var(--secondary); }
.preloader-bar { width: 200px; height: 4px; background: rgba(255,255,255,0.2); border-radius: 2px; margin: 16px auto 0; overflow: hidden; }
.preloader-bar-inner { height: 100%; background: var(--secondary); border-radius: 2px; animation: loading 1.5s ease infinite; }
@keyframes loading { 0%{width:0} 50%{width:70%} 100%{width:100%} }

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--dark);
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.top-bar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.top-bar a { color: rgba(255,255,255,0.85); text-decoration: none; transition: var(--transition); }
.top-bar a:hover { color: var(--secondary); }
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 20px; }
.top-bar i { margin-right: 5px; color: var(--secondary); }
.social-mini { display: flex; gap: 10px; }
.social-mini a { width: 26px; height: 26px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; }
.social-mini a:hover { background: var(--secondary); color: var(--dark); }

/* ===== HEADER ===== */
header {
  background: var(--primary);
  position: sticky; top: 0; z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
  transition: var(--transition);
}
header.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.3); }

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0; gap: 20px;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.logo-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 900; font-size: 1.1rem;
  color: var(--dark); letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(46,204,113,0.4);
  flex-shrink: 0;
}
.logo-img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; }
.logo-text .site-name {
  font-family: var(--font-heading); font-weight: 800;
  font-size: 1.5rem; color: var(--white); letter-spacing: 2px;
  line-height: 1;
}
.logo-text .site-tagline { font-size: 0.65rem; color: rgba(255,255,255,0.7); letter-spacing: 0.5px; margin-top: 3px; }

/* Navigation */
nav { display: flex; align-items: center; }
.nav-menu { list-style: none; display: flex; align-items: center; gap: 4px; }
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  display: flex; align-items: center; gap: 5px;
  padding: 10px 16px;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 0.88rem; font-weight: 500;
  border-radius: 8px;
  transition: var(--transition);
  letter-spacing: 0.3px;
}
.nav-menu > li > a:hover,
.nav-menu > li.active > a {
  background: rgba(255,255,255,0.15);
  color: var(--white);
}
.nav-menu > li > a .arrow { font-size: 0.65rem; transition: var(--transition); }
.nav-menu > li:hover > a .arrow { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  opacity: 0; visibility: hidden; transform: translateY(-10px);
  transition: var(--transition);
  border-top: 3px solid var(--secondary);
  overflow: hidden;
}
.nav-menu > li:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li a {
  display: block; padding: 11px 20px;
  color: var(--text); text-decoration: none;
  font-size: 0.87rem; transition: var(--transition);
  border-bottom: 1px solid #f0f0f0;
}
.dropdown li:last-child a { border-bottom: none; }
.dropdown li a:hover { background: var(--light); color: var(--primary); padding-left: 26px; }

/* Mobile hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px; background: none; border: none;
}
.hamburger span { width: 26px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); display: block; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO SLIDER ===== */
.hero-slider { position: relative; overflow: hidden; height: 600px; }
.slide {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  opacity: 0; transition: opacity 0.8s ease;
}
.slide.active { opacity: 1; }
.slide-bg {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background-size: cover; background-position: center;
}
.slide-overlay {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(13,61,36,0.88) 0%, rgba(26,122,74,0.6) 100%);
}
.slide-content {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: flex-start;
  height: 100%; padding: 0;
}
.slide-text { max-width: 640px; }
.slide-badge {
  display: inline-block;
  background: rgba(46,204,113,0.2);
  border: 1px solid rgba(46,204,113,0.5);
  color: var(--secondary);
  font-size: 0.78rem; font-weight: 600; letter-spacing: 2px;
  padding: 6px 16px; border-radius: 30px;
  margin-bottom: 20px; text-transform: uppercase;
}
.slide-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800; color: var(--white);
  line-height: 1.2; margin-bottom: 20px;
}
.slide-title span { color: var(--secondary); }
.slide-subtitle { font-size: 1.05rem; color: rgba(255,255,255,0.85); margin-bottom: 36px; max-width: 500px; }
.slide-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 50px;
  font-family: var(--font-heading); font-weight: 600;
  font-size: 0.9rem; text-decoration: none;
  transition: var(--transition); cursor: pointer; border: 2px solid transparent;
  letter-spacing: 0.5px;
}
.btn-primary { background: var(--secondary); color: var(--dark); }
.btn-primary:hover { background: #27ae60; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(46,204,113,0.4); }
.btn-outline { background: transparent; border-color: rgba(255,255,255,0.6); color: var(--white); }
.btn-outline:hover { background: rgba(255,255,255,0.15); border-color: var(--white); }
.btn-accent { background: var(--accent); color: var(--white); }
.btn-accent:hover { background: #e67e22; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(243,156,18,0.4); }
.btn-dark { background: var(--dark); color: var(--white); border-color: var(--dark); }
.btn-dark:hover { background: #0a2d1a; transform: translateY(-2px); }

/* Slider controls */
.slider-controls {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 10;
}
.slider-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.4); cursor: pointer;
  transition: var(--transition); border: none;
}
.slider-dot.active { background: var(--secondary); width: 30px; border-radius: 5px; }
.slider-arrows { position: absolute; top: 50%; transform: translateY(-50%); width: 100%; display: flex; justify-content: space-between; padding: 0 20px; z-index: 10; }
.slider-arrow {
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3);
  color: var(--white); font-size: 1.1rem; cursor: pointer;
  transition: var(--transition); display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(4px);
}
.slider-arrow:hover { background: var(--secondary); color: var(--dark); border-color: var(--secondary); }

/* ===== CONTAINER ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 90px 0; }
.section-sm { padding: 60px 0; }

/* ===== SECTION HEADINGS ===== */
.section-head { text-align: center; margin-bottom: 60px; }
.section-badge {
  display: inline-block;
  background: var(--light);
  color: var(--primary); font-weight: 600;
  font-size: 0.78rem; letter-spacing: 2px;
  padding: 6px 18px; border-radius: 30px;
  text-transform: uppercase; margin-bottom: 16px;
  border: 1px solid rgba(26,122,74,0.2);
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800; color: var(--text);
  line-height: 1.2; margin-bottom: 16px;
}
.section-title span { color: var(--primary); }
.section-line {
  width: 60px; height: 4px; border-radius: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  margin: 0 auto 20px;
}
.section-subtitle { color: var(--text-light); font-size: 1rem; max-width: 600px; margin: 0 auto; }

/* Section align left */
.section-head.left { text-align: left; }
.section-head.left .section-line { margin-left: 0; }

/* ===== HIGHLIGHTS / STATS ===== */
.highlights-section {
  background: linear-gradient(135deg, var(--primary), var(--dark));
  color: var(--white); padding: 60px 0;
}
.highlights-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 30px; }
.highlight-card { text-align: center; }
.highlight-icon {
  width: 70px; height: 70px; border-radius: 50%;
  background: rgba(255,255,255,0.12); margin: 0 auto 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: var(--secondary);
  border: 1px solid rgba(255,255,255,0.15);
}
.highlight-value {
  font-family: var(--font-heading); font-size: 2.4rem;
  font-weight: 800; color: var(--white);
}
.highlight-title { font-size: 0.88rem; color: rgba(255,255,255,0.7); margin-top: 6px; }

/* ===== ABOUT SECTION ===== */
.about-section { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-image-wrap { position: relative; }
.about-image-main { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.about-badge-float {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--primary); color: var(--white);
  padding: 20px 24px; border-radius: var(--radius);
  text-align: center; box-shadow: var(--shadow-lg);
}
.about-badge-float .num { font-family: var(--font-heading); font-size: 2rem; font-weight: 800; color: var(--secondary); }
.about-badge-float .label { font-size: 0.78rem; opacity: 0.85; margin-top: 4px; }
.about-content .lead { font-size: 1.1rem; color: var(--text); margin-bottom: 20px; }
.about-goals { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 28px 0; }
.about-goal {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 14px; background: var(--light); border-radius: 10px;
  border-left: 3px solid var(--secondary);
}
.about-goal i { color: var(--primary); font-size: 1rem; margin-top: 2px; }
.about-goal span { font-size: 0.87rem; color: var(--text); }

/* ===== PROGRAMS / CARDS ===== */
.programs-section { background: #f9fffe; }
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }
.program-card {
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); overflow: hidden;
  transition: var(--transition); border: 1px solid #f0f0f0;
}
.program-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.card-icon-wrap {
  padding: 36px 30px 20px;
  background: linear-gradient(135deg, var(--light), #fff);
}
.card-icon {
  width: 64px; height: 64px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem; margin-bottom: 18px;
}
.card-icon.green { background: rgba(26,122,74,0.1); color: var(--primary); }
.card-icon.blue { background: rgba(52,152,219,0.1); color: #3498db; }
.card-icon.orange { background: rgba(243,156,18,0.1); color: var(--accent); }
.card-icon.teal { background: rgba(26,188,156,0.1); color: #1abc9c; }
.card-icon.purple { background: rgba(155,89,182,0.1); color: #9b59b6; }
.card-icon.red { background: rgba(231,76,60,0.1); color: #e74c3c; }
.card-title { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.card-text { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; }
.card-body { padding: 0 30px 30px; }
.card-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--primary); font-size: 0.85rem; font-weight: 600;
  text-decoration: none; margin-top: 16px;
  transition: var(--transition);
}
.card-link:hover { gap: 10px; color: var(--secondary); }

/* ===== SDG SECTION ===== */
.sdg-section { background: var(--dark); padding: 80px 0; }
.sdg-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 16px; margin-top: 40px; }
.sdg-item {
  aspect-ratio: 1; border-radius: var(--radius);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--white); font-family: var(--font-heading); font-weight: 700;
  font-size: 1.1rem; cursor: pointer; transition: var(--transition);
  text-align: center; padding: 10px;
}
.sdg-item:hover { transform: scale(1.05); box-shadow: 0 8px 25px rgba(0,0,0,0.3); }
.sdg-item span { font-size: 0.65rem; font-weight: 400; margin-top: 4px; opacity: 0.9; }
.sdg-6 { background: linear-gradient(135deg, #26bde2, #19a5c9); }
.sdg-7 { background: linear-gradient(135deg, #fcc30b, #e5af0a); }
.sdg-8 { background: linear-gradient(135deg, #a21942, #8a1538); }
.sdg-11 { background: linear-gradient(135deg, #fd9d24, #e88c1f); }
.sdg-12 { background: linear-gradient(135deg, #bf8b2e, #a87828); }
.sdg-13 { background: linear-gradient(135deg, #3f7e44, #356840); }
.sdg-14 { background: linear-gradient(135deg, #0a97d9, #0884be); }
.sdg-15 { background: linear-gradient(135deg, #56c02b, #49a724); }

/* ===== GALLERY ===== */
.gallery-section { background: var(--white); }
.gallery-filter { display: flex; gap: 10px; margin-bottom: 36px; flex-wrap: wrap; }
.filter-btn {
  padding: 8px 20px; border-radius: 30px; border: 2px solid #ddd;
  background: none; cursor: pointer; font-size: 0.85rem; font-weight: 600;
  transition: var(--transition); color: var(--text-light);
}
.filter-btn.active, .filter-btn:hover { background: var(--primary); border-color: var(--primary); color: var(--white); }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.gallery-item { position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer; }
.gallery-item img { width: 100%; height: 240px; object-fit: cover; transition: transform 0.5s ease; display: block; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to top, rgba(13,61,36,0.85), transparent);
  opacity: 0; transition: var(--transition);
  display: flex; align-items: flex-end; padding: 20px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-info { color: var(--white); }
.gallery-info h4 { font-family: var(--font-heading); font-size: 0.95rem; font-weight: 700; }
.gallery-info p { font-size: 0.78rem; opacity: 0.8; margin-top: 4px; }
.gallery-zoom {
  position: absolute; top: 14px; right: 14px;
  width: 36px; height: 36px; background: rgba(255,255,255,0.2);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 0.9rem; opacity: 0; transition: var(--transition);
  backdrop-filter: blur(4px);
}
.gallery-item:hover .gallery-zoom { opacity: 1; }

/* Lightbox */
.lightbox {
  display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.92); z-index: 9999;
  align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.lightbox-close {
  position: absolute; top: 20px; right: 20px;
  width: 46px; height: 46px; background: rgba(255,255,255,0.15);
  border: none; color: var(--white); font-size: 1.4rem; border-radius: 50%;
  cursor: pointer; transition: var(--transition); display: flex; align-items: center; justify-content: center;
}
.lightbox-close:hover { background: rgba(255,255,255,0.3); }
.lightbox-caption { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); color: var(--white); text-align: center; }

/* ===== CONTACT SECTION ===== */
.contact-section { background: var(--light); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 50px; }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-card {
  background: var(--white); padding: 24px;
  border-radius: var(--radius); box-shadow: var(--shadow);
  display: flex; gap: 16px; align-items: flex-start;
  transition: var(--transition);
}
.contact-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.contact-card-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--light); display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--primary); flex-shrink: 0;
}
.contact-card h4 { font-family: var(--font-heading); font-size: 0.9rem; font-weight: 700; margin-bottom: 4px; }
.contact-card p, .contact-card a { font-size: 0.87rem; color: var(--text-light); text-decoration: none; }
.contact-card a:hover { color: var(--primary); }

.contact-form {
  background: var(--white); padding: 40px;
  border-radius: var(--radius-lg); box-shadow: var(--shadow);
}
.contact-form h3 { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 700; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text); margin-bottom: 7px; }
.form-group label .req { color: #e74c3c; margin-left: 3px; }
.form-control {
  width: 100%; padding: 12px 16px;
  border: 2px solid #e8e8e8; border-radius: 10px;
  font-family: var(--font-body); font-size: 0.9rem; color: var(--text);
  transition: var(--transition); background: #fafafa; outline: none;
}
.form-control:focus { border-color: var(--primary); background: var(--white); box-shadow: 0 0 0 3px rgba(26,122,74,0.1); }
textarea.form-control { resize: vertical; min-height: 130px; }
.form-success { display: none; background: #d4edda; color: #155724; padding: 14px 20px; border-radius: 10px; margin-bottom: 16px; }
.form-error { display: none; background: #f8d7da; color: #721c24; padding: 14px 20px; border-radius: 10px; margin-bottom: 16px; }

/* ===== TEAM / BOARD ===== */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 28px; }
.team-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 30px 20px; text-align: center;
  box-shadow: var(--shadow); transition: var(--transition);
  border: 1px solid #f0f0f0;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  margin: 0 auto 16px; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 1.8rem; font-weight: 800; color: var(--white);
}
.team-name { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.team-role { font-size: 0.82rem; color: var(--primary); font-weight: 600; margin-bottom: 6px; }
.team-qual { font-size: 0.78rem; color: var(--text-light); }

/* ===== PAGE BANNER ===== */
.page-banner {
  background: linear-gradient(135deg, var(--dark), var(--primary));
  color: var(--white); padding: 70px 0; text-align: center;
  position: relative; overflow: hidden;
}
.page-banner::before {
  content: ''; position: absolute;
  top: -50%; left: -50%; width: 200%; height: 200%;
  background: radial-gradient(ellipse, rgba(46,204,113,0.12) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}
@keyframes rotate { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }
.page-banner-title { font-family: var(--font-heading); font-size: 2.6rem; font-weight: 800; margin-bottom: 12px; position: relative; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 0.87rem; color: rgba(255,255,255,0.75); position: relative; }
.breadcrumb a { color: var(--secondary); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb-sep { opacity: 0.5; }

/* ===== CONTENT PAGE ===== */
.page-content { padding: 80px 0; }
.content-wrapper { max-width: 860px; margin: 0 auto; }
.content-wrapper h2 { font-family: var(--font-heading); font-size: 1.9rem; font-weight: 800; color: var(--text); margin: 36px 0 16px; }
.content-wrapper h3 { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700; color: var(--primary); margin: 28px 0 12px; }
.content-wrapper p { margin-bottom: 18px; color: var(--text); line-height: 1.85; }
.content-wrapper ul { margin: 16px 0 20px 24px; }
.content-wrapper li { margin-bottom: 10px; color: var(--text); }
.board-member { background: var(--light); padding: 20px 24px; border-radius: 12px; margin-bottom: 14px; border-left: 4px solid var(--secondary); }

/* ===== FOOTER ===== */
footer { background: var(--dark); color: rgba(255,255,255,0.8); }
.footer-main { padding: 70px 0 50px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 50px; }
.footer-brand .logo { margin-bottom: 18px; display: inline-flex; }
.footer-brand p { font-size: 0.87rem; line-height: 1.8; color: rgba(255,255,255,0.65); margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7); font-size: 0.9rem; text-decoration: none;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--secondary); color: var(--dark); border-color: var(--secondary); transform: translateY(-3px); }

.footer-col h4 {
  font-family: var(--font-heading); font-size: 0.95rem; font-weight: 700;
  color: var(--white); margin-bottom: 20px; padding-bottom: 10px;
  border-bottom: 2px solid rgba(46,204,113,0.4);
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.65); text-decoration: none;
  font-size: 0.87rem; transition: var(--transition);
  display: flex; align-items: center; gap: 8px;
}
.footer-links a::before { content: '›'; color: var(--secondary); }
.footer-links a:hover { color: var(--secondary); padding-left: 4px; }

.footer-contact-item { display: flex; gap: 12px; margin-bottom: 14px; align-items: flex-start; }
.footer-contact-item i { color: var(--secondary); font-size: 0.9rem; margin-top: 3px; flex-shrink: 0; }
.footer-contact-item span { font-size: 0.86rem; color: rgba(255,255,255,0.65); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0; display: flex;
  justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.5); }
.footer-bottom a { color: var(--secondary); text-decoration: none; }

/* ===== FLASH MESSAGES ===== */
.flash {
  padding: 14px 20px; border-radius: 10px; margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px; font-size: 0.9rem;
}
.flash-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.flash-error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
.flash-info { background: #d1ecf1; color: #0c5460; border: 1px solid #bee5eb; }

/* ===== BACK TO TOP ===== */
#backToTop {
  position: fixed; bottom: 30px; right: 30px;
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--primary); color: var(--white);
  border: none; cursor: pointer; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg); transition: var(--transition);
  opacity: 0; pointer-events: none; z-index: 1000;
}
#backToTop.visible { opacity: 1; pointer-events: all; }
#backToTop:hover { background: var(--secondary); color: var(--dark); transform: translateY(-4px); }

/* ===== ANIMATIONS ===== */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-left { opacity: 0; transform: translateX(-30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in-left.visible { opacity: 1; transform: translateX(0); }
.fade-in-right { opacity: 0; transform: translateX(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in-right.visible { opacity: 1; transform: translateX(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-goals { grid-template-columns: 1fr; }
  .about-badge-float { right: 0; bottom: -10px; }
}

@media (max-width: 768px) {
  .hero-slider { height: 480px; }
  nav { display: none; position: absolute; top: 100%; left: 0; width: 100%; background: var(--dark); padding: 20px; }
  nav.open { display: block; }
  .nav-menu { flex-direction: column; gap: 0; }
  .nav-menu > li > a { padding: 12px 0; border-radius: 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; margin-top: 0; border-top: none; background: rgba(255,255,255,0.05); border-radius: 0; }
  .dropdown li a { color: rgba(255,255,255,0.75); border-color: rgba(255,255,255,0.05); padding-left: 30px; }
  .hamburger { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .slide-title { font-size: 1.8rem; }
  .top-bar .container { justify-content: center; }
  .top-bar-right { display: none; }
}

@media (max-width: 480px) {
  .hero-slider { height: 400px; }
  .section { padding: 60px 0; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}
