/* Christ Embassy Mozambique public site */
:root {
  --font-heading: "Playfair Display", "Merriweather", Georgia, serif;
  --font-ui: "Inter", "Manrope", "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --ce-navy: #071326;
  --ce-navy-2: #0d1f3d;
  --ce-blue: #123f91;
  --ce-blue-2: #1d63d8;
  --ce-cyan: #22d3ee;
  --ce-gold: #d7ad45;
  --ce-gold-light: #f3d987;
  --ce-cream: #f7f5ee;
  --ce-white: #ffffff;
  --ce-ink: #111827;
  --ce-muted: #64748b;
  --ce-line: rgba(15, 23, 42, 0.12);
  --bs-body-font-family: var(--font-ui);
  --bs-body-color: var(--ce-ink);
  --bs-primary: var(--ce-blue);
  --bs-warning: var(--ce-gold);
  --bs-link-color: var(--ce-blue);
  --bs-link-hover-color: var(--ce-blue-2);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 8% 6%, rgba(34, 211, 238, 0.12), transparent 26rem),
    radial-gradient(circle at 88% 8%, rgba(215, 173, 69, 0.14), transparent 24rem),
    var(--ce-cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
}

h1,
h2,
.page-title,
.hero-title,
.section-title-elegant,
.navbar-brand span {
  font-family: var(--font-heading);
  letter-spacing: 0;
}

h3,
h4,
h5,
h6,
p,
li,
label,
input,
select,
textarea,
button,
.btn,
.navbar,
.card,
.form-label {
  font-family: var(--font-ui);
}

.site-header {
  background: rgba(7, 19, 38, 0.92);
  border-bottom: 1px solid rgba(243, 217, 135, 0.2);
  box-shadow: 0 18px 45px rgba(2, 8, 23, 0.2);
  backdrop-filter: blur(18px);
}

.brand-logo {
  width: 82px;
  height: 46px;
  object-fit: contain;
  border-radius: 999px;
  background: #fff;
  padding: 5px;
  box-shadow: 0 0 0 1px rgba(243, 217, 135, 0.35), 0 12px 34px rgba(34, 211, 238, 0.12);
}

.brand-kicker {
  display: block;
  color: var(--ce-gold-light);
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.navbar .nav-link {
  position: relative;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  padding-inline: 0.15rem;
}

.navbar .nav-link:not(.dropdown-toggle)::after {
  content: "";
  position: absolute;
  left: 0.15rem;
  right: 0.15rem;
  bottom: 0.2rem;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--ce-gold), var(--ce-cyan));
  transition: transform 0.2s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link.active,
.navbar .nav-link[aria-current="page"] {
  color: #fff;
}

.navbar .nav-link:not(.dropdown-toggle):hover::after,
.navbar .nav-link:not(.dropdown-toggle).active::after,
.navbar .nav-link:not(.dropdown-toggle)[aria-current="page"]::after {
  transform: scaleX(1);
}

.navbar .dropdown-toggle::after {
  margin-left: 0.35em;
  vertical-align: 0.12em;
  border-top-color: rgba(255, 255, 255, 0.72);
}

.navbar .dropdown-toggle:hover::after,
.navbar .dropdown-toggle.show::after,
.navbar .dropdown-toggle.active::after {
  border-top-color: var(--ce-gold-light);
}

.navbar .dropdown-toggle.active,
.navbar .dropdown-toggle.show {
  color: #fff;
}

.navbar .dropdown-menu {
  background: var(--ce-navy-2);
  border: 1px solid rgba(243, 217, 135, 0.22);
  border-radius: 0.65rem;
  padding: 0.4rem;
  min-width: 12rem;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.38);
}

.navbar .dropdown-item {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  border-radius: 0.4rem;
  padding: 0.55rem 0.85rem;
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus {
  background: rgba(34, 211, 238, 0.12);
  color: #fff;
}

.navbar .dropdown-item.active,
.navbar .dropdown-item[aria-current="page"] {
  background: rgba(215, 173, 69, 0.18);
  color: var(--ce-gold-light);
}

@media (min-width: 1200px) {
  .navbar .nav-item.dropdown {
    position: relative;
  }

  .navbar .nav-item.dropdown::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 0.65rem;
  }

  .navbar .nav-item.dropdown:hover > .dropdown-menu,
  .navbar .nav-item.dropdown:focus-within > .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .navbar .nav-item.dropdown:hover > .dropdown-toggle,
  .navbar .nav-item.dropdown:focus-within > .dropdown-toggle {
    color: #fff;
  }

  .navbar .nav-item.dropdown:hover > .dropdown-toggle::after,
  .navbar .nav-item.dropdown:focus-within > .dropdown-toggle::after {
    border-top-color: var(--ce-gold-light);
  }

  .navbar .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(0.35rem);
    pointer-events: none;
    margin-top: 0;
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  }
}

.navbar-toggler {
  border-color: rgba(243, 217, 135, 0.36);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.18rem rgba(34, 211, 238, 0.24);
}

.lang-switch {
  display: inline-flex;
  gap: 0.25rem;
  padding: 0.2rem;
  border: 1px solid rgba(243, 217, 135, 0.35);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
}

.lang-switch button {
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.72rem;
  font-weight: 900;
  padding: 0.34rem 0.72rem;
}

.lang-switch button.active {
  background: linear-gradient(135deg, var(--ce-gold), var(--ce-gold-light));
  color: var(--ce-navy);
}

.social-links,
.icon-line {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.social-links {
  gap: 0.48rem;
}

.social-links a,
.social-pill {
  width: 2.1rem;
  height: 2.1rem;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(243, 217, 135, 0.36);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.06);
  transition: transform 0.2s ease, color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.social-links a:hover,
.social-pill:hover {
  color: var(--ce-navy);
  border-color: var(--ce-gold-light);
  background: var(--ce-gold-light);
  transform: translateY(-2px);
}

.icon-line i {
  color: var(--ce-gold-light);
  font-size: 1rem;
  line-height: 1;
}

.btn {
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 0.02em;
  padding: 0.82rem 1.25rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-ce-gold {
  --bs-btn-bg: var(--ce-gold);
  --bs-btn-border-color: var(--ce-gold);
  --bs-btn-color: #071326;
  --bs-btn-hover-bg: var(--ce-gold-light);
  --bs-btn-hover-border-color: var(--ce-gold-light);
  --bs-btn-hover-color: #071326;
  box-shadow: 0 14px 32px rgba(215, 173, 69, 0.22);
}

.btn-ce-outline {
  --bs-btn-color: #fff;
  --bs-btn-border-color: rgba(243, 217, 135, 0.72);
  --bs-btn-hover-bg: rgba(215, 173, 69, 0.14);
  --bs-btn-hover-border-color: var(--ce-gold-light);
  --bs-btn-hover-color: #fff;
}

.btn-ce-dark {
  --bs-btn-bg: var(--ce-navy);
  --bs-btn-border-color: var(--ce-navy);
  --bs-btn-color: #fff;
  --bs-btn-hover-bg: var(--ce-blue);
  --bs-btn-hover-border-color: var(--ce-blue);
  --bs-btn-hover-color: #fff;
  box-shadow: 0 12px 28px rgba(7, 19, 38, 0.18);
}

.btn-ce-light {
  --bs-btn-bg: rgba(255, 255, 255, 0.94);
  --bs-btn-border-color: rgba(255, 255, 255, 0.94);
  --bs-btn-color: var(--ce-navy);
  --bs-btn-hover-bg: #fff;
  --bs-btn-hover-border-color: #fff;
  --bs-btn-hover-color: var(--ce-blue);
}

.eyebrow {
  color: var(--ce-gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-padding:not(.section-dark):not(.section-soft):not(.site-footer) {
  background: transparent;
}

main {
  background: transparent;
}

.section-padding {
  padding: 6rem 0;
}

.section-soft {
  color: var(--ce-ink);
  background:
    radial-gradient(circle at 10% 10%, rgba(34, 211, 238, 0.09), transparent 22rem),
    radial-gradient(circle at 90% 8%, rgba(215, 173, 69, 0.1), transparent 20rem),
    var(--ce-cream);
}

.section-padding:not(.section-dark):not(.site-footer) {
  color: var(--ce-ink);
}

.section-dark {
  color: #fff;
  background:
    radial-gradient(circle at 14% 14%, rgba(34, 211, 238, 0.18), transparent 25rem),
    radial-gradient(circle at 88% 8%, rgba(215, 173, 69, 0.17), transparent 26rem),
    linear-gradient(135deg, #071326, #0d1f3d 56%, #123f91);
}

.section-dark .location-card,
.section-dark .feature-card,
.section-dark .method-card {
  color: var(--ce-ink);
}

.section-dark .location-card :is(h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6),
.section-dark .feature-card :is(h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6),
.section-dark .method-card :is(h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6) {
  color: var(--ce-ink);
}

.section-dark .location-card .text-ce-muted,
.section-dark .feature-card .text-ce-muted,
.section-dark .method-card .text-ce-muted {
  color: var(--ce-muted);
}

.section-dark .location-card strong,
.section-dark .feature-card strong,
.section-dark .method-card strong {
  color: var(--ce-ink);
}

.section-dark .filter-bar .form-select {
  background-color: #fff;
  color: var(--ce-ink);
  border-color: rgba(15, 23, 42, 0.14);
}

.text-ce-muted {
  color: var(--ce-muted);
}

.text-ce-gold {
  color: var(--ce-gold-light);
}

.bg-ce-dark {
  background: var(--ce-navy);
  color: #fff;
}

.bg-ce-dark .eyebrow,
.feature-card.bg-ce-dark .eyebrow {
  color: var(--ce-gold-light);
}

.bg-ce-dark .icon-line i,
.feature-card.bg-ce-dark .icon-line i {
  color: var(--ce-cyan);
}

.capulana-divider {
  display: block;
  flex-shrink: 0;
  height: 14px;
  margin: 0;
  border: 0;
  background-color: var(--ce-navy);
  background-image:
    linear-gradient(45deg, var(--ce-gold) 25%, transparent 25%),
    linear-gradient(-45deg, var(--ce-gold) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, var(--ce-cyan) 75%),
    linear-gradient(-45deg, transparent 75%, var(--ce-cyan) 75%);
  background-position: 0 0, 0 7px, 7px -7px, -7px 0;
  background-size: 14px 14px;
}

.hero {
  position: relative;
  min-height: calc(100vh - 78px);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--ce-navy);
}

.hero-compact {
  position: relative;
  min-height: 430px;
  padding: 5rem 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--ce-navy);
}

.hero-compact::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg, rgba(7, 19, 38, 0.96) 0%, rgba(13, 31, 61, 0.9) 45%, rgba(18, 63, 145, 0.58) 100%),
    radial-gradient(circle at 76% 18%, rgba(34, 211, 238, 0.2), transparent 28%),
    radial-gradient(circle at 18% 82%, rgba(215, 173, 69, 0.18), transparent 26%);
}

.hero-compact > .container {
  position: relative;
  z-index: 3;
}

.hero-image-cover {
  z-index: 0;
  transform: scale(1.02);
}

.hero-slides,
.hero-slides img,
.hero-image-cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-slides img,
.hero-image-cover {
  object-fit: cover;
  object-position: center;
}

.hero-slides {
  z-index: 0;
}

.hero-slides img {
  opacity: 0;
  transform: scale(1.04);
  animation: heroFade 18s infinite;
}

.hero-slides img:nth-child(2) {
  animation-delay: 6s;
}

.hero-slides img:nth-child(3) {
  animation-delay: 12s;
}

@keyframes heroFade {
  0%, 100% { opacity: 0; transform: scale(1.06); }
  8%, 33% { opacity: 1; transform: scale(1); }
  43% { opacity: 0; transform: scale(1.05); }
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg, rgba(7, 19, 38, 0.97) 0%, rgba(13, 31, 61, 0.88) 42%, rgba(18, 63, 145, 0.5) 100%),
    radial-gradient(circle at 76% 18%, rgba(34, 211, 238, 0.22), transparent 28%),
    radial-gradient(circle at 18% 82%, rgba(215, 173, 69, 0.2), transparent 26%);
}

.hero > .container {
  position: relative;
  z-index: 3;
}

.hero .eyebrow,
.hero-compact .eyebrow {
  color: var(--ce-gold-light);
}

.hero h1,
.hero .hero-title,
.hero-compact h1,
.hero-compact .display-3 {
  max-width: 950px;
  font-size: clamp(2.8rem, 6vw, 6rem);
  line-height: 0.98;
  color: #fff;
  text-shadow: 0 8px 32px rgba(7, 19, 38, 0.35);
}

.hero-compact .display-3 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
}

.hero .lead,
.hero-compact .lead {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.86);
}

.hero-card,
.glass-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(243, 217, 135, 0.38);
  box-shadow:
    0 24px 70px rgba(2, 8, 23, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 0 40px rgba(34, 211, 238, 0.08);
  backdrop-filter: blur(20px);
}

.service-row,
.giving-line {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.92rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.giving-line {
  color: var(--ce-ink);
  border-color: rgba(15, 23, 42, 0.1);
}

.giving-line span,
.giving-line strong {
  color: var(--ce-ink);
}

.service-row:last-child,
.giving-line:last-child {
  border-bottom: 0;
}

.feature-card,
.journey-card,
.location-card,
.method-card {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.09);
  backdrop-filter: blur(10px);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.feature-card:not(.bg-ce-dark):not(.text-white),
.journey-card,
.location-card:not(.bg-ce-dark),
.method-card,
.card.feature-card:not(.bg-ce-dark):not(.text-white) {
  --bs-card-color: var(--ce-ink);
  --bs-card-bg: rgba(255, 255, 255, 0.92);
  color: var(--ce-ink);
}

.feature-card:not(.bg-ce-dark):not(.text-white) :is(h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6, .display-6),
.journey-card :is(h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6, .display-6),
.location-card:not(.bg-ce-dark) :is(h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6, .display-6),
.method-card :is(h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6, .display-6),
.card.feature-card:not(.bg-ce-dark):not(.text-white) :is(h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6, .display-6) {
  color: var(--ce-ink);
}

.feature-card:not(.bg-ce-dark):not(.text-white) .form-label,
.journey-card .form-label,
.method-card .form-label,
.section-soft .form-label,
.section-padding:not(.section-dark) .form-label {
  color: var(--ce-ink);
}

.feature-card.bg-ce-dark,
.card.feature-card.bg-ce-dark {
  --bs-card-bg: var(--ce-navy);
  --bs-card-color: #fff;
  background:
    radial-gradient(circle at 88% 10%, rgba(34, 211, 238, 0.18), transparent 40%),
    radial-gradient(circle at 12% 90%, rgba(215, 173, 69, 0.14), transparent 38%),
    linear-gradient(135deg, var(--ce-navy) 0%, var(--ce-navy-2) 100%);
  color: #fff;
  border-color: rgba(243, 217, 135, 0.24);
}

.feature-card.bg-ce-dark :is(h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6, .display-6),
.card.feature-card.bg-ce-dark :is(h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6, .display-6) {
  color: #fff;
}

.feature-card.bg-ce-dark p,
.feature-card.bg-ce-dark li,
.feature-card.bg-ce-dark span,
.card.feature-card.bg-ce-dark p,
.card.feature-card.bg-ce-dark li,
.card.feature-card.bg-ce-dark span {
  color: rgba(255, 255, 255, 0.86);
}

.journey-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.82)),
    radial-gradient(circle at top left, rgba(34, 211, 238, 0.1), transparent 42%);
}

.feature-card:hover,
.journey-card:hover,
.location-card:hover,
.method-card:hover {
  transform: translateY(-5px);
  border-color: rgba(34, 211, 238, 0.3);
  box-shadow: 0 26px 64px rgba(18, 63, 145, 0.16);
}

.icon-mark {
  width: 58px;
  height: 58px;
  display: inline-grid;
  place-items: center;
  border-radius: 1.05rem;
  background: linear-gradient(135deg, rgba(18, 63, 145, 0.98), rgba(34, 211, 238, 0.88));
  color: #fff;
  font-size: 1.35rem;
  box-shadow: 0 14px 30px rgba(18, 63, 145, 0.22), 0 0 0 0 rgba(34, 211, 238, 0);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.feature-card:hover .icon-mark,
.journey-card:hover .icon-mark {
  box-shadow: 0 16px 34px rgba(18, 63, 145, 0.28), 0 0 24px rgba(34, 211, 238, 0.35);
  transform: translateY(-2px);
}

.gold-icon {
  background: linear-gradient(135deg, var(--ce-gold), var(--ce-gold-light));
  color: var(--ce-navy);
}

.ministry-logo {
  width: 62px;
  height: 62px;
  object-fit: contain;
}

.image-frame {
  overflow: hidden;
  border-radius: 1.1rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 20px 52px rgba(15, 23, 42, 0.14);
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.ratio-portrait {
  aspect-ratio: 4 / 5;
}

.ratio-wide {
  aspect-ratio: 16 / 9;
}

.ratio-photo {
  aspect-ratio: 3 / 2;
}

.portrait-natural {
  background: #fff;
}

.portrait-natural img {
  height: auto;
  object-fit: contain;
}

.pastor-chris-frame {
  max-width: 440px;
  margin-inline: auto;
}

.loveworld-logo-card {
  display: grid;
  place-items: center;
  min-height: 300px;
  padding: 2.5rem;
  background: #fff;
  border-radius: 1.1rem;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.loveworld-logo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 60px rgba(18, 63, 145, 0.18);
}

.loveworld-logo-card img {
  width: min(100%, 330px);
}

.visitor-section {
  position: relative;
  overflow: hidden;
}

.visitor-section::before {
  content: "";
  position: absolute;
  right: -8rem;
  top: -8rem;
  width: 22rem;
  height: 22rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.2), transparent 65%);
}

.filter-bar {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.location-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.86)),
    radial-gradient(circle at top right, rgba(34, 211, 238, 0.16), transparent 45%);
}

.location-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border-radius: 999px;
  padding: 0.32rem 0.72rem;
  background: rgba(18, 63, 145, 0.1);
  color: var(--ce-blue);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.online-panel {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: 1.25rem;
  background:
    linear-gradient(135deg, rgba(7, 19, 38, 0.94), rgba(18, 63, 145, 0.88)),
    url("../assets/web/community-worship.jpg") center / cover;
  box-shadow: 0 28px 70px rgba(7, 19, 38, 0.24);
}

.live-placeholder {
  min-height: 300px;
  border: 1px solid rgba(243, 217, 135, 0.32);
  border-radius: 1rem;
  background:
    radial-gradient(circle at center, rgba(34, 211, 238, 0.18), transparent 38%),
    rgba(255, 255, 255, 0.08);
}

.payment-logo {
  max-width: 150px;
  max-height: 68px;
  object-fit: contain;
}

.category-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.56rem 0.8rem;
  border: 1px solid rgba(18, 63, 145, 0.14);
  border-radius: 999px;
  background: #fff;
  color: var(--ce-navy);
  font-size: 0.86rem;
  font-weight: 800;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.category-chip:hover {
  transform: translateY(-2px);
  border-color: rgba(34, 211, 238, 0.45);
  box-shadow: 0 10px 24px rgba(18, 63, 145, 0.12);
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.video-placeholder {
  min-height: 430px;
  background:
    linear-gradient(135deg, rgba(7, 19, 38, 0.96), rgba(18, 63, 145, 0.86)),
    url("../assets/web/hero-service.jpg") center / cover;
}

footer.site-footer,
.site-footer.section-padding {
  background-color: #071326;
  background-image:
    radial-gradient(circle at 12% 0%, rgba(34, 211, 238, 0.14), transparent 22rem),
    radial-gradient(circle at 88% 18%, rgba(215, 173, 69, 0.14), transparent 24rem),
    linear-gradient(180deg, #071326 0%, #06101f 58%, #040a14 100%);
  color: rgba(255, 255, 255, 0.78);
  border-top: 1px solid rgba(243, 217, 135, 0.16);
}

.site-footer h2,
.site-footer h3,
.site-footer h4 {
  color: var(--ce-gold-light);
  font-family: var(--font-heading);
}

.site-footer p,
.site-footer li {
  color: rgba(255, 255, 255, 0.74);
}

.site-footer a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer a:hover {
  color: var(--ce-gold-light);
}

.site-footer .icon-line {
  align-items: flex-start;
}

.site-footer .icon-line i {
  color: var(--ce-cyan);
}

.site-footer .border-top {
  border-color: rgba(243, 217, 135, 0.22) !important;
}

.form-control,
.form-select {
  border-color: rgba(15, 23, 42, 0.16);
  border-radius: 0.85rem;
  padding: 0.85rem 1rem;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--ce-cyan);
  box-shadow: 0 0 0 0.2rem rgba(34, 211, 238, 0.18);
}

.form-check-input:checked {
  background-color: var(--ce-blue);
  border-color: var(--ce-blue);
}

.form-message {
  border-radius: 0.8rem;
  background: rgba(34, 197, 94, 0.1);
  color: #166534;
  font-weight: 800;
  padding: 0.8rem 1rem;
}

@media (max-width: 1199.98px) {
  .social-links-header {
    display: none;
  }
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    padding: 1rem 0 1.25rem;
  }

  .navbar .nav-link {
    padding: 0.78rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .navbar .nav-link:not(.dropdown-toggle)::after {
    left: 0;
    right: auto;
    width: 4rem;
    bottom: 0.45rem;
  }

  .navbar .dropdown-menu {
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0 0 0.35rem 1rem;
    margin-top: 0;
  }

  .navbar .dropdown-item {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 0;
    padding: 0.65rem 0;
  }

  .hero {
    min-height: auto;
    padding: 5.5rem 0;
  }

  .section-padding {
    padding: 4.5rem 0;
  }
}

@media (max-width: 575.98px) {
  .brand-logo {
    width: 66px;
    height: 40px;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 14vw, 3.35rem);
  }

  .service-row,
  .giving-line {
    display: grid;
    gap: 0.25rem;
  }
}
