:root {
    --primary: #E8760A;
    --primary-light: #F5A623;
    --primary-dark: #C05E00;
    --secondary: #FFF8E7;
    --yellow-light: #FFFBF0;
    --yellow-mid: #FFF3D0;
    --yellow-warm: #FFE5A0;
    --white: #FFFFFF;
    --text-dark: #1A1A1A;
    --text-mid: #444444;
    --text-light: #777777;
    --border: #F0D9A0;
    --shadow: rgba(232,118,10,0.15);
    --shadow-deep: rgba(0,0,0,0.12);
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Poppins', 'Noto Sans Devanagari', sans-serif;
    background: var(--white);
    color: var(--text-dark);
    overflow-x: hidden;
  }

  /* ===== NAVBAR ===== */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(255,255,255,0.97);
    border-bottom: 2px solid var(--border);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px var(--shadow);
    padding: 0 2rem;
    height: 72px;
    display: flex; align-items: center; justify-content: space-between;
  }
  .nav-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
  .nav-logo { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; border: 2px solid var(--primary); }
  .nav-title { font-size: 0.7rem; font-weight: 700; color: var(--primary-dark); line-height: 1.3; max-width: 200px; }
  .nav-links { display: flex; gap: 0.2rem; align-items: center; }
  .nav-links a {
    padding: 8px 14px; border-radius: 8px; font-size: 0.78rem; font-weight: 600;
    color: var(--text-mid); text-decoration: none; transition: all 0.25s;
    cursor: pointer; white-space: nowrap;
  }
  .nav-links a:hover, .nav-links a.active {
    background: var(--primary); color: white;
  }
  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; }
  .hamburger span { width: 24px; height: 2.5px; background: var(--primary); border-radius: 2px; transition: all 0.3s; }
  .hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
  .mobile-nav { display: none !important; }

  /* ===== PAGES ===== */
  .page { min-height: 100vh; padding-top: 72px; }
  

  /* ===== HOME PAGE ===== */
  .hero {
    background: linear-gradient(135deg, #FFF8E7 0%, #FFFFFF 40%, #FFF3D0 100%);
    min-height: calc(100vh - 72px);
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden; padding: 4rem 2rem;
  }
  .hero::before {
    content: ''; position: absolute; top: -50%; right: -20%;
    width: 600px; height: 600px; border-radius: 50%;
    background: radial-gradient(circle, rgba(232,118,10,0.08) 0%, transparent 70%);
    pointer-events: none;
  }
  .hero::after {
    content: ''; position: absolute; bottom: -100px; left: -100px;
    width: 400px; height: 400px; border-radius: 50%;
    background: radial-gradient(circle, rgba(245,166,35,0.07) 0%, transparent 70%);
    pointer-events: none;
  }
  .hero-content { max-width: 1200px; width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; position: relative; z-index: 1; }
  .hero-text h1 {
    font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800;
    color: var(--primary-dark); line-height: 1.3; margin-bottom: 1rem;
  }
  .hero-text h1 span { color: var(--primary); }
  .hero-text p { font-size: 1rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 2rem; }
  .hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
  .btn-primary {
    background: var(--primary); color: white; padding: 14px 28px; border-radius: 50px;
    font-weight: 700; font-size: 0.9rem; border: none; cursor: pointer; transition: all 0.3s;
    text-decoration: none; display: inline-block;
  }
  .btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 25px var(--shadow); }
  .btn-outline {
    background: transparent; color: var(--primary); padding: 14px 28px; border-radius: 50px;
    font-weight: 700; font-size: 0.9rem; border: 2px solid var(--primary); cursor: pointer; transition: all 0.3s;
    text-decoration: none; display: inline-block;
  }
  .btn-outline:hover { background: var(--primary); color: white; transform: translateY(-2px); }
  .hero-visual { display: flex; justify-content: center; align-items: center; }
  .hero-logo-wrap {
    width: 280px; height: 280px; border-radius: 50%;
    background: var(--yellow-mid); display: flex; align-items: center; justify-content: center;
    box-shadow: 0 20px 60px var(--shadow), 0 0 0 8px var(--yellow-warm), 0 0 0 16px rgba(232,118,10,0.1);
    animation: float 3s ease-in-out infinite;
  }
  .hero-logo-wrap img { width: 220px; height: 220px; border-radius: 50%; object-fit: cover; }
  @keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }

  /* ===== STATS STRIP ===== */
  .stats-strip {
    background: var(--primary); padding: 2.5rem 2rem;
    display: flex; justify-content: center; gap: 0;
  }
  .stats-strip-inner { max-width: 1100px; width: 100%; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
  .stat-item { text-align: center; padding: 1rem; border-right: 1px solid rgba(255,255,255,0.2); }
  .stat-item:last-child { border-right: none; }
  .stat-num { font-size: 2.2rem; font-weight: 800; color: white; display: block; }
  .stat-lbl { font-size: 0.8rem; color: rgba(255,255,255,0.85); font-weight: 500; margin-top: 4px; }

  /* ===== SECTION COMMON ===== */
  section { padding: 5rem 2rem; }
  .section-inner { max-width: 1100px; margin: 0 auto; }
  .section-tag {
    display: inline-block; background: var(--yellow-mid); color: var(--primary);
    padding: 5px 16px; border-radius: 50px; font-size: 0.75rem; font-weight: 700;
    letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 1rem;
  }
  .section-title { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; color: var(--text-dark); margin-bottom: 1rem; line-height: 1.3; }
  .section-title span { color: var(--primary); }
  .section-sub { font-size: 1rem; color: var(--text-light); line-height: 1.8; max-width: 650px; margin-bottom: 3rem; }
  .divider { width: 60px; height: 4px; background: linear-gradient(90deg, var(--primary), var(--primary-light)); border-radius: 2px; margin-bottom: 1.5rem; }

  /* ===== SERVICES ===== */
  .services-bg { background: var(--yellow-light); }
  .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
  .service-card {
    background: white; border-radius: 20px; padding: 2rem;
    border: 1px solid var(--border); transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  }
  .service-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px var(--shadow); border-color: var(--primary-light); }
  .service-icon { width: 60px; height: 60px; background: var(--yellow-mid); border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; margin-bottom: 1.2rem; }
  .service-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.7rem; }
  .service-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; }

  /* ===== ABOUT PAGE ===== */
  .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
  .about-img-wrap { position: relative; }
  .about-logo-big {
    width: 100%; aspect-ratio: 1; border-radius: 30px;
    background: var(--yellow-mid); display: flex; align-items: center; justify-content: center;
    box-shadow: 0 20px 60px var(--shadow);
  }
  .about-logo-big img { width: 75%; height: 75%; object-fit: contain; border-radius: 50%; }
  .about-badge {
    position: absolute; bottom: -20px; right: -20px; background: var(--primary); color: white;
    padding: 1rem 1.5rem; border-radius: 16px; font-weight: 700; text-align: center;
    box-shadow: 0 8px 30px var(--shadow);
  }
  .about-badge .num { font-size: 2rem; display: block; }
  .about-badge .txt { font-size: 0.75rem; }
  .about-points { list-style: none; margin-top: 1.5rem; }
  .about-points li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 1rem; font-size: 0.9rem; color: var(--text-mid); line-height: 1.6; }
  .about-points li::before { content: '✦'; color: var(--primary); font-size: 0.7rem; margin-top: 4px; flex-shrink: 0; }
  .mission-vision { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 3rem; }
  .mv-card { background: var(--yellow-light); border: 1px solid var(--border); border-radius: 20px; padding: 2rem; }
  .mv-card h3 { font-size: 1rem; font-weight: 700; color: var(--primary); margin-bottom: 0.7rem; display: flex; gap: 8px; align-items: center; }
  .mv-card p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.7; }

  /* ===== TEAM ===== */
  .team-bg { background: var(--yellow-light); }
  .team-section-title { text-align: center; margin-bottom: 3rem; }
  .leadership-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 3rem; }
  .team-card {
    background: white; border-radius: 20px; padding: 2rem; text-align: center;
    border: 1px solid var(--border); transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  }
  .team-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px var(--shadow); border-color: var(--primary-light); }
  .team-card.featured { border-color: var(--primary); background: linear-gradient(135deg, #FFF8E7, white); }
  .leader-card {
    padding: 1.15rem;
    border-radius: 28px;
    display: flex;
    flex-direction: column;
  }
  .leader-photo-wrap {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: linear-gradient(135deg, var(--yellow-mid) 0%, var(--yellow-warm) 100%);
    border: 1px solid rgba(232,118,10,0.16);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
  }
  .leader-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    background: var(--yellow-mid);
  }
  .leader-photo--rajeev {
    object-position: center 18%;
  }
  .leader-details {
    margin-top: 1rem;
    width: 100%;
    background: white;
    border: 1px solid rgba(232,118,10,0.14);
    border-radius: 20px;
    padding: 1.05rem 1rem 1.1rem;
    box-shadow: 0 10px 24px rgba(232,118,10,0.1);
  }
  .avatar {
    width: 80px; height: 80px; border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem; font-weight: 800; color: white; margin: 0 auto 1rem;
    box-shadow: 0 6px 20px var(--shadow);
  }
  .team-card h3 { font-size: 0.95rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.4rem; line-height: 1.35; }
  .team-role { font-size: 0.78rem; color: var(--primary); font-weight: 600; background: var(--yellow-mid); padding: 4px 14px; border-radius: 20px; display: inline-block; margin-bottom: 0.6rem; }
  .team-phone {
    font-size: 0.8rem;
    color: var(--primary-dark);
    font-weight: 600;
    background: #FFF8E7;
    border-radius: 999px;
    padding: 0.45rem 0.8rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
  }
  .other-members-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1rem; }
  .member-pill {
    background: white; border: 1px solid var(--border); border-radius: 14px;
    padding: 1rem 1.2rem; display: flex; align-items: center; gap: 10px;
    transition: all 0.25s;
  }
  .member-pill:hover { border-color: var(--primary); background: var(--yellow-light); transform: translateX(4px); }
  .member-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light), var(--yellow-warm));
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; font-weight: 700; color: var(--primary-dark); flex-shrink: 0;
  }
  .member-info .name { font-size: 0.85rem; font-weight: 600; color: var(--text-dark); }
  .member-info .role { font-size: 0.72rem; color: var(--primary); font-weight: 500; }
  .team-category { margin-bottom: 2.5rem; }
  .team-cat-title {
    font-size: 1.1rem; font-weight: 700; color: var(--primary-dark);
    border-left: 4px solid var(--primary); padding-left: 12px; margin-bottom: 1.2rem;
  }

  /* ===== EVENTS ===== */
  .events-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.5rem; }
  .event-card {
    background: white; border-radius: 20px; overflow: hidden;
    border: 1px solid var(--border); transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  }
  .event-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px var(--shadow); }
  .event-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    padding: 1.5rem 2rem; color: white;
    display: flex; align-items: center; justify-content: space-between;
  }
  .event-date-box { text-align: center; }
  .event-date-box .day { font-size: 2.5rem; font-weight: 800; line-height: 1; }
  .event-date-box .month { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }
  .event-type { background: rgba(255,255,255,0.25); padding: 4px 14px; border-radius: 20px; font-size: 0.72rem; font-weight: 600; }
  .event-body { padding: 1.5rem 2rem; }
  .event-body h3 { font-size: 1.1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.7rem; }
  .event-body p { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; margin-bottom: 1rem; }
  .event-meta { display: flex; gap: 1rem; flex-wrap: wrap; }
  .event-meta span { display: flex; align-items: center; gap: 5px; font-size: 0.78rem; color: var(--text-mid); font-weight: 500; }
  .event-status { display: inline-block; padding: 5px 14px; border-radius: 20px; font-size: 0.72rem; font-weight: 700; margin-top: 1rem; }
  .status-upcoming { background: #E8F5E9; color: #2E7D32; }
  .status-ongoing { background: #FFF3E0; color: var(--primary-dark); }
  .status-past { background: #F5F5F5; color: #777; }
  .events-notice {
    background: var(--yellow-mid); border: 1px dashed var(--primary); border-radius: 16px;
    padding: 2rem; text-align: center; margin-bottom: 3rem;
  }
  .events-notice h3 { font-size: 1.1rem; font-weight: 700; color: var(--primary-dark); margin-bottom: 0.5rem; }
  .events-notice p { font-size: 0.9rem; color: var(--text-mid); }
  .events-source-note {
    background: #fff7e7; border: 1px solid #f0d29b; border-radius: 14px;
    padding: 1rem 1.2rem; margin-bottom: 1.5rem; color: var(--text-mid);
    font-size: 0.88rem; line-height: 1.7;
  }
  .events-source-note.is-warning {
    background: #fff4e5; border-color: #efb46b; color: #8a5200;
  }
  .events-empty {
    grid-column: 1 / -1; background: white; border: 1px dashed var(--border);
    border-radius: 18px; padding: 2rem; text-align: center; color: var(--text-mid);
    font-weight: 600;
  }

  /* ===== CONTACT ===== */
  .contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; }
  .contact-grid > * { min-width: 0; }
  .contact-info-cards { display: flex; flex-direction: column; gap: 1.2rem; }
  .contact-card {
    background: var(--yellow-light); border: 1px solid var(--border); border-radius: 16px;
    padding: 1.5rem; display: flex; gap: 1rem; align-items: flex-start;
  }
  .contact-icon { width: 48px; height: 48px; background: var(--primary); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
  .contact-card h4 { font-size: 0.9rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.3rem; }
  .contact-card p { font-size: 0.85rem; color: var(--text-mid); line-height: 1.6; }
  .contact-card a { color: var(--primary); text-decoration: none; font-weight: 600; }
  .inquiry-form { width: 100%; max-width: 100%; background: white; border: 1px solid var(--border); border-radius: 24px; padding: 2.5rem; box-shadow: 0 10px 40px rgba(0,0,0,0.06); }
  .inquiry-form h3 { font-size: 1.3rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.5rem; }
  .inquiry-form p { font-size: 0.88rem; color: var(--text-light); margin-bottom: 1.8rem; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
  .form-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 1rem; }
  .form-group label { font-size: 0.8rem; font-weight: 600; color: var(--text-mid); }
  .form-group input, .form-group textarea, .form-group select {
    border: 1.5px solid var(--border); border-radius: 12px; padding: 12px 16px;
    font-size: 0.9rem; font-family: inherit; color: var(--text-dark); background: white; transition: all 0.25s;
    outline: none;
  }
  .form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(232,118,10,0.1); }
  .form-group textarea { resize: vertical; min-height: 120px; }
  .form-submit { width: 100%; padding: 14px; background: var(--primary); color: white; border: none; border-radius: 12px; font-size: 1rem; font-weight: 700; cursor: pointer; transition: all 0.3s; font-family: inherit; }
  .form-submit:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 25px var(--shadow); }
  .form-success { display: none; background: #E8F5E9; border: 1px solid #A5D6A7; border-radius: 12px; padding: 1rem; text-align: center; color: #2E7D32; font-weight: 600; margin-top: 1rem; }

  /* ===== FOOTER ===== */
  footer {
    background: var(--text-dark); color: rgba(255,255,255,0.85); padding: 3rem 2rem 1.5rem;
  }
  .footer-inner { max-width: 1100px; margin: 0 auto; }
  .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 2rem; }
  .footer-grid > * { min-width: 0; }
  .footer-brand img { width: 60px; height: 60px; border-radius: 50%; margin-bottom: 1rem; }
  .footer-brand h3 { font-size: 0.9rem; font-weight: 700; color: white; margin-bottom: 0.7rem; line-height: 1.4; }
  .footer-brand p { font-size: 0.82rem; line-height: 1.7; }
  .footer-col h4 { font-size: 0.9rem; font-weight: 700; color: white; margin-bottom: 1rem; }
  .footer-col a { display: block; font-size: 0.82rem; margin-bottom: 0.5rem; color: rgba(255,255,255,0.7); text-decoration: none; cursor: pointer; transition: color 0.2s; overflow-wrap: anywhere; }
  .footer-col a:hover { color: var(--primary-light); }
  .footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
  .footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.5); overflow-wrap: anywhere; }
  .footer-bottom span { color: var(--primary-light); }

  /* ===== MOBILE ===== */
  @media(max-width: 900px) {
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero-btns { justify-content: center; }
    .hero-visual { order: -1; }
    .hero-logo-wrap { width: 200px; height: 200px; }
    .hero-logo-wrap img { width: 160px; height: 160px; }
    .about-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .leadership-row { grid-template-columns: 1fr 1fr; }
    .mission-vision { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .stats-strip-inner { grid-template-columns: 1fr 1fr; }
    .form-row { grid-template-columns: 1fr; }
  }
  @media(max-width: 768px) {
    nav {
      padding: 0.75rem 0.85rem 0.7rem;
      height: auto;
      min-height: 96px;
      flex-wrap: wrap;
      align-items: flex-start;
      justify-content: flex-start;
      gap: 0.8rem;
    }
    .page { padding-top: 164px; }
    .nav-brand {
      min-width: 0;
      width: 100%;
      gap: 0.8rem;
      flex: 1 1 100%;
      align-items: center;
    }
    .nav-logo {
      width: 52px;
      height: 52px;
      flex-shrink: 0;
    }
    .nav-title {
      display: block;
      max-width: none;
      font-size: 1rem;
      line-height: 1.25;
      font-weight: 800;
      color: var(--primary-dark);
      letter-spacing: -0.01em;
      white-space: normal;
    }
    .hamburger { display: none !important; }
    .nav-links {
      display: flex !important;
      position: static;
      flex-direction: row;
      align-items: center;
      width: 100%;
      flex: 1 1 100%;
      padding: 0.2rem 0 0;
      border: 0;
      box-shadow: none;
      background: transparent;
      gap: 0.45rem;
      overflow-x: auto;
      overflow-y: hidden;
      white-space: nowrap;
      max-height: none;
    }
    .nav-links a {
      width: auto;
      flex: 0 0 auto;
      padding: 9px 12px;
      border-radius: 8px;
      font-size: 0.74rem;
    }
    .nav-links {
      scrollbar-width: none;
    }
    .nav-links::-webkit-scrollbar { display: none; }
    .leadership-row { grid-template-columns: 1fr; }
    .leader-card { max-width: 420px; margin: 0 auto; }
    .about-badge { position: static; margin-top: 1rem; display: inline-block; }
    .stats-strip-inner { grid-template-columns: 1fr 1fr; }
    section { padding: 4rem 1rem; }
    footer { padding: 2.5rem 1rem 1.25rem; }
    .section-sub { margin-bottom: 2rem; }
    .contact-grid { gap: 1.5rem; }
    .contact-card { padding: 1rem; }
    .inquiry-form { padding: 1.25rem; border-radius: 20px; }
    #scrollTop { right: 1rem; }
  }

  @media(max-width: 480px) {
    nav {
      padding: 0.7rem 0.75rem 0.65rem;
      gap: 0.72rem;
    }
    .page { padding-top: 154px; }
    .nav-logo {
      width: 48px;
      height: 48px;
    }
    .nav-title {
      font-size: 0.92rem;
      line-height: 1.22;
    }
    .nav-links a {
      font-size: 0.72rem;
      padding: 8px 11px;
    }
  }

  @media(min-width: 769px) {
    .mobile-nav { display: none !important; }
  }

  /* ===== ANIMATIONS ===== */
  @keyframes fadeUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
  .fade-in { animation: fadeUp 0.6s ease forwards; }
  .fade-in-2 { animation: fadeUp 0.6s 0.15s ease both; }
  .fade-in-3 { animation: fadeUp 0.6s 0.3s ease both; }

  /* ===== REG BADGE ===== */
  .reg-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--yellow-mid); border: 1px solid var(--border);
    padding: 6px 16px; border-radius: 50px; font-size: 0.78rem;
    font-weight: 600; color: var(--primary-dark); margin-bottom: 1rem;
  }
  .reg-dot { width: 8px; height: 8px; background: var(--primary); border-radius: 50%; }

  /* ===== WHY JOIN ===== */
  .why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }
  .why-card {
    border-radius: 20px; padding: 2rem; text-align: center;
    background: white; border: 1px solid var(--border); transition: all 0.3s;
  }
  .why-card:hover { border-color: var(--primary); box-shadow: 0 8px 30px var(--shadow); }
  .why-card .icon { font-size: 2.5rem; margin-bottom: 1rem; }
  .why-card h3 { font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.5rem; }
  .why-card p { font-size: 0.85rem; color: var(--text-light); line-height: 1.7; }

  /* ===== ABOUT PAGE — FULL REDESIGN ===== */
  .about-hero {
    min-height: 88vh;
    background: linear-gradient(135deg, #1A0A00 0%, #3D1800 40%, #6B2E00 70%, #E8760A 100%);
    display: flex; align-items: center; justify-content: center;
    padding: 5rem 2rem 4rem; gap: 4rem; flex-wrap: wrap;
    position: relative; overflow: hidden;
  }
  .about-hero::before {
    content:''; position:absolute; inset:0;
    background: radial-gradient(ellipse at 70% 50%, rgba(232,118,10,0.25) 0%, transparent 60%);
    pointer-events:none;
  }
  .about-hero::after {
    content:''; position:absolute; bottom:-60px; left:-60px;
    width:300px; height:300px; border-radius:50%;
    background: rgba(245,166,35,0.08); pointer-events:none;
  }
  .about-hero-inner { max-width:620px; position:relative; z-index:2; }
  .about-hero-tag {
    display:inline-block; background:rgba(255,255,255,0.12); color:rgba(255,255,255,0.85);
    padding:6px 18px; border-radius:50px; font-size:0.75rem; font-weight:600;
    letter-spacing:0.06em; margin-bottom:1.5rem; border:1px solid rgba(255,255,255,0.2);
  }
  .about-hero-title {
    font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight:900; color:white;
    line-height:1.2; margin-bottom:1.2rem;
  }
  .about-hero-title span { color:var(--primary-light); }
  .about-hero-sub {
    font-size:1.05rem; color:rgba(255,255,255,0.8); line-height:1.9; margin-bottom:2.5rem;
    max-width:540px;
  }
  .about-hero-stats {
    display:flex; align-items:center; gap:0; background:rgba(255,255,255,0.1);
    border-radius:16px; padding:1.2rem 0; border:1px solid rgba(255,255,255,0.15);
    flex-wrap:wrap;
  }
  .aho-stat { text-align:center; flex:1; min-width:100px; padding:0.4rem 1rem; }
  .aho-num { display:block; font-size:1.7rem; font-weight:800; color:var(--primary-light); }
  .aho-lbl { font-size:0.72rem; color:rgba(255,255,255,0.75); font-weight:500; margin-top:2px; }
  .aho-div { width:1px; background:rgba(255,255,255,0.2); align-self:stretch; }
  .about-hero-logo-wrap { position:relative; z-index:2; }
  .about-hero-logo-ring {
    width:280px; height:280px; border-radius:50%;
    border:3px solid rgba(232,118,10,0.5);
    box-shadow: 0 0 0 12px rgba(232,118,10,0.12), 0 0 0 24px rgba(232,118,10,0.06), 0 20px 60px rgba(0,0,0,0.4);
    background: linear-gradient(135deg, rgba(232,118,10,0.2), rgba(245,166,35,0.1));
    display:flex; align-items:center; justify-content:center;
    animation: float 3.5s ease-in-out infinite;
  }
  .about-hero-logo-ring img { width:220px; height:220px; border-radius:50%; object-fit:cover; }

  /* STORY SECTION */
  .about-story-section { background:white; padding:5rem 2rem; }
  .about-story-grid { display:grid; grid-template-columns:1fr 1fr; gap:4rem; align-items:center; }
  .story-highlight-box {
    background:var(--yellow-light); border-left:4px solid var(--primary); border-radius:0 16px 16px 0;
    padding:1.5rem; display:flex; gap:1rem; align-items:flex-start; margin-top:1.5rem;
  }
  .shb-icon { font-size:1.5rem; flex-shrink:0; }
  .shb-quote { font-size:0.95rem; color:var(--text-mid); line-height:1.8; font-style:italic; font-weight:500; }
  .story-card-stack { display:flex; flex-direction:column; gap:1.2rem; }
  .story-card {
    background:white; border-radius:20px; padding:1.5rem;
    border:1px solid var(--border); display:flex; gap:1rem; align-items:flex-start;
    transition:all 0.3s; box-shadow:0 4px 20px rgba(0,0,0,0.04);
    position:relative; overflow:hidden;
  }
  .story-card::before { content:''; position:absolute; left:0; top:0; bottom:0; width:4px; }
  .sc1::before { background: var(--primary); }
  .sc2::before { background: #2E7D32; }
  .sc3::before { background: #1565C0; }
  .story-card:hover { transform:translateX(6px); box-shadow:0 8px 30px var(--shadow); }
  .sc-icon { font-size:1.6rem; flex-shrink:0; }
  .story-card h4 { font-size:0.95rem; font-weight:700; color:var(--text-dark); margin-bottom:0.3rem; }
  .story-card p { font-size:0.85rem; color:var(--text-light); line-height:1.7; }

  /* MVV SECTION */
  .mvv-section { background:white; padding:5rem 2rem; }
  .mvv-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:2rem; }
  .mvv-card {
    border-radius:24px; padding:2.5rem; position:relative; overflow:hidden;
    box-shadow:0 8px 30px rgba(0,0,0,0.07); transition:all 0.3s;
  }
  .mvv-card:hover { transform:translateY(-8px); box-shadow:0 20px 50px rgba(0,0,0,0.12); }
  .mvv-mission { background:linear-gradient(145deg, #FFF8E7, #FFF3D0); border:1px solid #F0D9A0; }
  .mvv-vision { background:linear-gradient(145deg, #E8F5E9, #C8E6C9); border:1px solid #A5D6A7; }
  .mvv-values { background:linear-gradient(145deg, #E3F2FD, #BBDEFB); border:1px solid #90CAF9; }
  .mvv-top { display:flex; align-items:center; gap:1rem; margin-bottom:1.2rem; }
  .mvv-icon-wrap {
    width:52px; height:52px; border-radius:14px; background:rgba(255,255,255,0.7);
    display:flex; align-items:center; justify-content:center; font-size:1.5rem;
    box-shadow:0 4px 12px rgba(0,0,0,0.08);
  }
  .mvv-card h3 { font-size:1.1rem; font-weight:800; color:var(--text-dark); }
  .mvv-card p { font-size:0.9rem; color:var(--text-mid); line-height:1.8; }
  .mvv-accent { position:absolute; bottom:0; right:0; width:80px; height:80px; border-radius:50% 0 0 0; opacity:0.12; }
  .mvv-mission .mvv-accent { background:var(--primary); }
  .mvv-vision .mvv-accent { background:#2E7D32; }
  .mvv-values .mvv-accent { background:#1565C0; }

  /* STANDS GRID */
  .stands-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:2rem; }
  .stands-item {
    background:white; border-radius:20px; padding:2rem;
    border:1px solid var(--border); display:flex; gap:1.2rem; align-items:flex-start;
    transition:all 0.3s; box-shadow:0 4px 18px rgba(0,0,0,0.04);
  }
  .stands-item:hover { border-color:var(--primary); transform:translateY(-4px); box-shadow:0 12px 35px var(--shadow); }
  .stands-num {
    font-size:2.2rem; font-weight:900; color:var(--border); line-height:1;
    min-width:44px; transition:color 0.3s;
  }
  .stands-item:hover .stands-num { color:var(--primary-light); }
  .stands-content h4 { font-size:0.95rem; font-weight:700; color:var(--text-dark); margin-bottom:0.5rem; }
  .stands-content p { font-size:0.85rem; color:var(--text-light); line-height:1.7; }

  /* CALLOUT */
  .about-callout-section { background:linear-gradient(135deg, #1A0A00 0%, #3D1800 50%, #6B2E00 100%); padding:5rem 2rem; }
  .about-callout {
    display:flex; gap:3rem; align-items:center; justify-content:center;
    max-width:1000px; margin:0 auto; flex-wrap:wrap;
  }
  .callout-logo { flex-shrink:0; }
  .callout-logo img {
    width:120px; height:120px; border-radius:50%; object-fit:cover;
    border:3px solid rgba(232,118,10,0.6); box-shadow:0 0 0 8px rgba(232,118,10,0.12);
  }
  .callout-content { max-width:560px; }
  .callout-content h2 { font-size:clamp(1.6rem,3vw,2.4rem); font-weight:900; color:white; line-height:1.3; margin-bottom:1rem; }
  .callout-content h2 span { color:var(--primary-light); }
  .callout-content p { font-size:1rem; color:rgba(255,255,255,0.8); line-height:1.8; margin-bottom:1.8rem; }
  .callout-btns { display:flex; gap:1rem; flex-wrap:wrap; }
  .btn-outline-white {
    background:transparent; color:white; padding:14px 28px; border-radius:50px;
    font-weight:700; font-size:0.9rem; border:2px solid rgba(255,255,255,0.5); cursor:pointer; transition:all 0.3s;
    text-decoration:none; display:inline-block;
  }
  .btn-outline-white:hover { background:rgba(255,255,255,0.15); border-color:white; }

  /* RESPONSIVE */
  @media(max-width:900px) {
    .about-hero { flex-direction:column; text-align:center; padding:3rem 1.5rem; gap:2.5rem; }
    .about-hero-inner { max-width:100%; }
    .about-hero-logo-ring { width:200px; height:200px; }
    .about-hero-logo-ring img { width:160px; height:160px; }
    .about-story-grid { grid-template-columns:1fr; gap:2.5rem; }
    .mvv-grid { grid-template-columns:1fr; }
    .stands-grid { grid-template-columns:1fr 1fr; }
    .about-hero-stats { justify-content:center; }
    .aho-div { display:none; }
  }
  @media(max-width:600px) {
    .stands-grid { grid-template-columns:1fr; }
    .about-callout { flex-direction:column; text-align:center; }
    .callout-btns { justify-content:center; }
  }

  /* ===== HOME TEAM PREVIEW ===== */
  .home-team-section { background: var(--white); }
  .home-team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
  @media(max-width:900px) { .home-team-grid { grid-template-columns: repeat(2, 1fr); } }
  @media(max-width:500px) { .home-team-grid { grid-template-columns: 1fr 1fr; } }
  .home-member-card {
    background: white; border: 1px solid var(--border); border-radius: 20px;
    overflow: hidden; transition: all 0.3s; box-shadow: 0 4px 18px rgba(0,0,0,0.05);
    text-align: center;
  }
  .home-member-card:hover { transform: translateY(-6px); box-shadow: 0 14px 40px var(--shadow); border-color: var(--primary-light); }
  .photo-placeholder {
    width: 100%; aspect-ratio: 1 / 1;
    background: linear-gradient(135deg, var(--yellow-mid) 0%, var(--yellow-warm) 100%);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 8px; position: relative; overflow: hidden;
  }
  .photo-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 1;
  }
  .photo-placeholder::before {
    content: ''; position: absolute; inset: 0;
    background: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(232,118,10,0.04) 10px, rgba(232,118,10,0.04) 20px);
  }
  .photo-placeholder .ph-icon {
    width: 70px; height: 70px; border-radius: 50%;
    background: rgba(232,118,10,0.15); display: flex; align-items: center; justify-content: center;
    font-size: 2rem; border: 2px dashed var(--primary-light);
  }
  .photo-placeholder .ph-text { font-size: 0.72rem; color: var(--primary); font-weight: 600; letter-spacing: 0.04em; }
  .photo-placeholder .ph-initial {
    position: absolute; bottom: 12px; right: 14px;
    width: 32px; height: 32px; border-radius: 50%;
    background: var(--primary); color: white;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem; font-weight: 800;
  }
  .home-member-info { padding: 1rem 1rem 1.2rem; }
  .home-member-info h3 { font-size: 0.92rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.35rem; line-height: 1.3; }
  .home-member-info .role-badge {
    display: inline-block; background: var(--yellow-mid); color: var(--primary);
    padding: 3px 12px; border-radius: 20px; font-size: 0.72rem; font-weight: 600;
  }

  /* ===== WHATSAPP FLOAT ===== */
  .whatsapp-float {
    position: fixed;
    right: 1.3rem;
    bottom: 1.3rem;
    z-index: 620;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    padding: 0;
    border-radius: 50%;
    text-decoration: none;
    color: var(--white);
    background: linear-gradient(135deg, #16c56e 0%, #0d9a56 55%, #087746 100%);
    border: 1px solid rgba(255,255,255,0.18);
    box-shadow:
      0 18px 38px rgba(8,119,70,0.34),
      0 0 26px rgba(37,211,102,0.26),
      inset 0 1px 0 rgba(255,255,255,0.22);
    overflow: hidden;
    isolation: isolate;
    transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
    animation: whatsappPopIn 0.55s ease-out both;
  }
  .whatsapp-float::before {
    content: '';
    position: absolute;
    inset: -22%;
    z-index: -2;
    background: radial-gradient(circle, rgba(122,255,182,0.38) 0%, rgba(122,255,182,0.08) 46%, transparent 74%);
    animation: whatsappGlow 2.8s ease-in-out infinite;
  }
  .whatsapp-float::after {
    content: '';
    position: absolute;
    inset: 1px;
    z-index: -1;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255,255,255,0.22), rgba(255,255,255,0.02) 58%);
    opacity: 0.7;
  }
  .whatsapp-float:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow:
      0 24px 46px rgba(8,119,70,0.4),
      0 0 34px rgba(37,211,102,0.3),
      inset 0 1px 0 rgba(255,255,255,0.28);
    filter: saturate(1.06);
  }
  .whatsapp-float__icon-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(255,255,255,0.06);
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.25),
      0 0 20px rgba(122,255,182,0.24);
  }
  .whatsapp-float__icon-wrap::after {
    content: '';
    position: absolute;
    inset: -7px;
    border: 1px solid rgba(144,255,196,0.34);
    border-radius: 50%;
    animation: whatsappRing 2.5s ease-out infinite;
  }
  .whatsapp-float__icon {
    width: 31px;
    height: 31px;
    display: block;
  }
  .whatsapp-float__content {
    display: none;
  }

  /* ===== SCROLL TOP ===== */
  #scrollTop {
    position: fixed; bottom: 6.9rem; right: 2rem; width: 48px; height: 48px;
    background: var(--primary); color: white; border-radius: 50%; border: none;
    font-size: 1.2rem; cursor: pointer; display: none; align-items: center; justify-content: center;
    box-shadow: 0 4px 15px var(--shadow); transition: all 0.3s; z-index: 500;
  }
  #scrollTop:hover { background: var(--primary-dark); transform: translateY(-3px); }

  @keyframes whatsappGlow {
    0%, 100% { transform: scale(0.96); opacity: 0.72; }
    50% { transform: scale(1.06); opacity: 1; }
  }
  @keyframes whatsappRing {
    0% { transform: scale(0.9); opacity: 0; }
    25% { opacity: 0.55; }
    100% { transform: scale(1.22); opacity: 0; }
  }
  @keyframes whatsappPopIn {
    0% { transform: translateY(16px) scale(0.92); opacity: 0; }
    100% { transform: translateY(0) scale(1); opacity: 1; }
  }

  @media (prefers-reduced-motion: reduce) {
    .whatsapp-float,
    .whatsapp-float::before,
    .whatsapp-float__icon-wrap::after {
      animation: none;
    }
  }

  @media(max-width: 768px) {
    .whatsapp-float {
      right: 1rem;
      bottom: 1rem;
      width: 58px;
      height: 58px;
    }
    .whatsapp-float__icon-wrap {
      width: 100%;
      height: 100%;
    }
    #scrollTop { right: 1rem; bottom: 5.9rem; }
  }

  @media(max-width: 480px) {
    .whatsapp-float {
      width: 56px;
      height: 56px;
      border-radius: 50%;
    }
    #scrollTop { bottom: 5.5rem; }
  }
