@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Inter:wght@300;400;500;600;700&display=swap');

/* --- CSS VARIABLES --- */
:root {
  --navy: #0E1A5C;
  --red: #D2131E;
  --white: #FFFFFF;
  --bg-light: #F7F8FC;
  --text-dark: #171A2B;
  --text-muted: #667085;
  --border: #E5E7EB;
  --shadow-sm: 0 1px 3px rgba(14,26,92,0.08), 0 1px 2px rgba(14,26,92,0.06);
  --shadow-md: 0 4px 16px rgba(14,26,92,0.10), 0 2px 6px rgba(14,26,92,0.06);
  --shadow-lg: 0 10px 40px rgba(14,26,92,0.14);
  --font-heading: 'DM Serif Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --radius: 4px;
  --radius-md: 8px;
  --transition: 0.3s ease;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--text-dark); background: var(--white); line-height: 1.65; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
html.aos-enabled [data-aos] { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
html.aos-enabled [data-aos="fade-left"] { transform: translateX(-30px); }
html.aos-enabled [data-aos="fade-right"] { transform: translateX(30px); }
html.aos-enabled [data-aos="fade-in"] { transform: none; }
html.aos-enabled [data-aos].aos-animate { opacity: 1; transform: translate(0) !important; }
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 400; line-height: 1.2; color: var(--navy); }
h1 { font-size: clamp(1.2rem, 3.1vw, 2.1rem); }
h2 { font-size: clamp(1rem, 2vw, 1.5rem); }
h3 { font-size: clamp(1rem, 1.6vw, 1.2rem); }
h4 { font-size: 1.1rem; }
p { color: var(--text-muted); line-height: 1.75; }
.eyebrow { font-family: var(--font-body); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--red); display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.eyebrow::before { content: ''; display: inline-block; width: 28px; height: 1.5px; background: var(--red); flex-shrink: 0; }
.section { padding-block: clamp(60px, 8vw, 100px); }
.section-light { background: var(--bg-light); }
.section-navy { background: var(--navy); }
.btn { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-body); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 14px 28px; border-radius: var(--radius); transition: all var(--transition); position: relative; overflow: hidden; }
.btn::before { content: ''; position: absolute; inset: 0; transform: scaleX(0); transform-origin: left; transition: transform 0.35s ease; }
.btn-primary { background: var(--navy); color: var(--white); }
.btn-primary::before { background: var(--red); }
.btn-primary:hover::before, .btn-primary:focus::before { transform: scaleX(1); }
.btn-primary span { position: relative; z-index: 1; }
.btn-outline { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }
.btn-outline::before { background: var(--navy); }
.btn-outline:hover { color: var(--white); }
.btn-outline:hover::before, .btn-outline:focus::before { transform: scaleX(1); }
.btn-outline span { position: relative; z-index: 1; }
.btn-outline-white { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.5); }
.btn-outline-white::before { background: rgba(255,255,255,0.9); }
.btn-outline-white:hover::before, .btn-outline-white:focus::before { transform: scaleX(1); }
.btn-outline-white span { position: relative; z-index: 1; }
.btn-arrow { font-size: 0.82rem; font-weight: 600; color: var(--navy); display: inline-flex; align-items: center; gap: 6px; letter-spacing: 0.05em; position: relative; }
.btn-arrow::after { content: '→'; transition: transform var(--transition); }
.btn-arrow:hover::after { transform: translateX(5px); }
.btn-arrow::before { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 1.5px; background: var(--red); transition: width var(--transition); }
.btn-arrow:hover::before { width: 100%; }
.site-header { position: sticky; top: 0; z-index: 1000; background: var(--white); border-bottom: 1px solid var(--border); transition: box-shadow var(--transition), padding var(--transition); }
.site-header.scrolled { box-shadow: var(--shadow-md); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 10px 0; transition: padding var(--transition); }
.site-header.scrolled .header-inner { padding: 12px 0; }
.site-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.site-logo img{ height:70px; }
.logo-mark { width: 36px; height: 36px; transition: transform var(--transition); }
.site-header.scrolled .logo-mark { transform: scale(0.9); }
.logo-text { line-height: 1.15; }
.logo-text .logo-name { font-family: var(--font-heading); font-size: 1rem; color: var(--navy); display: block; }
.logo-text .logo-sub { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); }
.site-nav ul{ display: flex; align-items: center; gap: 32px; margin-bottom: 0px; }
.site-nav a { font-size: 0.8rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--navy); position: relative; transition: color var(--transition); }
.site-nav a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1.5px; background: var(--red); transition: width var(--transition); }
.site-nav a:hover, .site-nav .active a { color: var(--red); }
.site-nav a:hover::after, .site-nav a.active::after,.site-nav .active a::after { width: 100%; }
.header-cta { margin-left: 16px; }
.hamburger { display: none; flex-direction: column; gap: 5px; width: 28px; padding: 4px; background: none; border: none; cursor: pointer; position: relative; z-index: 1100; }
.hamburger span { display: block; height: 2px; background: var(--navy); border-radius: 2px; transition: all 0.35s ease; transform-origin: center; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav { display: none; position: fixed; inset: 0; background: var(--white); z-index: 1050; opacity: 0; pointer-events: none; transition: opacity 0.4s ease; overflow-y: auto; }
.mobile-nav.open { opacity: 1; pointer-events: all; }
.mobile-nav-inner { display: flex; flex-direction: column; min-height: 100vh; padding: 30px 40px 50px; }
.mobile-nav-brand { font-family: var(--font-heading);max-width: 70%; font-size: 1.1rem; color: var(--navy); margin-bottom: 25px; }
.mobile-nav-brand span { display: block; font-size: 0.65rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); margin-top: 2px; }
.mobile-nav-links { flex: 1; }
.mobile-nav-links a { display: flex; align-items: baseline; gap: 16px; padding: 5px 0; border-bottom: 1px solid var(--border); font-family: var(--font-heading); font-size: clamp(1.8rem, 6vw, 2.4rem); color: var(--navy); transition: color var(--transition); opacity: 0; transform: translateX(-20px); transition: opacity 0.4s ease, transform 0.4s ease, color 0.2s; }
.mobile-nav-links a.visible { opacity: 1; transform: translateX(0); }
.mobile-nav-links a em { font-style: normal; font-family: var(--font-body); font-size: 0.75rem; font-weight: 600; color: var(--text-muted); letter-spacing: 0.08em; }
.mobile-nav-links a.active, .mobile-nav-links a:hover { color: var(--red); }
.mobile-nav-footer { margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--border); }
.mobile-nav-cta { display: block; margin-bottom: 32px; }
.mobile-ecg { opacity: 0.15; }
.hero-section { position: relative; overflow: hidden; background: var(--white); min-height: clamp(520px, 80vh, 780px); display: flex; align-items: center; }
.hero-slider { width: 100%; }
.hero-slide { outline: none; }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; min-height: clamp(520px, 80vh, 780px); padding-block: 60px; }
.hero-content { position: relative; z-index: 2; }
.hero-eyebrow { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--navy); display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.hero-eyebrow::before { content: ''; width: 24px; height: 2px; background: var(--red); flex-shrink: 0; }
.hero-heading { font-size: clamp(1.2rem, 3.2vw, 2.2rem); line-height: 1.1; color: var(--navy); margin-bottom: 20px; }
.hero-heading em { font-style: italic; color: var(--red); }
.hero-desc { font-size: 1rem; color: var(--text-muted); max-width: 480px; margin-bottom: 32px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }
html.gsap-enabled .hero-eyebrow, html.gsap-enabled .hero-heading, html.gsap-enabled .hero-desc, html.gsap-enabled .hero-btns, html.gsap-enabled .hero-visual { opacity:0; }
.hero-img-wrap { position: relative; width: 100%; max-width: 500px; border-radius: var(--radius-md); overflow: hidden; }
.hero-img-wrap img { width: 100%; height: clamp(415px, 50vh, 520px); object-fit: cover; border-radius: var(--radius-md); display: block; }
.hero-img-wrap::after { content: ''; position: absolute; inset: 0; border-radius: var(--radius-md); border: 1px solid rgba(14,26,92,0.1); pointer-events: none; }
.hero-card { position: absolute; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 14px 18px; box-shadow: var(--shadow-md); z-index: 10; display: flex; align-items: center; gap: 12px; animation: float 4s ease-in-out infinite; }
html.gsap-enabled .hero-card { opacity: 0; }
.hero-card:nth-child(2) { animation-delay: -2s; }
.hero-card-1 { bottom: 33px; left: -40px; }
.hero-card-2 { top: 40px; right: -20px; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.hero-card-icon { width: 38px; height: 38px; background: rgba(210,19,30,0.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.hero-card-text .hc-label { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }
.hero-card-text .hc-value { font-size: 0.85rem; font-weight: 600; color: var(--navy); }
.hero-ecg-wrap { position: absolute; bottom: 0; left: 0; right: 0; height: 60px; pointer-events: none; opacity: 0.12; }
.hero-ecg-line { stroke-dasharray: 1000; stroke-dashoffset: 1000; transition: stroke-dashoffset 2.5s ease; }
.hero-ecg-line.animate { stroke-dashoffset: 0; }
.hero-section .slick-dots { bottom: 24px; display: flex !important; justify-content: center; gap: 8px; }
.hero-section .slick-dots li { width: auto; height: auto; margin: 0; }
.hero-section .slick-dots li button { width: 8px; height: 8px; border-radius: 50%; background: var(--border); font-size: 0; padding: 0; transition: all var(--transition); }
.hero-section .slick-dots li button::before { display: none; }
.hero-section .slick-dots li.slick-active button { width: 28px; border-radius: 4px; background: var(--navy); }
.hero-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; border-radius: 50%; background: var(--white); border: 1px solid var(--border); box-shadow: var(--shadow-sm); display: flex; align-items: center; justify-content: center; z-index: 10; transition: all var(--transition); color: var(--navy); }
.hero-arrow:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.hero-arrow-prev { left: 0; }
.hero-arrow-next { right: 0; }
.hero-slide .hero-eyebrow,
.hero-slide .hero-heading,
.hero-slide .hero-desc,
.hero-slide .hero-btns,
.hero-slide .hero-visual,
.hero-slide .hero-card { /*opacity: 1 !important; transform: none !important;*/ }
html.gsap-enabled .hero-slide .hero-eyebrow,
html.gsap-enabled .hero-slide .hero-heading,
html.gsap-enabled .hero-slide .hero-desc,
html.gsap-enabled .hero-slide .hero-btns,
html.gsap-enabled .hero-slide .hero-visual,
html.gsap-enabled .hero-slide .hero-card { opacity: 1; transform: none; transition: none; }
.slick-slide { opacity: 1 !important; }
.slick-slide.slick-active { opacity: 1 !important; }
.slick-slide:not(.slick-active) { opacity: 0 !important; }
.hero-section { min-height: clamp(520px, 80vh, 780px); display: flex; align-items: center; overflow: hidden; background:#F4F6FC; }
.hero-slider { width: 100%; }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; min-height: clamp(520px, 80vh, 780px); padding-block: 60px; }
.slick-fade .slick-slide { opacity: 0; transition: opacity 0.75s ease; }
.slick-fade .slick-slide.slick-active { opacity: 1; }
@media (max-width: 991px) { .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; } }
@media (max-width: 767px) { .hero-card { display: none !important; } }
.about-images { position: relative; height: 480px; }
.about-img-main { position: absolute; top: 0; left: 0; width: 100%; height: 85%; object-fit: cover; border-radius: var(--radius-md); z-index: 2; }
.about-img-secondary { position: absolute; bottom: 0; right: 0; width: 52%; height: 54%; object-fit: cover; border-radius: var(--radius-md); border: 4px solid var(--white); box-shadow: var(--shadow-md); z-index: 3; }
.about-ecg-deco { position: absolute; top: 30px; right: -20px; opacity: 0.08; z-index: 1; }
.about-content { padding-left: clamp(0px, 4vw, 40px); }
.about-text { margin-bottom: 28px; }
.about-highlights { margin-bottom: 28px; display: flex; flex-direction: column; gap: 20px; }
.about-highlight { display: flex; gap: 14px; align-items: flex-start; padding: 16px 20px; border: 1px solid var(--border); border-radius: var(--radius-md); border-left: 3px solid var(--red); background: var(--white); transition: box-shadow var(--transition); }
.about-highlight:hover { box-shadow: var(--shadow-sm); }
.about-highlight-icon { color: var(--red); font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.about-highlight h4 { color: var(--navy); font-size: 0.9rem; margin-bottom: 2px; font-family: var(--font-body); font-weight: 600; }
.about-highlight p { font-size: 0.85rem; margin: 0; }
.focus-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; }
.focus-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 32px 28px; position: relative; overflow: hidden; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.focus-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform 0.35s ease; }
.focus-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.focus-card:hover::after { transform: scaleX(1); }
.focus-icon { width: 50px; height: 50px; color: var(--red); background: rgba(210,19,30,0.08); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; transition: transform var(--transition); }
.focus-card:hover .focus-icon { transform: scale(1.08); }
.focus-icon svg { color: var(--red); }
.focus-card h3 { font-family: var(--font-body); font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.focus-card p { font-size: 0.88rem; margin-bottom: 20px; }
.focus-arrow { display: inline-flex; align-items: center; font-size: 0.78rem; font-weight: 600; color: var(--navy); gap: 4px; transition: gap var(--transition), color var(--transition); }
.focus-card:hover .focus-arrow { gap: 10px; color: var(--red); }
.trustees-section { overflow: hidden; }
.trustees-section .slick-track { display: flex !important; }
.trustees-section .slick-slide { height: inherit !important; margin: 0 12px; }
.trustees-section .slick-list { margin: 0 -12px; overflow: hidden; }
.trustees-carousel { margin-top: 48px; position: relative; }
.trustees-carousel .hero-arrow { top: 50%; transform: translateY(calc(-50% - 20px)); }
.trustees-carousel .hero-arrow-prev { left: -22px; }
.trustees-carousel .hero-arrow-next { right: -22px; }
.trustee-card { position: relative; border-radius: var(--radius-md); overflow: hidden; background: var(--bg-light); border: 1px solid var(--border); }
.trustee-photo { width: 100%;   display: block; background: #dce3f5; }
.trustee-base { padding: 20px 22px; }
.trustee-base h3 { font-family: var(--font-body); font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.trustee-photo img{ width:100%;  aspect-ratio: 1 / 0.9;  object-fit: cover;   }
.trustee-base span { font-size: 0.8rem; color: var(--red); font-weight: 500; }
.trustee-overlay { position: absolute; inset: 0; background: var(--navy); transform: translateY(100%); transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1); display: flex; flex-direction: column; padding: 28px 26px; color: var(--white); }
.trustee-card:hover .trustee-overlay { transform: translateY(0); }
.trustee-card:focus-within .trustee-overlay { transform: translateY(0); }
.trustee-overlay h3 { color: var(--white); font-family: var(--font-body); font-size: 1.1rem; font-weight: 700; margin-bottom: 4px; }
.trustee-overlay .t-role { color: var(--red); font-size: 0.8rem; font-weight: 600; margin-bottom: 14px; display: block; }
.trustee-overlay .t-bio { font-size: 0.85rem; color: rgba(255,255,255,0.75); line-height: 1.6; margin-bottom: 20px; flex: 1; }
.trustee-overlay .t-contact a { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; color: rgba(255,255,255,0.8); margin-bottom: 6px; transition: color var(--transition); }
.trustee-overlay .t-contact a:hover { color: var(--white); }
.trustee-overlay .t-ecg { margin-top: 16px; opacity: 0.2; }
.trustee-card.touch-open .trustee-overlay { transform: translateY(0); }
.community-section { position: relative; overflow: hidden; min-height: 480px; display: flex; align-items: center; }
.community-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.community-overlay { position: absolute; inset: 0; background: rgba(14,26,92,0.88); }
.community-content { position: relative; z-index: 2; padding-block: 80px; }
.community-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.community-text h2 { color: var(--white); margin-bottom: 16px; }
.community-text p { color: rgba(255,255,255,0.75); }
.community-text .eyebrow { color: rgba(255,255,255,0.5); }
.community-text .eyebrow::before { background: rgba(255,255,255,0.3); }
.community-visual { display: flex; align-items: center; justify-content: center; opacity: 0.25; }
.final-cta { background: var(--navy); padding-block: 90px; text-align: center; position: relative; overflow: hidden; }
.final-cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(210,19,30,0.08) 0%, transparent 70%); pointer-events: none; }
.final-cta h2 { color: var(--white); margin-bottom: 16px; }
.final-cta p { color: rgba(255,255,255,0.7); max-width: 540px; margin: 0 auto 36px; }
.final-cta .cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.final-cta-deco { position: absolute; right: 60px; bottom: 30px; opacity: 0.06; }
.site-footer { background: #0a1447; color: rgba(255,255,255,0.7); padding-block: 60px 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 28px; }
.footer-brand-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-brand-name { font-family: var(--font-heading); font-size: 1.1rem; color: var(--white); }
.footer-brand-desc { font-size: 0.88rem; max-width: 300px; margin-bottom: 20px; }
.footer-col-title { font-family: var(--font-body); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--white); margin-bottom: 20px; }
.footer-links { padding-left: 0px; display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 0.88rem; color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-links a:hover { color: var(--white); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.scroll-top { position: fixed; bottom: 32px; right: 32px; width: 44px; height: 44px; background: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); box-shadow: var(--shadow-md); z-index: 900; opacity: 0; transform: translateY(16px); transition: all var(--transition); border: none; cursor: pointer; }
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--red); }
.footer-social { display: flex; gap: 12px; flex-wrap: wrap; }
.social-link { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: rgba(255, 255, 255, 0.05); color: rgba(255, 255, 255, 0.5); font-size: 16px; transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); text-decoration: none; border: 1px solid rgba(255, 255, 255, 0.06); }
.social-link:hover { background: #D2131E; color: #ffffff; transform: translateY(-3px) scale(1.05); box-shadow: 0 8px 25px rgba(210, 19, 30, 0.3); border-color: #D2131E; }
.social-link:active { transform: scale(0.95); }
.social-link i { line-height: 1; }
.social-link.facebook:hover { background: #1877f2; border-color: #1877f2; box-shadow: 0 8px 25px rgba(24, 119, 242, 0.3); }
.social-link.twitter:hover { background: #000000; border-color: #000000; box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3); }
.social-link.instagram:hover { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); border-color: #e6683c; box-shadow: 0 8px 25px rgba(225, 48, 108, 0.3); }
.social-link.youtube:hover { background: #ff0000; border-color: #ff0000; box-shadow: 0 8px 25px rgba(255, 0, 0, 0.3); }
.social-link.linkedin:hover { background: #0a66c2; border-color: #0a66c2; box-shadow: 0 8px 25px rgba(10, 102, 194, 0.3); }
.footer-brand-logo img{ height:60px; width:auto; }
.footer-bottom a{ color:var(--red);  }
.form-group br{ display:none; }
.page-hero { background: var(--navy); padding-block: 40px; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; top: -50%; right: -10%; width: 500px; height: 500px; border-radius: 50%; background: rgba(210,19,30,0.06); pointer-events: none; }
.page-hero .eyebrow { color: rgba(255,255,255,0.5); }
.page-hero .eyebrow::before { background: rgba(255,255,255,0.3); }
.page-hero h1 { color: var(--white); }
.page-hero .page-hero-desc { color: rgba(255,255,255,0.65); max-width: 560px; margin-top: 14px; }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.mission-vision-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.approach-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.approach-card { padding: 28px 24px; border: 1px solid var(--border); border-radius: var(--radius-md); }
.approach-num { font-family: var(--font-heading); font-size: 2.5rem; color: rgba(14,26,92,0.1); line-height: 1; margin-bottom: 10px; }
.approach-card h4 { font-family: var(--font-body); font-weight: 700; font-size: 0.95rem; color: var(--navy); margin-bottom: 8px; }
.approach-card p { font-size: 0.86rem; }
@media (max-width: 767px) { .approach-grid { grid-template-columns: 1fr; } }
@media (max-width: 991px) { .approach-grid { grid-template-columns: repeat(2, 1fr); } }
.mv-card { padding: 36px 32px; border: 1px solid var(--border); border-radius: var(--radius-md); border-top: 3px solid var(--red); }
.mv-card h3 { font-family: var(--font-body); font-weight: 700; font-size: 1.1rem; margin-bottom: 12px; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.value-card { padding: 28px 22px; border: 1px solid var(--border); border-radius: var(--radius-md); text-align: center; }
.value-card .v-icon { font-size: 1.8rem; margin-bottom: 14px; }
.value-card h4 { font-family: var(--font-body); font-weight: 700; font-size: 0.95rem; color: var(--navy); margin-bottom: 8px; }
.value-card p { font-size: 0.85rem; }
.trustees-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 48px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; }
.contact-info-card { display: flex; align-items: flex-start; gap: 16px; padding: 22px 0; border-bottom: 1px solid var(--border); }
.contact-info-icon { width: 44px; height: 44px; background: rgba(14,26,92,0.06); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; color: var(--navy); flex-shrink: 0; }
.contact-info-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 2px; }
.contact-info-value { font-size: 0.95rem; color: var(--navy); font-weight: 500; }
.contact-form { background: var(--bg-light); border-radius: var(--radius-md); padding: 40px; }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--navy); margin-bottom: 8px; }
.form-control { width: 100%; padding: 12px 16px; font-family: var(--font-body); font-size: 0.9rem; color: var(--text-dark); background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); outline: none; transition: border-color var(--transition), box-shadow var(--transition); }
.form-control:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(14,26,92,0.08); }
textarea.form-control { resize: vertical; min-height: 120px; }
.legal-content { max-width: 800px; }
.legal-content h2 { font-size: 1.3rem; margin-top: 40px; margin-bottom: 12px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li { font-size: 0.94rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 12px; }
.legal-content ul { padding-left: 20px; list-style: disc; }
.legal-content .legal-intro { font-size: 0.85rem; color: var(--text-muted); border-top: 1px solid var(--border); padding-top: 16px; margin-top: 48px; }
:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }
:focus:not(:focus-visible) { outline: none; }
.is-visible { }
.legal-sidebar-link { font-size: 0.84rem; color: var(--text-muted); transition: color 0.2s; display: block; padding: 2px 0; }
.legal-sidebar-link:hover, .legal-sidebar-link.active { color: var(--navy); }
.hero-slider { overflow: hidden; }
.slick-initialized { overflow: visible; }
.slick-dots { padding: 0; margin: 0; }
.form-control::placeholder { color: rgba(102,112,133,0.5); font-size: 0.88rem; }
button[type="submit"]:disabled { opacity: 0.7; cursor: not-allowed; }
button[type="submit"]:disabled::before { display: none; }
.page-hero-breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.78rem; color: rgba(255,255,255,0.45); margin-bottom: 20px; }
.page-hero-breadcrumb a { color: rgba(255,255,255,0.55); transition: color var(--transition); }
.page-hero-breadcrumb a:hover { color: var(--white); }
.page-hero-breadcrumb span { color: rgba(255,255,255,0.3); }
.img-placeholder { background: linear-gradient(135deg, #dce3f5 0%, #c8d3ed 100%); display: flex; align-items: center; justify-content: center; color: rgba(14,26,92,0.3); font-size: 2rem; }

@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; } html.aos-enabled [data-aos] { opacity: 1; transform: none; } }
@media (max-width: 991px) { .page-hero{ padding-block: 50px; } .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; } .hero-desc { max-width: 100%; } .hero-btns { justify-content: center; } .hero-visual { justify-content: center; } .hero-card-1 { left: 0; bottom: 20px; } .hero-card-2 { right: 0; top: 20px; } .focus-grid { grid-template-columns: repeat(2, 1fr); } .community-inner { grid-template-columns: 1fr; gap: 40px; } .community-visual { display: none; } .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; } .values-grid { grid-template-columns: repeat(2, 1fr); } .trustees-grid { grid-template-columns: repeat(2, 1fr); } .contact-grid { grid-template-columns: 1fr; } .story-grid { grid-template-columns: 1fr; } }
@media (max-width: 767px) { .site-nav { display: none; } .header-cta { display: none !important; } .hamburger { display: flex; } .mobile-nav { display: block; } .about-images { height: 320px; } .about-content { padding-left: 0; } .focus-grid { grid-template-columns: 1fr; } .values-grid { grid-template-columns: 1fr 1fr; } .trustees-grid { grid-template-columns: 1fr; } .mission-vision-grid { grid-template-columns: 1fr; } .footer-grid { grid-template-columns: 1fr; gap: 32px; } .footer-bottom { flex-direction: column; gap: 8px; text-align: center; } .contact-form { padding: 24px; } }
@media (max-width: 480px) { .hero-inner { padding-block: 40px; } .hero-btns { flex-direction: column; } .hero-btns .btn { width: 100%; justify-content: center; } .hero-card { display: none; } .values-grid { grid-template-columns: 1fr; } .final-cta .cta-btns { flex-direction: column; align-items: center; } .final-cta .cta-btns .btn { width: 100%; max-width: 280px; justify-content: center; } .scroll-top { bottom: 20px; right: 20px; } }
.mobile-close-btn { position: absolute; top: 24px; right: 24px; width: 44px; height: 44px; border: none; background: var(--bg-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all var(--transition); z-index: 10; color: var(--navy); }
.mobile-close-btn:hover { background: var(--red); color: var(--white); transform: rotate(90deg); }
.mobile-close-btn svg { width: 24px; height: 24px; stroke: currentColor; }
.mobile-nav-inner { position: relative; }
@media (max-width: 767px) { .page-hero{ padding-block: 40px; } .mobile-close-btn { top: 20px; right: 30px; width: 38px; height: 38px; } .mobile-close-btn svg { width: 20px; height: 20px; } }


.whatsapp-contact-card { background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%); border-radius: 16px; padding: 48px 40px 40px; position: relative; border: 1px solid rgba(37, 211, 102, 0.15); box-shadow: 0 20px 60px rgba(14, 26, 92, 0.08), 0 8px 24px rgba(37, 211, 102, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.8); transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); overflow: hidden; }
.whatsapp-contact-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, #25D366, #128C7E, #25D366); background-size: 200% 100%; animation: shimmer 3s ease-in-out infinite; }
@keyframes shimmer { 0%, 100% { background-position: 0% 0%; } 50% { background-position: 100% 0%; } }
.whatsapp-contact-card::after { content: ''; position: absolute; top: -50%; right: -30%; width: 300px; height: 300px; background: radial-gradient(circle, rgba(37, 211, 102, 0.04) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }
.whatsapp-badge { display: inline-flex; align-items: center; justify-content: center; width: 72px; height: 72px; background: linear-gradient(135deg, #25D366 0%, #128C7E 100%); border-radius: 50%; color: #ffffff; box-shadow: 0 8px 32px rgba(37, 211, 102, 0.3), 0 4px 12px rgba(37, 211, 102, 0.15); margin-bottom: 24px; position: relative; z-index: 1; transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); }
.whatsapp-contact-card:hover .whatsapp-badge { transform: scale(1.05) rotate(-5deg); }
.whatsapp-heading { font-family: var(--font-heading); font-size: clamp(1.4rem, 2.4vw, 1.8rem); color: var(--navy); margin-bottom: 16px; position: relative; z-index: 1; letter-spacing: -0.02em; }
.whatsapp-description { font-size: 0.95rem; color: var(--text-muted); line-height: 1.75; max-width: 420px; margin-bottom: 24px; position: relative; z-index: 1; }
.whatsapp-availability { display: inline-flex; align-items: center; gap: 10px; font-size: 0.8rem; font-weight: 500; color: #128C7E; background: rgba(37, 211, 102, 0.08); padding: 8px 20px 8px 16px; border-radius: 50px; margin-bottom: 32px; border: 1px solid rgba(37, 211, 102, 0.1); position: relative; z-index: 1; }
.status-dot { display: inline-block; width: 10px; height: 10px; background: #25D366; border-radius: 50%; animation: pulse-dot 1.8s ease-in-out infinite; box-shadow: 0 0 12px rgba(37, 211, 102, 0.4); }
@keyframes pulse-dot { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.4); opacity: 0.6; } }
.whatsapp-btn { display: inline-flex; align-items: center; gap: 16px; padding: 18px 40px 18px 28px; background: linear-gradient(135deg, #25D366 0%, #128C7E 100%); color: #ffffff; border-radius: 50px; font-family: var(--font-body); font-size: 0.95rem; font-weight: 600; letter-spacing: 0.04em; text-decoration: none; transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); box-shadow: 0 8px 32px rgba(37, 211, 102, 0.35), 0 4px 12px rgba(37, 211, 102, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.2); position: relative; z-index: 1; overflow: hidden; border: none; cursor: pointer; }
.whatsapp-btn::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%); transform: rotate(35deg) translateX(-100%); transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1); }
.whatsapp-btn:hover::before { transform: rotate(35deg) translateX(100%); }
.whatsapp-btn:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 16px 48px rgba(37, 211, 102, 0.4), 0 8px 24px rgba(37, 211, 102, 0.2); }
.whatsapp-btn:active { transform: scale(0.97); }
.whatsapp-btn-icon { display: flex; align-items: center; justify-content: center; width: 32px; height: 32px; background: rgba(255, 255, 255, 0.15); border-radius: 50%; flex-shrink: 0; transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); }
.whatsapp-btn:hover .whatsapp-btn-icon { transform: rotate(-10deg) scale(1.1); }
.whatsapp-btn-text { position: relative; z-index: 1; }
.whatsapp-btn-arrow { font-size: 1.2rem; transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); position: relative; z-index: 1; }
.whatsapp-btn:hover .whatsapp-btn-arrow { transform: translateX(6px); }
.whatsapp-decorative { margin-top: 32px; position: relative; z-index: 1; opacity: 0.6; }
.whatsapp-ecg-line { width: 100%; max-width: 300px; }
.whatsapp-security { display: flex; align-items: center; gap: 8px; font-size: 0.72rem; color: var(--text-muted); margin-top: 20px; position: relative; z-index: 1; opacity: 0.7; }
.whatsapp-security svg { flex-shrink: 0; }

@media (max-width: 991px) { 
    .whatsapp-contact-card { padding: 36px 28px 32px; } 
    .whatsapp-badge { width: 60px; height: 60px; } 
    .whatsapp-badge svg { width: 26px; height: 26px; } 
    .whatsapp-btn { padding: 16px 32px 16px 24px; font-size: 0.88rem; width: 100%; justify-content: center; } 
}

@media (max-width: 480px) { 
    .whatsapp-contact-card { padding: 28px 20px 24px; border-radius: 12px; } 
    .whatsapp-badge { width: 52px; height: 52px; } 
    .whatsapp-badge svg { width: 22px; height: 22px; } 
    .whatsapp-btn { padding: 14px 24px; font-size: 0.82rem; gap: 12px; } 
    .whatsapp-btn-icon { width: 26px; height: 26px; } 
    .whatsapp-btn-icon svg { width: 18px; height: 18px; } 
    .whatsapp-availability { font-size: 0.7rem; padding: 6px 16px 6px 12px; } 
    .whatsapp-description { font-size: 0.85rem; } 
}

@media (prefers-color-scheme: dark) { 
    .whatsapp-contact-card { background: linear-gradient(145deg, #1a1a2e 0%, #16213e 100%); border-color: rgba(37, 211, 102, 0.1); } 
    .whatsapp-heading { color: #ffffff; } 
    .whatsapp-description { color: rgba(255, 255, 255, 0.7); } 
    .whatsapp-availability { background: rgba(37, 211, 102, 0.12); color: #4ade80; } 
    .whatsapp-security { color: rgba(255, 255, 255, 0.5); } 
}
