/* #006064, #00838F, #A86030, #E8F8FA */
:root {
    --color-primary: #006064;
    --color-secondary: #00838F;
    --color-accent: #A86030;
    --bg-tint: #E8F8FA;
    --bg-dark: #12181a;
    --bg-card: #1a2528;
    --text-light: #e0f2f1;
    --text-muted: #9eb5b8;
}

/* Global resets & typography */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background-color: var(--bg-dark);
    overflow-x: hidden;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography elements */
h1, h2, h3, h4 {
    color: #ffffff;
    font-weight: 700;
}

h2 {
    font-size: clamp(24px, 4vw, 36px);
    margin-bottom: 16px;
}

p {
    margin-bottom: 16px;
    color: var(--text-muted);
}

a {
    color: var(--color-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-accent);
}

/* Header Layout */
.site-header {
    position: relative;
    width: 100%;
    padding: 15px 10px;
    background-color: var(--bg-dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* Logo - always left */
.logo {
    font-size: 24px;
    font-weight: bold;
    z-index: 100;
    color: #ffffff;
}

/* Hamburger - ALWAYS RIGHT */
.hamburger {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 24px;
    cursor: pointer;
    z-index: 100;
    display: none;
}

.hamburger .line {
    width: 100%;
    height: 3px;
    margin: 5px 0;
    transition: 0.3s;
    background-color: #ffffff;
}

.menu-checkbox {
    display: none;
}

/* Desktop Navigation */
.desktop-nav {
    display: block;
}

.desktop-nav .nav-list {
    display: flex;
    list-style: none;
    gap: 32px;
    margin: 0;
    padding: 0;
}

.desktop-nav .nav-list a {
    color: var(--text-light);
    font-weight: 500;
}

.desktop-nav .nav-list a:hover {
    color: var(--color-accent);
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    z-index: 99;
    background-color: var(--bg-dark);
}

.mobile-nav ul {
    list-style: none;
    padding: 20px;
    margin: 0;
}

.mobile-nav li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-nav a {
    color: var(--text-light);
    font-size: 18px;
    display: block;
}

/* Buttons (Pill design style) */
.btn {
    display: inline-block;
    padding: 12px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
}

.btn-primary {
    background-color: var(--color-primary);
    color: #ffffff;
}

.btn-primary:hover {
    background-color: var(--color-secondary);
    transform: translateY(-2px);
    color: #ffffff;
}

.btn-accent {
    background-color: var(--color-accent);
    color: #ffffff;
}

.btn-accent:hover {
    background-color: var(--color-secondary);
    transform: translateY(-2px);
    color: #ffffff;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Hero Index (Bold Text Only Style) */
.hero-bold-text {
    background: radial-gradient(circle at 10% 20%, var(--color-primary) 0%, var(--bg-dark) 90%);
    padding: 100px 20px;
    text-align: center;
}

.hero-text-container {
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    background-color: var(--color-accent);
    color: #ffffff;
    padding: 6px 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 24px;
}

.hero-main-title {
    font-size: clamp(32px, 6vw, 64px);
    line-height: 1.15;
    margin-bottom: 24px;
    color: #ffffff;
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-muted);
    margin-bottom: 40px;
}

/* Section Common Header */
.section-header {
    margin-bottom: 48px;
}

.section-desc {
    max-width: 600px;
    margin: 8px auto 0;
}

.text-center {
    text-align: center;
}

/* SECTION 1: benefits-hscroll */
.benefits-scroll-section {
    padding: 80px 0;
    background-color: rgba(255, 255, 255, 0.02);
}

.hscroll-container {
    display: flex;
    gap: 24px;
    padding: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.benefit-card {
    flex: 0 0 300px;
    background-color: var(--bg-card);
    padding: 32px;
    border-radius: 36px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    scroll-snap-align: start;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.benefit-card h3 {
    margin-bottom: 12px;
    font-size: 20px;
}

/* SECTION 2: cta-banner */
.cta-banner-accent {
    background-color: var(--color-accent);
    padding: 80px 20px;
    text-align: center;
    border-radius: 48px;
    margin: 40px 20px;
}

.cta-banner-content h2 {
    color: #ffffff;
    font-size: clamp(28px, 4vw, 42px);
    margin-bottom: 16px;
}

.cta-banner-content p {
    color: #f7e6dc;
    max-width: 700px;
    margin: 0 auto 32px;
    font-size: 18px;
}

/* SECTION 3: icon-features */
.features-grid-section {
    padding: 80px 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-item {
    background-color: var(--bg-card);
    padding: 32px;
    border-radius: 36px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    transition: background-color 0.3s ease;
}

.feature-item:hover {
    background-color: rgba(0, 96, 100, 0.15);
}

.feature-emoji {
    font-size: 32px;
    display: block;
    margin-bottom: 16px;
}

.feature-item h3 {
    margin-bottom: 10px;
}

/* SECTION 4: two-col-image */
.two-col-section {
    padding: 80px 20px;
    background-color: rgba(255, 255, 255, 0.02);
}

.two-col-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

.organic-img {
    width: 100%;
    height: auto;
    border-radius: 48px;
    object-fit: cover;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

.custom-list {
    list-style: none;
    margin-top: 24px;
}

.custom-list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 12px;
}

.custom-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-accent);
    font-weight: bold;
    font-size: 18px;
}

/* SECTION 5: quote-highlight */
.quote-highlight-section {
    padding: 80px 20px;
    background-color: var(--bg-dark);
}

.quote-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.quote-mark {
    font-size: 120px;
    color: var(--color-primary);
    line-height: 1;
    display: block;
    height: 50px;
    opacity: 0.3;
}

blockquote {
    font-size: clamp(18px, 3vw, 26px);
    font-style: italic;
    color: #ffffff;
    margin-bottom: 24px;
}

.quote-author {
    font-weight: bold;
    color: var(--color-accent);
    font-style: normal;
}

/* Program Page (grid-6cards) */
.inner-hero {
    background-color: var(--color-secondary);
    padding: 80px 20px;
    text-align: center;
}

.inner-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.inner-hero h1 {
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 16px;
}

.program-grid-section {
    padding: 80px 0;
}

.program-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.program-card {
    background-color: var(--bg-card);
    padding: 40px;
    border-radius: 36px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    position: relative;
}

.card-num {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 48px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.05);
}

.program-card h3 {
    margin-bottom: 16px;
    font-size: 22px;
    color: var(--color-accent);
}

/* Stats Section */
.stats-section {
    background-color: rgba(0, 96, 100, 0.1);
    padding: 60px 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-val {
    font-size: 48px;
    font-weight: bold;
    color: var(--color-accent);
}

.stat-lbl {
    font-size: 16px;
    color: var(--text-muted);
}

/* FAQ Section */
.faq-section {
    padding: 80px 20px;
    background-color: rgba(255, 255, 255, 0.01);
}

.faq-list {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    background-color: var(--bg-card);
    padding: 24px;
    border-radius: 24px;
    margin-bottom: 20px;
}

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

/* Mission Page (timeline-dates) */
.mission-timeline-section {
    padding: 80px 0;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 40px auto 0;
    padding: 0 20px;
}

.timeline-item {
    margin-bottom: 40px;
    position: relative;
    padding-left: 40px;
    border-left: 2px solid var(--color-primary);
}

.timeline-date {
    font-size: 24px;
    font-weight: bold;
    color: var(--color-accent);
    margin-bottom: 8px;
}

.timeline-content {
    background-color: var(--bg-card);
    padding: 24px;
    border-radius: 24px;
}

.mission-image-section {
    padding: 80px 20px;
    background-color: rgba(255, 255, 255, 0.02);
}

.mission-split-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

/* Contact Page Layout */
.contact-section {
    padding: 80px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

.contact-form-side, .contact-info-side {
    background-color: var(--bg-card);
    padding: 40px;
    border-radius: 36px;
}

.custom-form {
    margin-top: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 14px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(0, 0, 0, 0.2);
    color: #ffffff;
    outline: none;
    transition: border-color 0.3s;
}

.form-group textarea {
    border-radius: 24px;
    resize: none;
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--color-primary);
}

.info-card-list {
    margin-top: 24px;
}

.info-card-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.info-icon {
    font-size: 24px;
    background-color: var(--color-primary);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.info-card-item h3 {
    font-size: 16px;
    margin-bottom: 4px;
}

/* Legal Pages */
.legal-page {
    padding: 80px 20px;
}

.legal-page h1 {
    margin-bottom: 12px;
}

.last-updated {
    margin-bottom: 40px;
    font-style: italic;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 22px;
    margin-bottom: 16px;
}

.legal-section ul {
    margin-left: 20px;
    margin-top: 12px;
    margin-bottom: 12px;
}

/* Thank Page */
.thank-page {
    padding: 100px 20px;
}

.thank-card {
    background-color: var(--bg-card);
    padding: 60px 40px;
    border-radius: 36px;
    max-width: 700px;
    margin: 0 auto;
}

.thank-icon {
    font-size: 64px;
    display: block;
    margin-bottom: 24px;
}

.next-steps {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.thank-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
}

/* Footer styling */
.site-footer {
    background-color: var(--color-secondary) !important;
    padding: 80px 20px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.footer-logo {
    font-size: 32px;
    font-weight: bold;
    color: #ffffff;
    display: block;
    margin-bottom: 16px;
}

.site-footer h4 {
    margin-bottom: 20px;
    font-size: 18px;
    color: #ffffff;
}

.site-footer ul {
    list-style: none;
}

.site-footer li {
    margin-bottom: 12px;
}

.site-footer a {
    color: var(--bg-tint);
}

.site-footer a:hover {
    color: var(--color-accent);
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 14px;
}

/* COOKIE BANNER */
#cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
    padding: 18px 24px;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 16px;
    transform: translateY(0); transition: transform 0.4s ease;
    background-color: var(--bg-card);
    border-top: 2px solid var(--color-primary);
}
#cookie-banner.hidden { transform: translateY(110%); }
#cookie-banner p { margin: 0; flex: 1; min-width: 200px; color: var(--text-light); }
#cookie-banner a { color: var(--color-accent); text-decoration: underline; }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }

.cookie-btn-accept {
    background-color: var(--color-primary);
    color: #ffffff;
    border: none;
    padding: 8px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
}

.cookie-btn-decline {
    background-color: transparent;
    color: var(--text-muted);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 8px 20px;
    border-radius: 50px;
    cursor: pointer;
}

/* Mobile-First Media Queries */

@media (min-width: 600px) {
    .thank-links {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 768px) {
    .desktop-nav {
        display: block;
    }

    .hamburger {
        display: none;
    }

    .mobile-nav {
        display: none;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .two-col-container {
        grid-template-columns: 1fr 1fr;
    }

    .program-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .mission-split-card {
        grid-template-columns: 1fr 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 6fr 4fr;
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .mobile-nav {
        display: block;
    }

    #menu-toggle:checked ~ .mobile-nav {
        max-height: 400px;
    }

    #menu-toggle:checked ~ .hamburger .line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    #menu-toggle:checked ~ .hamburger .line:nth-child(2) {
        opacity: 0;
    }

    #menu-toggle:checked ~ .hamburger .line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    #cookie-banner { flex-direction: column; align-items: flex-start; }
    .cookie-btns { width: 100%; }
    .cookie-btn-accept, .cookie-btn-decline { flex: 1; text-align: center; }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .program-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-container {
        grid-template-columns: 2fr 1fr 1fr 2fr;
    }
}