/* =============================================
   KCWU — Premium Redesign
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&family=DM+Sans:wght@300;400;500;600;700&display=swap');

/* ── VARIABLES ── */
:root {
  --blue-900: #08306b;
  --blue-800: #0d3f87;
  --blue-700: #1167b1;
  --blue-400: #4da6ff;
  --gold:     #c9922a;
  --gold-lt:  #f0c060;
  --white:    #ffffff;
  --off-white:#f7f9fc;
  --muted:    #6b7280;
  --text:     #0b2540;
  --container: 1140px;
  --radius:   12px;
  --transition: 260ms cubic-bezier(.4,0,.2,1);
  --shadow-sm: 0 2px 8px rgba(8,48,107,.07);
  --shadow-md: 0 8px 28px rgba(8,48,107,.11);
  --shadow-lg: 0 18px 50px rgba(8,48,107,.15);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; padding: 0;
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { transition: color var(--transition); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }

/* =============================================
   HEADER
   ============================================= */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(8,48,107,0.07);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), background var(--transition);
}
.site-header.scrolled {
  background: rgba(255,255,255,1);
  box-shadow: 0 4px 20px rgba(8,48,107,.12);
}
.header-inner {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; color: var(--blue-900); font-weight: 700;
}
.site-logo { height: 46px; width: auto; object-fit: contain; }
.brand-text { font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 15px; max-width: 240px; line-height: 1.3; }

/* NAV */
.nav-list {
  display: flex; list-style: none; gap: 4px; margin: 0; padding: 0;
}
.nav-list a {
  text-decoration: none; color: var(--blue-900);
  padding: 8px 14px; border-radius: 8px;
  font-weight: 500; font-size: 15px;
  transition: background var(--transition), color var(--transition);
  position: relative;
}
.nav-list a::after {
  content: '';
  position: absolute; bottom: 4px; left: 14px; right: 14px;
  height: 2px; background: var(--blue-700);
  transform: scaleX(0); transform-origin: center;
  transition: transform var(--transition);
  border-radius: 2px;
}
.nav-list a:hover { background: rgba(17,103,177,.08); color: var(--blue-700); }
.nav-list a:hover::after { transform: scaleX(1); }
.nav-list a.active { color: var(--blue-700); }
.nav-list a.active::after { transform: scaleX(1); }

/* HAMBURGER */
.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer;
  width: 32px; height: 24px; z-index: 100; padding: 0;
  flex-direction: column; justify-content: space-between;
}
.hamburger,
.hamburger::before,
.hamburger::after {
  content: ""; display: block;
  width: 22px; height: 2px;
  background: var(--blue-900);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger { position: relative; }
.hamburger::before { transform: translateY(-7px); }
.hamburger::after  { transform: translateY(5px); }

/* =============================================
   HERO SLIDER
   ============================================= */
.hero-slider {
  position: relative; width: 100%; height: 90vh;
  overflow: hidden; margin-top: 70px;
}
.slider-wrapper { position: relative; width: 100%; height: 100%; }
.slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 1.2s ease;
  z-index: 1;
}
.slide.active { opacity: 1; z-index: 2; }
.slide img { width: 100%; height: 100%; object-fit: cover; }

/* Gradient overlay — richer diagonal */
.overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(5,25,60,.75) 0%,
    rgba(8,48,107,.55) 50%,
    rgba(0,0,0,.3) 100%
  );
  z-index: 5;
}

/* Hero text */
.hero-text {
  position: absolute; top: 50%; left: 8%;
  transform: translateY(-50%);
  z-index: 10; color: #fff; max-width: 560px;
}
.hero-badge {
  display: inline-block;
  background: rgba(201,146,42,.25);
  border: 1px solid var(--gold-lt);
  color: var(--gold-lt);
  font-size: 11px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  padding: 5px 14px; border-radius: 30px;
  margin-bottom: 18px;
  opacity: 0; animation: fadeInUp 1s ease forwards;
}
.hero-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: 52px; line-height: 1.15;
  margin: 0 0 16px; font-weight: 800;
  opacity: 0; animation: fadeInUp 1s .2s ease forwards;
}
.hero-text p {
  font-size: 18px; line-height: 1.7;
  margin-bottom: 28px; color: rgba(255,255,255,.88);
  opacity: 0; animation: fadeInUp 1s .4s ease forwards;
}
.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  opacity: 0; animation: fadeInUp 1s .6s ease forwards;
}
.btn-primary {
  background: linear-gradient(135deg, var(--blue-700), var(--blue-900));
  padding: 13px 26px; color: #fff;
  border-radius: 8px; text-decoration: none;
  font-weight: 600; font-size: 15px;
  box-shadow: 0 8px 20px rgba(8,48,107,.4);
  transition: transform var(--transition), box-shadow var(--transition);
  display: inline-block;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(8,48,107,.5);
}
.btn-outline {
  padding: 13px 26px; color: #fff;
  border: 2px solid rgba(255,255,255,.6);
  border-radius: 8px; text-decoration: none;
  font-weight: 600; font-size: 15px;
  transition: background var(--transition), border-color var(--transition);
  display: inline-block;
}
.btn-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: #fff;
}

/* Slider controls */
.slide-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  color: #fff; border: 1px solid rgba(255,255,255,.3);
  width: 50px; height: 50px; border-radius: 50%;
  font-size: 20px; cursor: pointer; z-index: 12;
  transition: background var(--transition), transform var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.slide-btn:hover { background: rgba(255,255,255,.3); transform: translateY(-50%) scale(1.08); }
.prev { left: 24px; } .next { right: 24px; }
.slider-dots {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 12;
}
.dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,.5); cursor: pointer;
  transition: background .3s, width .3s;
}
.dot:hover { background: rgba(255,255,255,.8); }
.active-dot { background: #fff; width: 28px; border-radius: 5px; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =============================================
   STAT STRIP
   ============================================= */
.stat-strip {
  background: var(--blue-900);
  padding: 28px 0;
}
.stat-strip .container {
  display: flex; justify-content: space-around;
  flex-wrap: wrap; gap: 20px;
}
.stat-item { text-align: center; color: #fff; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 40px; font-weight: 800;
  color: var(--gold-lt); line-height: 1;
}
.stat-label { font-size: 13px; color: rgba(255,255,255,.7); margin-top: 4px; letter-spacing: 1px; text-transform: uppercase; }

/* =============================================
   SECTION TITLES
   ============================================= */
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 34px; font-weight: 700;
  color: var(--blue-900); margin-bottom: 10px;
}
.section-subtitle {
  color: var(--muted); font-size: 16px; margin-bottom: 36px; max-width: 540px;
}
.section-header { margin-bottom: 40px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-subtitle { margin: 0 auto 36px; }

/* Decorative underline */
.title-underline {
  width: 52px; height: 4px;
  background: linear-gradient(90deg, var(--blue-700), var(--gold));
  border-radius: 2px; margin-bottom: 12px;
}
.section-header.centered .title-underline { margin: 0 auto 12px; }

/* =============================================
   CARDS (Home)
   ============================================= */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px; margin: 56px auto;
}
.card {
  background: var(--white); padding: 30px 26px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--blue-700);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative; overflow: hidden;
}
.card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue-700), var(--gold));
  border-radius: var(--radius) var(--radius) 0 0;
}
.card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); }
.card h3 { font-family: 'Playfair Display', serif; color: var(--blue-900); margin-top: 0; }
.card-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-900));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; font-size: 22px;
}

/* =============================================
   MISSION
   ============================================= */
.mission { padding: 20px 0 50px; }
.mission-inner {
  background: linear-gradient(135deg, #f0f6ff 0%, #e8f0fc 100%);
  padding: 44px 40px; border-radius: 16px;
  border: 1px solid rgba(17,103,177,.12);
  position: relative; overflow: hidden;
}
.mission-inner::before {
  content: '"';
  position: absolute; top: -20px; left: 20px;
  font-family: 'Playfair Display', serif;
  font-size: 200px; color: rgba(17,103,177,.05);
  line-height: 1; pointer-events: none;
}
.mission-inner .section-title { font-size: 28px; }
.mission-link {
  font-weight: 600; color: var(--blue-700); text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px; margin-top: 8px;
}
.mission-link::after { content: '→'; transition: transform var(--transition); }
.mission-link:hover::after { transform: translateX(4px); }

/* =============================================
   NEWS
   ============================================= */
.news { padding: 50px 0; background: var(--off-white); }
.news.container { padding-left: 20px; padding-right: 20px; }
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px; margin-bottom: 0;
}
.news-item {
  background: var(--white); padding: 24px;
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--blue-700);
  transition: transform var(--transition), box-shadow var(--transition);
}
.news-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.news-date { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.news-item h4 { font-family: 'Playfair Display', serif; color: var(--blue-900); margin: 0 0 10px; font-size: 18px; }

/* =============================================
   RESOURCES
   ============================================= */
.resources { padding: 50px 0; }
.resources-list { display: flex; flex-wrap: wrap; gap: 14px; }
.resource {
  padding: 13px 20px; border-radius: 10px;
  background: var(--white);
  border: 1.5px solid rgba(17,103,177,.2);
  text-decoration: none; color: var(--blue-900);
  font-weight: 500; font-size: 14px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  box-shadow: var(--shadow-sm);
}
.resource::before { content: '📄'; font-size: 16px; }
.resource:hover {
  background: var(--blue-700); color: #fff;
  border-color: var(--blue-700);
  transform: translateY(-2px);
}
.resource:hover::before { filter: brightness(10); }

/* =============================================
   BOTTOM CTA
   ============================================= */
.bottom-cta {
  display: flex; justify-content: center; align-items: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, var(--blue-900) 0%, #0d3d8a 100%);
  text-align: center; position: relative; overflow: hidden;
}
.bottom-cta::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='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.bottom-cta-inner { position: relative; z-index: 1; }
.bottom-cta h2 {
  font-family: 'Playfair Display', serif;
  color: #fff; font-size: 32px; margin: 0 0 10px;
}
.bottom-cta p { color: rgba(255,255,255,.75); margin: 0 0 28px; font-size: 16px; }
.member-box {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 34px;
  background: linear-gradient(135deg, var(--gold), #b07a1a);
  color: #fff; text-decoration: none;
  font-weight: 700; font-size: 16px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,.3);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: pulseBox 2.5s infinite;
}
.member-box:hover {
  animation: none;
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,0,0,.4);
}
@keyframes pulseBox {
  0%,100% { box-shadow: 0 10px 30px rgba(0,0,0,.3), 0 0 0 0 rgba(201,146,42,.5); }
  50%      { box-shadow: 0 10px 30px rgba(0,0,0,.3), 0 0 0 12px rgba(201,146,42,0); }
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: #05183a;
  color: rgba(255,255,255,.75);
  padding: 28px 0;
}
.footer-inner {
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-links a {
  color: rgba(255,255,255,.75); text-decoration: none;
  transition: color var(--transition);
}
.footer-links a:hover { color: #fff; }
.footer-brand {
  font-family: 'Playfair Display', serif;
  color: #fff; font-size: 15px; font-weight: 600;
}

/* =============================================
   ABOUT PAGE
   ============================================= */
.content { padding-top: 110px; padding-bottom: 50px; }

.about-hero {
  padding: 50px 0 30px;
  opacity: 0; animation: fadeInUp 1.1s ease forwards;
}
.about-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 38px; color: var(--blue-900);
}
.about-hero .subtitle { font-size: 16px; line-height: 1.8; color: #444; max-width: 780px; }

.about-section { margin-bottom: 36px; opacity: 0; animation: fadeInUp 1.1s .2s ease forwards; }
.about-section h2 {
  font-family: 'Playfair Display', serif;
  color: var(--blue-900); font-size: 26px;
  position: relative; padding-bottom: 10px;
}
.about-section h2::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 40px; height: 3px;
  background: linear-gradient(90deg, var(--blue-700), var(--gold));
  border-radius: 2px;
}

/* About grid */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px; margin: 36px 0;
  opacity: 0; animation: fadeInUp 1.1s .3s ease forwards;
}
.about-card {
  background: #fff; padding: 28px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border-left: 5px solid var(--blue-700);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative; overflow: hidden;
}
.about-card::after {
  content: '';
  position: absolute; bottom: 0; right: 0;
  width: 60px; height: 60px;
  background: linear-gradient(135deg, transparent 50%, rgba(17,103,177,.05) 50%);
}
.about-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.about-card h3 { font-family: 'Playfair Display', serif; color: var(--blue-900); margin-top: 0; }

.icon-box {
  width: 56px; height: 56px; border-radius: 14px;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-900));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 6px 16px rgba(17,103,177,.3);
}
.icon { width: 28px; height: 28px; color: #fff; }

/* Leadership */
.leaders { padding: 50px 0; background: var(--off-white); border-radius: 16px; margin: 40px 0; }
.leaders-title {
  text-align: center; font-size: 32px; font-weight: 700;
  color: var(--blue-900); margin-bottom: 50px;
  font-family: 'Playfair Display', serif;
}
.leaders-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}
.leader-card {
  background: #fff; border-radius: 16px; overflow: hidden;
  box-shadow: var(--shadow-md); transition: transform var(--transition), box-shadow var(--transition);
  border: 2px solid rgba(17,103,177,.08);
}
.leader-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--blue-700); }
.leader-card img { width: 100%; height: 300px; object-fit: cover; transition: transform .5s ease; }
.leader-card:hover img { transform: scale(1.04); }
.leader-info { text-align: center; padding: 20px; border-top: 4px solid var(--blue-700); }
.leader-info h3 { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--blue-900); margin: 0 0 4px; }
.leader-info p { color: var(--muted); font-size: 14px; margin: 0; }

/* Timeline */
.timeline-section { margin: 60px 0; }
.timeline {
  position: relative; margin: 40px auto; max-width: 900px;
}
.timeline::before {
  content: '';
  position: absolute; left: 50%; width: 3px;
  background: linear-gradient(to bottom, var(--blue-700), var(--gold));
  top: 0; bottom: 0; transform: translateX(-50%);
}
.timeline-item { padding: 16px 28px; position: relative; width: 50%; }
.timeline-item.left  { left: 0; }
.timeline-item.right { left: 50%; }
.timeline-content {
  background: #fff; padding: 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--blue-700);
  transition: transform var(--transition), box-shadow var(--transition);
}
.timeline-content:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.timeline-content h3 { font-family: 'Playfair Display', serif; color: var(--blue-900); margin: 0 0 8px; }
.timeline-item::after {
  content: ""; position: absolute; top: 26px;
  width: 16px; height: 16px;
  background: var(--gold); border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 0 0 3px var(--blue-700);
}
.timeline-item.left::after  { right: -9px; }
.timeline-item.right::after { left: -9px; }

@media (max-width: 700px) {
  .timeline::before { left: 8px; }
  .timeline-item,
  .timeline-item.right,
  .timeline-item.left { width: 100%; left: 0; padding-left: 36px; }
  .timeline-item::after { left: 0; }
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.page-title {
  font-family: 'Playfair Display', serif;
  font-size: 38px; font-weight: 700; margin-bottom: 28px; color: var(--blue-900);
}
.contact-info h2 { color: var(--blue-900); font-family: 'Playfair Display', serif; margin-top: 0; }
.contact-info p { margin: 6px 0 14px; font-size: 15px; }
.contact-info a { color: var(--blue-700); text-decoration: none; font-weight: 500; }
.contact-info a:hover { text-decoration: underline; }

.map-container { margin-top: 30px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }

/* Branches */
.branches { padding: 50px 0; }
.branch-title {
  text-align: center; font-family: 'Playfair Display', serif;
  font-size: 32px; margin-bottom: 50px;
  color: var(--blue-900); font-weight: 700;
  position: relative;
  opacity: 0; animation: titleFade 1s ease forwards;
}
.branch-title::before,
.branch-title::after {
  content: "";
  display: inline-block;
  width: 0; height: 3px; margin: 0 14px;
  vertical-align: middle; border-radius: 50px;
  background: linear-gradient(90deg, var(--blue-700), var(--gold));
  animation: lineGrow 1.2s ease forwards;
}
@keyframes titleFade { from { opacity:0; transform: translateY(-16px); } to { opacity:1; transform: translateY(0); } }
@keyframes lineGrow  { from { width: 0; } to { width: 100px; } }

.branches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px; margin-top: 10px;
}
.branch-card {
  background: var(--white); padding: 22px;
  border-radius: var(--radius); text-align: center;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--blue-700);
  transition: transform var(--transition), box-shadow var(--transition);
}
.branch-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.branch-card h3 { color: var(--blue-900); margin: 0 0 8px; font-family: 'Playfair Display', serif; font-size: 18px; }
.phone a { color: var(--blue-700); text-decoration: none; font-weight: 600; }
.phone a:hover { text-decoration: underline; }

/* =============================================
   SERVICES PAGE
   ============================================= */
.gallery-section { margin: 60px auto; }
.gallery-title {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin-bottom: 40px;
}
.gallery-title h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px; font-weight: 700;
  color: var(--blue-900); letter-spacing: 1px;
}
.gallery-title .line {
  flex: 1; max-width: 100px; height: 2px;
  background: linear-gradient(to right, transparent, var(--blue-700), transparent);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}
.gallery-item {
  position: relative; overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md); cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}
.gallery-item img {
  width: 100%; height: 220px;
  object-fit: cover; display: block;
  transition: transform .5s ease;
}
.gallery-item:hover { transform: scale(1.04); box-shadow: var(--shadow-lg); }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,48,107,.88), rgba(8,48,107,.1));
  color: #fff; display: flex; align-items: flex-end;
  padding: 18px; opacity: 0;
  transition: opacity .4s ease;
}
.gallery-overlay p { font-size: 14px; font-weight: 600; line-height: 1.4; margin: 0; }
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* =============================================
   WHATSAPP FLOAT
   ============================================= */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px;
  background: #25D366; color: #fff;
  padding: 12px 20px; border-radius: 30px;
  text-decoration: none; font-weight: 700;
  box-shadow: 0 6px 20px rgba(0,0,0,.2);
  transition: transform var(--transition), box-shadow var(--transition);
  z-index: 100; font-size: 14px;
  display: flex; align-items: center; gap: 6px;
}
.whatsapp-float::before { content: '💬'; }
.whatsapp-float:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,.25); background: #1ebe5d; }

/* =============================================
   SCROLL REVEAL
   ============================================= */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* Staggered children */
.reveal-stagger > * {
  opacity: 0; transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal-stagger.visible > *:nth-child(1) { transition-delay: .05s; opacity: 1; transform: none; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: .15s; opacity: 1; transform: none; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: .25s; opacity: 1; transform: none; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: .35s; opacity: 1; transform: none; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: .40s; opacity: 1; transform: none; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: .45s; opacity: 1; transform: none; }
.reveal-stagger.visible > *:nth-child(n+7) { transition-delay: .50s; opacity: 1; transform: none; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .nav {
    position: absolute; top: 70px; left: 0; right: 0;
    background: rgba(255,255,255,.98);
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 20px rgba(0,0,0,.1);
    border-bottom: 1px solid #e6eef8;
    max-height: 0; overflow: hidden;
    transition: max-height .35s ease-in-out;
    z-index: 30;
  }
  .nav.open { max-height: 320px; }
  .nav-list { flex-direction: column; align-items: stretch; padding: 8px 0; }
  .nav-list a { display: block; padding: 12px 20px; border-radius: 0; border-bottom: 1px solid rgba(17,103,177,.05); }
  .nav-list a::after { display: none; }
  .nav-toggle { display: flex; }
  .hero-text { text-align: center; left: 50%; transform: translate(-50%,-50%); max-width: 90%; }
  .hero-actions { justify-content: center; }
}

@media (max-width: 768px) {
  .hero-slider { height: 70vh; }
  .hero-text h1 { font-size: 30px; }
  .hero-text p  { font-size: 15px; }
  .section-title { font-size: 26px; }
  .stat-number { font-size: 32px; }
  .bottom-cta h2 { font-size: 24px; }
  main { padding-top: 70px; }
  .content { padding-top: 100px; }
  .about-hero h1 { font-size: 28px; }
  .mission-inner { padding: 28px 22px; }
}

@media (max-width: 500px) {
  .slide-btn { width: 38px; height: 38px; font-size: 16px; }
  .prev { left: 10px; } .next { right: 10px; }
  .hero-text h1 { font-size: 24px; }
}