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

:root {
    --brand-primary: #00b2ff;
    --brand-secondary: #0050bd;
    --brand-dark: #000132;
    --text-primary: #1a1b1f;
    --text-secondary: #5d6c7b;
    --bg-muted: #f5f7fa;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #ffffff;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    position: relative; /* anchor mobile dropdown */
}

.logo {
    font-size: 1.3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Logo image replacement */
.logo {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.logo img {
    height: 28px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

/* Mobile nav toggle (hamburger) */
.nav-toggle {
    display: none;
    background: transparent;
    border: 0;
    padding: 0.5rem;
    margin-left: 0.5rem;
    cursor: pointer;
}

.nav-toggle:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(0, 178, 255, 0.2);
    border-radius: 6px;
}

.nav-toggle-box {
    position: relative;
    width: 24px;
    height: 18px;
    display: inline-block;
}

.nav-toggle-bar {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--text-primary);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle-bar:nth-child(1) { top: 0; }
.nav-toggle-bar:nth-child(2) { top: 8px; }
.nav-toggle-bar:nth-child(3) { bottom: 0; }

/* Animate to X when open */
.navbar.open .nav-toggle-bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.navbar.open .nav-toggle-bar:nth-child(2) { opacity: 0; }
.navbar.open .nav-toggle-bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile layout */
@media (max-width: 900px) {
    .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        display: none;
        flex-direction: column;
        gap: 0;
        border-bottom: 1px solid rgba(0,0,0,0.1);
        box-shadow: 0 8px 20px rgba(0,0,0,0.08);
        z-index: 999;
    }
    .navbar.open .nav-links { display: flex; }
    .nav-links li { border-top: 1px solid rgba(0,0,0,0.06); }
    .nav-links li:first-child { border-top: 0; }
    .nav-links a { padding: 0.875rem 1.25rem; display: block; }
}

/* Section banner (for Know Your Crop) */
.section-banner {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 3.5rem 1.5rem;
    margin-bottom: 2rem;
    background-size: cover;
    background-position: center;
}

.section-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35));
}

.section-banner .section-title,
.section-banner .section-subtitle {
    color: #ffffff;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.section-banner .section-title {
    margin-bottom: 0.5rem;
}

/* Specific banner background for the crop section */
.crop-banner {
    background-image: url('assets/images/rows_of_green.jpg');
    background-image: image-set(
        url('assets/images/rows_of_green.webp') type('image/webp'),
        url('assets/images/rows_of_green.jpg') type('image/jpeg')
    );
    background-color: #2d5016; /* fallback color while loading */
}

/* Specific banner background for the supply chain section */
.supply-banner {
    /* Ensure full cover rendering and no repeat */
    background: url('assets/images/cocoa_trees.jpg') center / cover no-repeat;
    background: image-set(
        url('assets/images/cocoa_trees.webp') type('image/webp'),
        url('assets/images/cocoa_trees.jpg') type('image/jpeg')
    ) center / cover no-repeat;
    background-color: #3d4f2e; /* fallback color while loading */
}

/* Slightly lighter overlay so image shows through more */
.supply-banner::after {
    background: linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25));
}

/* Specific banner background for the farmers section */
.farmers-banner {
    background: url('assets/images/scout_infield.jpg') center / cover no-repeat;
    background: image-set(
        url('assets/images/scout_infield.webp') type('image/webp'),
        url('assets/images/scout_infield.jpg') type('image/jpeg')
    ) center / cover no-repeat;
    background-color: #4a5a3c; /* fallback color while loading */
}

/* Split banner layout for farmers section on large screens */
.farmers-split-banner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: 16px;
    overflow: hidden;
    min-height: 380px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.farmers-banner-image {
    background: url('assets/images/scout_infield.jpg') center / cover no-repeat;
    background: image-set(
        url('assets/images/scout_infield.webp') type('image/webp'),
        url('assets/images/scout_infield.jpg') type('image/jpeg')
    ) center / cover no-repeat;
    background-color: #4a5a3c; /* fallback color while loading */
    min-height: 500px;
}

.farmers-banner-content {
    background: linear-gradient(135deg, rgba(0, 178, 255, 0.95) 0%, rgba(0, 80, 189, 0.95) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3.5rem 2rem;
}

.farmers-banner-content .section-title,
.farmers-banner-content .section-subtitle {
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.farmers-banner-content .section-title {
    margin-bottom: 0.5rem;
}

/* Mission text inside the Farmers banner */
.farmers-banner-content .mission-inline {
    margin-top: 0.75rem;
    text-align: center;
    max-width: 700px;
}

.farmers-banner-content .mission-label {
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-bottom: 0.25rem;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.15);
    font-size: 1.2rem; /* slightly larger than text */
}

.farmers-banner-content .mission-text {
    color: #ffffff;
    font-weight: 500;
    line-height: 1.6;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.15);
    margin: 0;
    font-size: 1.05rem;
}

/* Mobile: stack vertically */
@media (max-width: 768px) {
    .farmers-split-banner {
        grid-template-columns: 1fr;
    }

    .farmers-banner-image {
        min-height: 300px;
    }

    .farmers-banner-content {
        min-height: 180px;
    }
}

/* Video Section */
.video-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.video-container .section-title {
    margin-bottom: 2rem;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 16px;
}

/* Hero Section */
.hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 0 2rem;
    overflow: hidden;
}

/* Abstract Background Shapes */
.background-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 8s ease-in-out infinite;
}

.shape:nth-child(1) {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape:nth-child(2) {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--brand-secondary), var(--brand-primary));
    top: 20%;
    right: 15%;
    animation-delay: 2s;
}

.shape:nth-child(3) {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.shape:nth-child(4) {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--brand-secondary), var(--brand-primary));
    bottom: 30%;
    right: 10%;
    animation-delay: 1s;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 178, 255, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    max-width: 1000px;
    z-index: 1;
}

.pill-banner {
    display: inline-block;
    background: var(--bg-muted);
    color: var(--text-primary);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    animation: fadeInUp 1s ease-out;
}

.hero h1 .highlight {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    min-width: 300px;
    text-align: left;
}

.rotating-text {
    display: inline-block;
    min-width: 300px;
    text-align: center;
}

.typewriter-cursor {
    display: inline-block;
    width: 2px;
    height: 1.2em;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 178, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid rgba(0, 178, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(0, 178, 255, 0.12);
    border-color: rgba(0, 178, 255, 0.5);
}

/* Content Sections */
.content-section {
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    scroll-margin-top: calc(80px + 1rem); /* navbar height + 1rem offset */
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 4rem;
    font-weight: 500;
}

.intro-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 3rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.center-text {
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-5px);
    background: #ffffff;
    border-color: rgba(0, 178, 255, 0.3);
    box-shadow: 0 8px 30px rgba(0, 178, 255, 0.12);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.micro-cta {
    text-align: center;
    margin-top: 2rem;
}

.micro-cta a {
    color: var(--brand-primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.micro-cta a:hover {
    color: rgba(0, 80, 189, 0.75);
}

/* Comparison Table */
.comparison-table {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    margin: 3rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.table-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: rgba(0, 178, 255, 0.08);
    padding: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.table-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--text-primary);
}

.table-row:last-child {
    border-bottom: none;
}

.table-row:nth-child(even) {
    background: rgba(0, 0, 0, 0.02);
}

/* Quote Block */
.quote-block {
    background: linear-gradient(135deg, rgba(0, 178, 255, 0.08) 0%, rgba(0, 80, 189, 0.08) 100%);
    border-left: 4px solid var(--brand-primary);
    padding: 2rem;
    margin: 3rem 0;
    border-radius: 0 12px 12px 0;
}

.quote-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.quote-author {
    color: var(--text-secondary);
    font-weight: 500;
}

/* Mission Statement */
.mission-statement {
    padding: 3rem;
    text-align: center;
    margin: 3rem 0;
}

.mission-text {
    font-size: 1.25rem;
    color: var(--text-primary);
    font-weight: 500;
    line-height: 1.6;
}

/* Trust Signals */
.trust-signals {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.trust-item {
    background: #ffffff;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.trust-item h4 {
    color: var(--brand-primary);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.trust-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Stats Section */
.stats {
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    margin: 2rem 0;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--text-secondary);
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    padding: 6rem 2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.cta-section p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

/* Footer */
.footer {
    background: var(--bg-muted);
    padding: 3rem 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--brand-primary);
}

.footer-copyright p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

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

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

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.05);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

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

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

    .rotating-text {
        font-size: clamp(1.25rem, 2.5vw, 2rem);
        font-weight: 250;
    }
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

/* Contact page */
.contact-banner {
    margin-top: 4rem;
    background: url('assets/images/rows_of_green.jpg') center / cover no-repeat;
    background: image-set(
        url('assets/images/rows_of_green.webp') type('image/webp'),
        url('assets/images/rows_of_green.jpg') type('image/jpeg')
    ) center / cover no-repeat;
    background-color: #2d5016; /* fallback color while loading */
}

.contact-container {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.contact-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    width: 50%;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .contact-card {
        width: 100%;
    }
}

.contact-card h3 {
    margin-bottom: 0.5rem;
}

.contact-form {
    margin-top: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: rgba(0, 178, 255, 0.6);
    box-shadow: 0 0 0 4px rgba(0, 178, 255, 0.12);
}

.field-hint {
    font-size: 0.85rem;
    color: var(--text-secondary);
    min-height: 1.25rem;
}

.form-note {
    margin-top: 1rem;
}

.form-status {
    margin-top: 1rem;
    font-weight: 600;
}

.hp { display: none; }

@media (max-width: 900px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Investor page */
.investor-banner {
    margin-top: 6rem;
    background: url('assets/images/unsplash.jpg') center / cover no-repeat;
    background: image-set(
        url('assets/images/unsplash.webp') type('image/webp'),
        url('assets/images/unsplash.jpg') type('image/jpeg')
    ) center / cover no-repeat;
    background-color: #8b7355; /* fallback color while loading */
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.5rem;
    align-items: center;
    justify-items: center;
}

.logo-grid img {
    max-width: 100%;
    max-height: 150px;
    object-fit: contain;
    filter: grayscale(0.1);
    opacity: 0.9;
    transition: filter 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.logo-grid img:hover {
    filter: grayscale(0);
    opacity: 1;
    transform: translateY(-2px);
}

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

/* Bootstrap-style Alerts */
.funding-alerts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.alert {
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 1px solid;
    font-size: 1rem;
    line-height: 1.6;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.alert:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.alert strong {
    font-weight: 600;
}

/* Alert Primary - Brand Blue */
.alert-primary {
    background-color: rgba(0, 178, 255, 0.08);
    border-color: rgba(0, 178, 255, 0.3);
    color: var(--text-primary);
}

.alert-primary strong {
    color: var(--brand-primary);
}

/* Alert Info - Light Blue */
.alert-info {
    background-color: rgba(0, 80, 189, 0.08);
    border-color: rgba(0, 80, 189, 0.3);
    color: var(--text-primary);
}

.alert-info strong {
    color: var(--brand-secondary);
}

/* Alert Success - Green */
.alert-success {
    background-color: rgba(40, 167, 69, 0.08);
    border-color: rgba(40, 167, 69, 0.3);
    color: var(--text-primary);
}

.alert-success strong {
    color: #28a745;
}

@media (max-width: 768px) {
    .alert {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }
}

/* About page */
.about-banner {
    margin-top: 6rem;
    background: url('assets/images/rows_of_green.jpg') center / cover no-repeat;
    background: image-set(
        url('assets/images/rows_of_green.webp') type('image/webp'),
        url('assets/images/rows_of_green.jpg') type('image/jpeg')
    ) center / cover no-repeat;
    background-color: #2d5016; /* fallback color while loading */
}

.mission-highlight {
    background: rgba(0, 178, 255, 0.03);
    padding: 4rem 2rem;
}

.mission-card {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 178, 255, 0.2);
}

.mission-card .section-title {
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.mission-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-secondary);
    text-align: center;
}

/* Team section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin: 3rem 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.team-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 178, 255, 0.15);
    border-color: rgba(0, 178, 255, 0.3);
}

.team-image-wrapper {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(0, 178, 255, 0.1);
    transition: all 0.3s ease;
}

.team-card:hover .team-image-wrapper {
    border-color: rgba(0, 178, 255, 0.4);
}

.team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.team-role {
    font-size: 1rem;
    font-weight: 600;
    color: var(--brand-primary);
    margin-bottom: 0.75rem;
}

.team-tagline {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-weight: 500;
}

.team-bio {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mission-card {
        padding: 2rem;
    }

    .mission-text {
        font-size: 1.1rem;
    }
}
