:root {
    --navy: #1a3267;
    --navy-deep: #0f1d3d;
    --navy-light: #2a4a8a;
    --gold: #f4b41a;
    --gold-light: #ffd54f;
    --gold-dark: #c9930f;
    --cream: #fdf8f0;
    --white: #ffffff;
    --charcoal: #1a1a1a;
    --gray: #6b7280;
    --gray-light: #f3f4f6;
}

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

html {
scroll-behavior: smooth;
}

body {
font-family: 'Cormorant Garamond', Georgia, serif;
color: var(--charcoal);
line-height: 1.6;
overflow-x: hidden;
}

/* ════════════════════════════════════════════════════════════
HOME SECTION - PROGRAMS/FEATURES
════════════════════════════════════════════════════════════ */
.home-section {
    padding: 120px 40px;
    background: var(--gray-light);
}

.home-inner {
    max-width: 1200px;
    margin: 0 auto;
}

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

.section-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 16px;
}

.home-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 16px;
}

.home-header p {
    font-size: 1.25rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

.home-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature {
    background: white;
    padding: 0;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
    overflow: hidden;
    position: relative;
}

.feature:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 3;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    color: var(--navy);
}

.feature-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.feature h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin: 20px 32px 12px;
}

.feature p {
    font-size: 1.05rem;
    color: var(--gray);
    line-height: 1.7;
    margin: 0 32px 32px;
}

/* ════════════════════════════════════════════════════════════
WELCOME SECTION
════════════════════════════════════════════════════════════ */
.welcome {
    padding: 120px 40px;
    background: white;
}

.welcome-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.welcome-image {
    position: relative;
}

.welcome-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.welcome-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--navy);
    color: white;
    padding: 20px 28px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.welcome-badge-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}

.welcome-badge-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 4px;
}

.welcome-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.15;
    margin-bottom: 28px;
}

.welcome-content p {
    font-size: 1.2rem;
    color: var(--charcoal);
    margin-bottom: 20px;
    line-height: 1.8;
}

.welcome-content p strong {
    color: var(--navy);
}

.welcome-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--navy);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    transition: all 0.3s;
}

.welcome-link:hover {
    color: var(--gold-dark);
    gap: 12px;
}

.welcome-link svg {
    width: 18px;
    height: 18px;
}

/* ════════════════════════════════════════════════════════════
IMPACT STATS
════════════════════════════════════════════════════════════ */
.impact {
    padding: 100px 40px;
    background: var(--navy);
}

.impact-inner {
    max-width: 1100px;
    margin: 0 auto;
}

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

.impact-header .section-label {
    color: var(--gold);
}

.impact-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
}

.impact-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 12px;
}

.stat-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

/* ════════════════════════════════════════════════════════════
SPONSOR CTA
════════════════════════════════════════════════════════════ */
.sponsor {
    padding: 120px 40px;
    background: var(--cream);
}

.sponsor-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.sponsor h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 24px;
    line-height: 1.15;
}

.sponsor h2 span {
    color: var(--gold-dark);
}

.sponsor .sponsor-inner > p {
    font-size: 1.3rem;
    color: var(--charcoal);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.sponsor-tiers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

.tier {
    background: white;
    padding: 36px 28px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: all 0.3s;
    position: relative;
}

.tier:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.tier.featured {
    border: 2px solid var(--gold);
}

.tier.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--navy-deep);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 20px;
}

.tier-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 8px;
}

.tier-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 4px;
}

.tier-price span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray);
}

.tier-desc {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 24px;
    min-height: 48px;
}

.tier .btn {
    width: 100%;
    padding: 14px 24px;
}

.sponsor-note {
    font-size: 1.1rem;
    color: var(--gray);
}

.sponsor-note strong {
    color: var(--navy);
}

/* ════════════════════════════════════════════════════════════
NAVIGATION
════════════════════════════════════════════════════════════ */
.nav {
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 1000;
padding: 20px 40px;
display: flex;
justify-content: space-between;
align-items: center;
transition: all 0.4s ease;
}

.nav.scrolled {
background: rgba(255,255,255,0.98);
padding: 14px 40px;
box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.nav-logo {
display: flex;
align-items: center;
gap: 12px;
text-decoration: none;
}

.nav-logo img {
height: 44px;
transition: all 0.3s;
}

.nav.scrolled .nav-logo img {
height: 36px;
}

.nav-links {
display: flex;
gap: 32px;
align-items: center;
}

.nav-links a {
font-family: 'Montserrat', sans-serif;
font-size: 0.8rem;
font-weight: 600;
letter-spacing: 0.5px;
text-decoration: none;
color: white;
transition: all 0.3s;
position: relative;
}

.nav.scrolled .nav-links a {
color: var(--navy);
}

.nav-links a:hover {
color: var(--gold);
}

.nav-links a::after {
content: '';
position: absolute;
bottom: -4px;
left: 0;
width: 0;
height: 2px;
background: var(--gold);
transition: width 0.3s;
}

.nav-links a:hover::after {
width: 100%;
}

/* Navigation Dropdown */
.nav-dropdown {
position: relative;
}

.nav-dropdown-trigger {
display: inline-flex;
align-items: center;
gap: 4px;
white-space: nowrap;
}

.dropdown-arrow {
font-size: 0.7rem;
transition: transform 0.3s;
}

.nav-dropdown:hover .dropdown-arrow {
transform: rotate(180deg);
}

.nav-dropdown-menu {
position: absolute;
top: 100%;
left: 0;
margin-top: 8px;
background: white;
min-width: 200px;
box-shadow: 0 4px 20px rgba(0,0,0,0.15);
border-radius: 4px;
opacity: 0;
visibility: hidden;
transform: translateY(-10px);
transition: all 0.3s ease;
z-index: 1000;
padding: 8px 0;
}

.nav-dropdown:hover .nav-dropdown-menu {
opacity: 1;
visibility: visible;
transform: translateY(0);
}

.nav-dropdown-menu a {
display: block;
padding: 10px 20px;
color: var(--navy);
font-family: 'Montserrat', sans-serif;
font-size: 0.8rem;
font-weight: 600;
text-decoration: none;
transition: all 0.2s;
white-space: nowrap;
}

.nav-dropdown-menu a:hover {
background: var(--cream);
color: var(--navy);
}

.nav-dropdown-menu a::after {
display: none;
}

.nav-cta {
font-family: 'Montserrat', sans-serif;
font-size: 0.8rem;
font-weight: 700;
letter-spacing: 0.5px;
text-decoration: none;
background: var(--gold);
color: var(--navy-deep) !important;
padding: 12px 24px;
border-radius: 4px;
transition: all 0.3s;
}

.nav-cta:hover {
background: var(--gold-light);
transform: translateY(-2px);
}

.nav-cta::after {
display: none !important;
}

.btn {
font-family: 'Montserrat', sans-serif;
font-size: 0.85rem;
font-weight: 700;
letter-spacing: 1px;
text-transform: uppercase;
text-decoration: none;
padding: 18px 36px;
border-radius: 4px;
transition: all 0.3s;
display: inline-block;
}

.btn-primary {
background: var(--gold);
color: var(--navy-deep);
}

.btn-primary:hover {
background: var(--gold-light);
transform: translateY(-3px);
box-shadow: 0 10px 30px rgba(244, 180, 26, 0.3);
}

.btn-secondary {
background: transparent;
color: white;
border: 2px solid rgba(255,255,255,0.4);
}

.btn-secondary:hover {
border-color: white;
background: rgba(255,255,255,0.1);
}


.scroll-indicator {
position: absolute;
bottom: 30px;
left: 50%;
transform: translateX(-50%);
opacity: 0;
animation: fadeIn 1s ease forwards, bounce 2s ease infinite;
animation-delay: 1.5s, 2s;
z-index: 10;
}

.scroll-indicator span {
display: block;
width: 24px;
height: 38px;
border: 2px solid rgba(255,255,255,0.4);
border-radius: 12px;
position: relative;
}

.scroll-indicator span::before {
content: '';
position: absolute;
top: 8px;
left: 50%;
transform: translateX(-50%);
width: 4px;
height: 8px;
background: var(--gold);
border-radius: 2px;
animation: scrollPulse 1.5s ease infinite;
}

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

@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}

@keyframes bounce {
0%, 100% { transform: translateX(-50%) translateY(0); }
50% { transform: translateX(-50%) translateY(8px); }
}

@keyframes scrollPulse {
0%, 100% { opacity: 1; top: 8px; }
50% { opacity: 0.5; top: 14px; }
}

.btn-outline {
background: transparent;
color: var(--navy);
border: 2px solid var(--navy);
}

.btn-outline:hover {
background: var(--navy);
color: white;
}

/* ════════════════════════════════════════════════════════════
FOOTER
════════════════════════════════════════════════════════════ */
.footer {
background: var(--navy-deep);
background-image: url('/img/brits-home/sunrise.png');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
position: relative;
color: white;
padding: 60px 40px 30px;
}

.footer::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: var(--navy-deep);
opacity: 0.81;
z-index: 0;
}

.footer > * {
position: relative;
z-index: 1;
}

.footer-inner {
max-width: 1100px;
margin: 0 auto;
}

.footer-top {
display: grid;
grid-template-columns: 2fr 1fr 1fr 1fr;
gap: 40px;
padding-bottom: 40px;
border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand h3 {
font-family: 'Montserrat', sans-serif;
font-size: 1.5rem;
font-weight: 800;
margin-bottom: 16px;
}

.footer-brand h3 span {
color: var(--gold);
}

.footer-brand p {
font-size: 1.05rem;
color: rgba(255,255,255,0.7);
line-height: 1.6;
margin-bottom: 16px;
}

.footer-contact {
grid-column: 1 / -1;
margin-top: 10px;
padding-top: 20px;
border-top: 1px solid rgba(255,255,255,0.1);
font-family: 'Montserrat', sans-serif;
font-size: 0.85rem;
color: rgba(255,255,255,0.6);
line-height: 1.8;
text-align: center;
}

.footer-contact a {
color: rgba(255,255,255,0.8);
text-decoration: none;
transition: color 0.3s;
}

.footer-contact a:hover {
color: var(--gold);
}

.footer-col h4 {
font-family: 'Montserrat', sans-serif;
font-size: 0.8rem;
font-weight: 700;
letter-spacing: 1px;
text-transform: uppercase;
color: white;
margin-bottom: 12px;
}

.footer-col ul {
list-style: none;
}

.footer-col li {
margin-bottom: 8px;
}

.footer-col a {
font-size: 1rem;
color: rgba(255,255,255,0.6);
text-decoration: none;
transition: color 0.3s;
}

.footer-col a:hover {
color: var(--gold);
}

.footer-bottom {
display: flex;
justify-content: space-between;
align-items: center;
padding-top: 20px;
}

.footer-legal {
font-family: 'Montserrat', sans-serif;
font-size: 0.8rem;
color: rgba(255,255,255,0.4);
}

.footer-badges {
display: flex;
gap: 16px;
align-items: center;
}

.badge {
font-family: 'Montserrat', sans-serif;
font-size: 0.7rem;
font-weight: 600;
color: rgba(255,255,255,0.5);
padding: 6px 12px;
border: 1px solid rgba(255,255,255,0.2);
border-radius: 4px;
}

/* ════════════════════════════════════════════════════════════
RESPONSIVE
════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
.welcome-inner {
    grid-template-columns: 1fr;
    gap: 50px;
}

.stats-grid {
    grid-template-columns: repeat(2, 1fr);
}

.home-features {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
}

.sponsor-tiers {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
}

@media (max-width: 768px) {
.nav {
    padding: 16px 20px;
}

.nav-links {
    display: none;
}

.home-section,
.welcome,
.impact,
.sponsor {
    padding: 80px 24px;
}

.home-header h2,
.welcome-content h2 {
    font-size: 2rem;
}

.sponsor h2 {
    font-size: 2.2rem;
}

.stats-grid {
    grid-template-columns: 1fr;
}

.footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
}

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {


.btn {
    width: 100%;
    text-align: center;
}

}