:root {
  --purple: #5c2d91;
  --purple-dark: #42207a;
  --blue: #00c3f7;
  --blue-dark: #009ec5;
  --navy: #1a2340;
  --white: #ffffff;
  --light: #f5f8fc;
  --gray: #6b7280;
  --text: #1e293b;
  --border: #e2e8f0;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(92,45,145,0.10);
  --transition: 0.25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.25;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.center { text-align: center; }

/* ========== SECTION LABELS ========== */
.section-label {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.75rem;
}
.section-label.center { display: block; }

.section-title {
  font-size: 2.1rem;
  color: var(--navy);
  margin-bottom: 1rem;
}

.section-sub {
  color: var(--gray);
  font-size: 1.05rem;
  margin-bottom: 3rem;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--purple);
  color: var(--white);
  border-color: var(--purple);
}
.btn-primary:hover {
  background: var(--purple-dark);
  border-color: var(--purple-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(92,45,145,0.3);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--purple);
}
.btn-white {
  background: var(--white);
  color: var(--purple);
  border-color: var(--white);
}
.btn-white:hover {
  background: transparent;
  color: var(--white);
}
.btn-sm {
  padding: 0.6rem 1.4rem;
  font-size: 0.85rem;
}

/* ========== NAVBAR ========== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
  transition: background var(--transition);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.logo img { height: 48px; width: auto; }

.nav-links {
  display: flex;
  gap: 0.25rem;
  align-items: center;
}
.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: all var(--transition);
  letter-spacing: 0.03em;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(0,195,247,0.15);
}
.nav-links a.active {
  color: var(--blue);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.6rem;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--navy);
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.mobile-menu a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 0.95rem;
}
.mobile-menu.open { display: flex; }

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 72px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,35,64,0.82) 0%, rgba(92,45,145,0.65) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  max-width: 860px;
  padding: 2rem 1.5rem;
}
.hero-tag {
  display: inline-block;
  background: rgba(0,195,247,0.2);
  border: 1px solid var(--blue);
  color: var(--blue);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}
.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}
.hero-sub {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 2.5rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.scroll-down {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: white;
  font-size: 1.5rem;
  opacity: 0.6;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ========== PAGE HERO ========== */
.page-hero {
  position: relative;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 72px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, var(--purple) 100%);
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: url('hero.jpeg') center/cover no-repeat;
  opacity: 0.10;
}
.page-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
}
.page-hero-content h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 0.75rem;
}
.page-hero-content p {
  font-size: 1.05rem;
  opacity: 0.85;
}

/* ========== INTRO TWO-COL ========== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.intro-text h2 { font-size: 1.9rem; color: var(--navy); margin-bottom: 1rem; }
.intro-text p { color: var(--gray); margin-bottom: 1rem; }
.intro-img {
  position: relative;
}
.intro-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.intro-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--purple);
  color: white;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 8px 24px rgba(92,45,145,0.3);
}
.badge-num {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 900;
}
.badge-label {
  font-size: 0.8rem;
  font-weight: 600;
  opacity: 0.9;
}

/* ========== SERVICES GRID ========== */
.services-preview { background: var(--light); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(92,45,145,0.18);
}
.service-img-wrap {
  height: 200px;
  overflow: hidden;
  background: #c8dff0;
}
.service-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.service-card:hover .service-img-wrap img { transform: scale(1.07); }
.service-card h3 {
  font-size: 1.05rem;
  color: var(--navy);
  padding: 1.25rem 1.25rem 0.5rem;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--gray);
  padding: 0 1.25rem 1rem;
  line-height: 1.6;
}
.card-link {
  display: inline-block;
  margin: 0 1.25rem 1.25rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--purple);
  transition: color var(--transition);
}
.card-link:hover { color: var(--blue); }

/* ========== FULL SERVICES ========== */
.services-full-grid {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.service-full-card {
  display: grid;
  grid-template-columns: 380px 1fr;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
}
.service-full-card:nth-child(even) {
  grid-template-columns: 1fr 380px;
}
.service-full-card:nth-child(even) .sf-img {
  order: 2;
}
.service-full-card:nth-child(even) .sf-body {
  order: 1;
}
.sf-img {
  background: #b9d4e8;
  overflow: hidden;
}
.sf-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  min-height: 240px;
}
.sf-body {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}
.sf-body h3 { font-size: 1.4rem; color: var(--navy); }
.sf-body p { color: var(--gray); line-height: 1.8; }

/* ========== WHY US ========== */
.why-us { background: var(--light); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
  border-top: 3px solid transparent;
}
.why-card:hover {
  transform: translateY(-4px);
  border-top-color: var(--blue);
}
.why-icon { font-size: 2rem; margin-bottom: 1rem; }
.why-card h4 { font-size: 1rem; color: var(--navy); margin-bottom: 0.5rem; }
.why-card p { font-size: 0.9rem; color: var(--gray); }

/* ========== MISSION ========== */
.mission-block { text-align: center; }
.mission-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  display: inline-block;
  max-width: 680px;
}
.mission-card h3 { font-size: 1.2rem; color: var(--navy); margin-bottom: 0.75rem; }
.mission-card p { color: var(--gray); }
.mission-card.highlight { border-left: 5px solid var(--purple); }

/* ========== TESTIMONIALS ========== */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.testi-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--blue);
}
.testi-card p {
  color: var(--gray);
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--purple);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.testi-author strong { display: block; font-family: 'Montserrat', sans-serif; font-size: 0.95rem; color: var(--navy); }
.testi-author span { font-size: 0.8rem; color: var(--gray); }

/* ========== PROCESS ========== */
.process-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}
.step {
  flex: 1;
  min-width: 150px;
  max-width: 180px;
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.step-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--purple);
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.step h4 { font-size: 0.95rem; color: var(--navy); margin-bottom: 0.5rem; }
.step p { font-size: 0.8rem; color: var(--gray); }
.step-arrow {
  font-size: 1.5rem;
  color: var(--blue);
  align-self: center;
  padding-bottom: 1rem;
}

/* ========== CTA SECTION ========== */
.cta-section {
  background: linear-gradient(135deg, var(--purple) 0%, var(--navy) 100%);
  padding: 5rem 0;
  text-align: center;
  color: var(--white);
}
.cta-inner h2 { font-size: 2rem; margin-bottom: 1rem; }
.cta-inner p { opacity: 0.9; margin-bottom: 2rem; font-size: 1.05rem; }

/* ========== GALLERY ========== */
.gallery-filters {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2rem;
}
.filter-btn {
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  border: 2px solid var(--border);
  background: transparent;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  color: var(--gray);
  transition: all var(--transition);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--purple);
  border-color: var(--purple);
  color: white;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  cursor: pointer;
  background: #c8dff0;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,35,64,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-align: center;
  padding: 0.5rem;
}
.gallery-item.hidden { display: none; }

.img-placeholder {
  display: flex !important;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #c8dff0, #a8c4e0);
  min-height: 200px;
}
.img-placeholder::after {
  content: '📷 Add Photo';
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: #5c7a9e;
  font-size: 0.85rem;
}

/* LIGHTBOX */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9000;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius);
  object-fit: contain;
}
.lb-close, .lb-prev, .lb-next {
  position: absolute;
  background: rgba(255,255,255,0.15);
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,0.3); }
.lb-close { top: 1.5rem; right: 1.5rem; font-size: 1.8rem; }
.lb-prev { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lb-next { right: 1.5rem; top: 50%; transform: translateY(-50%); }

/* ========== CONTACT ========== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: flex-start;
}
.contact-info h2 { font-size: 1.8rem; color: var(--navy); margin: 0.75rem 0 1rem; }
.contact-info p { color: var(--gray); margin-bottom: 2rem; }
.contact-items { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.ci-icon { font-size: 1.4rem; width: 44px; flex-shrink: 0; }
.contact-item strong { display: block; font-family: 'Montserrat', sans-serif; font-size: 0.9rem; color: var(--navy); }
.contact-item p, .contact-item a { font-size: 0.95rem; color: var(--gray); }
.contact-item a:hover { color: var(--purple); }

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.contact-form-wrap h3 {
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 1.75rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-group label { font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 0.85rem; color: var(--navy); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color var(--transition);
  background: var(--light);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--purple);
  background: var(--white);
}
.form-success {
  margin-top: 1rem;
  color: #059669;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
}

.contact-social p { font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 0.85rem; color: var(--navy); margin-bottom: 0.75rem; }

.social-links { display: flex; gap: 0.75rem; }
.social-links a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background:  #1877F2;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  transition: background var(--transition);
}
.social-links a:hover { background: var(--blue); }
.social-links.dark a { background: var(--light); color: var(--navy); }
.social-links.dark a:hover { background: var(--purple); color: white; }

.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }

/* ========== FOOTER ========== */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.8);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer-brand p { font-size: 0.9rem; line-height: 1.8; color: rgba(255,255,255,0.65); max-width: 320px; }
.footer-links h4,
.footer-contact h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 1.25rem;
  letter-spacing: 0.05em;
}
.footer-links { display: flex; flex-direction: column; gap: 0.1rem; }
.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  padding: 0.3rem 0;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--blue); }
.footer-contact p { font-size: 0.9rem; margin-bottom: 0.5rem; color: rgba(255,255,255,0.65); }
.footer-contact a { color: rgba(255,255,255,0.65); transition: color var(--transition); }
.footer-contact a:hover { color: var(--blue); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.25rem 0;
  text-align: center;
}
.footer-bottom p { font-size: 0.85rem; color: rgba(255,255,255,0.45); }

/* ========== WHATSAPP FLOAT ========== */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 500;
  background: #25D366;
  width: 58px; height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37,211,102,0.5);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .service-full-card { grid-template-columns: 300px 1fr; }
  .service-full-card:nth-child(even) { grid-template-columns: 1fr 300px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: block; }

  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .intro-img { order: -1; }
  .intro-badge { right: 0.5rem; bottom: -1rem; }
  .intro-img img { height: 280px; }

  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }

  .service-full-card { grid-template-columns: 1fr; }
  .service-full-card:nth-child(even) { grid-template-columns: 1fr; }
  .service-full-card:nth-child(even) .sf-img { order: 0; }
  .service-full-card:nth-child(even) .sf-body { order: 0; }
  .sf-img img { min-height: 220px; }

  .process-steps { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); }

  .contact-layout { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }

  .section { padding: 3.5rem 0; }
  .section-title { font-size: 1.7rem; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; align-items: center; }
  .why-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-filters { gap: 0.5rem; }
  .filter-btn { padding: 0.5rem 1rem; font-size: 0.78rem; }
}
