/*
* Design Style: Minimalist
* Border Style: Pill
* Shadow Style: Dramatic
* Color Mode: Dark
* Color Palette: Graphite & Gold
*/

:root {
    --color-background: #121212;
    --color-surface: #1E1E1E;
    --color-text: #E0E0E0;
    --color-text-muted: #9E9E9E;
    --color-primary: #D4AF37;
    --color-primary-hover: #E0C56F;
    --color-border: #333333;
    --font-primary: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

/* --- Global Styles & Resets --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-background);
    color: var(--color-text);
    line-height: 1.7;
    font-size: clamp(16px, 1.5vw, 18px);
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-primary-hover);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3 {
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 80px 0;
}

.section-title {
    font-size: clamp(28px, 5vw, 42px);
    margin-bottom: 16px;
    color: var(--color-text);
}

.section-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--color-text-muted);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 48px;
}

.text-center {
    text-align: center;
}

/* --- Header & Navigation --- */
.site-header {
    position: relative;
    width: 100%;
    padding: 15px 10px;
    background-color: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
}

.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(--color-primary);
}

.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-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;
}

.desktop-nav a {
    color: var(--color-text);
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: width 0.3s ease;
}

.desktop-nav 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.4s ease-in-out;
    z-index: 99;
    background-color: var(--color-surface);
}

.mobile-nav ul {
    list-style: none;
    padding: 20px;
}

.mobile-nav li {
    padding: 12px 0;
    text-align: center;
    border-bottom: 1px solid var(--color-border);
}

.mobile-nav li:last-child {
    border-bottom: none;
}

.mobile-nav a {
    color: var(--color-text);
    font-size: 18px;
    display: block;
    width: 100%;
}

@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 --- */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
    min-height: 44px;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-background);
}

.btn-primary:hover {
    background-color: var(--color-primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
    background-color: var(--color-primary);
    color: var(--color-background);
}

/* --- Hero Section (Asymmetric) --- */
.hero-section-asymmetric {
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}
.hero-content-wrapper {
    position: relative;
    z-index: 2;
}
.hero-text-content {
    max-width: 55%;
}
.hero-title {
    font-size: clamp(36px, 7vw, 64px);
    color: var(--color-primary);
}
.hero-subtitle {
    font-size: clamp(16px, 2.5vw, 20px);
    margin: 24px 0 32px;
    max-width: 600px;
}
.hero-image-container {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    z-index: 1;
}
.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: polygon(25% 0, 100% 0, 100% 100%, 0% 100%);
}

/* --- Benefits Horizontal Scroll --- */
.benefits-hscroll-section {
    background-color: var(--color-surface);
}
.hscroll-container {
    overflow-x: auto;
    padding-bottom: 24px;
    scrollbar-width: thin;
    scrollbar-color: var(--color-primary) var(--color-surface);
}
.hscroll-wrapper {
    display: flex;
    gap: 24px;
    width: max-content;
    padding: 10px 24px;
}
.hscroll-card {
    flex: 0 0 320px;
    background-color: var(--color-background);
    padding: 32px;
    border-radius: 32px;
    border: 1px solid var(--color-border);
    box-shadow: 0 24px 64px rgba(0,0,0,0.22);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hscroll-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 32px 80px rgba(0,0,0,0.30);
}
.card-title {
    color: var(--color-primary);
    font-size: 22px;
}

/* --- CTA Banner --- */
.cta-banner-section {
    background-color: var(--color-primary);
    color: var(--color-background);
    text-align: center;
}
.cta-title {
    color: var(--color-background);
    font-size: clamp(28px, 5vw, 40px);
}
.cta-text {
    margin-bottom: 32px;
}

.cta-banner-section .btn-secondary {
    background-color: transparent;
    color: var(--color-background);
    border: 2px solid var(--color-background);
}

/* --- Stats Bar --- */
.stats-bar-section {
    background-color: var(--color-surface);
}
.stats-bar-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    text-align: center;
}
.stat-item .stat-number {
    font-size: clamp(48px, 8vw, 72px);
    font-weight: bold;
    color: var(--color-primary);
    display: block;
}
.stat-item .stat-label {
    color: var(--color-text-muted);
}

/* --- Expert Block --- */
.expert-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
    align-items: center;
}
.expert-image-placeholder {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0,0,0,0.22);
}
.expert-image-content {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.quote-text {
    font-size: 22px;
    font-style: italic;
    border-left: 3px solid var(--color-primary);
    padding-left: 24px;
    margin-bottom: 24px;
}
.expert-name {
    font-weight: bold;
    font-size: 20px;
}
.expert-title {
    color: var(--color-text-muted);
}

/* --- Testimonials --- */
.testimonials-section {
    background-color: var(--color-surface);
}
.testimonials-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
.testimonial-card {
    background-color: var(--color-background);
    padding: 32px;
    border-radius: 32px;
    border: 1px solid var(--color-border);
}
.testimonial-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}
.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--color-primary);
}
.testimonial-name {
    font-weight: bold;
}
.testimonial-rating {
    color: var(--color-primary);
}

/* --- Program Page (Numbered Sections) --- */
.page-header-section {
    text-align: center;
    padding-bottom: 40px;
}
.page-title {
    font-size: clamp(32px, 6vw, 56px);
}
.numbered-sections-container {
    display: flex;
    flex-direction: column;
    gap: 80px;
    padding: 40px 0;
}
.numbered-section-content {
    display: grid;
    grid-template-columns: 1fr 3fr;
    align-items: flex-start;
    gap: 40px;
}
.numbered-section.alt-layout .numbered-section-content {
    grid-template-columns: 3fr 1fr;
}
.section-number-container {
    text-align: center;
}
.section-number {
    font-size: clamp(80px, 15vw, 150px);
    font-weight: bold;
    color: var(--color-border);
    line-height: 1;
}
.numbered-section.alt-layout .section-text-content {
    order: -1;
}
.full-width-image-container {
    width: 100%;
    height: 400px;
}
.full-width-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- Mission Page (Split Layout) --- */
.split-layout-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: center;
}
.split-image-container {
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0,0,0,0.22);
}
.values-title {
    margin-top: 32px;
    color: var(--color-primary);
}
.values-list {
    list-style: none;
    padding-left: 0;
}
.values-list li {
    padding-left: 24px;
    position: relative;
    margin-bottom: 12px;
}
.values-list li::before {
    content: '✓';
    color: var(--color-primary);
    position: absolute;
    left: 0;
}

/* --- Contact Page --- */
.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
}
.contact-form .form-group {
    margin-bottom: 24px;
}
.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    border-radius: 50px;
    border: 1px solid var(--color-border);
    background-color: var(--color-surface);
    color: var(--color-text);
    font-size: 16px;
}
.contact-form textarea {
    border-radius: 28px;
    resize: vertical;
}
.contact-info-card {
    background-color: var(--color-surface);
    padding: 24px;
    border-radius: 28px;
    margin-bottom: 24px;
}
.contact-info-card h3 {
    color: var(--color-primary);
}

/* --- Legal & Thank You Pages --- */
.legal-page .container, .thank-you-section .container {
    max-width: 800px;
}
.legal-page h2 { margin-top: 32px; }
.thank-you-actions { margin-top: 60px; }
.action-cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
}
.action-card {
    display: block;
    background-color: var(--color-surface);
    padding: 32px;
    border-radius: 28px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--color-text);
}
.action-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.25);
}

/* --- Footer --- */
.site-footer {
    background-color: var(--color-surface) !important;
    color: var(--color-text-muted) !important;
    padding: 60px 0 20px;
    border-top: 1px solid var(--color-border);
}
.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 40px;
}
.footer-title {
    color: var(--color-primary) !important;
    font-size: 20px;
}
.footer-nav {
    list-style: none;
}
.footer-nav li {
    margin-bottom: 10px;
}
.footer-nav a {
    color: var(--color-text-muted) !important;
}
.footer-nav a:hover {
    color: var(--color-primary) !important;
}
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--color-border);
}

/* --- 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(--color-surface);
    border-top: 1px solid var(--color-border);
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
}
#cookie-banner.hidden { transform: translateY(110%); }
#cookie-banner p { margin: 0; flex: 1; min-width: 200px; font-size: 14px; }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }
.cookie-btn-accept, .cookie-btn-decline {
    padding: 8px 16px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    font-size: 14px;
}
.cookie-btn-accept { background-color: var(--color-primary); color: var(--color-background); }
.cookie-btn-decline { background-color: var(--color-border); color: var(--color-text); }


/* --- Responsive Media Queries (Mobile-First) --- */
@media (max-width: 1024px) {
    .hero-text-content { max-width: 100%; }
    .hero-image-container { display: none; }
    .hero-section-asymmetric { text-align: center; }
}

@media (max-width: 768px) {
    .section { padding: 60px 0; }
    .stats-bar-container, .footer-container, .action-cards-container {
        grid-template-columns: 1fr 1fr;
    }
    .expert-container, .split-layout-container, .contact-grid {
        grid-template-columns: 1fr;
    }
    .numbered-section-content, .numbered-section.alt-layout .numbered-section-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .numbered-section.alt-layout .section-text-content { order: 0; }
    .hero-section-asymmetric { min-height: 60vh; }
}

@media (max-width: 600px) {
    .stats-bar-container, .footer-container {
        grid-template-columns: 1fr;
    }
    .action-cards-container {
        grid-template-columns: 1fr;
    }
    #cookie-banner { flex-direction: column; align-items: flex-start; }
    .cookie-btns { width: 100%; }
    .cookie-btn-accept, .cookie-btn-decline { flex: 1; text-align: center; }
    .container { padding: 0 16px; }
}