/* 
 * Palette: aqua-amber
 * Primary: #005C60
 * Secondary: #007B82
 * Accent: #E8A020
 * Tint: #ECF9FA
 */

:root {
    --color-primary: #005C60;
    --color-secondary: #007B82;
    --color-accent: #E8A020;
    --bg-tint: #ECF9FA;
    --bg-dark: #071517;
    --bg-dark-card: #0c2326;
    --text-light: #ECF9FA;
    --text-muted: #8faeb2;
}

/* Base resets & typography */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    font-size: clamp(16px, 1.1vw, 20px);
}

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--bg-tint);
}

/* Layout Containers */
.footer-container,
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 60px 0;
}

@media (min-width: 768px) {
    .section {
        padding: 100px 0;
    }
}

/* Header Layout */
.site-header {
    position: relative;
    width: 100%;
    padding: 15px 10px;
    background-color: var(--bg-dark);
    border-bottom: 1px solid rgba(236, 249, 250, 0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* Logo */
.logo {
    font-size: 28px;
    font-weight: 800;
    z-index: 100;
    color: var(--color-accent);
    letter-spacing: -1px;
}

/* 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;
    background-color: var(--color-accent);
    margin: 5px 0;
    transition: 0.3s;
    border-radius: 999px;
}

.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: 600;
    font-size: 16px;
    padding: 8px 16px;
    border-radius: 999px;
    transition: all 0.3s ease;
}

.desktop-nav .nav-list a:hover {
    background-color: var(--color-primary);
    color: var(--text-light);
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 99;
    background-color: var(--bg-dark);
}

.mobile-nav ul {
    list-style: none;
    padding: 30px 20px;
    margin: 0;
}

.mobile-nav li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(236, 249, 250, 0.05);
}

.mobile-nav a {
    color: var(--text-light);
    font-size: 20px;
    font-weight: 600;
    display: block;
}

/* Mobile responsive menu */
@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);
    }
}

/* Buttons (pill style) */
.btn {
    display: inline-block;
    padding: 16px 36px;
    font-weight: 700;
    font-size: 16px;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-align: center;
    border: none;
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--bg-dark);
    box-shadow: 0 12px 32px rgba(232, 160, 32, 0.3);
}

.btn-primary:hover {
    background-color: var(--bg-tint);
    color: var(--color-primary);
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(236, 249, 250, 0.2);
}

/* Hero Section (bold-text-only) */
.hero-bold-text {
    background: radial-gradient(circle at top left, var(--color-primary), var(--bg-dark) 70%);
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero-bold-text {
        padding: 160px 20px;
    }
}

.hero-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    background-color: rgba(232, 160, 32, 0.15);
    color: var(--color-accent);
    padding: 8px 24px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 24px;
}

.hero-main-title {
    font-size: clamp(38px, 6vw, 76px);
    line-height: 1.1;
    font-weight: 900;
    color: var(--text-light);
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: clamp(18px, 2vw, 24px);
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

/* Sections Header */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-tag {
    color: var(--color-accent);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 18px;
}

/* benefits-5asymm layout (soft-organic, pill, dramatic) */
.asymm-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .asymm-grid {
        grid-template-columns: repeat(6, 1fr);
    }

    .card-large {
        grid-column: span 3;
    }

    .card-small {
        grid-column: span 2;
    }
}

.asymm-card {
    background-color: var(--bg-dark-card);
    padding: 40px;
    border-radius: 36px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(236, 249, 250, 0.05);
}

.asymm-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.35);
    border-color: rgba(232, 160, 32, 0.3);
}

.card-num {
    font-size: 48px;
    font-weight: 900;
    color: rgba(232, 160, 32, 0.1);
    position: absolute;
    top: 20px;
    right: 30px;
}

.asymm-card .card-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-light);
}

.asymm-card .card-text {
    color: var(--text-muted);
    font-size: 16px;
}

/* two-col-image split block */
.split-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

@media (min-width: 1024px) {
    .split-container {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }
}

.split-image-box {
    position: relative;
}

.split-img {
    width: 100%;
    height: auto;
    border-radius: 48px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
    display: block;
    object-fit: cover;
}

.visual-pill-shadow {
    box-shadow: 0 32px 80px rgba(0, 123, 130, 0.3);
}

.styled-list {
    list-style: none;
    margin: 30px 0;
}

.styled-list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 20px;
    font-size: 17px;
    color: var(--text-muted);
}

.styled-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-accent);
    font-weight: 900;
    font-size: 18px;
}

/* accordion-faq */
.accordion-group {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    background-color: var(--bg-dark-card);
    border-radius: 28px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
    border: 1px solid rgba(236, 249, 250, 0.03);
}

.accordion-header {
    padding: 24px 30px;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-light);
}

.accordion-header::-webkit-details-marker {
    display: none;
}

.accordion-header::after {
    content: "+";
    font-size: 24px;
    color: var(--color-accent);
    transition: transform 0.3s ease;
}

.accordion-item[open] .accordion-header::after {
    transform: rotate(45deg);
}

.accordion-content {
    padding: 0 30px 24px 30px;
    color: var(--text-muted);
    font-size: 16px;
    border-top: 1px solid rgba(236, 249, 250, 0.05);
    margin-top: -1px;
}

/* stats-bar */
.stats-bar-section {
    background-color: var(--color-primary);
    padding: 60px 0;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    text-align: center;
}

@media (min-width: 768px) {
    .stats-container {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 900;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--bg-tint);
}

/* testimonials */
.testimonials-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 1024px) {
    .testimonials-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background-color: var(--bg-dark-card);
    padding: 40px;
    border-radius: 36px;
    box-shadow: 0 24px 64px rgba(0,0,0,0.22);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(236, 249, 250, 0.03);
}

.testimonial-rating {
    color: var(--color-accent);
    margin-bottom: 20px;
    font-size: 18px;
}

.testimonial-text {
    color: var(--text-muted);
    font-size: 16px;
    font-style: italic;
    margin-bottom: 30px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--color-secondary);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 700;
    font-size: 16px;
    color: var(--text-light);
}

.author-role {
    font-size: 12px;
    color: var(--text-muted);
}

/* program.html specific */
.text-center-custom {
    text-align: center;
}

.max-width-center {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-main-title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
}

.grid-6cards-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .grid-6cards-layout {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .grid-6cards-layout {
        grid-template-columns: repeat(3, 1fr);
    }
}

.program-module-card {
    background-color: var(--bg-dark-card);
    padding: 40px;
    border-radius: 36px;
    box-shadow: 0 24px 64px rgba(0,0,0,0.22);
    border: 1px solid rgba(236, 249, 250, 0.03);
    transition: transform 0.3s ease;
}

.program-module-card:hover {
    transform: translateY(-5px);
}

.module-header {
    margin-bottom: 20px;
}

.module-num {
    color: var(--color-accent);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.module-title {
    font-size: 22px;
    font-weight: 700;
}

.module-desc {
    color: var(--text-muted);
    font-size: 16px;
}

/* timeline-dates mission page */
.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 30px;
}

.timeline-container::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    bottom: 10px;
    width: 4px;
    background-color: var(--color-secondary);
    border-radius: 999px;
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-badge {
    position: absolute;
    left: -50px;
    top: 0;
    background-color: var(--color-accent);
    color: var(--bg-dark);
    font-weight: 800;
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(232, 160, 32, 0.3);
}

.timeline-content {
    background-color: var(--bg-dark-card);
    padding: 30px;
    border-radius: 36px;
    box-shadow: 0 24px 64px rgba(0,0,0,0.22);
    border: 1px solid rgba(236, 249, 250, 0.03);
}

.timeline-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.timeline-text {
    color: var(--text-muted);
    font-size: 16px;
}

/* contact.html specific */
.contact-split-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

@media (min-width: 1024px) {
    .contact-split-container {
        grid-template-columns: 1.5fr 1fr;
        gap: 80px;
    }
}

.custom-contact-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-muted);
}

.form-group input, 
.form-group textarea {
    background-color: var(--bg-dark-card);
    border: 1px solid rgba(236, 249, 250, 0.1);
    border-radius: 999px; /* pill input */
    padding: 16px 24px;
    color: var(--text-light);
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
}

.form-group textarea {
    border-radius: 28px; /* pill-like textarea */
    resize: none;
}

.form-group input:focus, 
.form-group textarea:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 12px rgba(232, 160, 32, 0.2);
}

.btn-submit {
    width: 100%;
}

.info-card {
    background-color: var(--bg-dark-card);
    padding: 40px;
    border-radius: 36px;
    box-shadow: 0 24px 64px rgba(0,0,0,0.22);
    border: 1px solid rgba(236, 249, 250, 0.03);
}

.info-card-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.info-card-text {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.info-detail-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(236, 249, 250, 0.05);
    padding-bottom: 16px;
}

.info-detail-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.detail-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-accent);
}

.detail-value {
    font-size: 16px;
    color: var(--text-light);
}

/* policy pages structure */
.policy-container {
    max-width: 800px;
}

.policy-last-update {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 40px;
}

.policy-text-block h2 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 16px;
}

.policy-text-block p, 
.policy-text-block ul {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 24px;
}

.policy-text-block ul {
    padding-left: 20px;
}

.policy-text-block li {
    margin-bottom: 12px;
}

/* thank-you page */
.thank-container {
    padding: 80px 20px;
}

.thank-icon-box {
    width: 80px;
    height: 80px;
    background-color: var(--color-accent);
    color: var(--bg-dark);
    font-size: 40px;
    font-weight: 900;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px auto;
    box-shadow: 0 12px 32px rgba(232, 160, 32, 0.4);
}

.thank-next-steps {
    margin-top: 60px;
    text-align: left;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.thank-next-steps h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.step-card {
    background-color: var(--bg-dark-card);
    padding: 30px;
    border-radius: 28px;
    border: 1px solid rgba(236, 249, 250, 0.03);
}

.step-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.step-card p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 20px;
}

.step-link {
    font-weight: 700;
    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-dark-card);
    border-top: 1px solid rgba(236, 249, 250, 0.1);
    box-shadow: 0 -12px 40px rgba(0,0,0,0.4);
}

#cookie-banner.hidden { 
    transform: translateY(110%); 
}

#cookie-banner p { 
    margin: 0; 
    flex: 1; 
    min-width: 200px; 
    font-size: 14px;
    color: var(--text-muted);
}

#cookie-banner p 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-accent);
    color: var(--bg-dark);
    border: none;
    padding: 10px 24px;
    font-weight: 700;
    border-radius: 999px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.cookie-btn-accept:hover {
    background-color: var(--bg-tint);
    color: var(--color-primary);
}

.cookie-btn-decline {
    background-color: transparent;
    border: 1px solid rgba(236, 249, 250, 0.2);
    color: var(--text-light);
    padding: 10px 24px;
    font-weight: 700;
    border-radius: 999px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.cookie-btn-decline:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

@media (max-width: 600px) {
    #cookie-banner { 
        flex-direction: column; 
        align-items: flex-start; 
    }
    .cookie-btns { 
        width: 100%; 
    }
    .cookie-btn-accept, .cookie-btn-decline { 
        flex: 1; 
        text-align: center; 
    }
}

/* Footer Layout (specific protection) */
.site-footer {
    padding: 60px 0 30px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 2fr;
    }
}

.footer-brand-box .logo {
    display: inline-block;
    margin-bottom: 16px;
}

.footer-about-text {
    font-size: 14px;
    line-height: 1.6;
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links-list {
    list-style: none;
}

.footer-links-list li {
    margin-bottom: 12px;
}

.footer-links-list a {
    font-size: 14px;
    font-weight: 600;
}

.footer-contact-box p {
    font-size: 14px;
    margin-bottom: 12px;
}

.footer-bottom-bar {
    padding-top: 30px;
    text-align: center;
}

.footer-bottom-bar p {
    font-size: 12px;
}