/* teal-copper palette implementation */
:root {
    --color-primary: #006064;
    --color-secondary: #00838F;
    --color-accent: #A86030;
    --bg-tint: #E8F8FA;
    
    --bg-dark-primary: #0A191B;
    --bg-dark-card: #12282B;
    --text-light: #EBF7F8;
    --text-muted: #9BB3B6;
    
    --border-pill: 36px;
    --btn-pill: 50px;
    
    --shadow-dramatic: 0 24px 64px rgba(0, 0, 0, 0.45);
    --shadow-hover: 0 32px 80px rgba(168, 96, 48, 0.25);
}

/* Global Reset & Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
    background-color: var(--bg-dark-primary);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    opacity: 0.85;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Typography (Bold Editorial Style) */
h1, h2, h3, h4 {
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-light);
}

.hero-editorial-title {
    font-size: clamp(38px, 6vw, 78px);
    letter-spacing: -1.5px;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(28px, 4vw, 48px);
    margin-bottom: 12px;
}

.sub-tag {
    display: inline-block;
    color: var(--color-accent);
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 18px;
    max-width: 650px;
    margin: 0 auto;
}

/* Header & Navigation Template */
.site-header {
    position: relative;
    width: 100%;
    padding: 15px 10px;
    background-color: rgba(10, 25, 27, 0.95);
    border-bottom: 1px solid rgba(232, 248, 250, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    font-size: 26px;
    font-weight: 900;
    color: var(--text-light);
    letter-spacing: -0.5px;
    z-index: 100;
}

.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(--text-light);
    margin: 5px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.menu-checkbox {
    display: none;
}

.desktop-nav {
    display: block;
}

.desktop-nav .nav-list {
    display: flex;
    list-style: none;
    gap: 32px;
    margin: 0;
    padding: 0;
}

.desktop-nav a {
    color: var(--text-light);
    font-weight: 600;
    font-size: 15px;
}

.desktop-nav a:hover {
    color: var(--color-accent);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-dark-card);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 99;
    box-shadow: var(--shadow-dramatic);
}

.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.08);
}

.mobile-nav a {
    color: var(--text-light);
    font-size: 18px;
    font-weight: 600;
}

/* Mobile Media Queries */
@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);
    }
}

/* Common Layout Utilities */
.section-padding {
    padding: 60px 16px;
}

@media (min-width: 768px) {
    .section-padding {
        padding: 90px 24px;
    }
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header-center {
    text-align: center;
    margin-bottom: 48px;
}

.text-center {
    text-align: center;
}

/* Button Pill Components */
.btn-primary-pill, .btn-secondary-pill {
    display: inline-block;
    padding: 16px 36px;
    border-radius: var(--btn-pill);
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    text-align: center;
    border: none;
    transition: all 0.3s ease;
}

.btn-primary-pill {
    background-color: var(--color-primary);
    color: var(--text-light);
    box-shadow: 0 8px 24px rgba(0, 96, 100, 0.4);
}

.btn-primary-pill:hover {
    background-color: var(--color-secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary-pill {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--color-primary);
}

.btn-secondary-pill:hover {
    background-color: var(--color-primary);
    color: var(--text-light);
}

.btn-full {
    width: 100%;
}

/* INDEX: Hero Circle Layout */
.hero-circle-section {
    padding: 60px 16px 80px;
    background: linear-gradient(180deg, var(--bg-dark-primary) 0%, var(--bg-dark-card) 100%);
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 992px) {
    .hero-container {
        grid-template-columns: 1.2fr 0.8fr;
    }
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background-color: rgba(0, 131, 143, 0.2);
    border: 1px solid var(--color-secondary);
    border-radius: 999px;
    color: var(--bg-tint);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.hero-action-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image-wrapper {
    display: flex;
    justify-content: center;
}

.circle-image-frame {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    overflow: hidden;
    border: 6px solid var(--color-primary);
    box-shadow: var(--shadow-dramatic);
    position: relative;
}

@media (min-width: 576px) {
    .circle-image-frame {
        width: 380px;
        height: 380px;
    }
}

.circle-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* SECTION 1: Benefits Timeline */
.vertical-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.vertical-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 24px;
    width: 4px;
    background: var(--color-primary);
}

@media (min-width: 768px) {
    .vertical-timeline::before {
        left: 50%;
        transform: translateX(-2px);
    }
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .timeline-item {
        flex-direction: row;
        justify-content: flex-end;
    }

    .timeline-item:nth-child(even) {
        flex-direction: row-reverse;
    }
}

.timeline-marker {
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    z-index: 2;
    box-shadow: var(--shadow-dramatic);
}

@media (min-width: 768px) {
    .timeline-marker {
        left: 50%;
        transform: translateX(-50%);
    }
}

.timeline-content {
    background-color: var(--bg-dark-card);
    padding: 30px;
    border-radius: var(--border-pill);
    box-shadow: var(--shadow-dramatic);
    margin-left: 70px;
    border: 1px solid rgba(232, 248, 250, 0.05);
}

@media (min-width: 768px) {
    .timeline-content {
        width: 42%;
        margin-left: 0;
    }
}

.timeline-content h3 {
    color: var(--bg-tint);
    margin-bottom: 12px;
    font-size: 20px;
}

.timeline-content p {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 10px;
}

/* SECTION 2: Icon Features Grid */
.features-grid-6 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .features-grid-6 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid-6 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card-pill {
    background-color: var(--bg-dark-card);
    padding: 36px 28px;
    border-radius: var(--border-pill);
    border: 1px solid rgba(232, 248, 250, 0.05);
    box-shadow: var(--shadow-dramatic);
    transition: transform 0.3s ease;
}

.feature-card-pill:hover {
    transform: translateY(-5px);
}

.feature-emoji {
    font-size: 38px;
    margin-bottom: 16px;
    display: inline-block;
}

.feature-card-pill h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-light);
}

.feature-card-pill p {
    color: var(--text-muted);
    font-size: 15px;
}

/* SECTION 3: Stats Bar */
.stats-bar-section {
    background-color: var(--color-primary);
    padding: 48px 16px;
    box-shadow: var(--shadow-dramatic);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    text-align: center;
}

@media (min-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-number {
    display: block;
    font-size: clamp(36px, 5vw, 54px);
    font-weight: 900;
    color: var(--text-light);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--bg-tint);
    font-weight: 600;
}

/* Split Image Info */
.split-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 992px) {
    .split-wrapper {
        grid-template-columns: 1fr 1fr;
    }
}

.integrated-img-pill, .split-img {
    border-radius: var(--border-pill);
    box-shadow: var(--shadow-dramatic);
    width: 100%;
    object-fit: cover;
}

.split-text-box h2 {
    margin-bottom: 20px;
}

.split-text-box p {
    color: var(--text-muted);
    margin-bottom: 16px;
}

.reverse-split {
    direction: ltr;
}

@media (min-width: 992px) {
    .reverse-split .split-text-box {
        order: 1;
    }
    .reverse-split .split-image-box {
        order: 2;
    }
}

/* SECTION 4: Accordion FAQ */
.accordion-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    background-color: var(--bg-dark-card);
    border-radius: 20px;
    margin-bottom: 16px;
    border: 1px solid rgba(232, 248, 250, 0.08);
    overflow: hidden;
}

.accordion-header {
    padding: 20px 24px;
    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: 14px;
    color: var(--color-accent);
}

details[open] .accordion-header::after {
    content: '➖';
}

.accordion-body {
    padding: 0 24px 20px 24px;
    color: var(--text-muted);
    font-size: 15px;
}

/* SECTION 5: Gallery Grid */
.gallery-grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .gallery-grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gallery-card {
    position: relative;
    border-radius: var(--border-pill);
    overflow: hidden;
    height: 280px;
    box-shadow: var(--shadow-dramatic);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 25, 27, 0.9) 100%);
    font-weight: 700;
    text-align: center;
}

.placeholder-card {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.gallery-placeholder-content span {
    font-size: 40px;
    display: block;
    margin-bottom: 10px;
}

/* Form Styles */
.form-wrapper-pill {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--bg-dark-card);
    padding: 40px 24px;
    border-radius: var(--border-pill);
    box-shadow: var(--shadow-dramatic);
    border: 1px solid rgba(232, 248, 250, 0.1);
}

@media (min-width: 768px) {
    .form-wrapper-pill {
        padding: 60px 48px;
    }
}

.main-form .form-group {
    margin-bottom: 20px;
}

.main-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--bg-tint);
}

.main-form input, .main-form textarea {
    width: 100%;
    padding: 14px 20px;
    border-radius: 999px;
    background-color: rgba(10, 25, 27, 0.8);
    border: 1px solid rgba(232, 248, 250, 0.15);
    color: var(--text-light);
    font-size: 15px;
    outline: none;
}

.main-form textarea {
    border-radius: 20px;
    resize: vertical;
}

.main-form input:focus, .main-form textarea:focus {
    border-color: var(--color-accent);
}

/* PROGRAM PAGE: Numbered Sections */
.numbered-list-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.numbered-card-pill {
    background-color: var(--bg-dark-card);
    border-radius: var(--border-pill);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: var(--shadow-dramatic);
    border: 1px solid rgba(232, 248, 250, 0.05);
}

@media (min-width: 768px) {
    .numbered-card-pill {
        flex-direction: row;
        align-items: flex-start;
    }
}

.number-badge {
    font-size: 36px;
    font-weight: 900;
    color: var(--color-accent);
    background-color: rgba(168, 96, 48, 0.15);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.numbered-body h3 {
    margin-bottom: 10px;
    font-size: 22px;
}

.numbered-body p {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 8px;
}

/* MISSION PAGE: Dates Timeline */
.dates-timeline {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .dates-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
}

.date-item-pill {
    background-color: var(--bg-dark-card);
    padding: 32px;
    border-radius: var(--border-pill);
    box-shadow: var(--shadow-dramatic);
    border: 1px solid rgba(232, 248, 250, 0.05);
}

.date-badge {
    display: inline-block;
    padding: 6px 18px;
    background-color: var(--color-primary);
    color: var(--text-light);
    border-radius: 999px;
    font-weight: 800;
    font-size: 14px;
    margin-bottom: 16px;
}

.date-content h3 {
    margin-bottom: 12px;
}

.date-content p {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 8px;
}

/* CONTACT PAGE Layout */
.contact-grid-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 992px) {
    .contact-grid-layout {
        grid-template-columns: 0.9fr 1.1fr;
    }
}

.contact-info-card-pill, .contact-form-card-pill {
    background-color: var(--bg-dark-card);
    padding: 36px 28px;
    border-radius: var(--border-pill);
    box-shadow: var(--shadow-dramatic);
}

.contact-detail-item {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.detail-icon {
    font-size: 24px;
}

/* Legal & Thank Pages */
.legal-card-pill, .thank-card-pill {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--bg-dark-card);
    padding: 40px 24px;
    border-radius: var(--border-pill);
    box-shadow: var(--shadow-dramatic);
}

@media (min-width: 768px) {
    .legal-card-pill, .thank-card-pill {
        padding: 60px;
    }
}

.legal-section {
    margin-top: 28px;
}

.legal-section h2 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--bg-tint);
}

.thank-card-pill {
    text-align: center;
}

.thank-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.thank-lead {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.next-steps-box {
    background-color: rgba(10, 25, 27, 0.6);
    padding: 24px;
    border-radius: 20px;
    margin-bottom: 32px;
    text-align: left;
}

.steps-list {
    list-style: none;
    margin-top: 12px;
}

.steps-list li {
    margin-bottom: 8px;
    color: var(--text-muted);
}

/* Page Hero Banner */
.page-hero-section {
    padding: 60px 16px 40px;
    text-align: center;
    background: linear-gradient(180deg, var(--bg-dark-primary) 0%, var(--bg-dark-card) 100%);
}

.page-title {
    font-size: clamp(32px, 5vw, 56px);
    margin-bottom: 16px;
}

.page-subtitle {
    color: var(--text-muted);
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

/* Footer Section */
.site-footer {
    background-color: #050D0E !important;
    color: #EBF7F8 !important;
    padding-top: 60px;
    border-top: 1px solid rgba(232, 248, 250, 0.05);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 40px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 768px) {
    .footer-container {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
    }
}

.footer-logo {
    font-size: 24px;
    font-weight: 900;
    color: #EBF7F8 !important;
    display: inline-block;
    margin-bottom: 16px;
}

.footer-desc {
    color: #9BB3B6 !important;
    font-size: 14px;
}

.footer-col h4 {
    color: #EBF7F8 !important;
    font-size: 16px;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a, .footer-email-link {
    color: #9BB3B6 !important;
    font-size: 14px;
}

.footer-links a:hover, .footer-email-link:hover {
    color: #A86030 !important;
}

.footer-bottom {
    background-color: #020607 !important;
    padding: 20px 24px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-bottom p {
    color: #9BB3B6 !important;
    font-size: 13px;
}

/* Cookie Banner Styles */
#cookie-banner {
    position: fixed; 
    bottom: 0; 
    left: 0; 
    right: 0; 
    z-index: 9999;
    padding: 20px 24px;
    background-color: var(--bg-dark-card);
    border-top: 2px solid var(--color-primary);
    box-shadow: var(--shadow-dramatic);
    display: flex; 
    align-items: center; 
    justify-content: space-between;
    flex-wrap: wrap; 
    gap: 16px;
    transform: translateY(0); 
    transition: transform 0.4s ease;
}

#cookie-banner.hidden { 
    transform: translateY(110%); 
}

#cookie-banner p { 
    margin: 0; 
    flex: 1; 
    min-width: 260px; 
    font-size: 14px;
    color: var(--text-muted);
}

.cookie-btns { 
    display: flex; 
    gap: 12px; 
    flex-shrink: 0; 
    flex-wrap: wrap; 
}

.cookie-btn-accept, .cookie-btn-decline {
    padding: 10px 24px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.cookie-btn-accept {
    background-color: var(--color-primary);
    color: var(--text-light);
}

.cookie-btn-decline {
    background-color: transparent;
    color: var(--text-muted);
    border: 1px solid var(--text-muted);
}

@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; 
    }
}