:root {
  --white: #ffffff;
  --primary: #0B5CAD;
  --navy: #082B4C;
  --accent: #D71920;
  --gray: #F5F7FA;
  --dark-text: #17202A;
  --muted: #64748B;
  --text-muted: #94A3B8;
  --border: #E2E8F0;
  --shadow: 0 18px 50px rgba(8, 43, 76, 0.08);
  --container: 1200px;
}
html, body { max-width: 100%; overflow-x: hidden; }

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--dark-text);
  line-height: 1.7;
}
a, button, input, select, textarea { font: inherit; }
a { color: inherit; text-decoration: none; }
img, video { max-width: 100%; display: block; }
.container { width: min(var(--container), calc(100% - 32px)); margin: 0 auto; }
.section { padding: 110px 0; }
.eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 18px;
}
.eyebrow-blue { color: var(--primary); }
h1, h2, h3, h4 { margin: 0 0 16px; line-height: 1.1; color: var(--navy); }
h1 { font-size: clamp(3rem, 5vw, 5.3rem); }
h2 { font-size: clamp(1.5rem, 2vw, 2.6rem); }
h3 { font-size: clamp(2rem, 3vw, 3.25rem); }
h4 { font-size: clamp(1.4rem, 2vw, 1.8rem); }
p { margin: 0 0 18px; color: var(--muted); }
input, select, textarea { color: var(--dark-text); }
input::placeholder, textarea::placeholder { color: var(--muted); opacity: 1; }
button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 3px solid rgba(11,92,173,.25); outline-offset: 2px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(8, 43, 76, 0.06);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  outline: none;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.08em;
  font-size: 1.6rem;
}
.brand-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
  border: 0 !important;
  box-shadow: none !important;
  outline: none !important;
  background: transparent !important;
}
.brand-logo-footer {
  height: 52px;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}
.brand-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.brand-mark { position: relative; }
.brand-mark::after {
  content: ''; display: block;
  width: 36px; height: 4px; border-radius: 99px; background: var(--accent); margin-top: 4px; margin-left: 4px;
}
.main-nav {
  display: flex; align-items: center; gap: 26px; color: var(--navy); font-weight: 500;
}
.main-nav a { position: relative; }
.main-nav a::after {
  content: ''; position: absolute; left: 0; bottom: -8px; width: 100%; height: 2px; background: var(--primary); transform: scaleX(0); transition: transform .25s ease; transform-origin: left;
}
.main-nav a:hover::after { transform: scaleX(1); }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 52px; padding: 0 24px; border-radius: 12px; border: 1px solid transparent; font-weight: 600; transition: transform .25s ease, box-shadow .25s ease; cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--primary); color: var(--white); box-shadow: 0 10px 20px rgba(11, 92, 173, 0.18); }
.btn-secondary { background: var(--white); color: var(--navy); border-color: var(--border); }
.btn-light { background: rgba(255,255,255,0.16); border-color: rgba(255,255,255,0.35); color: var(--white); }
.btn-danger { background: var(--accent); color: var(--white); }
.btn:hover, .btn:focus-visible { color: inherit; }
.btn-primary:hover, .btn-primary:focus-visible, .btn-danger:hover, .btn-danger:focus-visible { color: var(--white); }
.btn:disabled { opacity: .58; cursor: not-allowed; }
.full { width: 100%; }
.nav-cta { min-height: 44px; }
.nav-cta svg { width: 18px; height: 18px; margin-right: 9px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.mobile-menu-toggle {
  display: none; width: 44px; height: 44px; background: transparent; border: 1px solid var(--border); border-radius: 10px; padding: 10px; cursor: pointer;
}
.mobile-menu-toggle span { display: block; height: 2px; background: var(--navy); margin: 5px 0; }

.hero {
  position: relative; min-height: min(820px, calc(100vh - 88px)); display: flex; align-items: center; overflow: hidden; background: var(--navy);
}
.hero::after {
  content: ''; position: absolute; inset: 0; pointer-events: none; opacity: .18;
  background-image: linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 80px 80px; mask-image: linear-gradient(90deg, black, transparent 70%);
}
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .9; transform: scale(1.01); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(5,25,44,.86) 0%, rgba(8,43,76,.62) 38%, rgba(8,43,76,.12) 100%), linear-gradient(0deg, rgba(5,25,44,.42), transparent 45%);
}
.hero-content {
  position: relative; z-index: 1; max-width: 760px; padding: 150px 0 130px; color: var(--white);
}
.hero-logo {
  width: min(320px, 58vw);
  height: auto;
  margin-bottom: 30px;
  filter: brightness(0) invert(1) drop-shadow(0 10px 24px rgba(0,0,0,.18));
}
.hero-content h1, .hero-content h2, .hero-content p { color: var(--white); }
.hero-content h1 { letter-spacing: -.06em; font-weight: 900; }
.hero-content h2 { max-width: 700px; margin-bottom: 22px; font-weight: 700; letter-spacing: -.03em; }
.hero-content p { max-width: 610px; color: rgba(255,255,255,.82); font-size: 1.06rem; }
.hero-content .eyebrow { color: rgba(255,255,255,.9); }
.hero-content .eyebrow::before { content: ''; display: inline-block; width: 34px; height: 2px; background: var(--accent); vertical-align: middle; margin: 0 12px 3px 0; }
.hero-actions { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 14px; }

.two-col {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: center;
}
.align-start { align-items: flex-start; }
.narrow { max-width: 760px; }
.center { text-align: center; }
.section-intro { max-width: 520px; }
.about-media img {
  width: 100%; min-height: 440px; object-fit: cover; border-radius: 22px; box-shadow: var(--shadow);
}
.about-media.single img { min-height: 360px; }
.lead { font-size: clamp(1.1rem, 2vw, 1.35rem); color: var(--dark-text); }
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 52px;
  padding: 34px 24px 30px;
  border: 1px solid #c8e2f8;
  border-radius: 20px;
  background: #eaf5ff;
  box-shadow: 0 16px 34px rgba(11,92,173,.10);
}
.about-stat {
  display: grid;
  justify-items: center;
  gap: 4px;
  padding: 0 22px;
  border-right: 1px solid #c8e2f8;
  text-align: center;
}
.about-stat:last-child { border-right: 0; }
.about-stat strong { color: var(--navy); font-size: clamp(2.2rem, 4vw, 3.7rem); line-height: 1; letter-spacing: -.06em; }
.about-stat .counter { font-variant-numeric: tabular-nums; min-width: 3ch; }
.about-stat > span:last-child { color: var(--dark-text); font-size: .92rem; font-weight: 700; }
.stat-icon { color: var(--accent); font-size: 1.5rem; line-height: 1; margin-bottom: 8px; }

@media (max-width: 680px) {
  .about-stat { border-right: 0; border-bottom: 1px solid #c8e2f8; padding: 18px 0; }
  .about-stat:last-child { border-bottom: 0; }
}

.section-heading {
  margin-bottom: 46px;
}
.section-heading.inline { display: flex; justify-content: space-between; align-items: end; gap: 25px; }
.services-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 26px;
}
.service-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; box-shadow: 0 10px 28px rgba(8,43,76,.04); transition: transform .3s ease, box-shadow .3s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service-card img { width: 100%; height: 300px; object-fit: cover; }
.service-card-body { padding: 28px 22px 24px; }
.service-card-body h4 { letter-spacing: -.03em; }
.mini-label {
  display: inline-block; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: var(--primary); font-weight: 700; margin-bottom: 10px;
}
.text-link {
  display: inline-block; margin-top: 8px; color: var(--navy); font-weight: 700; position: relative; padding-bottom: 2px;
}
.text-link::after { content: ''; position: absolute; left: 0; bottom: 0; width: 100%; height: 2px; background: var(--primary); }

.feature-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px;
}
.feature-card {
  background: var(--gray); border: 1px solid var(--border); border-radius: 14px; padding: 28px 22px;
}
.feature-icon {
  display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px; border-radius: 12px; background: rgba(11,92,173,0.1); color: var(--primary); font-weight: 800; margin-bottom: 14px;
}

.partners-section { background: #f8fafc; }
.partners-section .section-heading p { max-width: 560px; margin: -2px auto 0; }
.partners-marquee { overflow: hidden; width: 100%; mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); }
.partners-track { display: flex; width: max-content; gap: 14px; animation: partnersScroll 44s linear infinite; }
.partners-marquee:hover .partners-track { animation-play-state: paused; }
@keyframes partnersScroll { from { transform: translateX(0); } to { transform: translateX(calc(-50% - 7px)); } }
.partner-card {
  width: 240px; min-height: 140px; display: grid; place-items: center; flex: 0 0 240px; padding: 26px; text-align: center;
  background: var(--white); border: 1px solid var(--border); border-radius: 10px; color: var(--navy);
  font-size: 1.12rem; font-weight: 800; letter-spacing: .01em; transition: transform .3s ease, box-shadow .3s ease, color .3s ease;
}
.partner-card:hover { transform: translateY(-3px); color: var(--primary); box-shadow: 0 12px 26px rgba(8,43,76,.09); }
.partner-card img { width: 100%; max-width: 190px; height: 68px; object-fit: contain; }

.gallery-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px;
}
.gallery-item {
  position: relative; overflow: hidden; border-radius: 18px; border: 1px solid var(--border); background: rgba(0,0,0,.02); cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 280px; object-fit: cover; transition: transform .38s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
  position: absolute; inset: 0; display: grid; place-items: center; background: rgba(8,43,76,.3); opacity: 0; transition: opacity .25s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.view-icon { font-size: 2.5rem; color: var(--white); }
.gallery-view-label { position: absolute; bottom: 24px; color: var(--white); font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.gallery-item figcaption {
  position: absolute; left: 16px; bottom: 16px; background: rgba(255,255,255,.9); padding: 8px 12px; border-radius: 999px; font-size: .76rem; font-weight: 700; color: var(--navy); }
.gallery-preview .section-heading.inline { align-items: center; margin-bottom: 30px; }
.gallery-preview .section-heading h3 { max-width: 760px; margin-bottom: 0; font-size: clamp(1.8rem, 3vw, 2.65rem); }
.gallery-preview .section-heading p { max-width: 680px; margin: 10px 0 0; }
.gallery-preview .section-heading .btn { flex: 0 0 auto; white-space: nowrap; }
.gallery-marquee { display: grid; gap: 16px; width: calc(100% + 48px); margin-left: -24px; overflow: hidden; padding: 4px 0 10px; mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); }
.gallery-marquee-row { overflow: hidden; }
.gallery-marquee-track { display: flex; width: max-content; animation: galleryForward 34s linear infinite; }
.gallery-marquee-group { display: flex; gap: 16px; padding-right: 16px; }
.gallery-row-reverse .gallery-marquee-track { animation-name: galleryReverse; }
@keyframes galleryForward { from { transform: translateX(-50%); } to { transform: translateX(0); } }
@keyframes galleryReverse { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.gallery-marquee:hover .gallery-marquee-track { animation-play-state: paused; }
.gallery-marquee-item { position: relative; flex: 0 0 clamp(280px, 30vw, 380px); aspect-ratio: 1.52; overflow: hidden; margin: 0; border: 1px solid var(--border); border-radius: 10px; background: var(--gray); box-shadow: 0 10px 24px rgba(8,43,76,.07); cursor: pointer; }
.gallery-marquee-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.gallery-marquee-item:hover img { transform: scale(1.04); }
.gallery-marquee-overlay { position: absolute; inset: 0; display: grid; place-items: center; background: rgba(8,43,76,.2); opacity: 0; transition: opacity .3s ease; }
.gallery-marquee-item:hover .gallery-marquee-overlay { opacity: 1; }

.cta-band {
  padding-top: 0;
}
.cta-band-inner {
  display: flex; justify-content: space-between; align-items: center; gap: 20px; background: linear-gradient(135deg, rgba(11,92,173,.1), rgba(8,43,76,.02)); border: 1px solid var(--border); border-radius: 16px; padding: 36px 32px;
}

.contact-grid {
  display: grid; grid-template-columns: .9fr 1.1fr; gap: 36px;
}
.contact-section { background: var(--white); }
.contact-info, .contact-form {
  background: var(--gray); border: 1px solid var(--border); border-radius: 18px; padding: 28px;
}
.contact-info ul { list-style: none; padding: 0; margin: 0 0 26px; display: grid; gap: 12px; color: var(--dark-text); }
.social-links { display: flex; gap: 14px; flex-wrap: wrap; }
.social-links a { color: var(--primary); font-weight: 600; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form { display: grid; gap: 18px; }
.contact-form label, .admin-form label {
  display: grid; gap: 10px; color: var(--navy); font-weight: 600;
}
.contact-form input, .contact-form textarea, .admin-form input, .admin-form textarea, .admin-form select {
  background: var(--white); border: 1px solid var(--border); border-radius: 10px; min-height: 52px; padding: 12px 16px; color: var(--dark-text); width: 100%;
}
.contact-form textarea, .admin-form textarea { min-height: 130px; resize: vertical; }

.map-box { border-radius: 24px; overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow); }
.map-box iframe { width: 100%; min-height: 420px; border: 0; display: block; }

.site-footer {
  position: relative; overflow: hidden; background: #f3f7fb; color: var(--dark-text); padding-top: 78px; margin-top: 70px;
}
.site-footer::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: linear-gradient(90deg, var(--accent) 0 18%, var(--primary) 18% 100%);
}
.site-footer::after {
  content: ''; position: absolute; right: -100px; top: -140px; width: 360px; height: 360px; border: 1px solid rgba(8, 43, 76, 0.12); border-radius: 50%; box-shadow: 0 0 0 28px rgba(8, 43, 76, 0.04), 0 0 0 58px rgba(8, 43, 76, 0.03); pointer-events: none;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 28px; padding-bottom: 42px;
}
.site-footer h4, .site-footer p, .site-footer li, .site-footer a { color: #1c3650; }
.site-footer h4 { color: var(--navy); font-size: 1rem; }
.site-footer .brand { background: transparent; border: 0; padding: 0; border-radius: 0; box-shadow: none; outline: none; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.social-list { display: grid; gap: 12px; }
.social-link { display: inline-flex; align-items: center; gap: 11px; width: fit-content; color: #1b3a5a !important; transition: color .25s ease, transform .25s ease; }
.social-link:hover { color: var(--primary) !important; transform: translateX(4px); }
.social-link svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.social-link.facebook svg, .social-link.youtube svg { fill: currentColor; stroke: none; }
.social-link .youtube-play { fill: var(--navy); }
.social-link.instagram:hover { color: #e6a05c !important; }
.social-link.facebook:hover { color: #7caee5 !important; }
.social-link.youtube:hover { color: #f06a6f !important; }
.footer-bottom {
  border-top: 1px solid rgba(8, 43, 76, 0.14); display: flex; justify-content: space-between; gap: 16px; padding: 18px 0 28px; font-size: .92rem;
}
.footer-address { white-space: pre-line; }
.mobile-contact-bar { display: none; }

.page-hero {
  padding: 140px 0 80px; background: linear-gradient(180deg, rgba(11,92,173,.04), rgba(255,255,255,0));
}
.page-hero.compact { padding-top: 116px; }
.service-page-hero img { width: 100%; max-height: 420px; object-fit: cover; border-radius: 22px; box-shadow: var(--shadow); }
.rich-copy { margin-bottom: 32px; }
.service-links { display: flex; flex-wrap: wrap; gap: 12px; margin: 0 0 28px; }
.marketplace-link, .instagram-service-link {
  display: inline-flex; align-items: center; gap: 12px; min-height: 58px; padding: 10px 16px; border: 1px solid var(--border); border-radius: 12px; background: var(--white); color: var(--navy); font-weight: 700; box-shadow: 0 8px 20px rgba(8,43,76,.05); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.marketplace-link:hover, .instagram-service-link:hover { transform: translateY(-2px); border-color: rgba(11,92,173,.35); box-shadow: 0 12px 24px rgba(8,43,76,.1); }
.marketplace-logo { font-size: 1.05rem; font-weight: 900; letter-spacing: -.04em; color: #f26b21; }
.marketplace-logo span { color: #273b52; font-weight: 700; }
.instagram-service-link svg { width: 22px; height: 22px; fill: none; stroke: #cf3c79; stroke-width: 1.7; }
.service-slider { position: relative; margin-top: 32px; }
.service-slides { position: relative; aspect-ratio: 16 / 8; overflow: hidden; border-radius: 18px; background: var(--gray); }
.service-slide { position: absolute; inset: 0; margin: 0; opacity: 0; transform: scale(1.03); transition: opacity .55s ease, transform 1s ease; pointer-events: none; }
.service-slide.active { opacity: 1; transform: scale(1); pointer-events: auto; }
.service-slide img { width: 100%; height: 100%; object-fit: cover; }
.slider-control { position: absolute; top: 50%; transform: translateY(-50%); z-index: 2; width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; background: rgba(8,43,76,.58); color: var(--white); font-size: 1.9rem; line-height: 1; cursor: pointer; }
.slider-control:hover { background: var(--primary); }
.slider-prev { left: 16px; }
.slider-next { right: 16px; }
.slider-dots { position: absolute; z-index: 2; left: 50%; bottom: 16px; transform: translateX(-50%); display: flex; gap: 7px; }
.slider-dot { width: 8px; height: 8px; padding: 0; border: 0; border-radius: 50%; background: rgba(255,255,255,.55); cursor: pointer; transition: width .25s ease, background .25s ease; }
.slider-dot.active { width: 24px; border-radius: 99px; background: var(--white); }
.cta-panel {
  background: linear-gradient(135deg, rgba(11,92,173,.08), rgba(8,43,76,.02)); border: 1px solid var(--border); border-radius: 24px; padding: 32px; display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-top: 40px;
}

.gallery-filters {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-bottom: 28px;
}
.filter-btn {
  background: var(--white); border: 1px solid var(--border); border-radius: 999px; color: var(--navy); padding: 10px 18px; font-weight: 600; cursor: pointer;
}
.filter-btn.active { background: var(--primary); color: var(--white); border-color: var(--primary); }
.gallery-page-grid .gallery-item { display: block; }
.gallery-page-grid .gallery-item.hidden { display: none; }

.lightbox { position: fixed; inset: 0; background: rgba(5,25,44,.94); display: none; place-items: center; z-index: 100; padding: 28px; }
.lightbox.active { display: grid;}
.lightbox-content { display: grid; justify-items: center; gap: 14px; max-width: min(92vw, 1180px); max-height: 90vh; }
.lightbox img { max-width: 100%; max-height: 82vh; border-radius: 14px; box-shadow: 0 20px 60px rgba(0,0,0,.35); }
.lightbox p { margin: 0; color: rgba(255,255,255,.86); font-weight: 700; }
.lightbox-open { overflow: hidden; }
.lightbox-close {
  position: absolute; top: 24px; right: 24px; border: 0; background: rgba(255,255,255,.12); color: var(--white); width: 46px; height: 46px; border-radius: 50%; font-size: 2rem; cursor: pointer;
}
.lightbox-control { position: absolute; top: 50%; z-index: 2; width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.4); border-radius: 50%; background: rgba(255,255,255,.12); color: var(--white); font-size: 2rem; line-height: 1; cursor: pointer; }
.lightbox-control:hover { background: var(--primary); }
.lightbox-prev { left: 28px; }
.lightbox-next { right: 28px; }
.lightbox-counter { color: rgba(255,255,255,.7); font-size: .85rem; font-weight: 700; }
.gallery-modal { position: fixed; inset: 0; z-index: 90; display: none; padding: 24px; background: rgba(5,25,44,.78); }
.gallery-modal.active { display: grid; place-items: center; }
.gallery-modal-panel { width: min(1120px, 100%); max-height: min(88vh, 900px); overflow: auto; padding: 30px; border: 1px solid rgba(255,255,255,.25); border-radius: 18px; background: var(--white); box-shadow: 0 24px 70px rgba(0,0,0,.3); }
.gallery-modal-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; margin-bottom: 22px; }
.gallery-modal-header .eyebrow { margin-bottom: 8px; }
.gallery-modal-header h3 { margin-bottom: 0; font-size: clamp(1.7rem, 3vw, 2.5rem); }
.gallery-modal-close { width: 42px; height: 42px; flex: 0 0 auto; border: 1px solid var(--border); border-radius: 50%; background: var(--white); color: var(--navy); font-size: 1.8rem; line-height: 1; cursor: pointer; }
.gallery-modal-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.gallery-modal-grid .gallery-item img { height: 220px; }
.gallery-modal-filters { justify-content: flex-start; margin-bottom: 24px; }
.gallery-modal-grid .gallery-item.hidden { display: none; }
.gallery-modal-open { overflow: hidden; }

@media (max-width: 980px) {
  .gallery-preview .preview-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-modal-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 680px) {
  .gallery-preview .section-heading.inline { display: flex; align-items: flex-start; gap: 16px; }
  .gallery-preview .section-heading h3 { font-size: 2rem; }
  .gallery-preview .section-heading .btn { min-height: 44px; padding: 0 14px; font-size: .88rem; }
  .gallery-marquee { width: calc(100% + 32px); margin-left: -16px; gap: 12px; }
  .gallery-marquee-track, .gallery-row-reverse .gallery-marquee-track { animation-duration: 30s; }
  .gallery-marquee-group { gap: 12px; padding-right: 12px; }
  .gallery-marquee-item { flex-basis: 250px; }
  .gallery-modal { padding: 10px; }
  .gallery-modal-panel { max-height: 94vh; padding: 20px 14px; }
  .gallery-modal-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .gallery-modal-grid .gallery-item img { height: 150px; }
  .lightbox { padding: 16px; }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  .gallery-marquee-track { animation: none; transform: none; }
  .gallery-marquee-row { overflow-x: auto; }
  .gallery-marquee { mask-image: none; }
}

.splash-screen {
  position: fixed; inset: 0; display: grid; place-items: center; background: rgba(245,247,250,.96); z-index: 200; transition: opacity .7s ease, visibility .7s ease;
}
.splash-screen.hidden { opacity: 0; visibility: hidden; }
.splash-logo-wrap { text-align: center; animation: fadeInScale .7s ease both; }
.splash-logo-image {
  width: min(620px, 86vw);
  margin: 0 auto;
  filter: drop-shadow(0 10px 20px rgba(8, 43, 76, 0.12));
}
@keyframes fadeInScale { from { opacity: 0; transform: scale(.96); } to { opacity: 1; transform: scale(1);} }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

.admin-body { background: #eef3f9; margin: 0; }
.admin-layout { display: grid; grid-template-columns: 260px 1fr; min-height: 100vh; }
.admin-sidebar {
  background: var(--navy); color: var(--white); padding: 28px 20px; position: sticky; top: 0; height: 100vh;
}
.admin-brand { font-size: 1.7rem; font-weight: 800; letter-spacing: .08em; margin-bottom: 30px; }
.admin-sidebar nav { display: grid; gap: 10px; }
.admin-sidebar a {
  color: rgba(255,255,255,.8); padding: 12px 14px; border-radius: 10px; font-weight: 600;
}
.admin-sidebar a:hover { background: rgba(255,255,255,.06); color: var(--white); }
.admin-main { padding: 32px; }
.admin-topbar {
  display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px;
}
.stat-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 18px; padding: 22px; box-shadow: 0 8px 20px rgba(10, 29, 52, .05);
}
.stat-card span { display: block; color: var(--muted); margin-bottom: 16px; }
.stat-card strong { font-size: clamp(2rem, 2.5vw, 2.8rem); color: var(--navy); }
.admin-card, .admin-form, .admin-list { background: var(--white); border: 1px solid var(--border); border-radius: 18px; padding: 24px; }
.admin-login-shell {
  min-height: 100vh; display: grid; place-items: center; padding: 20px; background: linear-gradient(135deg, rgba(11,92,173,.08), rgba(255,255,255,.7));
}
.login-card { width: min(480px, 100%); }
.login-brand { font-size: 2rem; font-weight: 900; color: var(--navy); }
.form-error { color: var(--accent); font-weight: 700; }
.admin-form { display: grid; gap: 18px; }
.admin-grid.two-column { display: grid; grid-template-columns: 1.2fr .8fr; gap: 22px; }
.admin-list { display: grid; gap: 16px; }
.admin-item {
  display: grid; grid-template-columns: 1fr auto; gap: 18px; align-items: center; padding: 16px 18px; border: 1px solid var(--border); border-radius: 12px; background: #f8fafc;
}
.admin-item img { width: 84px; height: 84px; object-fit: cover; border-radius: 10px; }
.admin-actions { display: flex; gap: 10px; }
.check-wrap { display: flex !important; align-items: center; gap: 10px; }
.check-wrap input { width: 18px; height: 18px; min-height: auto; }
.admin-alert {
  background: rgba(215, 25, 32, 0.08); border: 1px solid rgba(215, 25, 32, 0.2); color: var(--accent); border-radius: 12px; padding: 12px 14px; margin-bottom: 18px; font-weight: 600;
}

@media (max-width: 980px) {
  .main-nav { display: none; }
  .nav-cta { display: inline-flex; width: 42px; min-height: 42px; padding: 0; border-radius: 50%; }
  .nav-cta span { display: none; }
  .nav-cta svg { width: 19px; height: 19px; margin: 0; }
  .mobile-menu-toggle { display: block; }
  .brand { order: 1; margin-right: auto; }
  .nav-cta { order: 2; margin-left: 10px; }
  .mobile-menu-toggle { order: 3; }
  .hero { min-height: 620px; }
  .two-col, .contact-grid, .footer-grid, .feature-grid, .services-grid, .gallery-grid, .stats-grid, .admin-grid.two-column { grid-template-columns: 1fr; }
  .section-heading.inline { display: block; }
  .cta-band-inner { display: block; }
}
@media (max-width: 680px) {
  .section { padding: 80px 0; }
  .hero-content { padding-top: 90px; }
  .brand-logo { height: 40px; }
  .brand-logo-footer { height: 44px; }
  .form-row { grid-template-columns: 1fr; }
  .admin-layout { grid-template-columns: 1fr; }
  .admin-sidebar { height: auto; position: static; }
  .admin-main { padding: 18px; }
  .site-header { position: sticky; }
  .partner-card { width: 190px; min-height: 122px; flex-basis: 190px; padding: 20px 14px; font-size: .98rem; }
}
@media (prefers-reduced-motion: reduce) {
  .partners-track { animation: none; }
}
