/* ============================================================
   gallery.css — Gallery Page
   Shree Lambodar Credit & Supply Co-op Society
   Theme: #1e3a2f (Deep Forest Green) + White + Gold Accent
   Font: Inter
   ============================================================ */

/* ── Variables ──────────────────────────────────────────────── */
:root {
  --green-dark:   #1e3a2f;
  --green-mid:    #2a5240;
  --green-light:  #3a7a5a;
  --gold:         #c8a84b;
  --gold-light:   #e8c76a;
  --gold-pale:    #f5e9c8;
  --white:        #ffffff;
  --off-white:    #fdfaf5;
  --text-primary: #1a2e25;
  --text-body:    #3d5a4a;
  --text-muted:   #6b8c7a;
  --border:       rgba(30, 58, 47, 0.10);

  --header-h:     80px;
  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    16px;
  --shadow-sm:    0 2px 12px rgba(30,58,47,0.08);
  --shadow-md:    0 8px 32px rgba(30,58,47,0.14);
  --shadow-lg:    0 20px 60px rgba(30,58,47,0.18);

  --transition:      all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset / Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--white);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
strong { font-weight: 700; color: var(--green-dark); }

/* ══════════════════════════════════════════════════════════════
   HEADER  — matches index.html exactly
   • Transparent by default
   • .scrolled  →  dark green frosted glass
   • White pill logo
   • White dropdown / subdropdown panels (dark text)
   • Gold pill CTA
   • White ham-bars → X animation
   • Dark-green mobile nav with accordion
   ══════════════════════════════════════════════════════════════ */

/* ── Shell ─────────────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.95);
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(30, 58, 47, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 24px rgba(30, 58, 47, 0.25);
}

/* Nav link colours flip to white once scrolled */
.header.scrolled .nav-link {
  color: rgba(255, 255, 255, 0.92);
}
.header.scrolled .nav-link:hover {
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.07);
}

/* ── Container ─────────────────────────────────────────────── */
.header-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* ── Logo — white pill ─────────────────────────────────────── */
.logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  margin-right: auto;
  background: rgba(255, 255, 255, 0.96);
  padding: 6px 20px 6px 12px;
  border-radius: 50px;
  box-shadow: 0 2px 18px rgba(0, 0, 0, 0.20);
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.logo:hover {
  background: #ffffff;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.26);
  transform: translateY(-1px);
}
.logo-img { height: 50px; width: auto; object-fit: contain; display: block; transition: var(--transition); }

/* ── Desktop Nav ───────────────────────────────────────────── */
.nav { display: flex; }
.nav-list { display: flex; align-items: center; gap: 0.25rem; }
.nav-item { position: relative; }

.nav-link {
  display: flex; align-items: center; gap: 4px;
  padding: 0.55rem 0.85rem;
  font-size: 0.875rem; font-weight: 500;
  color: rgba(0, 0, 0, 0.85);          /* dark on transparent bg */
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  white-space: nowrap; letter-spacing: 0.01em;
}
.nav-link:hover {
  color: var(--green-dark);
  background: rgba(30, 58, 47, 0.07);
}

/* Active page — Gallery */
.nav-item--active > .nav-link {
  color: var(--gold-dark, #a07820);
  font-weight: 600;
}
.header.scrolled .nav-item--active > .nav-link {
  color: var(--gold-light);
}

.chevron {
  width: 14px; height: 14px;
  stroke: currentColor;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.nav-item.has-dropdown:hover .chevron { transform: rotate(180deg); }

/* ── Dropdown panel — WHITE ────────────────────────────────── */
.dropdown {
  position: absolute; top: calc(100% + 12px); left: 0;
  min-width: 280px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  opacity: 0; visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  overflow: visible; z-index: 100;
}
.dropdown::before {
  content: ''; position: absolute; top: -6px; left: 20px;
  width: 12px; height: 12px;
  background: var(--white);
  border-left: 1px solid var(--border); border-top: 1px solid var(--border);
  transform: rotate(45deg); border-radius: 2px;
}
.nav-item.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }

.dropdown-item { position: relative; border-bottom: 1px solid rgba(30,58,47,0.06); }
.dropdown-item:last-child { border-bottom: none; }

.dropdown-link {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  padding: 0.85rem 1.1rem;
  font-size: 0.86rem; font-weight: 500;
  color: var(--text-body);            /* dark text on white panel */
  transition: var(--transition-fast); line-height: 1.4;
}
.dropdown-link:hover { color: var(--green-dark); background: var(--off-white); }

.chevron-right {
  width: 14px; height: 14px; stroke: currentColor;
  flex-shrink: 0; opacity: 0.5;
  transition: opacity 0.2s, transform 0.2s;
}
.dropdown-item.has-subdropdown:hover .chevron-right { opacity: 1; transform: translateX(3px); }

/* ── Sub-dropdown — WHITE, flies right ────────────────────── */
.subdropdown {
  position: absolute; left: 100%; top: 0;
  min-width: 230px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  opacity: 0; visibility: hidden;
  transform: translateX(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 101;
}
.dropdown-item.has-subdropdown:hover .subdropdown { opacity: 1; visibility: visible; transform: translateX(0); }

.subdropdown li { border-bottom: 1px solid rgba(30,58,47,0.06); }
.subdropdown li:last-child { border-bottom: none; }

.subdropdown-link {
  display: flex; align-items: center;
  padding: 0.8rem 1.1rem;
  font-size: 0.84rem; font-weight: 400;
  color: var(--text-body);
  transition: var(--transition-fast); gap: 8px;
}
.subdropdown-link::before {
  content: ''; width: 5px; height: 5px;
  background: var(--gold); border-radius: 50%;
  flex-shrink: 0; opacity: 0; transition: opacity 0.2s;
}
.subdropdown-link:hover { color: var(--green-dark); background: var(--off-white); padding-left: 1.3rem; }
.subdropdown-link:hover::before { opacity: 1; }

/* ── Gold pill CTA ─────────────────────────────────────────── */
.header-cta {
  flex-shrink: 0;
  display: inline-flex; align-items: center;
  padding: 0.55rem 1.25rem;
  background: var(--gold); color: var(--green-dark);
  font-size: 0.875rem; font-weight: 700;
  border-radius: 50px; letter-spacing: 0.02em;
  transition: var(--transition-fast); white-space: nowrap;
}
.header-cta:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(200,168,75,0.4); }

/* ── Hamburger ─────────────────────────────────────────────── */
.hamburger {
  display: none; flex-direction: column; justify-content: center; align-items: center;
  width: 42px; height: 42px; gap: 5px;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast); flex-shrink: 0;
}
.hamburger:hover { background: rgba(255,255,255,0.08); }

.ham-bar {
  display: block; width: 24px; height: 2px;
  background: var(--white);             /* always white — visible on both transparent & scrolled */
  border-radius: 2px;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), opacity 0.25s ease, width 0.3s ease;
  transform-origin: center;
}
.hamburger.active .ham-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active .ham-bar:nth-child(2) { opacity: 0; width: 0; }
.hamburger.active .ham-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile Nav — dark green ───────────────────────────────── */
.mobile-nav {
  display: none; max-height: 0; overflow: hidden;
  background: rgba(20, 44, 35, 0.99);
  backdrop-filter: blur(20px);
  transition: max-height 0.45s cubic-bezier(0.4,0,0.2,1), opacity 0.35s ease;
  opacity: 0; border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-nav.open { max-height: 1000px; opacity: 1; }

.mobile-nav-list { padding: 1rem 1.5rem 1.5rem; display: flex; flex-direction: column; gap: 2px; }

.mobile-nav-link {
  display: block; padding: 0.85rem 1rem;
  font-size: 0.95rem; font-weight: 500;
  color: rgba(255,255,255,0.88);
  border-radius: var(--radius-sm); transition: var(--transition-fast);
}
.mobile-nav-link:hover { color: var(--gold-light); background: rgba(255,255,255,0.06); }

/* Active page in mobile */
.mobile-nav-link--active { color: var(--gold-light) !important; }

.mobile-accordion-btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 0.85rem 1rem;
  font-size: 0.95rem; font-weight: 500;
  color: rgba(255,255,255,0.88);
  border-radius: var(--radius-sm); transition: var(--transition-fast); text-align: left;
}
.mobile-sub-btn { font-size: 0.875rem; color: rgba(255,255,255,0.70); padding-left: 1.5rem; }
.mobile-accordion-btn:hover { color: var(--gold-light); background: rgba(255,255,255,0.06); }
.mobile-accordion-btn.active .chevron { transform: rotate(180deg); }

.mobile-accordion-list { max-height: 0; overflow: hidden; transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1); }
.mobile-accordion-list.open { max-height: 600px; }

.mobile-sub-link {
  display: flex; align-items: center; gap: 8px;
  padding: 0.7rem 1rem 0.7rem 2.5rem;
  font-size: 0.85rem; font-weight: 400;
  color: rgba(255,255,255,0.60);
  transition: var(--transition-fast); border-radius: var(--radius-sm);
}
.mobile-sub-link::before { content: '›'; color: var(--gold); font-size: 1.1rem; line-height: 1; }
.mobile-sub-link:hover { color: var(--gold-light); background: rgba(255,255,255,0.05); }

.mobile-cta {
  display: block; margin-top: 0.5rem;
  padding: 0.85rem 1.5rem;
  background: var(--gold); color: var(--green-dark);
  font-weight: 700; border-radius: 50px;
  text-align: center; font-size: 0.95rem; transition: var(--transition-fast);
}
.mobile-cta:hover { background: var(--gold-light); }

/* ── Responsive — header ───────────────────────────────────── */
@media (max-width: 1024px) {
  .header-cta { display: none; }
  .nav-list { gap: 0; }
  .nav-link { font-size: 0.82rem; padding: 0.5rem 0.65rem; }
}
@media (max-width: 900px) {
  .nav, .header-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: block; }
  .header-container { gap: 1rem; }
}
@media (max-width: 480px) {
  :root { --header-h: 68px; }
  .logo { padding: 4px 14px 4px 8px; }
  .logo-img { height: 38px; }
  .mobile-nav-list { padding: 0.75rem 1rem 1.25rem; }
}
@media (max-width: 360px) {
  .logo-img { height: 34px; }
}

/* ══════════════════════════════════════════════════════════════
   PAGE BANNER  (unchanged from original)
   ══════════════════════════════════════════════════════════════ */
.page-banner {
  position: relative;
  padding-top: var(--header-h);
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--green-dark);
}
.banner-img-wrap { position: absolute; inset: 0; z-index: 0; }
.banner-img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(30,58,47,0.92) 0%, rgba(26,46,37,0.82) 50%, rgba(30,58,47,0.88) 100%);
}

.banner-floats { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.gf {
  position: absolute; font-weight: 900;
  color: var(--gold); opacity: 0.06; user-select: none;
  animation: bannerFloat ease-in-out infinite;
}
.gf-1 { font-size: 9rem; top: 10%; left: 5%;    animation-duration: 14s; }
.gf-2 { font-size: 6rem; top: 50%; right: 8%;   animation-duration: 18s; animation-delay: 3s; }
.gf-3 { font-size: 7rem; bottom: 20%; left: 40%; animation-duration: 12s; animation-delay: 6s; }
.gf-4 { font-size: 5rem; top: 20%; right: 30%;  animation-duration: 16s; animation-delay: 1s; }
.gf-5 { font-size: 4rem; bottom: 10%; right: 20%; animation-duration: 20s; animation-delay: 9s; }
@keyframes bannerFloat { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-18px); } }

.banner-content { position: relative; z-index: 2; max-width: 1320px; margin: 0 auto; padding: 4rem 2rem 5rem; width: 100%; }

.banner-breadcrumb { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1.5rem; }
.bc-link { font-size: 0.78rem; color: rgba(200,168,75,0.6); transition: color 0.2s; }
.bc-link:hover { color: var(--gold-light); }
.bc-current { font-size: 0.78rem; color: var(--gold); font-weight: 600; }

.banner-title { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 900; color: #ffffff; line-height: 1.1; letter-spacing: -0.03em; margin-bottom: 0.85rem; }
.banner-title-accent { color: var(--gold); font-style: italic; }

.banner-sub { font-size: 1rem; color: rgba(255,255,255,0.65); max-width: 480px; margin-bottom: 1.75rem; }

.banner-rule { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1.25rem; }
.br-dot { width: 6px; height: 6px; background: rgba(200,168,75,0.4); border-radius: 50%; }
.br-dot--gold { background: var(--gold); }
.br-line { height: 1px; width: 60px; background: linear-gradient(90deg, rgba(200,168,75,0.4), rgba(200,168,75,0.1)); }

.banner-count { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.45rem 1rem; background: rgba(200,168,75,0.12); border: 1px solid rgba(200,168,75,0.25); border-radius: 50px; font-size: 0.8rem; font-weight: 600; color: var(--gold); }

.banner-wave { position: absolute; bottom: -1px; left: 0; right: 0; z-index: 3; line-height: 0; }
.banner-wave svg { width: 100%; height: 80px; display: block; }

/* ══════════════════════════════════════════════════════════════
   FILTER BAR  (unchanged)
   ══════════════════════════════════════════════════════════════ */
.gallery-filter-bar { background: var(--off-white); border-bottom: 1px solid var(--border); padding: 1.25rem 0; position: sticky; top: var(--header-h); z-index: 90; }
.gfb-inner { max-width: 1320px; margin: 0 auto; padding: 0 2rem; display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.gfb-btn { padding: 0.5rem 1.25rem; font-size: 0.83rem; font-weight: 600; color: var(--text-muted); background: var(--white); border: 1.5px solid var(--border); border-radius: 50px; transition: var(--transition-fast); letter-spacing: 0.01em; }
.gfb-btn:hover { border-color: var(--green-dark); color: var(--green-dark); }
.gfb-btn--active { background: var(--green-dark); border-color: var(--green-dark); color: var(--white); box-shadow: 0 4px 14px rgba(30,58,47,0.25); }

/* ══════════════════════════════════════════════════════════════
   GALLERY SECTION  (unchanged)
   ══════════════════════════════════════════════════════════════ */
.gallery-section { position: relative; background: var(--off-white); padding: 3rem 0 5rem; }
.gallery-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.gb-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(30,58,47,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(30,58,47,0.03) 1px, transparent 1px); background-size: 60px 60px; }
.gallery-container { position: relative; z-index: 1; max-width: 1320px; margin: 0 auto; padding: 0 2rem; }

.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }

.gallery-item { position: relative; border-radius: var(--radius-lg); overflow: hidden; background: #e8ede9; box-shadow: 0 4px 18px rgba(30,58,47,0.10); border: 1.5px solid rgba(30,58,47,0.08); cursor: zoom-in; opacity: 0; transform: translateY(24px); transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease, border-color 0.3s ease; }
.gallery-item.revealed { opacity: 1; transform: translateY(0); }
.gallery-item.hidden { display: none; }
.gallery-item:hover { box-shadow: 0 12px 40px rgba(30,58,47,0.20); border-color: rgba(200,168,75,0.5); transform: translateY(-4px); }

.gi-wrap { position: relative; width: 100%; aspect-ratio: 4 / 3; overflow: hidden; }
.gi-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1); display: block; }
.gallery-item:hover .gi-img { transform: scale(1.07); }

.gi-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(30,58,47,0.65) 100%); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s ease; }
.gallery-item:hover .gi-overlay { opacity: 1; }
.gi-overlay-content { width: 48px; height: 48px; background: rgba(255,255,255,0.15); backdrop-filter: blur(8px); border: 1.5px solid rgba(255,255,255,0.35); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #ffffff; transform: scale(0.8); transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); }
.gallery-item:hover .gi-overlay-content { transform: scale(1); }

.gallery-item::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold)); transform: scaleX(0); transform-origin: left; transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1); }
.gallery-item:hover::after { transform: scaleX(1); }

/* ══════════════════════════════════════════════════════════════
   LIGHTBOX  (unchanged)
   ══════════════════════════════════════════════════════════════ */
.lightbox { position: fixed; inset: 0; z-index: 2000; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s; }
.lightbox.open { opacity: 1; visibility: visible; }
.lb-backdrop { position: absolute; inset: 0; background: rgba(10,22,17,0.94); backdrop-filter: blur(12px); }
.lb-content { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 1rem; max-width: min(90vw, 1000px); max-height: 90vh; }
.lb-img-wrap { position: relative; display: flex; align-items: center; justify-content: center; border-radius: var(--radius-lg); overflow: hidden; background: #1a2e25; box-shadow: 0 40px 80px rgba(0,0,0,0.6); border: 1px solid rgba(200,168,75,0.2); }
.lb-img { display: block; max-width: min(90vw, 1000px); max-height: 80vh; width: auto; height: auto; object-fit: contain; transition: opacity 0.25s ease; }
.lb-img.loading { opacity: 0; }
.lb-loader { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.2s; }
.lb-loader.visible { opacity: 1; }
.lb-spinner { width: 36px; height: 36px; border: 3px solid rgba(200,168,75,0.2); border-top-color: var(--gold); border-radius: 50%; animation: spin 0.7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.lb-counter { font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,0.45); letter-spacing: 0.08em; }
.lb-close, .lb-prev, .lb-next { position: fixed; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #ffffff; transition: var(--transition-fast); z-index: 2; }
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: var(--gold); border-color: var(--gold); color: var(--green-dark); }
.lb-close { top: 1.5rem; right: 1.5rem; width: 44px; height: 44px; }
.lb-prev  { left: 1.5rem; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; }
.lb-next  { right: 1.5rem; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; }

/* ══════════════════════════════════════════════════════════════
   FOOTER  (unchanged from original)
   ══════════════════════════════════════════════════════════════ */
.footer { position: relative; background: var(--green-dark); overflow: hidden; }
.footer-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.footer-bg-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px); background-size: 56px 56px; }
.footer-bg-orb { position: absolute; border-radius: 50%; filter: blur(70px); }
.footer-bg-orb--1 { width: 600px; height: 600px; top: -260px; right: -200px; background: radial-gradient(ellipse, rgba(200,168,75,0.07) 0%, transparent 70%); animation: footerOrbFloat 18s ease-in-out infinite; }
.footer-bg-orb--2 { width: 450px; height: 450px; bottom: -180px; left: -160px; background: radial-gradient(ellipse, rgba(58,122,90,0.14) 0%, transparent 70%); animation: footerOrbFloat 22s ease-in-out infinite reverse; }
@keyframes footerOrbFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-24px); } }
.footer-bg-icon { position: absolute; font-family: 'Inter', sans-serif; font-weight: 900; color: var(--gold); opacity: 0.04; user-select: none; animation: footerBgFloat ease-in-out infinite; }
.fbi-1 { font-size: 8rem; top: 6%;    left: 3%;   animation-duration: 15s; }
.fbi-2 { font-size: 5rem; top: 40%;   right: 4%;  animation-duration: 19s; animation-delay: 4s; }
.fbi-3 { font-size: 6rem; bottom: 16%;left: 38%;  animation-duration: 13s; animation-delay: 7s; }
.fbi-4 { font-size: 4rem; bottom: 6%; right: 22%; animation-duration: 17s; animation-delay: 2s; }
@keyframes footerBgFloat { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-16px); } }

.footer-body { position: relative; z-index: 2; padding: 4rem 0 3rem; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-body-inner { max-width: 1320px; margin: 0 auto; padding: 0 2rem; display: grid; grid-template-columns: 1.5fr 1fr 1.3fr; gap: 4rem; align-items: start; }
.footer-col { display: flex; flex-direction: column; gap: 1.1rem; }
.footer-logo-wrap { display: inline-flex; align-items: center; width: fit-content; background: rgba(255,255,255,0.96); padding: 7px 18px 7px 10px; border-radius: 50px; border: 1px solid rgba(255,255,255,0.3); transition: var(--transition); text-decoration: none; }
.footer-logo-wrap:hover { background: #ffffff; transform: translateY(-2px); }
.footer-logo-img { height: 46px; width: auto; object-fit: contain; display: block; }
.footer-brand-desc { font-size: 0.875rem; line-height: 1.82; color: rgba(255,255,255,0.52); max-width: 320px; }
.footer-social { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-top: 0.15rem; }
.footer-social-btn { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.65); text-decoration: none; transition: var(--transition); }
.footer-social-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--green-dark); transform: translateY(-3px); }
.footer-col-title { display: flex; align-items: center; gap: 10px; font-size: 0.8rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: #ffffff; margin-bottom: 0.2rem; }
.footer-col-title-bar { display: block; width: 20px; height: 3px; background: var(--gold); border-radius: 2px; flex-shrink: 0; }
.footer-links-list { display: flex; flex-direction: column; gap: 0; }
.footer-link { display: flex; align-items: center; gap: 7px; padding: 0.44rem 0; font-size: 0.875rem; font-weight: 400; color: rgba(255,255,255,0.52); text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.04); transition: color 0.2s ease, gap 0.2s ease; line-height: 1.5; }
.footer-links-list li:last-child .footer-link { border-bottom: none; }
.footer-link svg { flex-shrink: 0; color: var(--gold); opacity: 0; transition: opacity 0.2s ease, transform 0.2s ease; }
.footer-link:hover { color: rgba(255,255,255,0.92); gap: 11px; }
.footer-link:hover svg { opacity: 1; transform: translateX(2px); }
.footer-contact-list { display: flex; flex-direction: column; gap: 0; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 11px; padding: 0.7rem 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.footer-contact-item:last-child { border-bottom: none; }
.footer-contact-icon { flex-shrink: 0; margin-top: 2px; width: 32px; height: 32px; border-radius: 8px; background: rgba(200,168,75,0.10); border: 1px solid rgba(200,168,75,0.18); display: flex; align-items: center; justify-content: center; color: var(--gold); }
.footer-contact-info { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.footer-contact-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); line-height: 1; opacity: 0.75; }
.footer-contact-value { font-size: 0.875rem; color: rgba(255,255,255,0.65); line-height: 1.6; display: block; }
.footer-contact-link { text-decoration: none; transition: color 0.18s ease; }
.footer-contact-link:hover { color: var(--gold-light); }
.footer-compliance { display: flex; align-items: center; gap: 10px; margin-top: 0.5rem; padding: 0.85rem 1rem; background: rgba(200,168,75,0.08); border: 1px solid rgba(200,168,75,0.2); border-radius: var(--radius-md); }
.footer-compliance-icon { width: 36px; height: 36px; border-radius: 50%; background: rgba(200,168,75,0.12); display: flex; align-items: center; justify-content: center; color: var(--gold); flex-shrink: 0; }
.footer-compliance-text { display: flex; flex-direction: column; gap: 2px; }
.footer-compliance-title { font-size: 0.78rem; font-weight: 700; color: var(--gold-light); line-height: 1.2; }
.footer-compliance-sub { font-size: 0.7rem; color: rgba(255,255,255,0.38); letter-spacing: 0.02em; }
.footer-bottom { position: relative; z-index: 2; padding: 1.15rem 0; background: rgba(0,0,0,0.18); }
.footer-bottom-inner { max-width: 1320px; margin: 0 auto; padding: 0 2rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.32); line-height: 1.5; }
.footer-bottom-nav { display: flex; align-items: center; gap: 0.55rem; flex-wrap: wrap; }
.footer-bottom-link { font-size: 0.78rem; font-weight: 500; color: rgba(255,255,255,0.38); text-decoration: none; transition: color 0.18s ease; white-space: nowrap; }
.footer-bottom-link:hover { color: var(--gold-light); }
.footer-bottom-sep { display: block; width: 1px; height: 12px; background: rgba(255,255,255,0.16); flex-shrink: 0; }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 1200px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }

@media (max-width: 1024px) {
  .footer-body-inner { grid-template-columns: 1fr 1fr; }
  .footer-col--brand { grid-column: span 2; }
  .footer-brand-desc { max-width: 100%; }
}

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .gallery-filter-bar { top: var(--header-h); }
}

@media (max-width: 768px) {
  .page-banner { min-height: 360px; }
  .banner-content { padding: 3rem 1.25rem 4rem; }
  .footer-body-inner { grid-template-columns: 1fr; padding: 2.5rem 1.25rem; }
  .footer-col--brand { grid-column: span 1; }
  .footer-bottom-inner { flex-direction: column; text-align: center; padding: 1rem 1.25rem; }
  .footer-bottom-nav { justify-content: center; }
  .lb-prev { left: 0.75rem; }
  .lb-next { right: 0.75rem; }
}

@media (max-width: 540px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .gallery-container { padding: 0 1rem; }
  .gallery-section { padding: 2rem 0 3rem; }
  .gfb-inner { padding: 0 1rem; }
}

@media (max-width: 380px) {
  .gallery-grid { grid-template-columns: 1fr; }
}