/* ============ BASE ============ */
:root {
  --blue:      #1f5f8b;
  --blue-dark: #16465f;
  --green:     #3a7d44;
  --ink:       #222;
  --muted:     #5a6672;
  --line:      #e3e7eb;
  --bg-soft:   #f5f7f9;
  --gold:      #c9962f;
  --gold-dark: #a87a1f;
  --gold-soft: #f3e6c4;
}

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

body {
  font-family: "Georgia", "Times New Roman", serif;
  color: var(--ink);
  line-height: 1.6;
  background: #fff;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4, h5 { font-family: "Helvetica Neue", Arial, sans-serif; line-height: 1.25; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-block;
  padding: 11px 22px;
  border-radius: 4px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .15s ease;
  text-decoration: none;
}
.btn-primary { background: var(--gold); color: #fff; border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-dark); border-color: var(--gold-dark); text-decoration: none; }
.btn-outline { background: transparent; color: #fff; border-color: var(--gold); }
.btn-outline:hover { background: var(--gold); color: #fff; border-color: var(--gold); text-decoration: none; }
.btn-give { background: var(--gold); color: #fff; border-color: var(--gold); padding: 9px 18px; font-size: 14px; }
.btn-give:hover { background: #b0821f; text-decoration: none; }

/* ============ TOP BAR ============ */
.topbar {
  background: var(--blue-dark);
  color: #cfe0ec;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 13px;
  border-bottom: 3px solid var(--gold);
}
.lang-toggle { font-weight: 600; }
.lang-toggle:hover, .lang-toggle:hover * { color: var(--gold) !important; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; height: 38px; }
.topbar a { color: #cfe0ec; margin-right: 18px; }
.topbar a:hover { color: #fff; }
.topbar-tools button {
  background: none; border: none; color: #cfe0ec; cursor: pointer;
  font-size: 13px; margin-left: 14px;
}
.topbar-tools button:hover { color: #fff; }

/* ============ HEADER ============ */
.site-header { border-bottom: 1px solid var(--line); background: #fff; position: sticky; top: 0; z-index: 50; }
.header-inner { display: flex; align-items: center; gap: 24px; padding: 16px 24px; }

.logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo:hover { text-decoration: none; }
.logo-mark {
  font-size: 30px; color: var(--gold-dark);
  background: var(--gold-soft); border: 2px solid var(--gold);
  width: 48px; height: 48px; border-radius: 50%;
  display: grid; place-items: center;
}
.logo-img { height: 52px; width: auto; display: block; }
.logo-img-footer { height: 46px; }
.logo-text { display: flex; flex-direction: column; }
.logo-text strong { font-family: "Helvetica Neue", Arial, sans-serif; font-size: 18px; color: var(--blue-dark); }
.logo-text small { font-size: 11px; color: var(--muted); font-style: italic; }

.main-nav { margin-left: auto; }
.main-nav > ul { list-style: none; display: flex; gap: 6px; }
.main-nav > ul > li > a {
  display: block; padding: 10px 14px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 15px; font-weight: 600; color: var(--ink);
}
.main-nav > ul > li > a:hover { color: var(--blue); text-decoration: none; }

.has-dropdown { position: relative; }
.dropdown {
  list-style: none; position: absolute; top: 100%; left: 0;
  background: #fff; border: 1px solid var(--line);
  border-radius: 6px; min-width: 210px; padding: 8px 0;
  box-shadow: 0 12px 28px rgba(0,0,0,.12);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all .15s ease; z-index: 60;
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li a {
  display: block; padding: 9px 18px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 14px; color: var(--ink);
}
.dropdown li a:hover { background: var(--bg-soft); color: var(--blue); text-decoration: none; }

.hamburger { display: none; background: none; border: none; font-size: 26px; cursor: pointer; color: var(--blue-dark); }

/* ============ HERO ============ */
.hero {
  position: relative;
  background: linear-gradient(125deg, #0f3a52, #1f5f8b, #2a7da3, #1f5f8b, #0f3a52);
  background-size: 300% 300%;
  animation: heroGradient 14s ease infinite;
  color: #fff;
  padding: 96px 0;
  overflow: hidden;
}
@keyframes heroGradient {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Floating colored light blobs — clearly visible motion */
.hero::before, .hero::after {
  content: ""; position: absolute; border-radius: 50%;
  filter: blur(70px); opacity: .6; pointer-events: none; z-index: 0;
}
.hero::before {
  width: 440px; height: 440px;
  background: radial-gradient(circle, #e0b14a, transparent 68%);
  top: -130px; left: -90px;
  animation: floatA 13s ease-in-out infinite;
}
.hero::after {
  width: 520px; height: 520px;
  background: radial-gradient(circle, #45b6dd, transparent 68%);
  bottom: -180px; right: -120px;
  animation: floatB 17s ease-in-out infinite;
}
@keyframes floatA {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(160px, 110px) scale(1.18); }
}
@keyframes floatB {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(-180px, -90px) scale(1.12); }
}

.hero-overlay {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(circle at 78% 28%, rgba(201,150,47,.16), transparent 45%),
    radial-gradient(circle at 18% 75%, rgba(255,255,255,.08), transparent 50%);
  animation: heroGlow 9s ease-in-out infinite alternate;
}
@keyframes heroGlow {
  from { opacity: .6; transform: scale(1); }
  to   { opacity: 1;  transform: scale(1.2); }
}

/* ============ HERO PHOTO CAROUSEL ============ */
.hero-slides { position: absolute; inset: 0; z-index: 1; overflow: hidden; }
.hero-slides .slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0;
  animation: slideFade 32s infinite;
}
.hero-slides .slide:nth-child(1) { animation-delay: 0s; }
.hero-slides .slide:nth-child(2) { animation-delay: 8s; }
.hero-slides .slide:nth-child(3) { animation-delay: 16s; }
.hero-slides .slide:nth-child(4) { animation-delay: 24s; }
@keyframes slideFade {
  0%   { opacity: 0; transform: scale(1.04); }
  4%   { opacity: 1; }
  23%  { opacity: 1; transform: scale(1.11); }
  28%  { opacity: 0; }
  100% { opacity: 0; transform: scale(1.04); }
}
/* Dark scrim over the photos so the white text stays readable */
.hero-slides::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg,
    rgba(13,38,56,.88) 0%,
    rgba(13,38,56,.70) 45%,
    rgba(13,38,56,.45) 100%);
}
@media (prefers-reduced-motion: reduce) {
  .hero-slides .slide { animation: none; }
  .hero-slides .slide:nth-child(1) { opacity: 1; }
}

/* Entrance animation for the hero text (staggered) */
@keyframes heroRise {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-content > * { animation: heroRise .85s cubic-bezier(.2,.7,.2,1) both; }
.hero-content > .hero-kicker { animation-delay: .10s; }
.hero-content > h1          { animation-delay: .28s; }
.hero-content > .hero-lead  { animation-delay: .48s; }
.hero-content > .hero-actions { animation-delay: .66s; }

/* Respect users who prefer less motion */
@media (prefers-reduced-motion: reduce) {
  .hero { animation: none; }
  .hero-overlay { animation: none; }
  .hero-content > * { animation: none; }
}
.hero-content { position: relative; z-index: 2; max-width: 720px; }
.hero-kicker { font-family: "Helvetica Neue", Arial, sans-serif; letter-spacing: 3px; font-size: 13px; font-weight: 700; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.hero h1 { position: relative; }
.hero h1::after {
  content: ""; display: block; width: 80px; height: 4px;
  background: var(--gold); border-radius: 2px; margin-top: 22px;
}
.hero h1 { font-size: 46px; font-weight: 700; margin-bottom: 22px; }
.hero-lead { font-size: 19px; opacity: .92; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============ FEATURED ============ */
.featured { padding: 64px 0; background: var(--bg-soft); }
.featured-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.feature-card { background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 6px 18px rgba(0,0,0,.06); display: flex; flex-direction: column; border-top: 4px solid var(--gold); }
.feature-img { height: 150px; }
.feature-body { padding: 22px; }
.tag {
  display: inline-block; font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 11px; letter-spacing: 1px; text-transform: uppercase;
  color: var(--gold-dark); font-weight: 700; margin-bottom: 10px;
}
.feature-body h3 { font-size: 19px; margin-bottom: 10px; color: var(--blue-dark); }
.feature-body p { color: var(--muted); font-size: 15px; margin-bottom: 14px; }
.link-more { font-family: "Helvetica Neue", Arial, sans-serif; font-weight: 600; font-size: 14px; }

/* ============ SECTION TITLES ============ */
.section-title { font-size: 32px; color: var(--blue-dark); text-align: center; }
.section-title::after {
  content: ""; display: block; width: 64px; height: 4px;
  background: var(--gold); border-radius: 2px; margin: 14px auto 0;
}
.section-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 32px; }
.section-head .section-title { text-align: left; }
.section-head .section-title::after { margin-left: 0; }

/* ============ PILLARS ============ */
.pillars { padding: 72px 0; }
.pillars .section-title { margin-bottom: 44px; }
.pillars-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.pillar { text-align: center; padding: 28px 18px; border-radius: 8px; transition: background .15s; }
.pillar:hover { background: var(--bg-soft); }
.pillar-icon {
  font-size: 30px; width: 72px; height: 72px; margin: 0 auto 18px;
  background: var(--gold-soft); border: 2px solid var(--gold);
  border-radius: 50%; display: grid; place-items: center;
}
.pillar h4 { font-size: 19px; color: var(--blue); margin-bottom: 10px; }
.pillar p { color: var(--muted); font-size: 15px; }

/* ============ NEWS ============ */
.news { padding: 72px 0; background: var(--bg-soft); }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.news-card { background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 6px 18px rgba(0,0,0,.06); }
.news-img { height: 170px; }
.news-body { padding: 22px; }
.news-date { font-family: "Helvetica Neue", Arial, sans-serif; font-size: 13px; color: var(--gold); font-weight: 600; }
.news-body h3 { font-size: 18px; margin: 8px 0 10px; color: var(--blue-dark); }
.news-body p { color: var(--muted); font-size: 15px; }

/* ============ MESSENGER ============ */
.messenger { padding: 72px 0; }
.messenger-inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: center; }
.messenger-text h2 { font-size: 32px; color: var(--blue-dark); margin-bottom: 14px; }
.messenger-text h2::after {
  content: ""; display: block; width: 64px; height: 4px;
  background: var(--gold); border-radius: 2px; margin: 14px 0 0;
}
.messenger-text p { color: var(--muted); font-size: 17px; margin-bottom: 22px; }
.subscribe { display: flex; gap: 10px; flex-wrap: wrap; }
.subscribe input {
  flex: 1; min-width: 220px; padding: 12px 14px;
  border: 1px solid var(--line); border-radius: 4px;
  font-family: "Helvetica Neue", Arial, sans-serif; font-size: 15px;
}
.messenger-cover {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff; aspect-ratio: 3/4; border-radius: 8px;
  display: grid; place-items: center;
  font-family: "Helvetica Neue", Arial, sans-serif; font-weight: 700;
  letter-spacing: 4px; font-size: 22px;
  box-shadow: 0 14px 30px rgba(0,0,0,.18);
}

/* ============ FOOTER ============ */
.site-footer { background: var(--blue-dark); color: #c7d6e0; font-family: "Helvetica Neue", Arial, sans-serif; border-top: 4px solid var(--gold); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; padding: 56px 24px; }
.footer-col h5 { color: #fff; font-size: 15px; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col a { color: #c7d6e0; font-size: 14px; }
.footer-col a:hover { color: #fff; }
.logo-footer .logo-mark { background: rgba(255,255,255,.1); border-color: #fff; color: #fff; }
.logo-footer strong { color: #fff; font-size: 16px; }
.footer-brand p { font-size: 14px; margin: 16px 0; line-height: 1.7; }
.social { display: flex; gap: 10px; }
.social a {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.12); color: #fff;
  display: grid; place-items: center; font-weight: 700;
}
.social a:hover { background: var(--gold); text-decoration: none; }
.footer-bottom { background: rgba(0,0,0,.2); padding: 16px 0; }
.footer-bottom p { font-size: 13px; text-align: center; color: #9fb6c4; }

/* ============ ANCHOR OFFSET (sticky header) ============ */
.section-anchor { scroll-margin-top: 130px; }

/* ============ COMING SOON TOAST ============ */
#cob-toast {
  position: fixed;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%) translateY(24px);
  background: var(--blue-dark);
  color: #fff;
  border-left: 4px solid var(--gold);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 22px;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(0,0,0,.28);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
  max-width: 90vw;
}
#cob-toast.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .featured-grid, .news-grid, .pillars-grid, .footer-grid, .messenger-inner { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .hamburger { display: block; margin-left: auto; }
  .btn-give { display: none; }
  .main-nav { display: none; width: 100%; order: 3; }
  .main-nav.open { display: block; }
  .main-nav > ul { flex-direction: column; }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; padding-left: 16px; }
  .header-inner { flex-wrap: wrap; }
  .hero h1 { font-size: 34px; }
}
