/* ===========================
   MINTSTRIDE Brand Colors
   =========================== */
:root {
    --primary-green: #107c80;
    --light-grey: #efefef;
    --black: #000000;
    --white: #ffffff;
    --dark-grey: #333333;
    --hover-green: #0d6266;
    --gradient-light: #5dd4d9;
    --gradient-mid: #107c80;
    --gradient-dark: #0d6266;
    --shimmer-color: rgba(255, 255, 255, 0.3);
    --container-blur: blur(10px);
    --container-blur-hover: blur(15px);
}

/* ===========================
   Global Styles
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', 'Montserrat', sans-serif;
    color: var(--dark-grey);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Anton', sans-serif;
    letter-spacing: 1px;
    line-height: 1.2;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* ===========================
   Buttons
   =========================== */
.btn {
    position: relative;
    display: inline-block;
    padding: 14px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    border: none;
    font-size: 16px;
    overflow: hidden;
    z-index: 1;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), height 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
    pointer-events: none;
}

.btn:active::after {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--hover-green) 100%);
    color: var(--white);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(16, 124, 128, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(16, 124, 128, 0);
    }
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--hover-green) 0%, var(--gradient-dark) 100%);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 30px rgba(16, 124, 128, 0.5);
    animation: none;
}

.btn-primary:focus {
    outline: 3px solid rgba(93, 212, 217, 0.5);
    outline-offset: 2px;
}

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

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-green);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
}

.btn-secondary:focus {
    outline: 3px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

/* ===========================
   Navigation
   =========================== */
.navbar {
    background-color: var(--primary-green);
    padding: 4px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    overflow: visible;
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle, rgba(0, 0, 0, 0.15) 2px, transparent 2px);
    background-size: 14px 14px;
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.logo {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 0 4px;
    border-radius: 6px;
}

.logo:hover {
    transform: scale(1.05);
    background-color: rgba(255, 255, 255, 0.1);
}

.logo:hover .logo-text {
    letter-spacing: 3px;
}

.logo-img {
    height: 90px;
    width: auto;
    display: block;
    object-fit: contain;
    transform: scale(1.5);
    transform-origin: left center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo-text {
    font-family: 'Anton', sans-serif;
    font-size: 54px;
    color: var(--white);
    letter-spacing: 2px;
    transition: all 0.3s ease;
    margin-left: 10px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--white);
    font-weight: 400;
    font-family: 'Anton', sans-serif;
    letter-spacing: 1px;
    font-size: 24px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 2px 8px;
    border-radius: 6px;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 8px;
    right: 8px;
    height: 2px;
    background-color: var(--white);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-menu a:hover {
    transform: translateY(-3px) scale(1.05);
    background-color: rgba(255, 255, 255, 0.1);
    letter-spacing: 2px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.nav-menu a:hover::after {
    transform: scaleX(1);
}

.btn-contact {
    padding: 2px 12px;
    background-color: var(--white);
    color: var(--primary-green) !important;
    border-radius: 6px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-contact::after {
    display: none;
}

.btn-contact:hover,
.nav-menu a.btn-contact:hover {
    background-color: var(--white) !important;
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    letter-spacing: 2px !important;
}

/* Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    transition: all 0.3s ease;
}

/* ===========================
   Hero Section
   =========================== */
.hero {
    position: relative;
    height: 90vh;
    min-height: 600px;
    background: 
        linear-gradient(135deg, var(--primary-green) 0%, var(--hover-green) 100%),
        radial-gradient(ellipse at top, rgba(93, 212, 217, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(13, 98, 102, 0.2) 0%, transparent 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
    z-index: 1;
    backdrop-filter: var(--container-blur);
    -webkit-backdrop-filter: var(--container-blur);
    border: 2px solid rgba(255, 255, 255, 0.25);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 0 60px rgba(93, 212, 217, 0.15);
    animation: hero-glow 8s ease-in-out infinite;
}

@keyframes hero-glow {
    0%, 100% {
        box-shadow: 
            0 8px 32px rgba(0, 0, 0, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.2),
            0 0 60px rgba(93, 212, 217, 0.15);
    }
    50% {
        box-shadow: 
            0 8px 32px rgba(0, 0, 0, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.3),
            0 0 80px rgba(93, 212, 217, 0.25);
    }
}


/* Dot-by-dot diagonal wave - individual dots grow in diagonal pattern */
.hero-dot-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    pointer-events: none;
    display: grid;
    grid-template-columns: repeat(var(--dot-cols), 20px);
    grid-template-rows: repeat(var(--dot-rows), 20px);
    gap: 0;
    padding: 10px;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.hero-dot {
    width: 2px;
    height: 2px;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 50%;
    transform: scale(1);
    transform-origin: center;
    animation: dot-pulse 3s ease-in-out infinite;
    animation-delay: calc(var(--wave-phase) * 0.04s);
}

@keyframes dot-pulse {
    0%, 100% {
        transform: scale(1.8);
    }
    50% {
        transform: scale(2.6);
    }
}

/* Base dot pattern for fallback/subtle layer */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 20px 20px;
    background-position: 0 0;
    opacity: 0.5;
    filter: blur(0.5px);
    z-index: 0;
    animation: dot-drift 60s linear infinite;
}

@keyframes dot-drift {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 20px 20px;
    }
}

/* Simple gradient overlay */
.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(
            circle 400px at 50% 50%,
            rgba(93, 212, 217, 0.2) 0%,
            rgba(16, 124, 128, 0.1) 30%,
            transparent 60%
        );
    opacity: 0.6;
    z-index: 1;
    pointer-events: none;
}

/* Fixed position gradient splotch */
.hero-gradient-splotch {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    z-index: 2;
    pointer-events: none;
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: blur(120px);
    background: 
        radial-gradient(
            circle 600px at 50% 40%,
            rgba(93, 212, 217, 0.6) 0%,
            rgba(93, 212, 217, 0.4) 25%,
            rgba(16, 124, 128, 0.3) 40%,
            transparent 70%
        ),
        radial-gradient(
            circle 400px at 50% 40%,
            rgba(93, 212, 217, 0.45) 0%,
            rgba(16, 124, 128, 0.25) 30%,
            transparent 60%
        );
}

.hero:hover .hero-gradient-splotch {
    opacity: 1;
}

/* Hero shimmer effect on hover */
.hero-logo::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        120deg,
        transparent 20%,
        rgba(255, 255, 255, 0.12) 40%,
        rgba(255, 255, 255, 0.48) 50%,
        rgba(255, 255, 255, 0.12) 60%,
        transparent 80%
    );
    transform: translateX(-100%) translateY(-100%) rotate(30deg);
    transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 10;
    pointer-events: none;
    opacity: 0;
}

.hero-logo.logo-hovered::before {
    animation: shimmer-enhanced 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 1;
}

@keyframes shimmer-enhanced {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(30deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(30deg);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    padding: 0 20px;
    transform: translateY(40px);
}

.hero-logo-container {
    position: relative;
    display: inline-block;
    animation: float-logo 6s ease-in-out infinite;
    cursor: pointer;
}

.hero-copy-overlay {
    position: absolute;
    bottom: 2%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    pointer-events: auto;
}

.gradient-canvas {
    display: none;
}

.hero-logo {
    position: relative;
    max-width: 504px;
    width: 100%;
    height: auto;
    filter: 
        drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3))
        drop-shadow(0 0 20px rgba(93, 212, 217, 0.2));
    transition: 
        transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        filter 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 2;
    image-rendering: high-quality;
    image-rendering: -webkit-optimize-contrast;
}

@keyframes float-logo {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.hero-logo {
    transform: translateY(-110px) scale(1.4);
}

.hero-logo.logo-hovered {
    transform: translateY(-110px) scale(1.512);
    filter: 
        drop-shadow(0 20px 50px rgba(0, 0, 0, 0.5))
        drop-shadow(0 0 40px rgba(93, 212, 217, 0.4))
        brightness(1.1);
}

.hero-subtitle {
    font-size: 48px;
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    z-index: 3;
    text-align: center;
    font-family: 'Anton', sans-serif;
    white-space: nowrap;
    letter-spacing: 2px;
    color: #ffffff;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.25), 0 0 20px rgba(93, 212, 217, 0.15);
    cursor: default;
    transform: translateY(50px);
}

.hero-subtitle:hover {
    transform: translateY(50px) scale(1.03);
    letter-spacing: 4px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 25px rgba(93, 212, 217, 0.2);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 1s ease 0.4s backwards;
    position: relative;
    z-index: 3;
    flex-wrap: wrap;
}

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

/* Scroll Indicator */
.scroll-indicator {
    position: relative;
    margin-top: 15px;
    transform: translateY(50px);
    z-index: 10;
    opacity: 1;
    transition: opacity 1s ease;
}

.scroll-indicator.hidden {
    opacity: 0 !important;
    animation: none;
    pointer-events: none;
    transition: opacity 1s ease;
}

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

.scroll-chevron-bounce {
    animation: bounce-down 2s ease-in-out infinite;
}

.scroll-chevron {
    width: 30px;
    height: 30px;
    border-left: 5px solid rgba(255, 255, 255, 0.9);
    border-bottom: 5px solid rgba(255, 255, 255, 0.9);
    transform: rotate(-45deg);
}

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

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

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

/* Enhanced Floating Particles */
.floating-particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    filter: blur(1px);
}

.particle-1 {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(93, 212, 217, 0.2) 0%, rgba(93, 212, 217, 0.05) 50%, transparent 80%);
    top: 15%;
    left: 8%;
    animation: float-particle-1 18s ease-in-out infinite;
}

.particle-2 {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.03) 50%, transparent 80%);
    top: 60%;
    right: 12%;
    animation: float-particle-2 14s ease-in-out infinite 2s;
}

.particle-3 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(13, 98, 102, 0.18) 0%, rgba(13, 98, 102, 0.05) 50%, transparent 80%);
    bottom: 20%;
    left: 15%;
    animation: float-particle-3 20s ease-in-out infinite 4s;
}

.particle-4 {
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(93, 212, 217, 0.25) 0%, rgba(93, 212, 217, 0.08) 50%, transparent 80%);
    top: 35%;
    right: 25%;
    animation: float-particle-4 12s ease-in-out infinite 1s;
}

.particle-5 {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.02) 50%, transparent 80%);
    top: 70%;
    left: 40%;
    animation: float-particle-5 16s ease-in-out infinite 3s;
}

@keyframes float-particle-1 {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
        opacity: 0.3;
    }
    33% {
        transform: translate(40px, -50px) scale(1.3) rotate(120deg);
        opacity: 0.5;
    }
    66% {
        transform: translate(-30px, 40px) scale(0.8) rotate(240deg);
        opacity: 0.2;
    }
}

@keyframes float-particle-2 {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
        opacity: 0.4;
    }
    40% {
        transform: translate(-35px, 45px) scale(1.2) rotate(-100deg);
        opacity: 0.6;
    }
    80% {
        transform: translate(25px, -35px) scale(0.9) rotate(-200deg);
        opacity: 0.3;
    }
}

@keyframes float-particle-3 {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
        opacity: 0.25;
    }
    50% {
        transform: translate(50px, -60px) scale(1.15) rotate(180deg);
        opacity: 0.45;
    }
}

@keyframes float-particle-4 {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
        opacity: 0.35;
    }
    30% {
        transform: translate(-40px, -30px) scale(1.4) rotate(90deg);
        opacity: 0.55;
    }
    70% {
        transform: translate(30px, 40px) scale(0.7) rotate(180deg);
        opacity: 0.25;
    }
}

@keyframes float-particle-5 {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
        opacity: 0.3;
    }
    45% {
        transform: translate(45px, 35px) scale(1.25) rotate(-135deg);
        opacity: 0.5;
    }
    85% {
        transform: translate(-40px, -45px) scale(0.85) rotate(-270deg);
        opacity: 0.2;
    }
}

.hero::after {
    display: none;
}

/* Responsive Styles for Hero Section */
@media (max-width: 768px) {
    .hero {
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        box-shadow: 
            0 6px 24px rgba(0, 0, 0, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
        animation: none;
    }
    
    .hero-logo {
        max-width: 360px;
        transform: translateY(-60px) scale(1.4);
    }

    .hero-logo.logo-hovered {
        transform: translateY(-60px) scale(1.512);
    }
    
    .hero-logo-container {
        animation: none;
    }
    
    .scroll-indicator {
        margin-top: 20px;
    }
    
    .scroll-chevron {
        width: 24px;
        height: 24px;
        border-left-width: 4px;
        border-bottom-width: 4px;
    }
    
    .hero-gradient-overlay {
        opacity: 0.6;
    }
    
    /* Disable gradient splotch and dot grid on mobile for performance */
    .hero-gradient-splotch,
    .hero-dot-grid {
        display: none;
    }
    
    /* Reduce particles on tablets */
    .particle-3,
    .particle-5 {
        opacity: 0.5;
    }
}

@media (max-width: 480px) {
    .hero-logo {
        max-width: 288px;
        transform: translateY(-30px) scale(1.4);
    }

    .hero-logo.logo-hovered {
        transform: translateY(-30px) scale(1.512);
    }
    
    .hero-subtitle {
        font-size: 22px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
    }
    
    /* Hide most particles on mobile for performance */
    .particle-2,
    .particle-3,
    .particle-4,
    .particle-5 {
        display: none;
    }
    
    .particle-1 {
        opacity: 0.3;
        animation: float-particle-1 20s ease-in-out infinite;
    }
}

/* Accessibility: Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .hero-logo-container,
    .hero-logo,
    .hero-subtitle,
    .hero-buttons,
    .hero-copy-overlay,
    .btn-primary,
    .scroll-indicator,
    .floating-particle,
    .hero-dot {
        animation: none !important;
    }
    
    .hero-logo::before {
        display: none;
    }
    
    .hero-gradient-overlay,
    .hero-gradient-splotch {
        transition: none !important;
    }
    
    .hero-gradient-splotch,
    .hero-dot-grid {
        display: none;
    }
    
    .hero-logo.logo-hovered,
    .hero:hover .hero-subtitle {
        transform: translateY(50px);
    }
    
    .scroll-chevron-bounce,
    .scroll-chevron {
        animation: none !important;
    }
    
    .hero::before,
    .hero::after,
    .hero {
        animation: none !important;
    }
}

/* Browser Fallbacks */
@supports not (backdrop-filter: blur(10px)) {
    .hero {
        backdrop-filter: none;
    }
}

/* ===========================
   Yellow Highlighter Effect
   =========================== */
.highlight-word {
    position: relative;
    display: inline-block;
    padding: 0 0.1em;
    z-index: 1;
    transition: transform 0.3s ease, text-shadow 0.3s ease;
}

.highlight-word:hover {
    transform: scale(1.08);
    text-shadow: 0 2px 8px rgba(16, 124, 128, 0.3);
}

.highlight-word::before {
    content: '';
    position: absolute;
    left: -0.15em;
    right: -0.15em;
    top: 0.1em;
    bottom: 0.05em;
    width: 0%;
    background: rgba(255, 241, 118, 0.65);
    transform: rotate(-0.5deg);
    border-radius: 1em 0.5em;
    box-shadow: 
        0 0 0 0.05em rgba(255, 235, 59, 0.3),
        inset 0 -0.2em 0.3em rgba(255, 200, 0, 0.2);
    z-index: -1;
    transition: width 0s;
    mix-blend-mode: multiply;
}

.highlight-word.highlighted::before {
    animation: highlight-sweep 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes highlight-sweep {
    0% {
        width: 0%;
        opacity: 0.8;
        transform: rotate(-0.5deg) scaleY(0.8);
    }
    50% {
        opacity: 0.85;
        transform: rotate(-0.5deg) scaleY(1.05);
    }
    100% {
        width: calc(100% + 0.3em);
        opacity: 0.65;
        transform: rotate(-0.5deg) scaleY(1);
    }
}

/* Different rotation for each word for natural look */
.highlight-word[data-delay="1"]::before {
    transform: rotate(0.3deg);
    border-radius: 0.5em 1em;
}

.highlight-word[data-delay="1"].highlighted::before {
    animation: highlight-sweep-2 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes highlight-sweep-2 {
    0% {
        width: 0%;
        opacity: 0.8;
        transform: rotate(0.3deg) scaleY(0.8);
    }
    50% {
        opacity: 0.85;
        transform: rotate(0.3deg) scaleY(1.05);
    }
    100% {
        width: calc(100% + 0.3em);
        opacity: 0.65;
        transform: rotate(0.3deg) scaleY(1);
    }
}

.highlight-word[data-delay="2"]::before {
    transform: rotate(-0.8deg);
    border-radius: 0.8em 0.6em;
}

.highlight-word[data-delay="2"].highlighted::before {
    animation: highlight-sweep-3 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes highlight-sweep-3 {
    0% {
        width: 0%;
        opacity: 0.8;
        transform: rotate(-0.8deg) scaleY(0.8);
    }
    50% {
        opacity: 0.85;
        transform: rotate(-0.8deg) scaleY(1.05);
    }
    100% {
        width: calc(100% + 0.3em);
        opacity: 0.65;
        transform: rotate(-0.8deg) scaleY(1);
    }
}

/* Reduced motion support for highlights */
@media (prefers-reduced-motion: reduce) {
    .highlight-word.highlighted::before {
        animation: none;
        width: calc(100% + 0.3em);
    }
    
    .problem-stat,
    .problem-description,
    .callout-box,
    .stat-number,
    .stat-text,
    .large-text {
        transition: none !important;
    }
    
    .problem-stat:hover,
    .problem-description:hover,
    .callout-box:hover,
    .problem-stat:hover .stat-number,
    .problem-stat:hover .stat-text,
    .problem-description:hover .large-text,
    .problem-description:hover p,
    .callout-box:hover h2,
    .callout-box:hover h3,
    .callout-box:hover p {
        transform: none !important;
    }
}

/* ===========================
   Sections
   =========================== */
section {
    padding: 100px 0;
}

/* Scroll offset so nav links align section titles below sticky header */
#mission,
#impact,
#get-involved,
#contact {
    scroll-margin-top: 85px;
}

.section-title {
    font-size: 56px;
    text-align: center;
    margin-top: 0;
    margin-bottom: 20px;
    color: var(--black);
    letter-spacing: 3px;
    transition: all 0.3s ease;
    cursor: default;
}

.section-title:hover {
    color: var(--primary-green);
    transform: scale(1.03);
    text-shadow: 0 4px 20px rgba(16, 124, 128, 0.2);
}

.section-intro {
    text-align: center;
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto 60px;
    color: var(--dark-grey);
    line-height: 1.8;
    transition: all 0.3s ease;
    padding: 20px;
    border-radius: 8px;
}

.section-intro:hover {
    color: var(--primary-green);
    transform: scale(1.02);
    background-color: rgba(16, 124, 128, 0.03);
}

/* ===========================
   Problem Section
   =========================== */
.problem-section {
    background-color: var(--light-grey);
    position: relative;
    z-index: 2;
}

.problem-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.problem-stat {
    text-align: center;
    padding: 40px;
    border-radius: 8px;
    background-color: var(--white);
    transition: all 0.3s ease;
    cursor: pointer;
}

.problem-stat:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(16, 124, 128, 0.15);
    background-color: rgba(16, 124, 128, 0.03);
}

.stat-number {
    font-size: 120px;
    color: var(--primary-green);
    line-height: 1;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.problem-stat:hover .stat-number {
    transform: scale(1.1);
    text-shadow: 0 4px 20px rgba(16, 124, 128, 0.3);
}

.stat-text {
    font-size: 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.problem-stat:hover .stat-text {
    color: var(--primary-green);
    transform: translateY(-3px);
}

.problem-description {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    border-radius: 8px;
    background-color: var(--white);
    transition: all 0.3s ease;
    cursor: pointer;
}

.problem-description:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(16, 124, 128, 0.15);
    background-color: rgba(16, 124, 128, 0.03);
}

.large-text {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--black);
    transition: all 0.3s ease;
}

.problem-description:hover .large-text {
    color: var(--primary-green);
    transform: translateX(5px);
}

.problem-description p {
    transition: all 0.3s ease;
}

.problem-description:hover p {
    transform: translateX(5px);
    color: var(--dark-grey);
}

.callout-box {
    background-color: var(--primary-green);
    color: var(--white);
    padding: 60px;
    border-radius: 8px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(16, 124, 128, 0.2);
}

.callout-box:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(16, 124, 128, 0.4);
    background-color: var(--hover-green);
}

.callout-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle, rgba(0, 0, 0, 0.15) 2px, transparent 2px);
    background-size: 14px 14px;
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
    transition: all 0.4s ease;
}

.callout-box:hover::before {
    background-size: 18px 18px;
    opacity: 0.6;
}

.callout-box::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(93, 212, 217, 0.15) 0%,
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
    pointer-events: none;
}

.callout-box:hover::after {
    opacity: 1;
}

.callout-box h2,
.callout-box h3,
.callout-box p {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.callout-box:hover h2 {
    transform: scale(1.05);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.callout-box:hover h3 {
    transform: translateY(-3px);
}

.callout-box:hover p {
    transform: translateY(3px);
}

.callout-box h3 {
    font-size: 28px;
    font-family: 'Anton', sans-serif;
    font-weight: 400;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.callout-box h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.callout-box .emphasis {
    font-size: 26px;
    font-weight: 400;
    font-family: 'Anton', sans-serif;
    letter-spacing: 1px;
}

/* ===========================
   Mission Section
   =========================== */
.mission-section {
    background-color: var(--white);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.mission-card {
    background-color: var(--light-grey);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
}

.mission-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 12px 32px rgba(16, 124, 128, 0.3);
    border: 2px solid var(--primary-green);
}

.mission-card:hover .card-icon {
    transform: rotate(360deg) scale(1.1);
}

.card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-green);
    border-radius: 50%;
    color: var(--white);
    font-size: 28px;
    font-weight: bold;
    position: relative;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.card-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle, rgba(0, 0, 0, 0.15) 2px, transparent 2px);
    background-size: 14px 14px;
    opacity: 0.5;
    pointer-events: none;
    border-radius: 50%;
    z-index: 0;
}

.card-icon svg {
    width: 32px;
    height: 32px;
    fill: var(--white);
    position: relative;
    z-index: 1;
}

.mission-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-green);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.mission-card:hover h3 {
    color: var(--hover-green);
    transform: translateY(-3px);
}

.mission-card p {
    font-size: 16px;
    line-height: 1.7;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.mission-card:hover p {
    color: var(--dark-grey);
    transform: translateY(-2px);
}

/* ===========================
   Impact Section
   =========================== */
.impact-section {
    background-color: var(--light-grey);
}

.impact-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.impact-column {
    padding: 40px;
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.impact-column:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.impact-column.negative {
    background-color: rgba(0, 0, 0, 0.05);
}

.impact-column.negative:hover {
    background-color: rgba(0, 0, 0, 0.08);
}

.impact-column.positive {
    background-color: var(--primary-green);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.impact-column.positive::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.impact-column.positive:hover::after {
    left: 100%;
}

.impact-column h3 {
    font-size: 28px;
    margin-bottom: 30px;
    font-family: 'Anton', sans-serif;
    font-weight: 400;
    letter-spacing: 1px;
}

.impact-column ul.impact-list {
    list-style: none;
    padding: 0;
}

.impact-column ul.impact-list li {
    font-size: 16px;
    margin-bottom: 20px;
    padding: 12px 16px 12px 48px;
    position: relative;
    border-radius: 6px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    gap: 12px;
}

.impact-column ul.impact-list li::before {
    display: none;
}

/* Arrow bullet – creative hover (scale, rotate, glow) */
.impact-bullet {
    position: absolute;
    left: 16px;
    font-size: 22px;
    font-weight: bold;
    color: var(--primary-green);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: inline-block;
}

.impact-column.negative .impact-bullet {
    color: var(--dark-grey);
}

.impact-column.positive .impact-bullet {
    color: var(--white);
}

/* Negative column: row hover – arrow bounces right, teal accent */
.impact-column.negative ul.impact-list li:hover {
    background-color: rgba(16, 124, 128, 0.08);
    box-shadow: inset 4px 0 0 var(--primary-green);
}

.impact-column.negative ul.impact-list li:hover .impact-bullet {
    transform: scale(1.35);
    color: var(--primary-green);
    text-shadow: 0 0 12px rgba(16, 124, 128, 0.5);
}

.impact-column.negative ul.impact-list li:hover .impact-text {
    color: var(--black);
}

/* Positive column: row hover – arrow pulses, glow */
.impact-column.positive ul.impact-list li:hover {
    background-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.impact-column.positive ul.impact-list li:hover .impact-bullet {
    transform: scale(1.4);
    text-shadow: 0 0 16px rgba(255, 255, 255, 0.8);
    animation: arrowGrow 0.5s ease;
}

@keyframes arrowGrow {
    0%, 100% { transform: scale(1.4); }
    50% { transform: scale(1.55); }
}

.impact-column.positive ul.impact-list li:hover .impact-text {
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.impact-text {
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

/* Impact tagline – hover: subtle scale + glow, no layout shift */
.impact-tagline {
    font-size: 36px;
    font-weight: 400;
    text-align: center;
    color: var(--primary-green);
    font-family: 'Anton', sans-serif;
    letter-spacing: 1px;
    transition: transform 0.4s ease-out, text-shadow 0.4s ease-out, background 0.4s ease-out;
    padding: 20px;
    border-radius: 8px;
    cursor: default;
    transform-origin: center center;
}

.impact-tagline:hover {
    transform: scale(1.02);
    text-shadow: 0 2px 16px rgba(16, 124, 128, 0.35);
    background: linear-gradient(90deg, transparent, rgba(16, 124, 128, 0.05), transparent);
}

/* ===========================
   Get Involved Section
   =========================== */
.get-involved-section {
    background-color: var(--white);
}

.involvement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.involvement-card {
    background-color: var(--light-grey);
    padding: 50px 40px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.involvement-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(16, 124, 128, 0.1), transparent);
    transition: left 0.5s ease;
}

.involvement-card:hover::after {
    left: 100%;
}

.involvement-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(16, 124, 128, 0.2);
}

.involvement-card h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-green);
}

.involvement-card p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.7;
    transition: all 0.3s ease;
}

.involvement-card:hover p {
    color: var(--dark-grey);
    transform: scale(1.02);
}

.social-links {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.social-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-green);
    color: var(--white);
    border-radius: 50%;
    transition: transform 0.35s ease-out, background-color 0.35s ease-out, box-shadow 0.35s ease-out;
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle, rgba(0, 0, 0, 0.15) 2px, transparent 2px);
    background-size: 14px 14px;
    opacity: 0.5;
    pointer-events: none;
    border-radius: 50%;
    z-index: 0;
}

.social-icon svg {
    width: 36px;
    height: 36px;
    position: relative;
    z-index: 1;
}

.social-icon:hover {
    background-color: var(--hover-green);
    transform: translateY(-4px) scale(1.06);
    box-shadow: 0 6px 20px rgba(16, 124, 128, 0.35);
}

/* ===========================
   Contact Section
   =========================== */
.contact-section {
    background-color: var(--primary-green);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle, rgba(0, 0, 0, 0.15) 2px, transparent 2px);
    background-size: 14px 14px;
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}

.contact-section .section-title {
    color: var(--white);
}

.contact-intro {
    font-size: 20px;
    margin-bottom: 40px;
    transition: all 0.4s ease;
    padding: 16px;
    border-radius: 8px;
}

.contact-intro:hover {
    transform: scale(1.03);
    text-shadow: 0 2px 12px rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.06);
}

.contact-section .btn-primary {
    background-color: transparent;
    color: var(--white);
    border: 3px solid var(--white);
    font-size: 20px;
    font-weight: 700;
    animation: none;
    transition: background-color 0.35s ease, color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.contact-section .btn-primary::after {
    display: none;
}

.contact-section .btn-primary:hover {
    background-color: var(--white);
    color: var(--primary-green);
    transform: scale(1.03);
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.2);
}

/* ===========================
   Footer
   =========================== */
.footer {
    background-color: var(--black);
    color: var(--white);
    padding: 36px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    align-items: center;
    margin-bottom: 24px;
}

.footer-left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.footer-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.footer-logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}

.footer-logo-img {
    height: 56px;
    width: auto;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.footer-logo-img:hover {
    transform: scale(1.1) rotate(5deg);
}

.footer-logo p {
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.footer-logo p:hover {
    color: var(--primary-green);
    transform: scale(1.02);
}

.footer-social-icons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-social-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer-social-icon svg {
    width: 28px;
    height: 28px;
}

.footer-social-icon:hover {
    background-color: var(--primary-green);
    transform: translateY(-5px) scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 20px rgba(16, 124, 128, 0.4);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    margin-top: 8px;
    text-align: center;
}

/* Made by Jason Charwin - black button with navy shimmer on hover */
.footer-made-by {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 10px;
    letter-spacing: 0.25px;
    background: var(--black);
    color: var(--white);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.35s ease;
    position: relative;
    overflow: hidden;
}

.footer-made-by::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    background: linear-gradient(
        110deg,
        transparent 0%,
        transparent 35%,
        rgba(0, 31, 63, 0.9) 45%,
        rgba(25, 55, 109, 0.95) 50%,
        rgba(0, 31, 63, 0.9) 55%,
        transparent 65%,
        transparent 100%
    );
    background-size: 200% 100%;
    background-position: 150% 0;
    opacity: 0;
    transition: opacity 0.4s ease, background-position 0.6s ease;
    pointer-events: none;
}

.footer-made-by:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 24px rgba(0, 31, 63, 0.35);
}

.footer-made-by:hover::before {
    opacity: 1;
    background-position: -50% 0;
    animation: footer-shimmer 1.2s ease;
}

@keyframes footer-shimmer {
    0% { background-position: 150% 0; }
    100% { background-position: -50% 0; }
}

.footer-made-by:focus {
    outline: 2px solid rgba(25, 55, 109, 0.7);
    outline-offset: 3px;
}

.footer-made-by-text {
    position: relative;
    z-index: 1;
}

.footer-made-by-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    z-index: 1;
}

.footer-made-by-arrow svg {
    width: 12px;
    height: 12px;
}

.footer-made-by:hover .footer-made-by-arrow {
    transform: translate(3px, -3px);
}

.footer-credit {
    margin-top: 10px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.7);
}

/* ===========================
   Animations
   =========================== */
.fade-in {
    animation: fadeIn 1s ease;
}

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

.fade-in-up {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    transition: opacity 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Alternate entrance animations */
.mission-card,
.involvement-card {
    opacity: 0;
    animation: slideInUp 0.8s ease forwards;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(60px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Impact columns slide from sides */
.impact-column.negative {
    animation: slideInLeft 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.impact-column.positive {
    animation: slideInRight 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(60px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 1024px) {
    .mission-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .hero-subtitle {
        font-size: 38px;
    }
}

@media (max-width: 768px) {
    /* ===== NAVBAR - Logo left, MINTSTRIDE center, hamburger right ===== */
    .nav-container {
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        padding: 0 10px;
    }

    .logo {
        display: flex;
        align-items: center;
        gap: 0;
    }

    .logo-img {
        height: 48px;
        transform: scale(1);
    }

    .logo-text {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        font-size: 22px;
        letter-spacing: 2px;
    }

    .hamburger {
        justify-self: end;
    }

    /* ===== MOBILE MENU - Compact, slides from right ===== */
    .nav-menu {
        position: fixed;
        top: 64px;
        right: 0;
        left: auto;
        flex-direction: column;
        background-color: var(--primary-green);
        width: 200px;
        text-align: left;
        transition: transform 0.3s ease;
        transform: translateX(100%);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
        padding: 12px 0;
        gap: 0;
        border-radius: 0 0 0 8px;
        z-index: 999;
    }

    .nav-menu li {
        margin: 0;
    }

    .nav-menu a {
        display: block;
        padding: 10px 16px;
        font-size: 16px;
        color: var(--white);
    }

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

    .nav-menu a:hover {
        background-color: rgba(255, 255, 255, 0.15);
    }

    .nav-menu .btn-contact {
        background-color: transparent;
        color: var(--white) !important;
        margin: 8px 12px 4px;
        text-align: center;
    }

    .nav-menu .btn-contact:hover,
    .nav-menu a.btn-contact:hover {
        background-color: var(--white) !important;
        color: var(--primary-green) !important;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .hamburger {
        display: flex;
    }

    /* ===== HERO - Compact with larger logo ===== */
    .hero {
        min-height: 340px;
        height: auto;
        padding: 16px 0 24px;
    }

    .hero-content {
        padding: 0 16px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 6px;
    }

    .hero-logo-container {
        animation: none;
        margin: 0;
    }

    .hero-logo {
        max-width: 330px;
        transform: translateY(-30px) scale(1);
    }

    .hero-logo.logo-hovered {
        transform: translateY(-30px) scale(1.05);
    }

    .hero-copy-overlay {
        position: static;
        transform: none;
        margin-top: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-subtitle {
        display: none !important;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        margin-top: 4px;
    }

    .scroll-indicator {
        display: none;
    }

    /* Disable heavy effects on mobile for performance */
    .hero-gradient-splotch,
    .hero-dot-grid {
        display: none;
    }

    .particle-3,
    .particle-5 {
        opacity: 0.5;
    }

    /* ===== SECTIONS - Prominent titles, clear hierarchy ===== */
    section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 40px;
        word-break: normal;
        overflow-wrap: break-word;
        letter-spacing: 2px;
        margin-bottom: 24px;
    }

    .section-intro {
        font-size: 15px;
        margin: 0 auto 30px;
        padding: 14px;
    }

    /* ===== PROBLEM SECTION - Remove boxes, centered text ===== */
    .problem-content {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 30px;
    }

    .problem-stat {
        background-color: transparent;
        padding: 16px;
        text-align: center;
    }

    /* ===== DISABLE ALL HOVER EFFECTS ON MOBILE ===== */
    .logo:hover,
    .logo:hover .logo-text,
    .nav-menu a:hover,
    .btn-contact:hover,
    .nav-menu a.btn-contact:hover,
    .hero-logo.logo-hovered,
    .hero-subtitle:hover,
    .section-title:hover,
    .section-intro:hover,
    .problem-stat:hover,
    .problem-stat:hover .stat-number,
    .problem-stat:hover .stat-text,
    .problem-description:hover,
    .problem-description:hover .large-text,
    .problem-description:hover p,
    .callout-box:hover,
    .callout-box:hover h2,
    .callout-box:hover h3,
    .callout-box:hover p,
    .callout-box:hover::before,
    .callout-box:hover::after,
    .mission-card:hover,
    .mission-card:hover .card-icon,
    .mission-card:hover h3,
    .mission-card:hover p,
    .impact-column:hover,
    .impact-column.negative:hover,
    .impact-column.positive:hover::after,
    .impact-column.negative ul.impact-list li:hover,
    .impact-column.negative ul.impact-list li:hover .impact-bullet,
    .impact-column.negative ul.impact-list li:hover .impact-text,
    .impact-column.positive ul.impact-list li:hover,
    .impact-column.positive ul.impact-list li:hover .impact-bullet,
    .impact-column.positive ul.impact-list li:hover .impact-text,
    .impact-tagline:hover,
    .involvement-card:hover,
    .involvement-card:hover::after,
    .involvement-card:hover p,
    .social-icon:hover,
    .contact-intro:hover,
    .contact-section .btn-primary:hover,
    .footer-logo-img:hover,
    .footer-logo p:hover,
    .footer-social-icon:hover,
    .footer-made-by:hover,
    .footer-made-by:hover::before,
    .footer-made-by:hover .footer-made-by-arrow,
    .highlight-word:hover {
        transform: none !important;
        box-shadow: none !important;
        text-shadow: none !important;
        background-color: inherit;
        color: inherit;
        letter-spacing: inherit;
        opacity: 1;
    }

    .btn-primary:hover,
    .btn-secondary:hover {
        transform: none !important;
        box-shadow: none !important;
    }

    .problem-stat:hover {
        background-color: transparent;
    }

    .stat-number {
        font-size: 72px;
    }

    .stat-text {
        font-size: 17px;
    }

    .problem-description {
        background-color: transparent;
        padding: 16px;
        text-align: center;
    }

    .problem-description:hover {
        background-color: transparent;
    }

    .large-text {
        font-size: 19px;
    }

    .problem-description p {
        font-size: 15px;
    }

    .callout-box {
        padding: 30px 20px;
    }

    .callout-box h2 {
        font-size: 22px;
    }

    .callout-box h3 {
        font-size: 17px;
    }

    .callout-box .emphasis {
        font-size: 17px;
    }

    /* ===== IMPACT SECTION ===== */
    .impact-comparison {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .impact-column {
        padding: 24px;
    }

    .impact-column h3 {
        font-size: 19px;
    }

    .impact-list li {
        font-size: 14px;
    }

    .impact-tagline {
        font-size: 19px;
    }

    /* ===== MISSION & INVOLVEMENT - Compact cards ===== */
    .mission-grid,
    .involvement-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .mission-card {
        padding: 24px 20px;
    }

    .mission-card h3 {
        font-size: 18px;
    }

    .mission-card p {
        font-size: 13px;
    }

    .card-icon {
        width: 48px;
        height: 48px;
        margin: 0 auto 12px;
    }

    .involvement-card {
        padding: 30px 24px;
    }

    /* ===== FOOTER ===== */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    .footer-left,
    .footer-center,
    .footer-right {
        justify-content: center;
    }

    .footer-logo {
        flex-direction: column;
        align-items: center;
    }

    .footer-logo p {
        white-space: normal;
        font-size: 14px;
    }

    .footer-made-by {
        flex-wrap: wrap;
        justify-content: center;
        padding: 6px 12px;
        font-size: 9px;
    }

    /* ===== CONTACT SECTION - Fix email button overflow ===== */
    .contact-intro {
        font-size: 16px;
        margin-bottom: 24px;
        padding: 12px;
    }

    .contact-section .btn-primary {
        font-size: 14px;
        padding: 12px 16px;
        word-break: break-all;
        max-width: 90%;
        white-space: normal;
        line-height: 1.3;
    }

    /* ===== SCROLL OFFSETS ===== */
    #mission,
    #impact,
    #get-involved,
    #contact {
        scroll-margin-top: 70px;
    }
}

@media (max-width: 480px) {
    /* ===== SAFE AREAS for notched devices ===== */
    .container {
        padding-left: max(16px, env(safe-area-inset-left));
        padding-right: max(16px, env(safe-area-inset-right));
    }

    /* ===== NAVBAR ===== */
    .logo-img {
        height: 40px;
    }

    .logo-text {
        font-size: 18px;
        letter-spacing: 1px;
    }

    /* ===== HERO - Ultra compact with big logo ===== */
    .hero {
        min-height: 300px;
        height: auto;
        padding: 12px 0 20px;
    }

    .hero-content {
        padding: 0 12px;
        gap: 4px;
    }

    .hero-logo {
        max-width: 270px;
        transform: translateY(-25px) scale(1);
    }

    .hero-logo.logo-hovered {
        transform: translateY(-25px) scale(1.05);
    }

    .hero-copy-overlay {
        margin-top: 0;
    }

    .hero-subtitle {
        display: none !important;
    }

    .scroll-indicator {
        display: none;
    }

    /* Hide most particles on mobile for performance */
    .particle-2,
    .particle-3,
    .particle-4,
    .particle-5 {
        display: none;
    }

    .particle-1 {
        opacity: 0.3;
    }

    /* ===== SECTIONS - Extra prominent titles ===== */
    section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 32px;
        letter-spacing: 1.5px;
        margin-bottom: 20px;
    }

    .section-intro {
        font-size: 14px;
        margin: 0 auto 24px;
        padding: 12px;
    }

    /* ===== PROBLEM SECTION ===== */
    .stat-number {
        font-size: 60px;
    }

    .stat-text {
        font-size: 15px;
    }

    .large-text {
        font-size: 17px;
    }

    .problem-description p {
        font-size: 14px;
    }

    .callout-box {
        padding: 24px 16px;
    }

    .callout-box h2 {
        font-size: 19px;
    }

    .callout-box h3 {
        font-size: 15px;
    }

    .callout-box .emphasis {
        font-size: 15px;
    }

    /* ===== MISSION & INVOLVEMENT ===== */
    .mission-card {
        padding: 20px 16px;
    }

    .mission-card h3 {
        font-size: 17px;
    }

    .mission-card p {
        font-size: 12px;
    }

    .card-icon {
        width: 40px;
        height: 40px;
    }

    .involvement-card {
        padding: 24px 20px;
    }

    .involvement-card h3 {
        font-size: 18px;
    }

    .involvement-card p {
        font-size: 13px;
    }

    /* ===== IMPACT ===== */
    .impact-column {
        padding: 20px;
    }

    .impact-column h3 {
        font-size: 17px;
    }

    .impact-list li {
        font-size: 13px;
    }

    .impact-tagline {
        font-size: 17px;
    }

    /* ===== CONTACT SECTION - Email button ===== */
    .contact-intro {
        font-size: 15px;
        margin-bottom: 20px;
        padding: 10px;
    }

    .contact-section .btn-primary {
        font-size: 13px;
        padding: 10px 12px;
        max-width: 85%;
    }

    /* ===== FOOTER ===== */
    .footer-logo-img {
        height: 48px;
    }

    .footer-social-icon {
        width: 44px;
        height: 44px;
    }

    .footer-social-icon svg {
        width: 22px;
        height: 22px;
    }

    .footer-logo p {
        font-size: 13px;
    }
}
