/*
  Design System:
  - design-style: minimalist
  - border-style: pill
  - shadow-style: dramatic
  - color-mode: dark
*/

/* Color Palette: Fiery Orange & Deep Purple */
:root {
    --bg-dark: #0C0F24;
    --card-bg: #1a1d3a;
    --text-light: #f0f0f0;
    --text-muted: #a0a0b0;
    --primary-accent: #D35400; /* Fiery Orange */
    --secondary-accent: #6A1E9C; /* Deep Purple */
    --border-color: #3a3d5a;
}

/* --- Global Styles & Reset --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.7;
    font-size: clamp(16px, 1.5vw, 18px);
}

a {
    color: var(--primary-accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--text-light);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3 {
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
}

.section {
    padding: 60px 0;
}

.section-title {
    font-size: clamp(28px, 5vw, 42px);
    text-align: center;
    margin-bottom: 40px;
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: -20px auto 40px;
    color: var(--text-muted);
}

.text-center {
    text-align: center;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px; /* pill style */
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-accent);
    color: #fff;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(211, 84, 0, 0.3);
    color: #fff;
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-accent);
    border-color: var(--primary-accent);
}

.btn-secondary:hover {
    background-color: var(--primary-accent);
    color: #fff;
    transform: translateY(-3px);
}


/* --- Header --- */
.site-header {
    position: relative;
    width: 100%;
    padding: 15px 10px;
    background-color: rgba(12, 15, 36, 0.8);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    font-size: clamp(24px, 4vw, 28px);
    font-weight: bold;
    z-index: 100;
    color: var(--text-light);
}

.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;
}

.menu-checkbox {
    display: none;
}

.desktop-nav {
    display: block;
}

.desktop-nav .nav-list {
    display: flex;
    list-style: none;
    gap: 32px;
}

.desktop-nav a {
    color: var(--text-muted);
    font-weight: 500;
    padding: 5px 0;
    position: relative;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-accent);
    transition: width 0.3s ease;
}

.desktop-nav a:hover::after {
    width: 100%;
}

.desktop-nav a:hover {
    color: var(--text-light);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 72px; /* Header height */
    left: 0;
    right: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
    z-index: 99;
    background-color: var(--bg-dark);
    border-bottom: 1px solid var(--border-color);
}

.mobile-nav ul {
    list-style: none;
    padding: 20px;
}

.mobile-nav li {
    padding: 12px 0;
    text-align: center;
}

.mobile-nav a {
    color: var(--text-light);
    font-size: 18px;
    width: 100%;
    display: block;
}

/* --- Footer --- */
.site-footer {
    background-color: #080a18;
    color: var(--text-muted) !important;
    padding: 50px 0 0;
    border-top: 1px solid var(--border-color);
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-column .footer-heading {
    color: var(--text-light) !important;
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-muted) !important;
}

.footer-links a:hover {
    color: var(--primary-accent) !important;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
}

/* --- Hero Section (gradient-center) --- */
.hero-gradient {
    padding: 120px 0;
    background: radial-gradient(circle at 50% 50%, var(--secondary-accent) 0%, var(--bg-dark) 70%);
    text-align: center;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 800px;
}

.hero-title {
    font-size: clamp(36px, 7vw, 64px);
    color: #fff;
}

.hero-subtitle {
    font-size: clamp(18px, 2.5vw, 22px);
    color: var(--text-muted);
    margin: 20px auto 40px;
    max-width: 650px;
}

/* --- Benefits Section (asymmetrical) --- */
.benefits-asymm-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.benefit-card {
    background-color: var(--card-bg);
    padding: 32px;
    border-radius: 28px; /* pill style */
    border: 1px solid var(--border-color);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.22); /* dramatic shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.30); /* dramatic hover shadow */
}

.card-title {
    color: var(--primary-accent);
    font-size: 22px;
}

.featured-card {
    background: linear-gradient(145deg, var(--secondary-accent), var(--card-bg));
}

/* --- CTA Banner --- */
.cta-banner {
    background-color: var(--card-bg);
    padding: 60px 0;
    text-align: center;
}

.cta-title {
    font-size: clamp(26px, 5vw, 36px);
}

.cta-subtitle {
    color: var(--text-muted);
    margin: 10px auto 30px;
    max-width: 600px;
}

/* --- Checklist Block --- */
.checklist-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px 40px;
    max-width: 900px;
    margin: 0 auto;
}
.checklist {
    list-style: none;
}
.checklist li {
    font-size: 18px;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
}
.checkmark {
    color: var(--primary-accent);
    margin-right: 12px;
    font-weight: bold;
    line-height: 1.5;
}

/* --- Quote Highlight --- */
.quote-highlight-section {
    background-color: var(--secondary-accent);
    padding: 80px 0;
}
.quote-highlight {
    text-align: center;
    font-size: clamp(22px, 4vw, 32px);
    font-style: italic;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}
.quote-mark {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 100px;
    color: rgba(255, 255, 255, 0.1);
    font-family: serif;
}
.quote-highlight cite {
    display: block;
    font-size: 16px;
    margin-top: 20px;
    font-style: normal;
    color: var(--text-muted);
}

/* --- Stats Bar --- */
.stats-bar {
    background-color: var(--card-bg);
    padding: 40px 0;
}
.stats-bar-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}
.stat-item {
    text-align: center;
}
.stat-number {
    font-size: clamp(40px, 8vw, 60px);
    font-weight: 700;
    color: var(--primary-accent);
    line-height: 1;
}
.stat-label {
    font-size: 16px;
    color: var(--text-muted);
}

/* --- Program Page (grid-6cards) --- */
.program-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
.program-card {
    background-color: var(--card-bg);
    padding: 24px;
    border-radius: 28px;
    border: 1px solid var(--border-color);
    box-shadow: 0 18px 50px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}
.program-card:hover {
    transform: translateY(-5px);
}

/* --- Mission Page (timeline-dates) --- */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}
.timeline::after {
    content: '';
    position: absolute;
    width: 3px;
    background-color: var(--border-color);
    top: 0;
    bottom: 0;
    left: 20px;
}
.timeline-item {
    padding: 10px 40px 30px 60px;
    position: relative;
}
.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: var(--primary-accent);
    border: 4px solid var(--bg-dark);
    top: 15px;
    left: 11.5px;
    border-radius: 50%;
    z-index: 1;
}
.timeline-date {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-accent);
    margin-bottom: 5px;
}
.timeline-title {
    font-size: 20px;
    color: var(--text-light);
}

/* --- Page Hero --- */
.page-hero {
    text-align: center;
    padding-bottom: 30px;
}
.page-title {
    font-size: clamp(32px, 6vw, 50px);
}
.page-subtitle {
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-muted);
}

/* --- Contact Page --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.contact-info-item {
    margin-bottom: 24px;
}
.contact-info-item h3 {
    color: var(--primary-accent);
    font-size: 18px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}
.contact-form label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-muted);
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--border-color);
    background-color: var(--card-bg);
    border-radius: 50px; /* pill style */
    color: var(--text-light);
    font-size: 16px;
}
.contact-form textarea {
    border-radius: 28px; /* pill style */
    resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-accent);
}

/* --- Other Components & Content Styling --- */
.content-image-split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}
.content-image {
    border-radius: 28px;
    box-shadow: 0 24px 64px rgba(0,0,0,0.25);
}
.image-highlight-section {
    position: relative;
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(12, 15, 36, 0.7);
}
.image-highlight-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
}
.image-highlight-title {
    font-size: clamp(28px, 5vw, 40px);
}
.faq-container .faq-item {
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
}
.faq-question {
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-answer {
    padding-top: 15px;
    color: var(--text-muted);
}
.text-content {
    max-width: 800px;
    margin: 0 auto;
}
.thank-you-section .thank-you-actions {
    margin-top: 40px;
}
.thank-you-section .action-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}


/* --- 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(--card-bg);
    border-top: 1px solid var(--border-color);
    box-shadow: 0 -10px 40px rgba(0,0,0,0.3);
}
#cookie-banner.hidden { transform: translateY(120%); }
#cookie-banner p { margin: 0; flex: 1; min-width: 200px; font-size: 15px; }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }
.cookie-btn-accept, .cookie-btn-decline {
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid var(--primary-accent);
    cursor: pointer;
    font-weight: 600;
}
.cookie-btn-accept {
    background-color: var(--primary-accent);
    color: #fff;
}
.cookie-btn-decline {
    background-color: transparent;
    color: var(--primary-accent);
}
.values-list {
    padding-left: 20px;
}
/* --- Media Queries (Mobile First) --- */

@media (max-width: 768px) {
    .desktop-nav { display: none; }
    .hamburger,
    .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); }
}

@media (min-width: 600px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .stats-bar-container {
        flex-direction: row;
        justify-content: space-around;
    }
}

@media (min-width: 768px) {
    .container {
        padding-left: 24px;
        padding-right: 24px;
    }
    .section {
        padding: 80px 0;
    }
    .benefits-asymm-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .featured-card {
        grid-column: 1 / -1;
    }
    .checklist-grid {
        grid-template-columns: 1fr 1fr;
    }
    .program-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-grid {
        grid-template-columns: 1fr 1.2fr;
    }
    .content-image-split {
        grid-template-columns: 1fr 1fr;
    }
    .content-image-split.reverse .content-part {
        order: 2;
    }
    .content-image-split.reverse .image-part {
        order: 1;
    }
}

@media (min-width: 992px) {
    .footer-container {
        grid-template-columns: repeat(4, 1fr);
    }
    .program-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .benefits-asymm-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: auto auto;
    }
    .featured-card {
        grid-column: 1 / 3;
        grid-row: 1 / 3;
    }
}

@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; }
}