/* #38006B, #6A1B9A, #C07800, #F8F0FF */
:root {
    --color-primary: #38006B;
    --color-secondary: #6A1B9A;
    --color-accent: #C07800;
    --bg-tint: #F8F0FF;
    
    /* Dark Mode Specific Base Colors */
    --bg-dark: #120024;
    --bg-card: #21003D;
    --text-light: #F8F0FF;
    --text-muted: #D1C4E9;
    --border-color: rgba(210, 180, 255, 0.15);
    
    /* Design Styles */
    --font-heading: 'Cinzel', 'Georgia', serif;
    --font-body: 'Montserrat', 'Helvetica Neue', sans-serif;
    --border-radius-card: 16px;
    --border-radius-btn: 8px;
    --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.25);
}

/* Base Styles & Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--text-light);
    font-weight: 700;
}

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--text-light);
}

/* Layout Containers */
.footer-container,
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--border-radius-btn);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--bg-dark);
    border: 2px solid var(--color-accent);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--color-accent);
}

.btn-secondary-outline {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary-outline:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.btn-block {
    display: block;
    width: 100%;
}

/* HEADER STYLE (Strict Template) */
.site-header {
    position: relative;
    width: 100%;
    padding: 15px 10px;
    background-color: var(--bg-dark);
    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: 28px;
    font-weight: 900;
    font-family: var(--font-heading);
    color: var(--text-light);
    z-index: 100;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.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;
    margin: 5px 0;
    transition: 0.3s;
    background-color: var(--text-light);
}

.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(--text-light);
    font-weight: 500;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.desktop-nav .nav-list a:hover {
    color: var(--color-accent);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    z-index: 99;
    background-color: var(--bg-card);
}

.mobile-nav ul {
    list-style: none;
    padding: 20px;
    margin: 0;
}

.mobile-nav li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.mobile-nav a {
    color: var(--text-light);
    font-size: 18px;
    display: block;
}

/* HERO: vertical-stack */
.hero-section-vertical {
    display: flex;
    flex-direction: column;
    background-color: var(--bg-dark);
}

.hero-image-wrapper {
    width: 100%;
    height: 50vh;
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content-wrapper {
    padding: 48px 16px;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: var(--color-primary);
    color: var(--text-light);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(32px, 6vw, 64px);
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: clamp(16px, 2.5vw, 20px);
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 32px auto;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
}

/* SECTION TITLES */
.section-header-centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 56px auto;
}

.section-header-left {
    text-align: left;
    max-width: 800px;
    margin-bottom: 48px;
}

.section-tag {
    display: block;
    color: var(--color-accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    font-size: 13px;
}

.section-title-large {
    font-size: clamp(28px, 5vw, 48px);
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-description {
    color: var(--text-muted);
    font-size: 17px;
}

/* BENEFITS: benefits-5asymm */
.benefits-asymm-section {
    padding: 80px 0;
    background-color: var(--bg-card);
}

.benefits-asymm-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.benefit-card {
    background-color: var(--bg-dark);
    padding: 32px;
    border-radius: var(--border-radius-card);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-subtle);
    position: relative;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.card-num {
    font-family: var(--font-heading);
    font-size: 40px;
    color: var(--color-accent);
    font-weight: 900;
    opacity: 0.3;
    margin-bottom: 16px;
}

.benefit-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
}

.benefit-card p {
    color: var(--text-muted);
}

/* GALLERY GRID */
.gallery-grid-section {
    padding: 80px 0;
}

.gallery-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius-card);
    overflow: hidden;
    height: 300px;
    box-shadow: var(--shadow-subtle);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(18, 0, 36, 0.95));
    padding: 24px;
}

.gallery-caption h4 {
    font-size: 20px;
    margin-bottom: 8px;
}

.gallery-caption p {
    color: var(--text-muted);
    font-size: 14px;
}

.css-placeholder-img {
    background-color: var(--bg-card);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 32px;
    text-align: center;
    border: 1px dashed var(--border-color);
}

.placeholder-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

/* STATS BAR */
.stats-bar-section {
    background-color: var(--color-primary);
    padding: 48px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 900;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
}

/* FAQ ACCORDION */
.accordion-faq-section {
    padding: 80px 0;
    background-color: var(--bg-card);
}

.faq-accordion-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.faq-details {
    background-color: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-card);
    margin-bottom: 16px;
    padding: 20px;
    box-shadow: var(--shadow-subtle);
}

.faq-summary {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 30px;
}

.faq-summary::-webkit-details-marker {
    display: none;
}

.faq-summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-accent);
    font-size: 24px;
}

.faq-details[open] .faq-summary::after {
    content: '-';
}

.faq-content {
    margin-top: 16px;
    color: var(--text-muted);
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
}

/* ICON FEATURES */
.icon-features-section {
    padding: 80px 0;
}

.icon-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.feature-item {
    background-color: var(--bg-card);
    padding: 32px;
    border-radius: var(--border-radius-card);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-subtle);
}

.feature-icon {
    font-size: 40px;
    display: block;
    margin-bottom: 16px;
}

.feature-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
}

.feature-item p {
    color: var(--text-muted);
}

/* INNER HERO */
.inner-hero {
    padding: 80px 0 48px 0;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.inner-hero h1 {
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.2;
    margin-bottom: 24px;
}

.inner-hero-desc {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto;
}

/* TIMELINE (PROGRAM) */
.timeline-section {
    padding: 80px 0;
}

.timeline-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 32px;
    border-left: 3px solid var(--color-primary);
}

.timeline-item {
    position: relative;
    margin-bottom: 56px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-badge {
    position: absolute;
    left: -49px;
    top: 0;
    background-color: var(--color-accent);
    color: var(--bg-dark);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.timeline-content {
    background-color: var(--bg-card);
    padding: 32px;
    border-radius: var(--border-radius-card);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-subtle);
}

.module-duration {
    color: var(--color-accent);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.module-topics {
    list-style: square;
    padding-left: 20px;
    margin-top: 16px;
    color: var(--text-muted);
}

/* CTA BANNER */
.cta-banner {
    padding: 80px 0;
}

.cta-inner-box {
    background-color: var(--color-secondary);
    padding: 48px 32px;
    border-radius: var(--border-radius-card);
    text-align: center;
    box-shadow: var(--shadow-subtle);
}

.cta-inner-box h2 {
    font-size: clamp(24px, 4vw, 36px);
    margin-bottom: 16px;
}

.cta-inner-box p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 32px auto;
}

/* MISSION: SPLIT LAYOUT */
.split-story-section {
    display: flex;
    flex-direction: column;
}

.split-image-side {
    width: 100%;
    height: 400px;
}

.split-story-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-content-side {
    padding: 48px 24px;
    background-color: var(--bg-card);
}

.story-title {
    font-size: clamp(28px, 4vw, 44px);
    margin-bottom: 24px;
}

.story-lead {
    font-size: 18px;
    color: var(--color-accent);
    margin-bottom: 24px;
    font-weight: 500;
}

.split-content-side p {
    margin-bottom: 20px;
    color: var(--text-muted);
}

/* VALUES */
.values-section {
    padding: 80px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.value-card {
    background-color: var(--bg-card);
    padding: 32px;
    border-radius: var(--border-radius-card);
    border: 1px solid var(--border-color);
    text-align: center;
}

.value-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 16px;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.value-card p {
    color: var(--text-muted);
}

/* CONTACT SPLIT LAYOUT */
.contact-split-section {
    padding: 80px 0;
}

.contact-layout-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

.custom-contact-form {
    background-color: var(--bg-card);
    padding: 32px;
    border-radius: var(--border-radius-card);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-subtle);
    margin-top: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    background-color: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-btn);
    color: var(--text-light);
    font-family: var(--font-body);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
}

.info-card {
    background-color: var(--color-primary);
    padding: 40px;
    border-radius: var(--border-radius-card);
    box-shadow: var(--shadow-subtle);
}

.info-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.info-desc {
    color: var(--text-muted);
    margin-bottom: 32px;
}

.info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.info-icon {
    font-size: 24px;
    color: var(--color-accent);
}

.info-item h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.info-item p {
    color: var(--text-muted);
}

/* LEGAL PAGES */
.legal-page-content {
    padding: 80px 0;
}

.legal-page-content h1 {
    font-size: clamp(28px, 4vw, 48px);
    margin-bottom: 12px;
}

.last-updated {
    color: var(--color-accent);
    margin-bottom: 48px;
    font-size: 14px;
    text-transform: uppercase;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 22px;
    margin-bottom: 16px;
}

.legal-section p {
    color: var(--text-muted);
    margin-bottom: 16px;
}

.legal-section ul {
    padding-left: 24px;
    color: var(--text-muted);
}

.legal-section li {
    margin-bottom: 12px;
}

.alert-box {
    background-color: var(--bg-card);
    padding: 32px;
    border-radius: var(--border-radius-card);
    border-left: 4px solid var(--color-accent);
}

/* THANK YOU PAGE */
.thank-you-main {
    padding: 100px 0;
    text-align: center;
}

.thank-you-card {
    background-color: var(--bg-card);
    padding: 56px 32px;
    border-radius: var(--border-radius-card);
    max-width: 800px;
    margin: 0 auto;
    box-shadow: var(--shadow-subtle);
}

.thank-icon {
    font-size: 64px;
    display: block;
    margin-bottom: 24px;
}

.thank-lead {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.next-steps-box {
    background-color: var(--bg-dark);
    padding: 32px;
    border-radius: var(--border-radius-card);
    text-align: left;
    margin-bottom: 40px;
}

.next-steps-list {
    list-style: decimal;
    padding-left: 20px;
    margin-top: 16px;
}

.next-steps-list li {
    margin-bottom: 16px;
    color: var(--text-muted);
}

/* FOOTER (Strict Design Protection) */
.site-footer {
    background-color: var(--bg-card) !important;
    border-top: 1px solid var(--border-color) !important;
    padding: 80px 0 32px 0 !important;
    color: var(--text-light) !important;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 56px;
}

.footer-brand .footer-logo {
    display: block;
    font-size: 28px;
    font-weight: 900;
    font-family: var(--font-heading);
    color: var(--text-light) !important;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.footer-brand p {
    color: var(--text-muted) !important;
}

.footer-links h4,
.footer-legal h4,
.footer-contact h4 {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: var(--color-accent) !important;
}

.footer-links ul,
.footer-legal ul {
    list-style: none;
}

.footer-links li,
.footer-legal li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-legal a {
    color: var(--text-muted) !important;
}

.footer-links a:hover,
.footer-legal a:hover {
    color: var(--color-accent) !important;
}

.footer-contact p {
    margin-bottom: 12px;
    color: var(--text-muted) !important;
}

.footer-bottom {
    border-top: 1px solid var(--border-color) !important;
    padding-top: 32px;
    text-align: center;
    font-size: 13px;
    color: var(--text-muted) !important;
}

/* 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-card);
    border-top: 2px solid var(--color-accent);
}

#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 {
    background-color: var(--color-accent);
    color: var(--bg-dark);
    border: none;
    padding: 8px 16px;
    border-radius: var(--border-radius-btn);
    cursor: pointer;
    font-weight: 600;
}

.cookie-btn-decline {
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid var(--border-color);
    padding: 8px 16px;
    border-radius: var(--border-radius-btn);
    cursor: pointer;
}

/* RESPONSIVE DESIGN (Mobile-First Media Queries) */

@media (min-width: 600px) {
    .hero-actions {
        flex-direction: row;
    }
}

@media (min-width: 768px) {
    /* Header Burger Control */
    .hamburger {
        display: none;
    }
    
    .desktop-nav {
        display: block;
    }
    
    /* Grid Layouts */
    .benefits-asymm-grid {
        grid-template-columns: repeat(6, 1fr);
    }
    
    .card-large {
        grid-column: span 3;
    }
    
    .card-small {
        grid-column: span 2;
    }
    
    .gallery-layout {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .item-featured {
        grid-column: span 2;
    }
    
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .icon-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .contact-layout-grid {
        grid-template-columns: 1.2fr 0.8fr;
    }
    
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    }
    
    /* Split Story Section */
    .split-story-section {
        flex-direction: row;
        align-items: stretch;
    }
    
    .split-image-side {
        width: 50%;
        height: auto;
        min-height: 500px;
    }
    
    .split-content-side {
        width: 50%;
        display: flex;
        align-items: center;
    }
    
    .content-padding {
        padding: 64px;
    }
}

@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);
    }
    
    /* Hero Vertical Adjustments */
    .hero-image-wrapper {
        height: 35vh;
    }
}

@media (min-width: 1024px) {
    .icon-features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .hero-section-vertical {
        flex-direction: row-reverse;
        align-items: stretch;
        min-height: calc(80vh - 60px);
    }
    
    .hero-image-wrapper {
        width: 50%;
        height: auto;
    }
    
    .hero-content-wrapper {
        width: 50%;
        display: flex;
        align-items: center;
        text-align: left;
        padding: 64px;
    }
    
    .hero-subtitle {
        margin-left: 0;
    }
    
    .hero-actions {
        justify-content: flex-start;
    }
}