  :root {
    --orange: #FFA94D;
    --orange-dark: #e0b176;
    --orange-light: #FFD4A3;
    --yellow: #FFE066;
    --yellow-light: #FFF3B0;
    --green: #A8E6CF;
    --green-dark: #5CB88A;
    --blue: #A8D8EA;
    --blue-dark: #4A9CC7;
    --pink: #FFB3BA;
    --lavender: #D4A8E8;
    --white: #FFFEF9;
    --text: #3A2F2F;
    --text-light: #7A6A6A;
    --radius-xl: 2rem;
    --radius-pill: 9999px;
    --shadow: 0 8px 32px rgba(255,169,77,0.18);
    --shadow-card: 0 4px 24px rgba(60,40,20,0.10);
  }
 
  * { margin: 0; padding: 0; box-sizing: border-box; }
 
  html { scroll-behavior: smooth; }
 
  body {
    font-family: 'Nunito', sans-serif;
    background: var(--white);
    color: var(--text);
    overflow-x: hidden;
  }
 
  /* ── WAVY SVG DIVIDER ── */
  .wave-divider svg { display: block; }
 
  /* ── NAV ── */
  nav {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255,254,249,0.96);
    backdrop-filter: blur(10px);
    border-bottom: 3px solid var(--orange-light);
    padding: 0.6rem 2rem;
    display: flex; align-items: center; justify-content: space-between;
    box-shadow: 0 2px 16px rgba(255,169,77,0.12);
  }
  .nav-logo { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; }
  .nav-logo-icon {
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--orange);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 3px 10px rgba(255,140,0,0.35);
    transition: transform 0.3s;
  }
  .nav-logo:hover .nav-logo-icon { transform: rotate(-10deg) scale(1.1); }
  .nav-logo-text { font-family: 'Baloo 2', cursive; font-weight: 800; font-size: 1.3rem; color: var(--orange-dark); line-height: 1.1; }
  .nav-logo-sub { font-size: 0.7rem; color: var(--text-light); font-weight: 600; letter-spacing: 0.05em; }
 
  .nav-links { display: flex; gap: 0.3rem; list-style: none; }
  .nav-links a {
    text-decoration: none; color: var(--text); font-weight: 700; font-size: 0.92rem;
    padding: 0.45rem 0.9rem; border-radius: var(--radius-pill);
    transition: background 0.2s, color 0.2s;
  }
  .nav-links a:hover { background: var(--orange-light); color: var(--orange-dark); }
 
  .nav-cta {
    background: var(--orange); color: white !important; border-radius: var(--radius-pill);
    padding: 0.5rem 1.3rem !important; box-shadow: 0 3px 12px rgba(255,140,0,0.3);
    transition: transform 0.2s, box-shadow 0.2s !important;
  }
  .nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,140,0,0.4) !important; background: var(--orange) !important; }
 
  .hamburger { 
    display: none; background: none; border: none; cursor: pointer; 
    flex-direction: column; gap: 5px; padding: 8px; border-radius: 8px;
    transition: background 0.2s;
  }
  .hamburger:hover { background: var(--orange-light); }
  .hamburger span { 
    display: block; width: 26px; height: 3px; background: var(--orange); 
    border-radius: 2px; transition: 0.3s; 
  }
 
  /* ── HERO ── */
  .hero {
    background: linear-gradient(135deg, #FFF8EE 0%, #FFF3D6 40%, #E8F7EE 100%);
    padding: 4rem 2rem 0;
    position: relative; overflow: hidden;
    min-height: 90vh;
    display: flex; align-items: center;
  }
  .hero::before {
    content: '';
    position: absolute; top: -80px; right: -80px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(255,224,102,0.45) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
  }
  .hero::after {
    content: '';
    position: absolute; bottom: 60px; left: -60px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(168,230,207,0.4) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
  }
  @keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }
 
  .hero-inner {
    max-width: 1200px; margin: 0 auto; width: 100%;
    display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
    align-items: center; position: relative; z-index: 2;
  }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 0.4rem;
    background: var(--yellow-light); color: var(--orange-dark);
    border-radius: var(--radius-pill); padding: 0.3rem 1rem;
    font-weight: 700; font-size: 0.82rem; margin-bottom: 1rem;
    border: 2px solid var(--yellow);
    animation: pulse-badge 2s infinite;
  }
  @keyframes pulse-badge { 0%,100%{transform:scale(1)} 50%{transform:scale(1.04)} }
 
  .hero h1 {
    font-family: 'Baloo 2', cursive; font-weight: 800;
    font-size: clamp(2.2rem, 4vw, 3.5rem); line-height: 1.15;
    color: var(--text);
    animation: slideUp 0.8s ease both;
  }
  .hero h1 span { color: var(--orange); display: inline-block; animation: wobble 3s 1s infinite; }
  @keyframes wobble { 0%,100%{transform:rotate(0deg)} 25%{transform:rotate(-3deg)} 75%{transform:rotate(3deg)} }
  @keyframes slideUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
 
  .hero-slogan {
    font-size: 1.1rem; color: var(--text-light); margin: 1rem 0 2rem;
    line-height: 1.7; animation: slideUp 0.8s 0.2s ease both; opacity: 0;
    animation-fill-mode: forwards;
  }
  .hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; animation: slideUp 0.8s 0.4s ease both; opacity: 0; animation-fill-mode: forwards; }
 
  .btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.85rem 1.8rem; border-radius: var(--radius-pill);
    font-weight: 800; font-size: 1rem; text-decoration: none;
    cursor: pointer; border: none; transition: transform 0.2s, box-shadow 0.2s;
    font-family: 'Nunito', sans-serif;
  }
  .btn-primary { background: var(--orange); color: white; box-shadow: 0 6px 20px rgba(255,140,0,0.35); }
  .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(255,140,0,0.45); }
  .btn-secondary { background: white; color: var(--orange-dark); border: 2.5px solid var(--orange-light); }
  .btn-secondary:hover { background: var(--orange-light); transform: translateY(-3px); }
 
  .hero-visual {
    position: relative;
    animation: slideUp 0.8s 0.3s ease both; opacity: 0; animation-fill-mode: forwards;
    display: flex; justify-content: center;
  }
  .hero-visual img {
    width: 100%;
    max-width: 420px;
    height: auto;
  }
  .hero-illustration {
    width: 100%; max-width: 520px;
    background: white; border-radius: 2.5rem;
    box-shadow: var(--shadow);
    overflow: hidden; position: relative;
    aspect-ratio: 4/3;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, #FFEAA7, #DFE6E9, #A8E6CF, #FFB3BA);
    border: 4px solid white;
  }
  .hero-scene { font-size: 5rem; text-align: center; animation: float 4s ease-in-out infinite; }
  .hero-kids-row {
    display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
    padding: 1.5rem;
  }
  .kid-bubble {
    width: 90px; height: 90px; border-radius: 50%;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    font-size: 2.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.12);
    transition: transform 0.3s;
    cursor: default;
  }
  .kid-bubble:hover { transform: scale(1.15) rotate(5deg); }
  .kid-bubble:nth-child(1) { background: var(--yellow); animation: bounce1 2s infinite; }
  .kid-bubble:nth-child(2) { background: var(--pink); animation: bounce1 2s 0.3s infinite; }
  .kid-bubble:nth-child(3) { background: var(--green); animation: bounce1 2s 0.6s infinite; }
  .kid-bubble:nth-child(4) { background: var(--blue); animation: bounce1 2s 0.9s infinite; }
  @keyframes bounce1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
 
  .floating-shapes { position: absolute; inset: 0; pointer-events: none; }
  .shape {
    position: absolute; border-radius: 50%;
    opacity: 0.6;
  }
  .shape-1 { width:60px; height:60px; background:var(--yellow); top:10%; right:8%; animation:float 5s ease-in-out infinite; }
  .shape-2 { width:40px; height:40px; background:var(--pink); top:70%; left:5%; animation:float 7s 1s ease-in-out infinite; border-radius: 30% 70% 70% 30%; }
  .shape-3 { width:50px; height:50px; background:var(--green); bottom:15%; right:3%; animation:float 6s 2s ease-in-out infinite; border-radius: 60% 40% 30% 70%; }
 
  /* ── STATS BAR ── */
  .stats-bar {
    background: var(--orange); color: white;
    padding: 1.2rem 2rem;
    display: flex; justify-content: center; gap: 4rem;
    flex-wrap: wrap;
  }
  .stat { text-align: center; }
  .stat-num { font-family: 'Baloo 2', cursive; font-weight: 800; font-size: 2rem; display: block; }
  .stat-label { font-size: 0.85rem; opacity: 0.85; font-weight: 600; }
 
  /* ── SECTIONS GENERAL ── */
  section { padding: 5rem 2rem; }
  .container { max-width: 1200px; margin: 0 auto; }
  .section-title {
    font-family: 'Baloo 2', cursive; font-weight: 800;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    text-align: center; margin-bottom: 0.5rem;
    color: var(--text);
  }
  .section-title span { color: var(--orange); }
  .section-sub { text-align: center; color: var(--text-light); font-size: 1.05rem; margin-bottom: 3rem; max-width: 600px; margin-left: auto; margin-right: auto; }
  .section-tag {
    display: inline-block; background: var(--orange-light); color: var(--orange-dark);
    border-radius: var(--radius-pill); padding: 0.25rem 1rem;
    font-weight: 700; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase;
    margin-bottom: 0.6rem;
  }
 
  /* ── ABOUT ── */
  .about-section { background: var(--white); }
  .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
  .about-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .about-card {
    background: white; border-radius: 1.5rem; padding: 1.5rem;
    box-shadow: var(--shadow-card); text-align: center;
    border: 2px solid transparent; transition: border 0.2s, transform 0.2s;
  }
  .about-card:hover { border-color: var(--orange-light); transform: translateY(-4px); }
  .about-card .icon { font-size: 2.5rem; margin-bottom: 0.7rem; display: block; }
  .about-card h4 { font-weight: 800; font-size: 0.95rem; color: var(--text); margin-bottom: 0.3rem; }
  .about-card p { font-size: 0.82rem; color: var(--text-light); line-height: 1.5; }
  .about-card:nth-child(1) { background: linear-gradient(135deg, #FFF8EE, #FFE8CC); }
  .about-card:nth-child(2) { background: linear-gradient(135deg, #F0FFF6, #D4F5E8); }
  .about-card:nth-child(3) { background: linear-gradient(135deg, #F0F7FF, #D4E8F5); }
  .about-card:nth-child(4) { background: linear-gradient(135deg, #FFF5F5, #FFD4D4); }
 
  .about-text h2 { font-family: 'Baloo 2', cursive; font-weight: 800; font-size: 2rem; margin-bottom: 1rem; }
  .about-text p { color: var(--text-light); line-height: 1.8; margin-bottom: 1rem; font-size: 0.97rem; }
  .values-list { display: flex; flex-direction: column; gap: 0.7rem; margin-top: 1.5rem; }
  .value-item { display: flex; align-items: center; gap: 0.8rem; }
  .value-dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }
  .value-item span { font-weight: 700; font-size: 0.95rem; }
 
  /* ── TEAM ── */
  .team-section { background: linear-gradient(180deg, #FFF8EE 0%, #FAFFF8 100%); }
  .team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
  .team-card {
    background: white; border-radius: 2rem; padding: 2rem 1.5rem; text-align: center;
    box-shadow: var(--shadow-card); transition: transform 0.3s, box-shadow 0.3s;
    position: relative; overflow: hidden;
  }
  .team-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  }
  .team-card:nth-child(1)::before { background: var(--orange); }
  .team-card:nth-child(2)::before { background: var(--green-dark); }
  .team-card:nth-child(3)::before { background: var(--blue-dark); }
  .team-card:nth-child(4)::before { background: var(--lavender); }
  .team-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(60,40,20,0.15); }
  .team-avatar {
    width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 1rem;
    display: flex; align-items: center; justify-content: center; font-size: 2.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  }
  .team-card:nth-child(1) .team-avatar { background: var(--yellow); }
  .team-card:nth-child(2) .team-avatar { background: var(--green); }
  .team-card:nth-child(3) .team-avatar { background: var(--blue); }
  .team-card:nth-child(4) .team-avatar { background: var(--pink); }
  .team-card h3 { font-weight: 800; font-size: 1rem; margin-bottom: 0.3rem; }
  .team-card .role { font-size: 0.82rem; color: var(--orange-dark); font-weight: 700; margin-bottom: 0.7rem; }
  .team-card p { font-size: 0.82rem; color: var(--text-light); line-height: 1.5; }
 
  /* ── OFFERS ── */
  .offers-section { background: white; }
  .offers-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
  .offer-card {
    border-radius: 2rem; padding: 2rem;
    transition: transform 0.3s, box-shadow 0.3s; position: relative; overflow: hidden;
  }
  .offer-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.12); }
  .offer-card:nth-child(1) { background: linear-gradient(135deg, #FFF0D8, #FFE0B2); }
  .offer-card:nth-child(2) { background: linear-gradient(135deg, #E8FBF0, #C8F0DC); }
  .offer-card:nth-child(3) { background: linear-gradient(135deg, #E8F4FF, #C8E4F8); }
  .offer-card:nth-child(4) { background: linear-gradient(135deg, #FFF0F5, #FFD4E8); }
  .offer-card:nth-child(5) { background: linear-gradient(135deg, #F5F0FF, #E4D4FF); }
  .offer-card:nth-child(6) { background: linear-gradient(135deg, #FFFBE0, #FFF0B0); }
  .offer-icon { font-size: 3rem; margin-bottom: 1rem; display: block; }
  .offer-card h3 { font-weight: 800; font-size: 1.1rem; margin-bottom: 0.5rem; }
  .offer-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.6; margin-bottom: 1rem; }
  .offer-age {
    display: inline-block; background: rgba(255,255,255,0.7); border-radius: var(--radius-pill);
    padding: 0.2rem 0.8rem; font-size: 0.78rem; font-weight: 700; color: var(--text);
  }
 
  /* ── GALLERY ── */
  .gallery-section { background: linear-gradient(180deg, #FFF8EE 0%, #F0FFF8 100%); }
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 1rem;
  }
  .gallery-item {
    border-radius: 1.5rem; overflow: hidden; position: relative;
    aspect-ratio: 1; cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .gallery-item:hover { transform: scale(1.03); box-shadow: 0 12px 36px rgba(0,0,0,0.15); z-index: 2; }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
  .gallery-inner {
    width: 100%; height: 100%; min-height: 160px;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 0.5rem;
  }
  .g1 { background: linear-gradient(135deg, #FFEAA7, #FDCB6E); }
  .g2 { background: linear-gradient(135deg, #A8E6CF, #6FCF97); }
  .g3 { background: linear-gradient(135deg, #A8D8EA, #56CCF2); }
  .g4 { background: linear-gradient(135deg, #FFB3BA, #FF8E9E); }
  .g5 { background: linear-gradient(135deg, #D4A8E8, #BB6BD9); }
  .g6 { background: linear-gradient(135deg, #FFA94D, #FF7043); }
  .g7 { background: linear-gradient(135deg, #B8F0C0, #4CAF50); }
  .gallery-inner .big-emoji { font-size: 4rem; }
  .gallery-inner .big-emoji-lg { font-size: 6rem; }
  .gallery-caption {
    background: rgba(255,255,255,0.85); backdrop-filter: blur(4px);
    font-weight: 700; font-size: 0.8rem; color: var(--text);
    padding: 0.3rem 0.9rem; border-radius: var(--radius-pill);
  }
 
  /* ── PARENTS ── */
  .parents-section { background: white; }
  .parents-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
  .info-card {
    border-radius: 2rem; padding: 2rem; box-shadow: var(--shadow-card);
    border: 2px solid var(--orange-light);
  }
  .info-card h3 { font-weight: 800; font-size: 1.1rem; margin-bottom: 1.2rem; display: flex; align-items: center; gap: 0.6rem; }
  .steps-list { counter-reset: step; display: flex; flex-direction: column; gap: 1rem; }
  .step-item { display: flex; gap: 1rem; align-items: flex-start; }
  .step-num {
    width: 32px; height: 32px; border-radius: 50%;
    background: var(--orange); color: white;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 0.9rem; flex-shrink: 0;
  }
  .step-item div h4 { font-weight: 700; font-size: 0.92rem; margin-bottom: 0.2rem; }
  .step-item div p { font-size: 0.82rem; color: var(--text-light); }
 
  /* ── CONTACT ── */
  .contact-section { background: linear-gradient(135deg, var(--orange) 0%, #FF8C00 100%); color: white; text-align: center; padding: 5rem 2rem; }
  .contact-section .section-title { color: white; }
  .contact-section .section-title span { color: var(--yellow); }
  .contact-section .section-sub { color: rgba(255,255,255,0.85); margin-bottom: 2.5rem; }
  .contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: 800px; margin: 0 auto 3rem; }
  .contact-item {
    background: rgba(255,255,255,0.15); backdrop-filter: blur(8px);
    border-radius: 1.5rem; padding: 1.5rem; border: 1px solid rgba(255,255,255,0.3);
    transition: background 0.2s, transform 0.2s;
  }
  .contact-item:hover { background: rgba(255,255,255,0.25); transform: translateY(-4px); }
  .contact-item .ci { font-size: 2rem; margin-bottom: 0.5rem; display: block; }
  .contact-item h4 { font-weight: 800; font-size: 0.9rem; margin-bottom: 0.3rem; }
  .contact-item p { font-size: 0.82rem; opacity: 0.85; }
  .contact-form {
    background: white; border-radius: 2rem; padding: 2.5rem;
    max-width: 560px; margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  }
  .contact-form h3 { font-family: 'Baloo 2', cursive; font-weight: 800; font-size: 1.4rem; color: var(--text); margin-bottom: 1.5rem; }
  .form-group { margin-bottom: 1rem; }
  .form-group input, .form-group textarea, .form-group select {
    width: 100%; padding: 0.85rem 1.1rem;
    border: 2px solid var(--orange-light); border-radius: 1rem;
    font-family: 'Nunito', sans-serif; font-size: 0.92rem; color: var(--text);
    background: var(--white); outline: none;
    transition: border-color 0.2s;
  }
  .form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--orange); }
  .form-group textarea { resize: vertical; min-height: 100px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
 
  /* ── FOOTER ── */
  footer {
    background: #3A2F2F; color: white; padding: 3rem 2rem 1.5rem;
  }
  .footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
  .footer-brand p { font-size: 0.85rem; opacity: 0.7; line-height: 1.7; margin-top: 0.7rem; }
  .footer-col h4 { font-weight: 800; font-size: 0.9rem; margin-bottom: 1rem; color: var(--orange-light); }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; }
  .footer-col a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
  .footer-col a:hover { color: var(--orange-light); }
  .footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem; text-align: center; font-size: 0.8rem; opacity: 0.5; }
 
  /* ── MOBILE MENU ── */
  .mobile-menu {
    display: flex; position: fixed; top: 0; right: 0; bottom: 0;
    width: min(85vw, 360px); max-height: 100dvh;
    z-index: 250;
    background: linear-gradient(180deg, #FFF8EE 0%, #FFFEF9 50%, #F0FFF8 100%);
    flex-direction: column; padding: 5rem 1.5rem 2rem;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -4px 0 24px rgba(0,0,0,0.12);
  }
  .mobile-menu.open { transform: translateX(0); }
  .mobile-backdrop {
    display: none; position: fixed; inset: 0; z-index: 240;
    background: rgba(58,47,47,0.4);
  }
  .mobile-backdrop.open { display: block; }
  .mobile-close {
    position: absolute; top: 1.2rem; right: 1.2rem;
    background: var(--orange-light); border: none;
    width: 44px; height: 44px; border-radius: 50%;
    font-size: 1.5rem; cursor: pointer; color: var(--text);
    display: flex; align-items: center; justify-content: center;
    transition: transform 0.2s;
  }
  .mobile-close:hover { transform: scale(1.1); }
  .mobile-menu-logo {
    display: flex; flex-direction: column; align-items: center;
    margin-bottom: 2rem;
  }
  .mobile-logo-icon {
    width: 64px; height: 64px; border-radius: 50%;
    background: var(--orange); display: flex; align-items: center; justify-content: center;
    font-size: 2rem; box-shadow: 0 4px 16px rgba(255,140,0,0.3);
  }
  .mobile-logo-text {
    font-family: 'Baloo 2', cursive; font-weight: 800; font-size: 1.3rem;
    color: var(--orange-dark); margin-top: 0.5rem;
  }
  .mobile-nav { display: flex; flex-direction: column; width: 100%; gap: 0.3rem; }
  .mobile-nav-link {
    display: flex; align-items: center; gap: 1rem;
    padding: 1rem 1.5rem; border-radius: 1rem;
    font-weight: 700; font-size: 1.1rem; color: var(--text);
    text-decoration: none; transition: all 0.2s;
  }
  .mobile-nav-link:hover { background: var(--orange-light); color: var(--orange-dark); }
  .mobile-nav-icon { font-size: 1.4rem; }
  .mobile-nav-contact {
    margin-top: 1rem; background: var(--orange-light);
    color: var(--orange-dark); font-weight: 800;
  }
  .mobile-login-btn {
    margin-top: 1.5rem; width: 100%; max-width: 280px;
    padding: 1rem 2rem; border-radius: 2rem;
    background: var(--orange); color: white;
    font-weight: 800; font-size: 1.1rem; text-decoration: none;
    text-align: center; box-shadow: 0 4px 16px rgba(255,140,0,0.4);
    transition: transform 0.2s;
  }
  .mobile-login-btn:hover { transform: translateY(-2px); }
 
  /* ── SCROLL ANIMATION ── */
  .reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s, transform 0.7s; }
  .reveal.visible { opacity: 1; transform: translateY(0); }
 
  /* ── RESPONSIVE ── */
  @media(max-width:900px) {
    .hero-inner { grid-template-columns: 1fr; text-align: center; }
    .hero-btns { justify-content: center; }
    .about-grid { grid-template-columns: 1fr; }
    .parents-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .gallery-grid { grid-template-columns: repeat(2,1fr); }
    .gallery-item:nth-child(1) { grid-column: span 2; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .stats-bar { gap: 2rem; }
    .hero-visual img { max-width: 280px; }
  }
  @media(max-width:600px) {
    .hero { padding-top: 2rem; min-height: auto; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .about-cards { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; }
    section { padding: 3rem 1.2rem; }
    .contact-form { padding: 1.5rem; }
    .form-row { grid-template-columns: 1fr; }
  }

  /* ── NAV LOGIN BUTTON ── */
  .nav-login-btn {
    background: transparent !important;
    border: 2px solid var(--orange) !important;
    color: var(--orange-dark) !important;
  }
  .nav-login-btn:hover {
    background: var(--orange) !important;
    color: white !important;
  }

  /* ── MODAL OVERLAY ── */
  .modal-overlay {
    display: none;
    position: fixed; inset: 0; z-index: 300;
    background: rgba(58,47,47,0.6);
    backdrop-filter: blur(6px);
    align-items: center; justify-content: center;
    padding: 1rem;
  }
  .modal-overlay.open { display: flex; }
  #passwordChangeModal { z-index: 400; }

  /* ── LOGIN MODAL ── */
  .modal-box {
    background: var(--white);
    border-radius: 2rem;
    padding: 2.5rem;
    max-width: 440px;
    width: 100%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    animation: slideUp 0.4s ease both;
  }
  .modal-close {
    position: absolute; top: 1rem; right: 1.2rem;
    background: none; border: none; font-size: 1.8rem;
    cursor: pointer; color: var(--text-light);
    transition: color 0.2s;
    line-height: 1;
  }
  .modal-close:hover { color: var(--text); }
  .modal-header {
    text-align: center; margin-bottom: 1.5rem;
  }
  .modal-logo {
    width: 60px; height: 60px; border-radius: 50%;
    background: var(--orange);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem; margin: 0 auto 0.8rem;
    box-shadow: 0 4px 14px rgba(255,140,0,0.35);
  }
  .modal-header h2 {
    font-family: 'Baloo 2', cursive; font-weight: 800;
    font-size: 1.5rem; color: var(--text); margin-bottom: 0.3rem;
  }
  .modal-header p {
    font-size: 0.88rem; color: var(--text-light);
  }
  .modal-box .form-group label {
    display: block; font-weight: 700; font-size: 0.85rem;
    color: var(--text); margin-bottom: 0.4rem;
  }
  .login-error {
    color: #e74c3c; font-size: 0.82rem; font-weight: 700;
    min-height: 1.2rem; margin-bottom: 0.5rem;
  }
  .login-demo-info {
    margin-top: 1.5rem; padding-top: 1.2rem;
    border-top: 2px dashed var(--orange-light);
    font-size: 0.82rem; color: var(--text-light);
  }
  .login-demo-info strong { color: var(--text); display: block; margin-bottom: 0.6rem; }
  .demo-accounts { display: flex; flex-direction: column; gap: 0.5rem; }
  .demo-account {
    display: flex; align-items: center; gap: 0.6rem;
    padding: 0.5rem 0.8rem; border-radius: 1rem;
    background: var(--yellow-light); cursor: pointer;
    transition: background 0.2s; font-size: 0.8rem;
  }
  .demo-account:hover { background: var(--orange-light); }
  .demo-role {
    font-weight: 800; font-size: 0.7rem; padding: 0.15rem 0.5rem;
    border-radius: var(--radius-pill); text-transform: uppercase;
    letter-spacing: 0.05em;
  }
  .admin-badge { background: var(--orange); color: white; }
  .user-badge { background: var(--blue); color: var(--text); }

  /* ── DASHBOARD ── */
  .dashboard-box {
    background: var(--white);
    border-radius: 2rem;
    padding: 2.5rem;
    max-width: 640px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    animation: slideUp 0.4s ease both;
  }
  .dashboard-header {
    display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem;
  }
  .dashboard-avatar {
    width: 56px; height: 56px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem; flex-shrink: 0;
  }
  .admin-avatar { background: var(--orange-light); }
  .user-avatar { background: var(--blue); }
  .dashboard-header h2 {
    font-family: 'Baloo 2', cursive; font-weight: 800;
    font-size: 1.4rem; color: var(--text); line-height: 1.2;
  }
  .dashboard-role {
    font-size: 0.82rem; color: var(--text-light); font-weight: 600;
  }

  /* ── DASHBOARD TABS ── */
  .dashboard-tabs {
    display: flex; gap: 0.4rem; margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--orange-light);
    padding-bottom: 0;
  }
  .tab-btn {
    background: none; border: none; padding: 0.6rem 1rem;
    font-family: 'Nunito', sans-serif; font-weight: 700;
    font-size: 0.88rem; color: var(--text-light);
    cursor: pointer; border-bottom: 3px solid transparent;
    margin-bottom: -2px; transition: color 0.2s, border-color 0.2s;
  }
  .tab-btn:hover { color: var(--text); }
  .tab-btn.active { color: var(--orange-dark); border-bottom-color: var(--orange); }
  .tab-content { display: none; }
  .tab-content.active { display: block; }
  .tab-content h3 {
    font-weight: 800; font-size: 1rem; margin-bottom: 1rem;
    color: var(--text);
  }

  /* ── SUBMISSIONS LIST ── */
  .submissions-list { display: flex; flex-direction: column; gap: 0.8rem; }
  .submission-card {
    background: white; border-radius: 1.2rem; padding: 1.2rem;
    box-shadow: var(--shadow-card); border-left: 4px solid var(--orange);
    transition: transform 0.2s;
  }
  .submission-card:hover { transform: translateX(4px); }
  .submission-card .sub-header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 0.5rem; flex-wrap: wrap; gap: 0.3rem;
  }
  .submission-card .sub-name { font-weight: 800; font-size: 0.95rem; color: var(--text); }
  .submission-card .sub-date { font-size: 0.75rem; color: var(--text-light); font-weight: 600; }
  .submission-card .sub-detail {
    font-size: 0.82rem; color: var(--text-light); line-height: 1.5;
  }
  .submission-card .sub-detail strong { color: var(--text); }
  .submission-card .sub-group {
    display: inline-block; margin-top: 0.5rem;
    background: var(--orange-light); color: var(--orange-dark);
    border-radius: var(--radius-pill); padding: 0.15rem 0.7rem;
    font-size: 0.72rem; font-weight: 700;
  }
  .empty-state {
    text-align: center; color: var(--text-light); font-size: 0.9rem;
    padding: 2rem 1rem; font-style: italic;
  }

  /* ── STATUS FILTER BAR ── */
  .status-filter-bar {
    display: flex; flex-wrap: wrap; gap: 0.4rem;
    margin-bottom: 1rem;
  }
  .status-filter-btn {
    background: var(--white); border: 2px solid var(--orange-light);
    border-radius: var(--radius-pill); padding: 0.35rem 0.9rem;
    font-family: 'Nunito', sans-serif; font-weight: 700;
    font-size: 0.78rem; color: var(--text-light); cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    display: inline-flex; align-items: center; gap: 0.3rem;
  }
  .status-filter-btn:hover { background: var(--orange-light); color: var(--orange-dark); }
  .status-filter-btn.active { background: var(--orange); color: white; border-color: var(--orange); }
  .filter-count {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 20px; height: 20px; border-radius: 50%;
    background: rgba(0,0,0,0.1); font-size: 0.7rem; font-weight: 800;
    padding: 0 4px;
  }
  .status-filter-btn.active .filter-count { background: rgba(255,255,255,0.3); }

  /* ── SUBMISSION STATUS ── */
  .submission-card.status-accepted { border-left-color: var(--green-dark); }
  .submission-card.status-rejected { border-left-color: #e74c3c; opacity: 0.75; }
  .submission-card.status-pending { border-left-color: var(--orange); }

  .status-badge {
    display: inline-flex; align-items: center; gap: 0.25rem;
    font-size: 0.7rem; font-weight: 800; padding: 0.2rem 0.6rem;
    border-radius: var(--radius-pill); text-transform: uppercase;
    letter-spacing: 0.03em;
  }
  .status-badge.badge-pending { background: var(--yellow-light); color: #b8860b; }
  .status-badge.badge-accepted { background: #d4f5e8; color: #2d8659; }
  .status-badge.badge-rejected { background: #fdd; color: #c0392b; }

  /* ── SUBMISSION ACTIONS ── */
  .sub-actions {
    display: flex; gap: 0.5rem; margin-top: 0.8rem;
    flex-wrap: wrap;
  }
  .sub-action-btn {
    display: inline-flex; align-items: center; gap: 0.3rem;
    padding: 0.4rem 0.9rem; border-radius: var(--radius-pill);
    font-family: 'Nunito', sans-serif; font-weight: 700;
    font-size: 0.78rem; cursor: pointer; border: 2px solid transparent;
    transition: transform 0.15s, box-shadow 0.15s, opacity 0.2s;
  }
  .sub-action-btn:hover { transform: translateY(-1px); }
  .sub-action-btn:disabled { opacity: 0.5; cursor: default; transform: none; }
  .btn-accept {
    background: #d4f5e8; color: #2d8659; border-color: var(--green-dark);
  }
  .btn-accept:hover { box-shadow: 0 3px 10px rgba(92,184,138,0.3); }
  .btn-reject {
    background: #fdd; color: #c0392b; border-color: #e74c3c;
  }
  .btn-reject:hover { box-shadow: 0 3px 10px rgba(231,76,60,0.3); }
  .btn-reset {
    background: var(--yellow-light); color: var(--text-light); border-color: var(--yellow);
  }
  .btn-reset:hover { box-shadow: 0 3px 10px rgba(255,224,102,0.3); }
  .btn-create-user {
    background: var(--blue); color: var(--text); border-color: var(--blue-dark);
  }
  .btn-create-user:hover { box-shadow: 0 3px 10px rgba(74,156,199,0.3); }

  /* ── CHAT / MESSAGING ── */
  .chat-area {
    background: white; border-radius: 1.2rem; overflow: hidden;
    box-shadow: var(--shadow-card); border: 2px solid var(--orange-light);
  }
  .chat-messages {
    height: 260px; overflow-y: auto; padding: 1rem;
    display: flex; flex-direction: column; gap: 0.6rem;
    background: #faf8f5;
  }
  .chat-bubble {
    max-width: 80%; padding: 0.7rem 1rem;
    border-radius: 1rem; font-size: 0.85rem;
    line-height: 1.5; position: relative;
    word-wrap: break-word;
  }
  .chat-bubble.msg-user {
    align-self: flex-end; background: var(--orange);
    color: white; border-bottom-right-radius: 0.3rem;
  }
  .chat-bubble.msg-admin {
    align-self: flex-start; background: white;
    color: var(--text); border-bottom-left-radius: 0.3rem;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  }
  .chat-bubble .msg-sender {
    font-size: 0.7rem; font-weight: 800; opacity: 0.8;
    margin-bottom: 0.2rem; display: block;
  }
  .chat-bubble .msg-text { display: block; }
  .chat-bubble .msg-time {
    font-size: 0.65rem; opacity: 0.7; margin-top: 0.3rem;
    display: block; text-align: right;
  }
  .chat-input-row {
    display: flex; gap: 0.5rem; padding: 0.8rem;
    background: white; border-top: 1px solid var(--orange-light);
  }
  .chat-input {
    flex: 1; padding: 0.6rem 1rem; border: 2px solid var(--orange-light);
    border-radius: var(--radius-pill); font-family: 'Nunito', sans-serif;
    font-size: 0.85rem; outline: none; transition: border-color 0.2s;
  }
  .chat-input:focus { border-color: var(--orange); }
  .chat-send-btn {
    width: 42px; height: 42px; border-radius: 50%;
    background: var(--orange); border: none; font-size: 1.1rem;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: transform 0.15s, box-shadow 0.15s;
    flex-shrink: 0;
  }
  .chat-send-btn:hover {
    transform: scale(1.08); box-shadow: 0 3px 12px rgba(255,140,0,0.4);
  }

  /* ── PUBLIC BOARD ── */
  .board-description {
    font-size: 0.82rem; color: var(--text-light); margin-bottom: 0.8rem;
    font-style: italic;
  }
  .public-board {
    background: white; border-radius: 1.2rem; overflow: hidden;
    box-shadow: var(--shadow-card); border: 2px solid var(--orange-light);
  }
  .board-feed {
    height: 280px; overflow-y: auto; padding: 1rem;
    display: flex; flex-direction: column; gap: 0.8rem;
    background: #faf8f5;
  }
  .board-post {
    background: white; border-radius: 1rem; padding: 0.9rem 1.1rem;
    box-shadow: 0 1px 6px rgba(0,0,0,0.06);
    border-left: 3px solid var(--blue);
  }
  .board-post-admin {
    border-left-color: var(--orange);
    background: var(--yellow-light);
  }
  .board-post-header {
    display: flex; align-items: center; gap: 0.5rem;
    margin-bottom: 0.4rem;
  }
  .board-post-author {
    font-weight: 800; font-size: 0.82rem; color: var(--text);
    flex: 1;
  }
  .board-post-time {
    font-size: 0.7rem; color: var(--text-light);
  }
  .board-delete-btn {
    background: none; border: none; cursor: pointer;
    font-size: 0.9rem; opacity: 0.5; transition: opacity 0.2s;
    padding: 0.1rem;
  }
  .board-delete-btn:hover { opacity: 1; }
  .board-post-text {
    font-size: 0.85rem; color: var(--text-light); line-height: 1.5;
  }

  /* ── ADMIN CONVERSATION LIST ── */
  .admin-conversations { display: flex; flex-direction: column; gap: 0.6rem; }
  .conversation-item {
    display: flex; align-items: center; gap: 0.8rem;
    background: white; padding: 0.9rem 1.1rem; border-radius: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06); cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    border-left: 4px solid var(--orange-light);
  }
  .conversation-item:hover {
    transform: translateX(4px); box-shadow: var(--shadow-card);
  }
  .conversation-item.has-unread { border-left-color: var(--orange); background: var(--yellow-light); }
  .conv-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--blue); display: flex; align-items: center;
    justify-content: center; font-size: 1.2rem; flex-shrink: 0;
  }
  .conv-info { flex: 1; min-width: 0; }
  .conv-name { font-weight: 800; font-size: 0.9rem; color: var(--text); }
  .conv-preview {
    font-size: 0.78rem; color: var(--text-light);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  }
  .conv-time { font-size: 0.7rem; color: var(--text-light); flex-shrink: 0; }
  .conv-unread-badge {
    width: 20px; height: 20px; border-radius: 50%;
    background: var(--orange); color: white; font-size: 0.7rem;
    font-weight: 800; display: flex; align-items: center;
    justify-content: center; flex-shrink: 0;
  }

  /* ── ADMIN CHAT PANEL ── */
  .admin-chat-panel {
    background: white; border-radius: 1.2rem; overflow: hidden;
    box-shadow: var(--shadow-card); border: 2px solid var(--orange-light);
  }
  .chat-panel-header {
    display: flex; align-items: center; gap: 0.8rem;
    padding: 0.8rem 1rem; background: var(--orange-light);
    border-bottom: 2px solid var(--orange-light);
  }
  .chat-back-btn {
    background: none; border: none; font-size: 0.85rem;
    font-weight: 700; color: var(--orange-dark); cursor: pointer;
    font-family: 'Nunito', sans-serif;
  }
  .chat-back-btn:hover { text-decoration: underline; }
  .chat-partner-name {
    font-weight: 800; font-size: 0.95rem; color: var(--text);
  }
  .admin-chat-panel .chat-messages { height: 240px; }

  /* ── NOTIFICATION BADGE ON TAB ── */
  .tab-btn .tab-badge {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 18px; height: 18px; border-radius: 50%;
    background: var(--orange); color: white; font-size: 0.65rem;
    font-weight: 800; margin-left: 0.3rem; padding: 0 4px;
  }

  /* ── ADMIN STATS ── */
  .stats-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem;
    margin-bottom: 1rem;
  }
  .dash-stat-card {
    background: linear-gradient(135deg, #FFF8EE, #FFE8CC);
    border-radius: 1.2rem; padding: 1.2rem; text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  }
  .dash-stat-num {
    font-family: 'Baloo 2', cursive; font-weight: 800;
    font-size: 1.8rem; color: var(--orange-dark); display: block;
  }
  .dash-stat-label { font-size: 0.78rem; color: var(--text-light); font-weight: 600; }

  .group-stats { display: flex; flex-direction: column; gap: 0.8rem; }
  .group-bar { display: flex; align-items: center; gap: 0.8rem; font-size: 0.85rem; font-weight: 700; }
  .group-bar > span:first-child { width: 110px; flex-shrink: 0; }
  .bar-track {
    flex: 1; height: 12px; background: var(--orange-light);
    border-radius: var(--radius-pill); overflow: hidden;
  }
  .bar-fill {
    height: 100%; background: var(--orange); border-radius: var(--radius-pill);
    transition: width 0.6s ease;
  }
  .bar-count { font-weight: 800; color: var(--orange-dark); width: 24px; text-align: right; }

  /* ── ADMIN TEAM LIST ── */
  .team-admin-list { display: flex; flex-direction: column; gap: 0.8rem; }
  .team-admin-card {
    display: flex; align-items: center; gap: 1rem;
    background: white; padding: 1rem 1.2rem; border-radius: 1.2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  }
  .team-admin-avatar {
    width: 48px; height: 48px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; background: var(--yellow);
    flex-shrink: 0;
  }
  .team-admin-card:nth-child(2) .team-admin-avatar { background: var(--green); }
  .team-admin-card:nth-child(3) .team-admin-avatar { background: var(--blue); }
  .team-admin-card:nth-child(4) .team-admin-avatar { background: var(--pink); }
  .role-text { font-size: 0.82rem; color: var(--orange-dark); font-weight: 600; }

  /* ── USER DASHBOARD ── */
  .user-welcome {
    background: linear-gradient(135deg, #E8F4FF, #C8E4F8);
    border-radius: 1.2rem; padding: 1.5rem; margin-bottom: 1.5rem;
  }
  .user-welcome h3 { font-weight: 800; font-size: 1.05rem; margin-bottom: 0.4rem; color: var(--text); }
  .user-welcome p { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; }
  .user-section { margin-bottom: 1.5rem; }
  .user-section h3 { font-weight: 800; font-size: 1rem; margin-bottom: 0.8rem; color: var(--text); }

  .quick-links {
    display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem;
  }
  .quick-link {
    display: flex; align-items: center; gap: 0.6rem;
    background: white; padding: 1rem; border-radius: 1.2rem;
    text-decoration: none; color: var(--text); font-weight: 700;
    font-size: 0.88rem; box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .quick-link:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
  .quick-link span { font-size: 1.3rem; }

  .dashboard-logout {
    margin-top: 1.5rem; width: 100%;
    justify-content: center; font-size: 0.95rem;
  }

  /* ── CREATE USER FORM ── */
  .create-user-form {
    background: white;
    border-radius: 1.2rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-card);
    border: 2px solid var(--orange-light);
  }
  .users-admin-list { display: flex; flex-direction: column; gap: 0.8rem; }
  .user-admin-card {
    display: flex; align-items: center; gap: 1rem;
    background: white; padding: 1rem 1.2rem; border-radius: 1.2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06); flex-wrap: wrap;
  }
  .user-admin-info { flex: 1; min-width: 0; }
  .user-admin-name { font-weight: 800; font-size: 0.92rem; color: var(--text); }
  .user-admin-email { font-size: 0.78rem; color: var(--text-light); }
  .user-admin-actions { display: flex; gap: 0.5rem; flex-wrap: wrap; }
  .user-action-btn {
    display: inline-flex; align-items: center; gap: 0.3rem;
    padding: 0.4rem 0.9rem; border-radius: var(--radius-pill);
    font-family: 'Nunito', sans-serif; font-weight: 700;
    font-size: 0.78rem; cursor: pointer; border: 2px solid transparent;
    transition: transform 0.15s, box-shadow 0.15s;
  }
  .user-action-btn:hover { transform: translateY(-1px); }
  .btn-change-pw {
    background: var(--blue); color: var(--text); border-color: var(--blue-dark);
  }
  .btn-change-pw:hover { box-shadow: 0 3px 10px rgba(74,156,199,0.3); }
  .btn-delete-user {
    background: #fdd; color: #c0392b; border-color: #e74c3c;
  }
  .btn-delete-user:hover { box-shadow: 0 3px 10px rgba(231,76,60,0.3); }
  .create-user-form .form-group {
    margin-bottom: 1rem;
  }
  .create-user-form .form-group label {
    display: block;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text);
    margin-bottom: 0.4rem;
  }
  .create-user-form .form-group input {
    width: 100%;
    padding: 0.7rem 1rem;
    border: 2px solid var(--orange-light);
    border-radius: 1rem;
    font-family: 'Nunito', sans-serif;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s;
  }
  .create-user-form .form-group input:focus {
    border-color: var(--orange);
  }

  /* ── LOGGED-IN NAV INDICATOR ── */
  .nav-user-indicator {
    display: inline-flex; align-items: center; gap: 0.4rem;
    font-size: 0.78rem; font-weight: 700; color: var(--orange-dark);
    background: var(--yellow-light); padding: 0.25rem 0.7rem;
    border-radius: var(--radius-pill);
  }

  /* ── DASHBOARD RESPONSIVE ── */
  @media(max-width:600px) {
    .dashboard-box { padding: 1.5rem; }
    .stats-grid { grid-template-columns: 1fr; }
    .quick-links { grid-template-columns: 1fr; }
    .modal-box { padding: 1.5rem; }
    .dashboard-tabs { overflow-x: auto; }
    .tab-btn { font-size: 0.8rem; padding: 0.5rem 0.7rem; white-space: nowrap; }
    .chat-messages { height: 200px; }
  }

  /* ── SCREEN READER ONLY ── */
  .sr-only {
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0,0,0,0); white-space: nowrap; border: 0;
  }

  /* ── BACK TO TOP ── */
  .back-to-top {
    position: fixed; bottom: 2rem; right: 2rem;
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--orange); color: white;
    border: none; font-size: 1.4rem; cursor: pointer;
    box-shadow: 0 4px 16px rgba(255,140,0,0.4);
    opacity: 0; visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s, transform 0.2s;
    z-index: 150;
    display: flex; align-items: center; justify-content: center;
  }
  .back-to-top.visible { opacity: 1; visibility: visible; }
  .back-to-top:hover { transform: translateY(-3px); box-shadow: 0 6px 24px rgba(255,140,0,0.5); }

  /* ── TOAST NOTIFICATIONS ── */
  .toast-container {
    position: fixed; top: 5.5rem; right: 1.5rem;
    z-index: 500; display: flex; flex-direction: column;
    gap: 0.6rem; pointer-events: none;
  }
  .toast {
    background: white; border-radius: 1rem; padding: 1rem 1.4rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    font-size: 0.9rem; font-weight: 700; color: var(--text);
    display: flex; align-items: center; gap: 0.6rem;
    pointer-events: auto;
    animation: toastIn 0.4s ease both;
    border-left: 4px solid var(--orange);
    max-width: 360px;
  }
  .toast.toast-success { border-left-color: var(--green-dark); }
  .toast.toast-error { border-left-color: #e74c3c; }
  .toast.toast-out { animation: toastOut 0.3s ease both; }
  @keyframes toastIn { from{opacity:0;transform:translateX(40px)} to{opacity:1;transform:translateX(0)} }
  @keyframes toastOut { from{opacity:1;transform:translateX(0)} to{opacity:0;transform:translateX(40px)} }
  .toast-icon { font-size: 1.2rem; flex-shrink: 0; }

  /* ── FORM VALIDATION ── */
  .form-group input.invalid,
  .form-group textarea.invalid,
  .form-group select.invalid {
    border-color: #e74c3c !important;
    animation: shakeField 0.4s ease;
  }
  @keyframes shakeField {
    0%,100%{transform:translateX(0)}
    20%{transform:translateX(-6px)}
    40%{transform:translateX(6px)}
    60%{transform:translateX(-4px)}
    80%{transform:translateX(4px)}
  }
  .form-group input.valid,
  .form-group textarea.valid,
  .form-group select.valid {
    border-color: var(--green-dark) !important;
  }

  /* ══════════════════════════════════════════════════════
     LEGAL PAGES (Impressum, Datenschutz, Satzung, Downloads)
     ══════════════════════════════════════════════════════ */

  .legal-section {
    background: var(--white);
    padding: 3rem 2rem 5rem;
    min-height: 70vh;
  }
  .legal-container { max-width: 860px; }
  .legal-header {
    text-align: center; margin-bottom: 3rem;
  }
  .legal-header h1 {
    font-family: 'Baloo 2', cursive; font-weight: 800;
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--text); margin-bottom: 0.5rem;
  }
  .legal-lead {
    font-size: 1rem; color: var(--text-light); max-width: 600px;
    margin: 0 auto; line-height: 1.6;
  }
  .legal-card {
    background: white; border-radius: 1.5rem; padding: 2rem 2.5rem;
    box-shadow: var(--shadow-card); margin-bottom: 1.5rem;
    border: 2px solid var(--orange-light);
  }
  .legal-card h2 {
    font-family: 'Baloo 2', cursive; font-weight: 800;
    font-size: 1.3rem; color: var(--orange-dark); margin-bottom: 1.2rem;
    padding-bottom: 0.6rem; border-bottom: 2px solid var(--orange-light);
  }
  .legal-card h3 {
    font-weight: 800; font-size: 1rem; color: var(--text);
    margin: 1.2rem 0 0.5rem;
  }
  .legal-card p {
    font-size: 0.9rem; color: var(--text-light); line-height: 1.75;
    margin-bottom: 0.8rem;
  }
  .legal-card a {
    color: var(--orange-dark); text-decoration: underline;
    text-underline-offset: 2px;
  }
  .legal-card a:hover { color: var(--orange); }
  .legal-note {
    margin-top: 0.8rem; padding: 0.8rem 1rem;
    background: var(--yellow-light); border-radius: 1rem;
    font-size: 0.85rem !important;
  }
  .legal-list {
    list-style: none; padding: 0; margin: 0.5rem 0 1rem;
  }
  .legal-list li {
    position: relative; padding-left: 1.4rem;
    font-size: 0.9rem; color: var(--text-light);
    line-height: 1.75; margin-bottom: 0.3rem;
  }
  .legal-list li::before {
    content: '•'; position: absolute; left: 0;
    color: var(--orange); font-weight: 800; font-size: 1.1rem;
  }

  /* ── DOWNLOADS PAGE ── */
  .download-list { display: flex; flex-direction: column; gap: 0.8rem; }
  .download-item {
    display: flex; align-items: center; gap: 1rem;
    background: var(--white); padding: 1rem 1.2rem;
    border-radius: 1rem; border: 1px solid var(--orange-light);
    transition: box-shadow 0.2s, transform 0.2s;
  }
  .download-item:hover { box-shadow: var(--shadow-card); transform: translateY(-2px); }
  .download-icon { font-size: 1.8rem; flex-shrink: 0; }
  .download-info { flex: 1; min-width: 0; }
  .download-info strong { font-size: 0.92rem; color: var(--text); display: block; }
  .download-info span { font-size: 0.78rem; color: var(--text-light); }
  .download-btn {
    flex-shrink: 0; padding: 0.5rem 1rem !important;
    font-size: 0.82rem !important;
  }

  /* ══════════════════════════════════════════════════════
     GALLERY PAGE
     ══════════════════════════════════════════════════════ */

  .gallery-hero {
    background: linear-gradient(135deg, #FFF8EE 0%, #F0FFF8 100%);
    padding: 4rem 2rem 2rem; text-align: center;
  }

  .gallery-filter-section {
    padding: 1rem 2rem; background: var(--white);
  }
  .gallery-filter {
    display: flex; flex-wrap: wrap; gap: 0.5rem;
    justify-content: center;
  }
  .filter-btn {
    background: var(--white); border: 2px solid var(--orange-light);
    border-radius: var(--radius-pill); padding: 0.45rem 1.1rem;
    font-family: 'Nunito', sans-serif; font-weight: 700;
    font-size: 0.85rem; color: var(--text); cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
  }
  .filter-btn:hover { background: var(--orange-light); color: var(--orange-dark); }
  .filter-btn.active {
    background: var(--orange); color: white; border-color: var(--orange);
  }

  .gallery-page-section {
    padding: 2rem 2rem 4rem; background: var(--white);
  }
  .gallery-page-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
  }
  .gallery-page-item {
    background: white; border-radius: 1.5rem; overflow: hidden;
    box-shadow: var(--shadow-card); cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .gallery-page-item:hover {
    transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.14);
  }
  .gallery-page-item.hidden { display: none; }
  .gallery-page-visual {
    aspect-ratio: 16/10; display: flex;
    align-items: center; justify-content: center;
  }
  .gallery-page-emoji { font-size: 4rem; }
  .gallery-page-info { padding: 1.2rem 1.4rem; }
  .gallery-page-info h3 {
    font-weight: 800; font-size: 1rem; margin-bottom: 0.3rem;
    color: var(--text);
  }
  .gallery-page-info p {
    font-size: 0.82rem; color: var(--text-light); line-height: 1.5;
    margin-bottom: 0.5rem;
  }
  .gallery-page-date {
    font-size: 0.72rem; color: var(--orange-dark); font-weight: 600;
  }

  /* ── LIGHTBOX ── */
  .lightbox-overlay {
    display: none; position: fixed; inset: 0; z-index: 400;
    background: rgba(0,0,0,0.85); backdrop-filter: blur(8px);
    align-items: center; justify-content: center; padding: 2rem;
  }
  .lightbox-overlay.open { display: flex; }
  .lightbox-close {
    position: absolute; top: 1.5rem; right: 2rem;
    background: none; border: none; color: white;
    font-size: 2.5rem; cursor: pointer; z-index: 410;
    transition: transform 0.2s;
  }
  .lightbox-close:hover { transform: scale(1.2); }
  .lightbox-prev, .lightbox-next {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(255,255,255,0.15); border: none;
    color: white; font-size: 2rem; cursor: pointer;
    width: 50px; height: 50px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s; z-index: 410;
  }
  .lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.3); }
  .lightbox-prev { left: 1.5rem; }
  .lightbox-next { right: 1.5rem; }
  .lightbox-content {
    max-width: 600px; width: 100%;
    background: white; border-radius: 2rem; overflow: hidden;
    animation: slideUp 0.3s ease both;
  }
  .lightbox-visual {
    aspect-ratio: 16/10; display: flex;
    align-items: center; justify-content: center;
    font-size: 6rem;
  }
  .lightbox-info { padding: 1.5rem 2rem; }
  .lightbox-info h3 {
    font-family: 'Baloo 2', cursive; font-weight: 800;
    font-size: 1.3rem; margin-bottom: 0.3rem;
  }
  .lightbox-info p {
    font-size: 0.9rem; color: var(--text-light); line-height: 1.6;
    margin-bottom: 0.5rem;
  }
  .lightbox-info span {
    font-size: 0.8rem; color: var(--orange-dark); font-weight: 600;
  }

  .gallery-cta {
    background: linear-gradient(135deg, #FFF8EE, #FFF3D6);
    padding: 4rem 2rem;
  }

  /* ── RESPONSIVE: LEGAL / GALLERY ── */
  @media(max-width:600px) {
    .legal-card { padding: 1.5rem; }
    .download-item { flex-direction: column; text-align: center; gap: 0.6rem; }
    .download-btn { width: 100%; justify-content: center; }
    .lightbox-prev, .lightbox-next { display: none; }
    .gallery-page-grid { grid-template-columns: 1fr; }
  }