/* ---------- Reset & Variables ---------- */
:root{
  --accent: #0f7a73; /* Deep Teal */
  --accent-2: #14b8a6; /* Bright Aqua */
  --accent-light: #f0fdfa;
  --muted: #64748b;
  --dark: #0f172a;
  --bg: #f8fafc;
  --card: #ffffff;
  --glass: rgba(255, 255, 255, 0.95);
  
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 30px -5px rgba(15, 122, 107, 0.1);
  --shadow-lg: 0 25px 50px -12px rgba(15, 122, 107, 0.2);
}

*{box-sizing:border-box;margin:0;padding:0}

html {
    height: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body{
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--dark);
  line-height:1.6;
  overflow-x: hidden;
}

a{color:inherit;text-decoration:none; transition: color 0.2s;}
img{display:block;max-width:100%}
.container{max-width:1200px;margin:0 auto;padding:0 20px; position: relative; z-index: 2;}

/* ---------- Animations ---------- */
@keyframes pulse-accent {
  0% { box-shadow: 0 0 0 0 rgba(15, 122, 115, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(15, 122, 115, 0); }
  100% { box-shadow: 0 0 0 0 rgba(15, 122, 115, 0); }
}

@keyframes slideIn {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

.anim-up { opacity: 0; transform: translateY(30px); transition: all 0.8s ease; }
.anim-up.visible { opacity: 1; transform: translateY(0); }

/* ---------- Header / Nav ---------- */
header{
  position:sticky;top:0;z-index:1000;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(255,255,255,0.9);
  border-bottom:1px solid rgba(15,23,42,0.05);
}
.nav {
  display:flex;align-items:center;justify-content:space-between;gap:16px;
  padding:16px 0;
}
.brand{
  display:flex;align-items:center;gap:14px;
}
.brand img{width:48px;height:48px;object-fit:cover;border-radius:10px;box-shadow: var(--shadow-sm);}
.brand h1{font-size:1.25rem;margin-bottom:0;letter-spacing:-0.5px;font-weight:800;color:var(--accent);line-height: 1;}
.brand p{font-size:0.75rem;color:var(--muted);margin:2px 0 0 0; text-transform: uppercase; letter-spacing: 1.2px; font-weight: 600;}

nav .links{display:flex;gap:32px;align-items:center}
nav .links a{
    position: relative;
    font-weight:600; font-size: 0.95rem; color: #334155;
}
nav .links a:hover { color: var(--accent); }
nav .links a::after {
    content: ''; position: absolute; width: 0; height: 2px; bottom: -4px; left: 0;
    background: var(--accent); transition: width 0.3s;
}
nav .links a:hover::after { width: 100%; }

/* Hamburger Button */
.hamburger{display:none;background:transparent;border:0;padding:8px;cursor: pointer;}
.hamburger svg{width:28px;height:28px; stroke: var(--dark);}
.drawer { display: none; } 

/* ---------- SMART MOBILE MENU (Professional Dropdown Fix) ---------- */
@media (max-width: 900px) {
  nav .links { display: none; }
  .hamburger { display: inline-flex; }
  
  /* The Dropdown Container */
  .drawer {
    position: fixed; 
    top: 85px; /* Sits flush just under the header */
    right: 20px; /* Slight gap from the edge */
    width: 320px; /* Wider professional width */
    height: auto; /* Fix: Only takes necessary height */
    max-height: 85vh; /* Safety */
    overflow-y: auto;
    
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 16px; 
    box-shadow: 0 20px 40px rgba(15, 122, 107, 0.15); 
    padding: 24px;
    
    display: none; 
    flex-direction: column; 
    gap: 16px; 
    z-index: 1001;
    
    /* Animation setup */
    transform-origin: top right;
    animation: none;
  }

  /* Animation when opened */
  .drawer.show {
    display: flex;
    animation: menuSlideIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }

  @keyframes menuSlideIn {
    from { opacity: 0; transform: translateY(-10px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
  }

  /* Drawer Header */
  .drawer-header {
    display: flex; align-items: center; gap: 12px;
    padding-bottom: 16px; border-bottom: 1px solid #f1f5f9;
    margin-bottom: 8px;
  }
  .drawer-header img { width: 36px; height: 36px; border-radius: 8px; }

  /* Links Styling */
  .drawer-links { display: flex; flex-direction: column; gap: 4px; }

  .drawer-links a {
    padding: 14px 16px; 
    font-weight: 600; 
    border-radius: 8px; 
    color: #334155;
    font-size: 1rem; 
    display: flex; align-items: center; gap: 14px;
    transition: all 0.2s;
  }
  
  .drawer-links a span { font-size: 1.1rem; opacity: 0.8; }
  
  .drawer-links a:hover {
    background: var(--accent-light); 
    color: var(--accent);
    padding-left: 20px; /* Subtle slide effect */
  }

  /* Emergency/Action Card */
  .drawer-card {
    margin-top: 10px;
    background: #f8fafc; 
    padding: 16px; 
    border-radius: 12px; 
    border: 1px solid #e2e8f0;
    text-align: center;
  }
  
  .drawer-btn {
    display: block; width: 100%;
    background: var(--accent); color: white;
    padding: 12px; border-radius: 8px; font-weight: 700;
    margin-top: 8px; 
    text-align: center;
    box-shadow: 0 4px 6px rgba(15, 122, 115, 0.2);
    transition: transform 0.2s;
  }
  
  .drawer-btn:active { transform: scale(0.98); }
  
  .drawer-link-sub { 
    display: block; margin-top: 12px;
    font-size: 0.85rem; color: var(--muted); text-decoration: none; 
  }
}

/* ---------- SVG WAVES ---------- */
.wave-container { position: absolute; bottom: -1px; left: 0; width: 100%; overflow: hidden; line-height: 0; transform: rotate(180deg); z-index: 1; pointer-events: none;}
.wave-container svg { position: relative; display: block; width: calc(100% + 1.3px); height: 80px; }
.wave-container .shape-fill { fill: #ffffff; }

.wave-top { position: absolute; top: -1px; left: 0; width: 100%; overflow: hidden; line-height: 0; z-index: 1; pointer-events: none;}
.wave-top svg { display: block; width: calc(100% + 1.3px); height: 60px; }
.wave-top .shape-fill { fill: #ffffff; }

/* ---------- Hero ---------- */
.hero{
  position: relative;
  min-height:85vh;
  display:flex;align-items:center;justify-content:center;
  padding: 60px 0 140px 0;
  background: radial-gradient(circle at top right, rgba(20, 184, 166, 0.1), transparent 40%),
              radial-gradient(circle at bottom left, rgba(15, 122, 115, 0.05), transparent 40%);
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-text h2 { font-size: 3.5rem; line-height: 1.1; font-weight: 800; letter-spacing: -1.5px; margin-bottom: 24px; color: var(--dark); }
.hero-text h2 span { color: var(--accent); position: relative; display: inline-block; }
.hero-text h2 span::after {
    content: ''; position: absolute; bottom: 8px; left: 0; width: 100%; height: 12px;
    background: var(--accent-2); opacity: 0.2; z-index: -1; transform: rotate(-1deg);
}
.hero-text p { font-size: 1.2rem; color: #475569; margin-bottom: 32px; max-width: 90%; }
.hero-btns { display: flex; gap: 16px; }

.btn {
    padding: 14px 28px; border-radius: 12px; font-weight: 700; transition: all 0.3s; font-size: 1rem; cursor: pointer; border: none;
}
.btn-primary { 
    background: var(--accent); color: white; 
    box-shadow: 0 10px 20px rgba(15, 122, 115, 0.25);
    animation: pulse-accent 2s infinite;
}
.btn-primary:hover { 
    background: #0d6e68; transform: translateY(-3px); 
    box-shadow: 0 15px 30px rgba(15, 122, 115, 0.35);
    animation: none;
}
.btn-outline { background: white; border: 2px solid #e2e8f0; color: var(--dark); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

.hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.stat-card {
    background: white; padding: 24px; border-radius: 20px;
    box-shadow: var(--shadow-md); border: 1px solid rgba(0,0,0,0.03);
    text-align: center; transition: transform 0.3s;
}
.stat-card:hover { transform: translateY(-5px); border-color: var(--accent-2); }

.stat-number { font-size: 2.5rem; font-weight: 800; color: var(--accent); margin-bottom: 4px; display: block; }
.stat-card p { font-size: 0.9rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; }
.stat-card.highlight { grid-column: span 2; background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: white; }
.stat-card.highlight .stat-number, .stat-card.highlight p { color: white; }

@media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-text h2 { font-size: 2.5rem; }
    .hero-text p { margin: 0 auto 32px auto; }
    .hero-btns { justify-content: center; }
    .hero-stats { margin-top: 40px; }
}

/* ---------- PARTNERS BAR ---------- */
.partners-bar { padding: 40px 0; border-bottom: 1px solid #e2e8f0; text-align: center; background: #fff; }
.partners-bar p { color: var(--muted); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 15px; font-weight: 600; }
.partners-grid { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; opacity: 0.5; }
.partner-logo { font-weight: 800; font-size: 1.5rem; color: #0f172a; display: flex; align-items: center; gap: 10px; }

/* ---------- Assessment Form (NEW) ---------- */
.bg-light { background: #f0fdfa; padding: 80px 0; }
.assessment-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

.assessment-text h3 { font-size: 2rem; color: var(--accent); font-weight: 800; margin-bottom: 16px; }
.checklist { list-style: none; margin-top: 20px; }
.checklist li { margin-bottom: 10px; font-weight: 600; color: var(--dark); }

.assessment-form { background: white; padding: 40px; border-radius: 20px; box-shadow: var(--shadow-lg); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 700; font-size: 0.9rem; margin-bottom: 8px; color: #475569; }
.form-group input, .form-group select { 
    width: 100%; padding: 12px; border: 2px solid #e2e8f0; border-radius: 8px; 
    font-size: 1rem; font-family: inherit; transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus { border-color: var(--accent); outline: none; }

@media(max-width: 768px) {
  .assessment-wrapper { grid-template-columns: 1fr; }
}

/* ---------- Common Sections ---------- */
section { padding: 100px 0; position: relative; }
.bg-white { background: #ffffff; }
.section-head { text-align: center; max-width: 700px; margin: 0 auto 60px auto; }
.section-head h3 { font-size: 2.25rem; font-weight: 800; color: var(--dark); margin-bottom: 16px; letter-spacing: -1px; }
.section-head p { font-size: 1.1rem; color: var(--muted); }

/* ---------- About Grid ---------- */
.about-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.info-card {
    background: white; padding: 32px; border-radius: 24px; box-shadow: var(--shadow-md);
    border: 1px solid #f1f5f9; position: relative; overflow: hidden;
}
.info-card::before { content: ''; position: absolute; top: 0; left: 0; width: 6px; height: 100%; background: var(--accent-2); opacity: 0.5; }
.info-card h4 { font-size: 1.25rem; font-weight: 700; margin-bottom: 12px; color: var(--dark); }
.info-card p { color: #64748b; font-size: 0.95rem; }
@media(max-width: 900px) { .about-grid { grid-template-columns: 1fr; } }

/* ---------- CTA Banner ---------- */
.cta-banner {
    background: var(--dark); color: white; padding: 60px 20px; text-align: center; margin: 40px 0; position: relative; z-index: 5;
    background-image: radial-gradient(rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 20px 20px;
}
.cta-banner h3 { font-size: 1.8rem; margin-bottom: 8px; }
.cta-banner p { color: #cbd5e1; margin-bottom: 24px; }
.cta-btn { background: white; color: var(--dark); padding: 12px 30px; border-radius: 50px; font-weight: 700; display: inline-block; transition: transform 0.2s; }
.cta-btn:hover { transform: scale(1.05); color: var(--accent); }

/* ---------- Programs ---------- */
.programs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.program-card { background: white; border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-md); transition: transform 0.3s; }
.program-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.program-img { height: 220px; overflow: hidden; }
.program-img img { 
    width: 100%; height: 100%; object-fit: cover; 
    object-position: top; 
    transition: transform 0.5s; 
}
.program-card:hover .program-img img { transform: scale(1.1); }
.program-content { padding: 24px; }
.program-content h4 { font-size: 1.25rem; font-weight: 700; color: var(--accent); margin-bottom: 8px; }
.program-content p { font-size: 0.9rem; color: var(--muted); }

/* ---------- Timeline ---------- */
.timeline-section { position: relative; padding: 80px 20px; }
.timeline-wrapper { 
    display: flex; justify-content: space-between; gap: 20px; 
    position: relative; max-width: 1100px; margin: 40px auto 0 auto;
}
.timeline-wrapper::before {
    content: ''; position: absolute; top: 40px; left: 0; width: 100%; height: 4px;
    background: #e2e8f0; z-index: 0; border-radius: 10px;
}
.timeline-step { position: relative; z-index: 1; flex: 1; text-align: center; padding: 0 10px; }
.step-icon {
    width: 80px; height: 80px; margin: 0 auto 20px auto;
    background: white; border: 4px solid var(--accent); border-radius: 50%;
    display: grid; place-items: center; font-size: 1.8rem; font-weight: 800;
    color: var(--accent); box-shadow: var(--shadow-md); transition: transform 0.3s;
}
.timeline-step:hover .step-icon { transform: scale(1.1); background: var(--accent); color: white; }
.step-content h4 { color: var(--dark); font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.step-content p { font-size: 0.9rem; color: var(--muted); line-height: 1.4; }

@media (max-width: 768px) {
    .timeline-wrapper { flex-direction: column; gap: 40px; align-items: flex-start; margin-left: 20px;}
    .timeline-wrapper::before { width: 4px; height: 100%; left: 38px; top: 0; }
    .timeline-step { display: flex; gap: 20px; text-align: left; align-items: flex-start; }
    .step-icon { margin: 0; flex-shrink: 0; }
}

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin-bottom: 0; }
.gallery-grid img { border-radius: 16px; height: 250px; width: 100%; object-fit: cover; cursor: pointer; transition: 0.3s; }
.gallery-grid img:hover { transform: scale(1.02); box-shadow: var(--shadow-md); }

.gallery-separator { display: flex; align-items: center; justify-content: center; margin: 80px 0 50px 0; position: relative; }
.gallery-separator::before { content: ''; position: absolute; left: 10%; right: 10%; top: 50%; height: 1px; background: #cbd5e1; z-index: 0; }
.gallery-separator span {
    background: #fff; color: var(--accent); padding: 10px 30px; border-radius: 50px;
    font-weight: 800; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 2px;
    border: 1px solid #e2e8f0; position: relative; z-index: 1; box-shadow: var(--shadow-sm);
}

.collage-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.collage-grid img {
    width: 100%; height: 320px; 
    object-fit: cover; 
    background: #fff;
    border-radius: 20px; cursor: pointer; transition: all 0.3s;
    border: 1px solid rgba(0,0,0,0.05); box-shadow: var(--shadow-sm);
}
.collage-grid img:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); z-index: 2;}
.collage-caption {
    background: white; padding: 50px 40px 40px 40px; border-radius: 24px;
    box-shadow: var(--shadow-lg); text-align: center; max-width: 800px;
    margin: -40px auto 0 auto; position: relative; z-index: 1;
}
.collage-caption h4 { color: var(--dark); font-size: 1.5rem; font-weight: 800; margin-bottom: 10px; }
@media(max-width: 768px) { .collage-grid { grid-template-columns: 1fr; } .collage-grid img { height: 260px; } .collage-caption { margin-top: -20px; padding-top: 40px; } }

/* ---------- FAQ ---------- */
.faq-container { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
details {
    background: white; padding: 20px; border-radius: 16px; box-shadow: var(--shadow-sm);
    cursor: pointer; transition: all 0.2s; border: 1px solid transparent;
}
details:hover { border-color: var(--accent-2); }
details[open] { border-color: var(--accent); box-shadow: var(--shadow-md); }
summary { font-weight: 700; list-style: none; display: flex; justify-content: space-between; align-items: center; font-size: 1.1rem; }
summary::-webkit-details-marker { display: none; }
summary::after { content: '+'; font-size: 1.5rem; color: var(--accent); font-weight: 300; transition: transform 0.2s; }
details[open] summary::after { transform: rotate(45deg); }
.faq-content { margin-top: 12px; color: var(--muted); padding-top: 12px; border-top: 1px solid #f1f5f9; }

/* ---------- Testimonials (Scrollable Carousel) ---------- */
.testimonial-grid {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 20px 4px 40px 4px; /* Bottom padding for scrollbar/shadow */
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.testimonial-card {
    min-width: 300px; 
    flex: 0 0 auto; 
    scroll-snap-align: center;
    background: white; 
    padding: 30px; 
    border-radius: 20px; 
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0,0,0,0.03); 
    position: relative;
}

.testimonial-card::before { content: '"'; position: absolute; top: 10px; left: 20px; font-size: 60px; color: var(--accent-2); opacity: 0.2; font-family: serif; }
.testimonial-card p { font-style: italic; color: #4b5563; margin-bottom: 16px; position: relative; z-index: 1;}
.testimonial-author { font-weight: 700; color: var(--dark); display: flex; align-items: center; gap: 10px; }
.testimonial-author span { width: 30px; height: 30px; background: var(--accent); border-radius: 50%; color: white; display: grid; place-items: center; font-size: 0.8rem; }

/* Custom Scrollbar for testimonials */
.testimonial-grid::-webkit-scrollbar { height: 8px; }
.testimonial-grid::-webkit-scrollbar-track { background: #f1f5f9; border-radius: 4px; }
.testimonial-grid::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 4px; }
.testimonial-grid::-webkit-scrollbar-thumb:hover { background: var(--accent); }


/* ---------- Founders & Bios ---------- */
.founders{display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:30px;}
.founder{
    border-radius:16px;padding:24px;background:#ffffff;text-align:center; 
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08); 
    transition: transform 0.3s;
    cursor: pointer;
}
.founder:hover { transform: translateY(-5px); }
.founder img{height:220px; width:220px; object-fit:cover; border-radius:50%; margin:0 auto 20px auto; box-shadow:0 8px 24px rgba(15, 122, 115, 0.15); border: 4px solid #fff;}

.bio-btn { 
    margin-top: 15px; background: transparent; border: 1px solid #e2e8f0; 
    padding: 8px 16px; border-radius: 20px; font-size: 0.8rem; font-weight: 600; cursor: pointer; 
}
.founder:hover .bio-btn { background: var(--accent); color: white; border-color: var(--accent); }

/* Bio Modal */
.bio-card {
    background: white; padding: 40px; border-radius: 20px; max-width: 500px; width: 90%;
    text-align: center; position: relative; animation: slideUp 0.3s ease;
}
@keyframes slideUp { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

.values{display:flex;gap:12px;flex-wrap:wrap;justify-content:center;}
.value-pill{
  background:white; color: var(--accent); padding:12px 30px;border-radius:999px;border: 1px solid var(--accent-2);
  font-weight:700;box-shadow:0 4px 12px rgba(20, 184, 166, 0.1); transition: all 0.2s; cursor: default; letter-spacing: 0.5px;
}
.value-pill:hover{background: var(--accent); color: white; transform: translateY(-3px); box-shadow: 0 10px 25px rgba(15, 122, 115, 0.3);}

.chart-box { background: white; padding: 40px; border-radius: 30px; box-shadow: var(--shadow-md); max-width: 600px; margin: 0 auto; }

/* ---------- Footer ---------- */
footer { background: #020617; color: white; padding: 80px 20px 40px; position: relative; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; max-width: 1200px; margin: 0 auto; }
.footer-links a { display: block; color: #94a3b8; margin-bottom: 10px; transition: 0.2s; }
.footer-links a:hover { color: white; padding-left: 5px; }

.socials { display: flex; gap: 10px; margin-top: 20px; flex-wrap: wrap;}
.socials a { 
    background: rgba(255,255,255,0.1); padding: 8px 20px; border-radius: 50px; 
    color: white; font-weight: 600; font-size: 0.9rem; transition: background 0.2s;
}
.socials a:hover { background: var(--accent); }

/* Newsletter */
.newsletter input {
    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.1);
    padding: 12px; border-radius: 8px; color: white; width: 100%; margin-bottom: 10px;
}
.newsletter button {
    background: var(--accent); color: white; width: 100%; padding: 12px; border:0; border-radius: 8px; font-weight: 700; cursor: pointer;
}

@media(max-width: 800px) { .footer-grid { grid-template-columns: 1fr; text-align: center; } .socials { justify-content: center; } }

/* Floating Actions */
.float-actions { position: fixed; right: 24px; bottom: 30px; display: flex; flex-direction: column; gap: 14px; z-index: 999; }
.float-btn {
    width: 50px; height: 50px; background: white; border-radius: 50%;
    display: grid; place-items: center; box-shadow: var(--shadow-md);
    font-size: 24px; transition: transform 0.2s; text-decoration: none; position: relative;
}
.float-btn::before {
    content: attr(data-label); position: absolute; right: 60px; background: #0f172a; color: white;
    padding: 5px 12px; border-radius: 6px; font-size: 0.8rem; font-weight: 600;
    opacity: 0; pointer-events: none; transition: 0.2s; white-space: nowrap;
}
.float-btn:hover { transform: scale(1.1); }
.float-btn:hover::before { opacity: 1; right: 60px; }

#backToTop { display: none; background: #0f172a; color: white; font-size: 18px; cursor: pointer; border: none;}
#backToTop.show { display: grid; }

.lightbox{position:fixed;inset:0;background:rgba(0,0,0,0.95);z-index:10000;display:flex;align-items:center;justify-content:center;opacity:0;pointer-events:none;transition:opacity .3s;padding:20px;}
.lightbox.show{opacity:1;pointer-events:auto}
.lightbox img{max-height:90vh;max-width:100%;border-radius:8px;object-fit:contain;}