/* ================================================================
   NO WAR PLEASE - Complete Stylesheet
   Place at: site.css/StyleSheet1.css
   Requires Bootstrap 5 + Google Fonts loaded in Default.aspx
================================================================ */

/* ── DESIGN TOKENS ────────────────────────────────────────────── */
:root {
    --sky:           #1B6CA8;
    --sky-deep:      #0a3d62;
    --sky-mid:       #2E86C1;
    --sky-light:     #D6EAF8;
    --sky-pale:      #EBF5FB;
    --olive:         #4A7C3F;
    --olive-dk:      #2E5026;
    --olive-lt:      #E9F5E6;
    --gold:          #C8960C;
    --gold-hover:    #a07808;
    --gold-light:    #FDF3DC;
    --white:         #FFFFFF;
    --off-white:     #F4F8FB;
    --ink:           #12202E;
    --ink-mid:       #3A5068;
    --ink-light:     #6B8CA8;
    --radius:        14px;
    --shadow-sm:     0 2px 16px rgba(0,0,0,.07);
    --shadow-md:     0 6px 32px rgba(0,0,0,.11);
    --shadow-lg:     0 16px 56px rgba(0,0,0,.17);
}

html { font-size: 17px; scroll-behavior: smooth; }

body {
    font-family: 'Source Sans 3', 'Segoe UI', Tahoma, sans-serif;
    background: var(--off-white);
    color: var(--ink);
    line-height: 1.75;
    margin: 0;
}

/* ================================================================
   HERO
================================================================ */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(155deg, #071e34 0%, #0a3d62 30%, #1B6CA8 65%, #2396a0 100%);
    text-align: center;
    padding: 90px 24px 110px;
}

/* Background decorations */
.hero-bg { position: absolute; inset: 0; pointer-events: none; }

/* SVG dove shapes */
.bg-dove {
    position: absolute;
    opacity: .12;
    animation: floatDove 9s ease-in-out infinite;
}
.bg-dove.d1 { width: 140px; top: 10%; left: 6%;  animation-delay: 0s; }
.bg-dove.d2 { width: 90px;  top: 60%; right: 5%; animation-delay: 3s; }
.bg-dove.d3 { width: 110px; bottom: 14%; left: 18%; animation-delay: 6s; }

@keyframes floatDove {
    0%,100% { transform: translateY(0) rotate(-6deg); }
    50%      { transform: translateY(-26px) rotate(6deg); }
}

/* Circle blobs */
.circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,.06);
}
.c1 { width: 560px; height: 560px; top: -200px; right: -180px; }
.c2 { width: 340px; height: 340px; bottom: -120px; left: -100px; }
.c3 { width: 200px; height: 200px; top: 32%; left: 40%; }

/* Hero text */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 840px;
    animation: fadeUp .9s ease both;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(32px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,.15);
    border: 1.5px solid rgba(255,255,255,.38);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 8px 28px;
    border-radius: 50px;
    margin-bottom: 28px;
    backdrop-filter: blur(8px);
}

.hero-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.05;
    letter-spacing: -1.5px;
    margin: 0 0 18px;
    text-shadow: 0 6px 30px rgba(0,0,0,.35);
}

.hero-tagline {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.4rem;
    font-style: italic;
    color: rgba(255,255,255,.82);
    margin: 0 0 22px;
}

.hero-desc {
    font-size: 1.22rem;
    color: rgba(255,255,255,.88);
    line-height: 1.85;
    margin: 0 0 52px;
    font-weight: 300;
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

/* Primary button - gold */
.btn-hero-primary {
    display: inline-block;
    background: var(--gold);
    color: #fff !important;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 1.12rem;
    font-weight: 700;
    padding: 18px 44px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    letter-spacing: .3px;
    transition: background .2s, transform .2s, box-shadow .2s;
    box-shadow: 0 6px 28px rgba(200,150,12,.5);
}
.btn-hero-primary:hover, input.btn-hero-primary:hover {
    background: var(--gold-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(200,150,12,.55);
    color: #fff !important;
}

/* Secondary button - frosted glass */
.btn-hero-secondary {
    display: inline-block;
    background: rgba(255,255,255,.13);
    color: #fff !important;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 1.08rem;
    font-weight: 600;
    padding: 17px 36px;
    border-radius: 50px;
    border: 2px solid rgba(255,255,255,.50);
    text-decoration: none;
    letter-spacing: .2px;
    backdrop-filter: blur(8px);
    transition: background .2s, transform .2s, border-color .2s;
}
.btn-hero-secondary:hover {
    background: rgba(255,255,255,.26);
    border-color: rgba(255,255,255,.9);
    transform: translateY(-3px);
    color: #fff !important;
    text-decoration: none;
}

/* ================================================================
   STATS SECTION
================================================================ */
.stats-section {
    background: var(--white);
    border-bottom: 3px solid var(--sky-light);
    padding: 44px 0;
    box-shadow: var(--shadow-sm);
}

.stats-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-main { text-align: center; min-width: 220px; }

.stat-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--sky);
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: var(--ink-light);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-top: 8px;
}

.stat-divider {
    width: 2px;
    height: 90px;
    background: linear-gradient(to bottom, transparent, var(--sky-light), transparent);
    flex-shrink: 0;
}

.stat-regions { flex: 1; min-width: 280px; }

.stat-regions-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--ink-mid);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 16px;
}

.badges-row { display: flex; flex-wrap: wrap; gap: 10px; }

.rbadge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 22px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    background: var(--sky-pale);
    color: var(--sky);
    border: 2px solid var(--sky-light);
}
.rbadge strong { font-weight: 800; }
.rbadge-Asia      { background: #dbeafe; color: #1e40af; border-color: #bfdbfe; }
.rbadge-Europe    { background: #ede9fe; color: #5b21b6; border-color: #ddd6fe; }
.rbadge-Africa    { background: #fef3c7; color: #92400e; border-color: #fde68a; }
.rbadge-Americas  { background: var(--olive-lt); color: var(--olive-dk); border-color: #bbf7d0; }
.rbadge-Oceania   { background: #ccfbf1; color: #0f766e; border-color: #99f6e4; }

/* ================================================================
   TICKER
================================================================ */
.ticker-wrap {
    background: var(--olive-dk);
    color: #fff;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    height: 60px;
}

.ticker-label {
    background: var(--gold);
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
    padding: 0 28px;
    display: flex;
    align-items: center;
    white-space: nowrap;
    flex-shrink: 0;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.ticker-track {
    flex: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.ticker-inner {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    animation: scrollTicker 50s linear infinite;
    padding-left: 40px;
}

.tick-item {
    font-size: 1.05rem;
    font-style: italic;
    opacity: .95;
    margin-right: 6px;
}
.tick-item em {
    font-style: normal;
    font-weight: 700;
    font-size: .95rem;
    opacity: .75;
    margin-left: 10px;
}
.tick-sep {
    margin: 0 32px;
    color: var(--gold);
    font-size: 1.2rem;
    font-style: normal;
}

@keyframes scrollTicker {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ================================================================
   ABOUT / MISSION
================================================================ */
.about-section {
    display: flex;
    min-height: 420px;
}

.about-left {
    background: linear-gradient(160deg, #0a3d62 0%, var(--sky-mid) 100%);
    color: #fff;
    padding: 72px 56px;
    width: 360px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
    position: relative;
    overflow: hidden;
}

/* SVG olive decoration */
.about-svg-leaf {
    width: 90px;
    height: 90px;
    margin-bottom: 8px;
}

.about-kicker {
    font-size: .95rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    opacity: .65;
    margin-top: -6px;
}

.about-heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.18;
    color: #fff;
    margin: 0;
}

.btn-gold {
    display: inline-block;
    margin-top: 10px;
    background: var(--gold);
    color: #fff !important;
    font-size: 1.08rem;
    font-weight: 700;
    padding: 15px 34px;
    border-radius: 50px;
    text-decoration: none;
    align-self: flex-start;
    transition: background .2s, transform .2s;
    box-shadow: 0 4px 18px rgba(200,150,12,.4);
}
.btn-gold:hover {
    background: var(--gold-hover);
    transform: translateY(-2px);
    color: #fff !important;
    text-decoration: none;
}

.about-right {
    background: var(--white);
    padding: 72px 80px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
}

.about-right p {
    font-size: 1.22rem;
    line-height: 1.9;
    color: var(--ink);
    margin: 0;
}

.about-right strong { color: var(--sky-mid); }

/* ================================================================
   LEADERS SECTION
================================================================ */
.leaders-section {
    background: var(--sky-pale);
    padding: 88px 40px 104px;
}

.leaders-header {
    text-align: center;
    margin-bottom: 60px;
}

.leaders-kicker {
    font-size: .95rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--gold);
    margin-bottom: 14px;
}

.leaders-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    color: var(--ink);
    margin: 0 0 16px;
}

.leaders-sub {
    font-size: 1.18rem;
    color: var(--ink-light);
    margin: 0 auto;
    max-width: 520px;
    line-height: 1.7;
}

.leaders-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
}

.lcard {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    text-decoration: none;
    color: var(--ink);
    display: flex;
    flex-direction: column;
    transition: transform .25s, box-shadow .28s;
    border-top: 4px solid var(--sky-light);
}
.lcard:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--gold);
    color: var(--ink);
    text-decoration: none;
}

.lcard-img-wrap {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--sky-light);
}

.lcard-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform .4s ease;
    display: block;
}
.lcard:hover .lcard-img { transform: scale(1.07); }

.lcard-body {
    padding: 28px 26px 34px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.lcard-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.22rem;
    font-weight: 700;
    color: var(--sky);
    margin: 0 0 6px;
    line-height: 1.3;
}

.lcard-origin {
    font-size: .95rem;
    color: var(--ink-light);
    margin: 0 0 18px;
    font-weight: 600;
}

.lcard-quote {
    font-style: italic;
    font-size: 1.05rem;
    color: var(--ink-mid);
    line-height: 1.72;
    margin: 0;
    padding-left: 18px;
    border-left: 3px solid var(--sky-light);
    flex: 1;
}

/* ================================================================
   FINAL CALL TO ACTION
================================================================ */
.final-cta {
    background: linear-gradient(155deg, #071e34 0%, #0a3d62 35%, var(--sky-mid) 70%, #1fa090 100%);
    padding: 108px 32px 112px;
    text-align: center;
}

.final-cta-inner {
    max-width: 740px;
    margin: 0 auto;
}

/* SVG dove in CTA */
.cta-dove-svg {
    width: 80px;
    height: 80px;
    margin-bottom: 28px;
    animation: floatDove 7s ease-in-out infinite;
    filter: drop-shadow(0 4px 16px rgba(255,255,255,.25));
}

.final-cta-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 900;
    color: #fff;
    margin: 0 0 22px;
    text-shadow: 0 6px 24px rgba(0,0,0,.3);
    line-height: 1.1;
}

.final-cta-desc {
    font-size: 1.28rem;
    color: rgba(255,255,255,.88);
    line-height: 1.85;
    margin: 0 0 52px;
    font-weight: 300;
}

.final-cta-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.btn-cta-white {
    display: inline-block;
    background: #fff;
    color: var(--sky-deep) !important;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 18px 44px;
    border-radius: 50px;
    text-decoration: none;
    transition: transform .2s, box-shadow .2s;
    box-shadow: 0 6px 28px rgba(0,0,0,.22);
}
.btn-cta-white:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,.3);
    color: var(--sky-deep) !important;
    text-decoration: none;
}

.btn-cta-outline {
    display: inline-block;
    background: rgba(255,255,255,.1);
    color: #fff !important;
    font-size: 1.08rem;
    font-weight: 600;
    padding: 17px 40px;
    border-radius: 50px;
    border: 2px solid rgba(255,255,255,.55);
    text-decoration: none;
    backdrop-filter: blur(8px);
    transition: background .2s, transform .2s, border-color .2s;
}
.btn-cta-outline:hover {
    background: rgba(255,255,255,.24);
    border-color: rgba(255,255,255,.9);
    transform: translateY(-4px);
    color: #fff !important;
    text-decoration: none;
}

/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width: 1100px) {
    .leaders-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

@media (max-width: 900px) {
    .about-section  { flex-direction: column; }
    .about-left     { width: 100%; padding: 56px 40px; }
    .about-right    { padding: 56px 40px; }
    .about-right p  { font-size: 1.12rem; }
}

@media (max-width: 768px) {
    html { font-size: 16px; }
    .stats-container { flex-direction: column; gap: 24px; text-align: center; }
    .stat-divider    { width: 80px; height: 2px; }
    .stat-regions    { text-align: center; }
    .badges-row      { justify-content: center; }
    .hero { min-height: auto; padding: 80px 24px 90px; }
}

@media (max-width: 576px) {
    html { font-size: 15px; }
    .leaders-grid   { grid-template-columns: 1fr; }
    .about-left     { padding: 48px 28px; }
    .about-right    { padding: 44px 28px; }
    .hero-btns      { flex-direction: column; align-items: center; }
    .btn-hero-primary, .btn-hero-secondary,
    .btn-cta-white, .btn-cta-outline { width: 100%; max-width: 340px; text-align: center; }
    .final-cta-btns { flex-direction: column; align-items: center; }
}
