/* ============================================================
   ARFEM Rwanda — Main Stylesheet
   Primary: #641089  |  Font: Poppins
   ============================================================ */

:root {
  --purple:        #641089;
  --purple-dark:   #4e0a6b;
  --purple-light:  #f3e9fa;
  --yellow:        #f5c518;
  --text-dark:     #1b1b1b;
  --text-muted:    #666;
  --border:        #e5e5e5;
  --radius:        10px;
  --shadow:        0 4px 24px rgba(100, 16, 137, .10);
  --transition:    .25s ease;
}

/* ── Reset / Base ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: var(--text-dark);
  line-height: 1.7;
  background: #fff;
}

h1, h2, h3, h4, h5, h6 { font-weight: 700; color: var(--text-dark); }
a { color: var(--purple); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--purple-dark); }
img { max-width: 100%; height: auto; }

/* ── Utility ───────────────────────────────────────────── */
.bg-light-purple { background: var(--purple-light); }
.bg-purple       { background: var(--purple); }

/* ── Buttons ───────────────────────────────────────────── */
.btn-primary-custom {
  background: var(--purple);
  color: #fff;
  border: 2px solid var(--purple);
  border-radius: 30px;
  padding: .55rem 1.75rem;
  font-weight: 600;
  font-size: .875rem;
  letter-spacing: .03em;
  transition: background var(--transition), transform var(--transition);
}
.btn-primary-custom:hover {
  background: var(--purple-dark);
  border-color: var(--purple-dark);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline-primary-custom {
  background: transparent;
  color: var(--purple);
  border: 2px solid var(--purple);
  border-radius: 30px;
  padding: .55rem 1.75rem;
  font-weight: 600;
  font-size: .875rem;
  transition: all var(--transition);
}
.btn-outline-primary-custom:hover {
  background: var(--purple);
  color: #fff;
  transform: translateY(-2px);
}

.btn-gbv {
  background: #c0392b;
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: .5rem 1.4rem;
  font-weight: 600;
  font-size: .875rem;
  transition: background var(--transition);
}
.btn-gbv:hover { background: #962d22; color: #fff; }

/* ── Navbar ───────────────────────────────────────────── */
.navbar { padding: .75rem 0; }
.navbar-brand { display: flex; align-items: center; gap: .5rem; }
.navbar-brand img {
  max-height: 52px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}
.brand-text   { font-size: 1.6rem; font-weight: 800; color: var(--purple); letter-spacing: -1px; }

.navbar .nav-link {
  font-weight: 500;
  font-size: .9rem;
  color: var(--text-dark);
  padding: .4rem .8rem;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}
.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--purple);
  background: var(--purple-light);
}

/* ── Hero Slider ──────────────────────────────────────── */
.hero-section { position: relative; }

.carousel-item {
  position: relative;
  min-height: 560px;
  background: var(--purple-dark) center/cover no-repeat;
}
.carousel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(100,16,137,.80) 0%, rgba(30,0,50,.65) 100%);
}
.carousel-caption-custom {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  z-index: 2;
  padding: 2rem 0;
}
.slide-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  text-shadow: 0 2px 12px rgba(0,0,0,.4);
  color: #fff;
}
.slide-subtitle {
  font-size: 1.05rem;
  opacity: .9;
  margin-top: .75rem;
  color: #fff;
}
.hero-fallback {
  min-height: 560px;
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
}
.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.6);
  border: none;
}
.carousel-indicators .active { background: var(--yellow); }

/* Animations */
.animate-up { animation: slideUp .7s ease both; }
.delay-1    { animation-delay: .2s; }
.delay-2    { animation-delay: .4s; }
@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Section Labels / Titles ──────────────────────────── */
.section-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: .4rem;
}
.section-title {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

/* ── Mission Cards ────────────────────────────────────── */
.mission-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--purple);
}
.mission-card--alt { border-top-color: var(--yellow); }
.mission-icon {
  font-size: 2.2rem;
  color: var(--purple);
  margin-bottom: 1rem;
}
.mission-card--alt .mission-icon { color: var(--yellow); }
.mission-card h3 {
  font-size: 1.1rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: .75rem;
}

/* ── Project Cards ────────────────────────────────────── */
.project-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--purple);
  transition: transform var(--transition), box-shadow var(--transition);
}
.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(100,16,137,.18);
}
.project-card-img {
  width: 100%;
  height: 180px;
  overflow: hidden;
}
.project-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.project-card:hover .project-card-img img {
  transform: scale(1.05);
}
.project-card-body {
  padding: 1.5rem 1.75rem;
}
.project-icon {
  font-size: 2rem;
  color: var(--purple);
  margin-bottom: 1rem;
}
.project-card h5, .project-card-body h5 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .5rem;
}

/* ── About image stack ────────────────────────────────── */
.about-img-stack {
  position: relative;
}
.about-img-main {
  width: 100%;
}
.about-img-float {
  position: absolute;
  bottom: -1.5rem;
  right: -1rem;
  width: 52%;
  border: 4px solid #fff;
  box-shadow: 0 8px 32px rgba(0,0,0,.18);
}

/* ── How to Help ──────────────────────────────────────── */
.help-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  transition: background var(--transition);
}
.help-card:hover { background: rgba(255,255,255,.15); }
.help-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--yellow);
}
.help-card h5 { font-size: 1rem; font-weight: 700; color: #fff; }
.help-card p  { color: rgba(255,255,255,.8); font-size: .875rem; }

/* ── Team ─────────────────────────────────────────────── */
.team-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}
.team-card:hover { transform: translateY(-4px); }
.team-photo-wrap { position: relative; display: inline-block; }
.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  border: 4px solid var(--purple-light);
  display: block;
  margin: 0 auto;
  transition: border-color var(--transition);
}
.team-photo-clickable:hover {
  border-color: var(--purple);
}
#teamPhotoModal .modal-dialog {
  max-width: 360px;
}
#teamPhotoModal .modal-backdrop,
.modal-backdrop { background: rgba(0,0,0,.85); }
.team-photo-placeholder {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--purple-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 3rem;
  color: var(--purple);
}
.team-social {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(50%);
  display: flex;
  gap: 6px;
  opacity: 0;
  transition: opacity var(--transition);
}
.team-card:hover .team-social { opacity: 1; }
.team-social a {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--purple);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
}
.team-social a:hover { background: var(--purple-dark); }
.team-name { font-size: 1rem; font-weight: 700; margin-bottom: .1rem; }
.team-role { color: var(--purple); font-size: .85rem; font-weight: 500; }

/* ── Testimonial ──────────────────────────────────────── */
.testimonial-block {
  max-width: 680px;
  margin: 0 auto;
  padding: 1rem;
}
.testimonial-quote-icon {
  font-size: 4rem;
  color: var(--purple);
  opacity: .2;
  line-height: 1;
  display: block;
}
.testimonial-text {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.8;
  border: none;
  padding: 0;
  margin: .5rem 0 1rem;
}
.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: .9rem;
  gap: .4rem;
}
.testimonial-photo {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  border: 3px solid var(--purple);
  margin-bottom: .25rem;
}
.testimonial-author strong { color: var(--purple); font-size: 1rem; }
.testimonial-author span   { color: var(--text-muted); }

/* ── Partners ─────────────────────────────────────────── */
.partners-section { background: #fff; }
.partner-logo {
  max-height: 60px;
  max-width: 140px;
  object-fit: contain;
  filter: grayscale(30%);
  opacity: .8;
  transition: opacity var(--transition), filter var(--transition);
}
.partner-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* ── Blog Cards ───────────────────────────────────────── */
.blog-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(100,16,137,.18);
}
.blog-image {
  height: 200px;
  overflow: hidden;
}
.blog-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.blog-card:hover .blog-image img { transform: scale(1.05); }
.blog-image-placeholder {
  height: 200px;
  background: linear-gradient(135deg, var(--purple-light) 0%, #e8d0f5 100%);
}
.blog-body { padding: 1.5rem; }
.blog-meta {
  font-size: .78rem;
  color: var(--text-muted);
  margin-bottom: .75rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.blog-meta i { color: var(--purple); }
.blog-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .5rem;
  line-height: 1.4;
}
.blog-title a { color: var(--text-dark); }
.blog-title a:hover { color: var(--purple); }
.blog-excerpt { font-size: .875rem; color: var(--text-muted); }
.blog-read-more {
  font-size: .85rem;
  font-weight: 600;
  color: var(--purple);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.blog-read-more:hover { gap: 8px; }

/* ── Event Cards ──────────────────────────────────────── */
.event-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform var(--transition);
}
.event-card:hover { transform: translateY(-4px); }
.event-card--past { opacity: .75; }

.event-image { height: 180px; position: relative; overflow: hidden; }
.event-image img { width: 100%; height: 100%; object-fit: cover; }
.event-date-overlay {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--purple);
  color: #fff;
  border-radius: 8px;
  padding: 4px 10px;
  text-align: center;
  line-height: 1.2;
}
.event-date-badge, .event-date-badge-top {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: var(--purple);
  color: #fff;
  border-radius: 8px;
  padding: .5rem .75rem;
  line-height: 1.2;
  margin: 1rem 0 0 1rem;
}
.event-date-badge .day, .event-date-overlay .day,
.event-date-badge-top .day {
  font-size: 1.5rem;
  font-weight: 800;
}
.event-date-badge .month, .event-date-overlay .month,
.event-date-badge-top .month {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.event-body { padding: 1.25rem 1.5rem 1.5rem; }
.event-body h5 a { color: var(--text-dark); }
.event-body h5 a:hover { color: var(--purple); }
.event-location, .event-time {
  font-size: .8rem;
  color: var(--text-muted);
  margin-bottom: .25rem;
}
.event-location i, .event-time i { color: var(--purple); margin-right: 3px; }
.event-meta-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--purple-light);
  color: var(--purple);
  border-radius: 20px;
  padding: .3rem .9rem;
  font-size: .8rem;
  font-weight: 500;
}

/* ── Page Header ──────────────────────────────────────── */
.page-header {
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
  background-image: url('../img/about/page-banner.jpg');
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
  padding: 4rem 0 3rem;
  text-align: center;
}
.page-header h1 { font-size: clamp(1.6rem, 4vw, 2.4rem); color: #fff; }
.page-header .breadcrumb { background: none; }
.page-header .breadcrumb-item,
.page-header .breadcrumb-item a { color: rgba(255,255,255,.75); }
.page-header .breadcrumb-item.active { color: #fff; }
.page-header .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.5); }
.page-header--gbv {
  background: linear-gradient(135deg, #8b0000 0%, #c0392b 100%);
}

/* ── GBV Info Bar ─────────────────────────────────────── */
.gbv-info-bar {
  background: #fff3cd;
  padding: .75rem 0;
  font-size: .875rem;
  color: #664d03;
  font-weight: 500;
}
.gbv-form-card { border-top: 4px solid #c0392b; }
.page-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(140,0,0,.75) 0%, rgba(192,57,43,.65) 100%);
}

/* ── Contact / Forms ──────────────────────────────────── */
.contact-form-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.contact-info-list { display: flex; flex-direction: column; gap: 1.2rem; }
.contact-info-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-info-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--purple-light);
  color: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-info-item strong { display: block; font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); }
.contact-info-item p { margin: 0; font-size: .95rem; }
.map-embed { border: 1px solid var(--border); }

/* ── About / Values ───────────────────────────────────── */
.about-stat {
  background: var(--purple-light);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
}
.stat-number { display: block; font-size: 2rem; font-weight: 800; color: var(--purple); }
.stat-label  { display: block; font-size: .85rem; color: var(--text-muted); font-weight: 500; }

.value-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  border-bottom: 4px solid var(--purple);
}
.value-icon { font-size: 2rem; color: var(--purple); margin-bottom: .75rem; }
.value-card h4 { font-size: 1.1rem; margin-bottom: .5rem; }

/* ── Membership benefits ──────────────────────────────── */
.benefit-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.75rem 1rem;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}
.benefit-card:hover { transform: translateY(-3px); }
.benefit-icon { font-size: 2rem; color: var(--purple); margin-bottom: .75rem; }

/* ── Post content ─────────────────────────────────────── */
.post-content {
  font-size: 1rem;
  line-height: 1.85;
  color: #333;
}
.post-content h2, .post-content h3 { margin-top: 1.75rem; color: var(--purple); }
.post-content img { border-radius: var(--radius); margin: 1rem 0; }
.post-content blockquote {
  border-left: 4px solid var(--purple);
  padding-left: 1.25rem;
  color: var(--text-muted);
  font-style: italic;
  margin: 1.5rem 0;
}

/* ── Bootstrap overrides ──────────────────────────────── */
.form-control:focus, .form-select:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 .2rem rgba(100,16,137,.15);
}
.pagination .page-link {
  color: var(--purple);
  border-radius: 6px;
  margin: 0 2px;
}
.pagination .page-item.active .page-link {
  background: var(--purple);
  border-color: var(--purple);
}

/* ── Footer ───────────────────────────────────────────── */
.footer-top {
  background: #1a0028;
  color: rgba(255,255,255,.8);
  padding: 4rem 0 3rem;
}
.footer-logo {
  max-height: 58px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .9;
}
.footer-about { font-size: .875rem; opacity: .75; max-width: 320px; }
.footer-social { display: flex; gap: .5rem; margin-top: 1rem; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  transition: background var(--transition);
}
.footer-social a:hover { background: var(--purple); }
.footer-heading {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--yellow);
  font-weight: 700;
  margin-bottom: 1rem;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .5rem; }
.footer-links a { color: rgba(255,255,255,.7); font-size: .875rem; transition: color var(--transition); }
.footer-links a:hover { color: #fff; }
.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li { display: flex; align-items: center; gap: .6rem; margin-bottom: .75rem; font-size: .875rem; color: rgba(255,255,255,.75); }
.footer-contact i { color: var(--yellow); font-size: 1rem; }
.footer-contact a { color: rgba(255,255,255,.75); }
.footer-contact a:hover { color: #fff; }
.footer-bottom {
  background: #130018;
  padding: 1rem 0;
  font-size: .8rem;
  color: rgba(255,255,255,.5);
}
.footer-legal { display: flex; gap: 1.25rem; }
.footer-legal a { color: rgba(255,255,255,.5); }
.footer-legal a:hover { color: #fff; }

/* ── Impact Stats ─────────────────────────────────────── */
.section-label-light {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: .5rem;
}
.impact-section { background: var(--purple); }
.impact-stat { padding: 1.5rem 1rem; }
.impact-number {
  display: block;
  font-size: 3rem;
  font-weight: 800;
  color: var(--yellow);
  line-height: 1;
}
.impact-plus { font-size: 2rem; font-weight: 800; color: var(--yellow); }
.impact-label {
  display: block;
  font-size: .85rem;
  color: rgba(255,255,255,.75);
  margin-top: .4rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.impact-badge {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 30px;
  padding: .55rem 1.2rem;
  font-size: .82rem;
  font-weight: 600;
  color: #fff;
  text-align: center;
}

/* ── Legacy / Institutional ───────────────────────────── */
.legacy-card {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  padding: 2rem 1.25rem;
  transition: background var(--transition);
}
.legacy-card:hover { background: rgba(255,255,255,.18); }
.legacy-icon {
  display: block;
  font-size: 2.2rem;
  color: var(--yellow);
  margin-bottom: .75rem;
}

/* ── Documents / Transparency ─────────────────────────── */
.doc-card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  height: 100%;
}
.doc-icon {
  font-size: 2rem;
  color: var(--purple);
  flex-shrink: 0;
  margin-top: .1rem;
}
.doc-body h6 { font-size: .95rem; margin-bottom: .25rem; }

/* ── Gallery ──────────────────────────────────────────── */
.gallery-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  justify-content: center;
}
.gallery-tab-btn {
  background: transparent;
  border: 2px solid var(--purple);
  color: var(--purple);
  border-radius: 30px;
  padding: .4rem 1.2rem;
  font-size: .82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}
.gallery-tab-btn:hover,
.gallery-tab-btn.active {
  background: var(--purple);
  color: #fff;
}
.gallery-cat-title {
  font-size: 1.1rem;
  color: var(--purple);
  margin-bottom: 1.25rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--purple-light);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 10px;
  margin-bottom: 3rem;
}
.gallery-item {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 4/3;
  background: var(--purple-light);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
  display: block;
}
.gallery-item:hover img { transform: scale(1.06); }

/* ── Lightbox ─────────────────────────────────────────── */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.lightbox-overlay.active { display: flex; }
.lb-wrap {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  text-align: center;
}
.lb-wrap img {
  max-width: 90vw;
  max-height: 82vh;
  border-radius: 6px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}
.lb-caption {
  color: rgba(255,255,255,.7);
  font-size: .8rem;
  margin-top: .6rem;
}
.lb-close, .lb-prev, .lb-next {
  position: fixed;
  background: rgba(255,255,255,.12);
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  line-height: 1;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: var(--purple); }
.lb-close { top: 1rem; right: 1rem; font-size: 1.6rem; }
.lb-prev  { left: 1rem; top: 50%; transform: translateY(-50%); }
.lb-next  { right: 1rem; top: 50%; transform: translateY(-50%); }

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 768px) {
  .carousel-item { min-height: 380px; }
  .slide-title   { font-size: 1.6rem; }
  .contact-form-card { padding: 1.5rem; }
  .footer-top    { padding: 2.5rem 0 2rem; }
}
