/*
  DESIGN SYSTEM:
  - design-style: minimalist
  - border-style: pill
  - shadow-style: flat
  - color-mode: mixed
  - Color Palette: Warm Amber & Deep Plum
*/

:root {
    --primary-color: #E67E22; /* Warm Amber */
    --secondary-color: #9C1C66; /* Deep Plum */
    --accent-color: #F4D03F; /* Gold Accent */
    --dark-bg: #212121;
    --light-bg: #FDFEFE;
    --dark-text: #333333;
    --light-text: #F5F5F5;
    --border-color: #E0E0E0;
    --font-primary: 'Helvetica Neue', Arial, sans-serif;
}

/* --- Global Styles & Reset --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--light-bg);
    color: var(--dark-text);
    line-height: 1.7;
    font-size: clamp(16px, 1.5vw, 18px);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 6vw, 4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.5rem); }

p {
    margin-bottom: 1rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.section {
    padding: 64px 0;
}

.section-dark { background-color: var(--dark-bg); color: var(--light-text); }
.section-light { background-color: var(--light-bg); color: var(--dark-text); }
.section-accent { background-color: var(--secondary-color); color: var(--light-text); }

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-title {
    margin-bottom: 8px;
}

.section-subtitle {
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

.text-container {
    max-width: 800px;
    margin: 0 auto;
}
.text-container ul {
    list-style: disc;
    padding-left: 20px;
}
.text-container ul li {
    margin-bottom: 10px;
}

.text-center {
    text-align: center;
}

/* --- Header --- */
.site-header {
    position: relative;
    width: 100%;
    padding: 15px 10px;
    background-color: var(--dark-bg);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    z-index: 100;
    color: var(--light-text);
}

.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(--light-text);
    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;
    margin: 0;
    padding: 0;
}
.desktop-nav .nav-list a {
    color: var(--light-text);
    font-weight: 500;
    padding: 5px 0;
    position: relative;
}
.desktop-nav .nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}
.desktop-nav .nav-list a:hover::after {
    width: 100%;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
    z-index: 99;
    background-color: var(--dark-bg);
}

.mobile-nav ul {
    list-style: none;
    padding: 20px;
    margin: 0;
}

.mobile-nav li {
    padding: 12px 0;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mobile-nav a {
    color: var(--light-text);
    font-size: 18px;
    display: block;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: bold;
    text-align: center;
    transition: transform 0.2s ease, background-color 0.3s ease;
    border: 1px solid transparent;
    min-height: 44px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--light-text);
    border-color: var(--primary-color);
}
.btn-primary:hover {
    background-color: #d35400; /* Darker amber */
    color: var(--light-text);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--light-text);
    border: 1px solid var(--light-text);
}
.btn-secondary:hover {
    background-color: var(--light-text);
    color: var(--dark-bg);
    transform: translateY(-2px);
}


/* --- Hero Section (Diagonal Split) --- */
.hero-diagonal-split {
    display: flex;
    flex-direction: column;
    min-height: 80vh;
}
.hero-content {
    padding: 60px 0;
    flex: 1;
    display: flex;
    align-items: center;
}
.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    max-width: 600px;
    margin: 24px 0 32px;
    opacity: 0.9;
}
.hero-image-container {
    width: 100%;
    height: 300px;
}
.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 768px) {
    .hero-diagonal-split {
        flex-direction: row;
        min-height: calc(100vh - 70px);
    }
    .hero-content {
        width: 50%;
        padding-right: 32px;
    }
    .hero-image-container {
        width: 50%;
        height: auto;
        clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
    }
}

/* --- Benefits Section --- */
.benefits-grid-3col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
.benefit-card {
    border: 1px solid var(--border-color);
    padding: 32px;
    border-radius: 28px;
    background-color: var(--light-bg);
}
.card-title {
    color: var(--secondary-color);
}

/* --- Quote Highlight Section --- */
.quote-highlight-section {
    padding: 80px 0;
}
.quote-content {
    position: relative;
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
}
.quote-mark {
    font-size: 6rem;
    color: var(--primary-color);
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.3;
    line-height: 1;
}
.quote-text {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    font-style: italic;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}
.quote-author {
    font-weight: bold;
    font-style: normal;
}

/* --- Expert Block Section --- */
.expert-block-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}
.expert-image-wrapper {
    border-radius: 28px;
    overflow: hidden;
}
.expert-signature {
    margin-top: 24px;
}
.expert-name {
    display: block;
    font-weight: bold;
    color: var(--secondary-color);
}
.expert-title {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* --- CTA Banner Section --- */
.cta-banner {
    padding: 60px 0;
}
.cta-banner-content {
    text-align: center;
}
.cta-banner-content h2 {
    color: var(--light-text);
}
.cta-banner-content p {
    max-width: 600px;
    margin: 16px auto 32px;
}

/* --- Testimonials Section (Vertical) --- */
.testimonials-vertical-list {
    max-width: 800px;
    margin: 0 auto;
}
.testimonial-item {
    padding: 24px 0;
    border-bottom: 1px solid var(--border-color);
}
.testimonial-item:first-child {
    padding-top: 0;
}
.testimonial-item:last-child {
    border-bottom: none;
}
.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}
.testimonial-author {
    font-weight: bold;
    font-size: 1.1rem;
}
.testimonial-rating {
    color: var(--accent-color);
}
.testimonial-text {
    font-style: italic;
    opacity: 0.9;
    margin-bottom: 0;
}

/* --- Page Hero --- */
.page-hero {
    padding: 60px 0;
    text-align: center;
}
.page-title {
    color: var(--light-text);
}
.page-subtitle {
    max-width: 650px;
    margin: 0 auto;
    opacity: 0.9;
}

/* --- Program Page: Timeline --- */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}
.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background-color: var(--border-color);
    top: 0;
    bottom: 0;
    left: 15px;
}
.timeline-item {
    padding: 20px 0 20px 50px;
    position: relative;
}
.timeline-dot {
    content: '';
    position: absolute;
    left: 8px;
    top: 28px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--primary-color);
    border: 2px solid var(--light-bg);
    z-index: 1;
}
.timeline-content h3 {
    color: var(--secondary-color);
}

/* --- Program Page: Image Feature --- */
.image-feature-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}
.image-feature-img {
    border-radius: 28px;
}

/* --- Mission Page --- */
.story-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}
.story-image-wrapper img {
    border-radius: 28px;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
.value-card {
    border: 1px solid var(--border-color);
    padding: 24px;
    border-radius: 28px;
}
.value-card h3 {
    color: var(--primary-color);
}

.manifesto-container {
    padding: 40px !important;
    text-align: center;
}
.manifesto-container p {
    font-size: 1.2rem;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto;
}

/* --- Contact Page --- */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}
.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: 12px;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 1rem;
}
.form-group textarea {
    border-radius: 28px;
}
.form-btn {
    width: 100%;
}

.contact-details h4 {
    color: var(--secondary-color);
    margin-bottom: 4px;
}
.contact-detail-item {
    margin-bottom: 24px;
}

/* --- Thank You Page --- */
.thank-you-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
}
.thank-you-title {
    color: var(--secondary-color);
}
.next-steps {
    margin-top: 48px;
    border-top: 1px solid var(--border-color);
    padding-top: 32px;
}
.next-steps-links {
    margin-top: 24px;
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
.back-to-home {
    display: inline-block;
    margin-top: 48px;
}

/* --- Footer --- */
.site-footer {
    background-color: var(--dark-bg) !important;
    color: var(--light-text) !important;
    padding: 48px 0 0;
}
.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
    padding-bottom: 48px;
}
.footer-logo {
    color: var(--light-text) !important;
    margin-bottom: 16px;
}
.footer-about p {
    opacity: 0.8;
}
.footer-links h4, .footer-legal h4, .footer-contact h4 {
    color: var(--light-text) !important;
    margin-bottom: 16px;
}
.footer-links ul li, .footer-legal ul li {
    margin-bottom: 10px;
}
.footer-links a, .footer-legal a, .footer-contact a {
    color: var(--light-text) !important;
    opacity: 0.8;
}
.footer-links a:hover, .footer-legal a:hover, .footer-contact a:hover {
    opacity: 1;
    color: var(--primary-color) !important;
}
.footer-contact p {
    opacity: 0.8;
    margin-bottom: 8px;
}
.footer-copyright {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* --- 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(--dark-bg);
    color: var(--light-text);
    border-top: 1px solid rgba(255,255,255,0.1);
}
#cookie-banner.hidden { transform: translateY(110%); }
#cookie-banner p { margin: 0; flex: 1; min-width: 200px; font-size: 0.9rem; }
#cookie-banner a { color: var(--accent-color); text-decoration: underline; }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }
.cookie-btn-accept, .cookie-btn-decline {
    padding: 8px 16px;
    border-radius: 50px;
    cursor: pointer;
    border: 1px solid;
    font-weight: bold;
    min-height: 40px;
}
.cookie-btn-accept {
    background-color: var(--primary-color);
    color: var(--light-text);
    border-color: var(--primary-color);
}
.cookie-btn-decline {
    background-color: transparent;
    color: var(--light-text);
    border-color: var(--light-text);
}

/* --- Media Queries (Mobile-First) --- */
@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); }
}

@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; }
}

@media (min-width: 768px) {
    .container { padding: 0 24px; }
    .section { padding: 80px 0; }
    .benefits-grid-3col { grid-template-columns: repeat(3, 1fr); }
    .expert-block-container { grid-template-columns: 300px 1fr; gap: 48px; }
    .image-feature-container { grid-template-columns: 1fr 1fr; }
    .story-container { grid-template-columns: 40% 1fr; gap: 48px; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-layout { grid-template-columns: 60% 1fr; }
    .form-btn { width: auto; }
}

@media (min-width: 1024px) {
    .values-grid { gap: 32px; }
    .timeline::after { left: 50%; transform: translateX(-50%); }
    .timeline-item { width: 50%; padding: 20px 40px; }
    .timeline-item:nth-child(odd) { left: 0; padding-right: 70px; text-align: right; }
    .timeline-item:nth-child(even) { left: 50%; padding-left: 70px; }
    .timeline-dot { display: none; }
}