/* 
   PALETTE: deep-purple-fire
   Primary: #4B1461 (Deep Purple)
   Secondary: #E74C3C (Fire Red)
   Accent: #F4D03F (Gold Accent)
   Bg Tint: #F8F2FF (Light background tint)
   Dark Background: #120d1a (Deep dark purple/black)
*/

:root {
    --color-primary: #4B1461;
    --color-secondary: #E74C3C;
    --color-accent: #F4D03F;
    --bg-tint: #F8F2FF;
    --bg-dark: #120d1a;
    --bg-dark-card: #20162b;
    --text-light: #F8F2FF;
    --text-dark: #120d1a;
    --text-muted: #bda8d1;
    
    /* Design Style: soft-organic / border-style: pill / shadow-style: flat */
    --radius-pill: 50px;
    --radius-card: 36px;
    --radius-badge: 999px;
}

/* Base Reset & Mobile-First Setup */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

body.dark-mode {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.badge {
    display: inline-block;
    background-color: var(--color-primary);
    color: var(--color-accent);
    padding: 8px 20px;
    border-radius: var(--radius-badge);
    font-size: clamp(12px, 2vw, 14px);
    font-weight: 600;
    margin-bottom: 16px;
    border: 2px solid var(--color-accent);
}

/* Header Layout & Navigation */
.site-header {
    position: relative;
    width: 100%;
    padding: 15px 10px;
    background-color: var(--bg-dark);
    border-bottom: 2px solid rgba(255, 255, 255, 0.05);
}

.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: 800;
    color: var(--text-light);
    z-index: 100;
    letter-spacing: 1px;
}

.logo::after {
    content: '.';
    color: var(--color-secondary);
}

.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: var(--radius-badge);
}

.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 {
    font-weight: 500;
    font-size: 16px;
    padding: 8px 16px;
    border-radius: var(--radius-pill);
}

.desktop-nav .nav-list a:hover {
    background-color: var(--color-primary);
    color: var(--color-accent);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    z-index: 99;
    background-color: var(--bg-dark-card);
}

.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.05);
}

.mobile-nav a {
    font-size: 18px;
    font-weight: 600;
    display: block;
    color: var(--text-light);
}

/* Hero Section: Vertical Stack Layout */
.hero-vertical-stack {
    display: flex;
    flex-direction: column;
}

.hero-image-container {
    width: 100%;
    height: 55vh;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content-container {
    padding: 48px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-dark-card) 100%);
}

.hero-title {
    font-size: clamp(28px, 6vw, 52px);
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--text-light);
}

.hero-subtitle {
    font-size: clamp(16px, 3vw, 20px);
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 850px;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

/* Buttons (Pill / Flat Style) */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-weight: 600;
    font-size: 16px;
    border-radius: var(--radius-pill);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--text-light);
    border-color: var(--color-primary);
}

.btn-primary:hover {
    background-color: transparent;
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: var(--text-light);
}

.btn-accent {
    background-color: var(--color-secondary);
    color: var(--text-light);
    border-color: var(--color-secondary);
}

.btn-accent:hover {
    background-color: transparent;
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.btn-block {
    display: block;
    width: 100%;
}

/* Section Common Styling */
section {
    padding: 64px 0;
}

.bg-tint-section {
    background-color: var(--bg-dark-card);
}

.section-header {
    margin-bottom: 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: clamp(24px, 5vw, 36px);
    font-weight: 800;
    margin-bottom: 16px;
}

.section-desc {
    color: var(--text-muted);
    font-size: clamp(14px, 2.5vw, 18px);
}

/* Benefits 2x2 Grid (Flat / Soft-Organic Style) */
.benefits-grid-2x2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.benefit-card {
    background-color: var(--bg-dark-card);
    padding: 32px;
    border-radius: var(--radius-card);
    border: 2px solid rgba(255, 255, 255, 0.05);
    transition: border-color 0.3s ease;
}

.benefit-card:hover {
    border-color: var(--color-secondary);
}

.benefit-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-light);
}

.benefit-card p {
    color: var(--text-muted);
}

/* Testimonials Section (Vertical) */
.testimonials-vertical-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 850px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: var(--bg-dark);
    padding: 32px;
    border-radius: var(--radius-card);
    border: 2px solid rgba(255, 255, 255, 0.05);
}

.testimonial-stars {
    color: var(--color-accent);
    font-size: 18px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 16px;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background-color: var(--color-primary);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.author-name {
    display: block;
    font-weight: 600;
}

.author-location {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
}

/* Stats Bar Section */
.stats-bar-section {
    background-color: var(--color-primary);
    padding: 48px 0;
    border-top: 4px solid var(--color-accent);
    border-bottom: 4px solid var(--color-accent);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: clamp(36px, 8vw, 56px);
    font-weight: 800;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Expert Block */
.expert-wrapper {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
}

.expert-image {
    width: 100%;
    max-width: 450px;
}

.expert-img {
    width: 100%;
    border-radius: var(--radius-card);
    border: 4px solid var(--color-primary);
}

.expert-content {
    flex: 1;
}

.expert-quote {
    font-size: 18px;
    font-style: italic;
    color: var(--text-muted);
    border-left: 4px solid var(--color-secondary);
    padding-left: 20px;
    margin: 24px 0;
}

.expert-meta {
    display: flex;
    flex-direction: column;
}

.expert-name {
    font-weight: bold;
    font-size: 18px;
}

.expert-title {
    font-size: 14px;
    color: var(--text-muted);
}

/* Icon Features Section */
.features-grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.feature-icon-card {
    background-color: var(--bg-dark);
    padding: 32px;
    border-radius: var(--radius-card);
    border: 2px solid rgba(255, 255, 255, 0.05);
}

.feature-emoji {
    font-size: 36px;
    display: block;
    margin-bottom: 16px;
}

.feature-icon-card h4 {
    font-size: 20px;
    margin-bottom: 8px;
}

.feature-icon-card p {
    color: var(--text-muted);
}

/* Program Page Specifics */
.page-title-section {
    padding: 80px 0 40px;
    background: linear-gradient(180deg, var(--bg-dark-card) 0%, var(--bg-dark) 100%);
}

.main-page-title {
    font-size: clamp(32px, 7vw, 56px);
    font-weight: 800;
    margin-bottom: 16px;
}

.page-subtitle-desc {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto;
}

.grid-6cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.program-module-card {
    background-color: var(--bg-dark-card);
    padding: 36px;
    border-radius: var(--radius-card);
    border: 2px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.program-module-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background-color: var(--color-secondary);
}

.module-num {
    display: block;
    font-size: 14px;
    color: var(--color-accent);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.program-module-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.program-module-card p {
    color: var(--text-muted);
}

/* Program Integrated Split Image */
.split-image-wrapper {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
}

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.split-text p {
    margin-bottom: 16px;
    color: var(--text-muted);
}


.organic-img {
    width: 100%;
    border-radius: var(--radius-card);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

/* FAQ Details/Summary (Soft-Organic Style) */
.faq-accordion-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: var(--bg-dark);
    border-radius: var(--radius-card);
    border: 2px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.faq-item summary {
    padding: 24px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    outline: none;
    user-select: none;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item p {
    padding: 0 24px 24px;
    color: var(--text-muted);
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--bg-dark-card) 100%);
    padding: 80px 20px;
    border-radius: var(--radius-card);
    margin: 40px auto;
    max-width: 1160px;
    border: 2px solid var(--color-secondary);
}

.cta-banner h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

.cta-banner p {
    margin-bottom: 32px;
    color: var(--text-muted);
}

/* Mission Timeline Dates Layout */
.timeline-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 32px;
    border-left: 4px solid var(--color-secondary);
}

.timeline-item {
    position: relative;
    margin-bottom: 48px;
}

.timeline-badge {
    position: absolute;
    left: -52px;
    top: 0;
    width: 36px;
    height: 36px;
    background-color: var(--color-accent);
    color: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
}

.timeline-panel {
    background-color: var(--bg-dark-card);
    padding: 32px;
    border-radius: var(--radius-card);
    border: 2px solid rgba(255, 255, 255, 0.05);
}

.timeline-panel h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-light);
}

.timeline-panel p {
    color: var(--text-muted);
}

/* Mission Values Split Layout */
.values-wrapper {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
}

.values-img-holder {
    width: 100%;
}

.values-content {
    flex: 1;
}

.values-content h2 {
    font-size: 32px;
    margin-bottom: 24px;
}

.value-item {
    margin-bottom: 24px;
}

.value-item h4 {
    font-size: 20px;
    color: var(--color-accent);
    margin-bottom: 8px;
}

.value-item p {
    color: var(--text-muted);
}

/* Contact Page Layout & Forms */
.contact-grid-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-form-holder {
    background-color: var(--bg-dark-card);
    padding: 40px;
    border-radius: var(--radius-card);
    border: 2px solid rgba(255, 255, 255, 0.05);
}

.contact-form-holder h2 {
    font-size: 28px;
    margin-bottom: 12px;
}

.contact-form-holder p {
    color: var(--text-muted);
    margin-bottom: 32px;
}

.organic-form .form-group {
    margin-bottom: 24px;
}

.organic-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
}

.organic-form input,
.organic-form textarea {
    width: 100%;
    padding: 16px 24px;
    background-color: var(--bg-dark);
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    border-radius: var(--radius-pill);
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s ease;
}

.organic-form textarea {
    border-radius: var(--radius-card);
    resize: none;
}

.organic-form input:focus,
.organic-form textarea:focus {
    border-color: var(--color-secondary);
}

.contact-info-holder {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-card {
    background-color: var(--bg-dark-card);
    padding: 32px;
    border-radius: var(--radius-card);
    border: 2px solid rgba(255, 255, 255, 0.05);
}

.info-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
}

.info-card p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.contact-details-list {
    list-style: none;
}

.contact-details-list li {
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
}

.contact-details-list strong {
    color: var(--color-accent);
}

.bg-accent-card {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--bg-dark-card) 100%);
    border: 2px solid var(--color-secondary);
}

/* Legal Pages Styling */
.legal-page-section {
    padding: 80px 0;
}

.legal-title {
    font-size: clamp(32px, 6vw, 48px);
    margin-bottom: 8px;
}

.legal-updated {
    color: var(--text-muted);
    margin-bottom: 48px;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 12px;
    color: var(--color-accent);
}

.legal-content p,
.legal-content ul {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.legal-content ul {
    padding-left: 24px;
}

.disclaimer-highlight {
    background-color: rgba(231, 76, 60, 0.1);
    border-left: 4px solid var(--color-secondary);
    padding: 16px 24px;
    border-radius: 12px;
}

/* Thank You Page */
.thank-you-section {
    padding: 100px 0;
}

.thank-icon {
    font-size: 72px;
    display: block;
    margin-bottom: 24px;
}

.next-steps-card {
    background-color: var(--bg-dark-card);
    padding: 40px;
    border-radius: var(--radius-card);
    max-width: 700px;
    margin: 48px auto 0;
    border: 2px solid rgba(255, 255, 255, 0.05);
}

.next-steps-card h3 {
    margin-bottom: 16px;
}

.next-steps-card p {
    color: var(--text-muted);
    margin-bottom: 32px;
}

.quick-links-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

/* Footer Section with Hardcoded Safe Colors to Prevent Translation Overrides */
.site-footer {
    background-color: #120d1a !important;
    color: #F8F2FF !important;
    padding: 64px 0 24px !important;
    border-top: 2px solid rgba(255, 255, 255, 0.05) !important;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.footer-brand .logo {
    display: inline-block;
    margin-bottom: 16px;
}

.footer-desc {
    color: #bda8d1 !important;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #F4D03F !important;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #bda8d1 !important;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #F4D03F !important;
}

.footer-contact p {
    margin-bottom: 12px;
    color: #bda8d1 !important;
}

.footer-tel,
.footer-contact a {
    color: #F4D03F !important;
    font-weight: bold;
}

.footer-bottom {
    max-width: 1200px;
    margin: 48px auto 0;
    padding: 24px 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    font-size: 14px;
    color: #bda8d1 !important;
}

/* Cookie Banner Styling */
#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-dark-card);
    border-top: 3px solid var(--color-accent);
}

#cookie-banner.hidden {
    transform: translateY(110%);
}

#cookie-banner p {
    margin: 0;
    flex: 1;
    min-width: 200px;
    font-size: 14px;
    color: var(--text-light);
}

#cookie-banner a {
    color: var(--color-accent);
    text-decoration: underline;
}

.cookie-btns {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.cookie-btn-accept {
    background-color: var(--color-secondary);
    color: var(--text-light);
    border: none;
    padding: 10px 20px;
    border-radius: var(--radius-pill);
    cursor: pointer;
    font-weight: bold;
}

.cookie-btn-decline {
    background-color: transparent;
    color: var(--text-muted);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: var(--radius-pill);
    cursor: pointer;
}

/* Media Queries for Desktop Layouts (Responsive Web Design) */
@media (min-width: 768px) {
    .hamburger {
        display: none;
    }

    .desktop-nav {
        display: block;
    }

    .benefits-grid-2x2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .expert-wrapper {
        flex-direction: row;
    }

    .features-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-6cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .split-image-wrapper {
        flex-direction: row;
    }

    .values-wrapper {
        flex-direction: row;
    }

    .contact-grid-wrapper {
        flex-direction: row;
    }

    .contact-form-holder {
        flex: 0 0 60%;
    }

    .contact-info-holder {
        flex: 0 0 40%;
    }

    .footer-container {
        grid-template-columns: 2fr 1fr 1.5fr;
    }
}

@media (min-width: 1024px) {
    .features-grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .grid-6cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile Specific Tweaks */
@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);
    }

    #cookie-banner {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-btns {
        width: 100%;
    }

    .cookie-btn-accept,
    .cookie-btn-decline {
        flex: 1;
        text-align: center;
    }
}