/*
  Theme: Corporate Clean
  Palette: Graphite & Amber
  Border Style: Pill
  Shadow Style: Dramatic
  Color Mode: Dark
*/

:root {
    --font-primary: 'Helvetica Neue', Arial, sans-serif;
    --bg-dark: #121212;
    --bg-surface: #1e1e1e;
    --bg-light: #f5f5f5;
    --text-light: #e0e0e0;
    --text-dark: #121212;
    --text-muted: #9e9e9e;
    --accent-primary: #ffab40; /* Amber */
    --accent-primary-hover: #ffc400;
    --border-color: #424242;
    --shadow-color: rgba(0, 0, 0, 0.22);
    --shadow-color-hover: rgba(0, 0, 0, 0.30);
    --pill-radius: 50px;
    --card-radius: 32px;
}

/* --- General Styles --- */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-primary);
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.7;
    font-size: clamp(16px, 1.5vw, 18px);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.section {
    padding: 64px 0;
}

a {
    color: var(--accent-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-primary-hover);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3 {
    margin: 0 0 16px 0;
    line-height: 1.2;
    font-weight: 700;
}

h1 { font-size: clamp(36px, 6vw, 56px); }
h2 { font-size: clamp(28px, 5vw, 42px); }
h3 { font-size: clamp(20px, 4vw, 24px); }

.section-title {
    text-align: center;
    margin-bottom: 16px;
}

.section-title-left {
    text-align: left;
    margin-bottom: 24px;
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px auto;
    color: var(--text-muted);
}

.text-center {
    text-align: center;
}

.section-divider {
    border: 0;
    height: 1px;
    background-color: var(--border-color);
    margin: 0;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- Header --- */
.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: 24px;
    font-weight: bold;
    color: var(--text-light);
    z-index: 100;
}

.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;
    margin: 0;
    padding: 0;
}

.desktop-nav .nav-list a {
    color: var(--text-light);
    font-weight: 500;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 70px; /* Adjust based on 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-surface);
}

.mobile-nav ul {
    list-style: none;
    padding: 20px;
    margin: 0;
}

.mobile-nav li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    text-align: center;
}
.mobile-nav li a {
    color: var(--text-light);
    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-radius: var(--pill-radius);
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 16px;
}

.btn-primary {
    background-color: var(--accent-primary);
    color: var(--bg-dark);
}

.btn-primary:hover {
    background-color: var(--accent-primary-hover);
    color: var(--bg-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background-color: var(--bg-surface);
    color: var(--accent-primary);
    border: 2px solid var(--accent-primary);
}
.btn-secondary:hover {
    background-color: var(--accent-primary);
    color: var(--bg-dark);
}


/* --- Hero Section (Asymmetric) --- */
.hero-section-asymmetric {
    padding: 80px 0;
    overflow: hidden;
    position: relative;
}
.hero-container-asymmetric {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 32px;
}
.hero-content-asymmetric {
    max-width: 550px;
    z-index: 2;
}
.hero-title {
    margin-bottom: 24px;
}
.hero-subtitle {
    color: var(--text-muted);
    margin-bottom: 32px;
    font-size: clamp(16px, 2vw, 20px);
}
.hero-image-container-asymmetric {
    position: relative;
}
.hero-image-asymmetric {
    border-radius: var(--card-radius);
    object-fit: cover;
    width: 100%;
    height: 100%;
}

@media (min-width: 992px) {
    .hero-container-asymmetric {
        grid-template-columns: 1fr 1fr;
    }
    .hero-image-container-asymmetric {
        position: absolute;
        top: 0;
        right: -20%;
        width: 65%;
        height: 100%;
        z-index: 1;
    }
    .hero-image-asymmetric {
        clip-path: polygon(15% 0, 100% 0%, 100% 100%, 0% 100%);
    }
}

/* --- Benefits Section (2x2 Grid) --- */
.benefits-grid-2x2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
.benefit-card {
    background-color: var(--bg-surface);
    padding: 32px;
    border-radius: var(--card-radius);
    box-shadow: 0 24px 64px var(--shadow-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}
.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 32px 80px var(--shadow-color-hover);
}
.card-title {
    color: var(--accent-primary);
}
.card-text {
    color: var(--text-muted);
}

@media (min-width: 768px) {
    .benefits-grid-2x2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

/* --- Gallery Section --- */
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--card-radius);
}
.placeholder-item-1, .placeholder-item-2 {
    min-height: 250px;
    border-radius: var(--card-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
}
.placeholder-item-1 { background-color: var(--accent-primary); color: var(--bg-dark); }
.placeholder-item-2 { background-color: var(--bg-surface); color: var(--text-light); }

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .gallery-item:nth-child(1) { grid-column: span 2; }
}

/* --- Two-Column Section --- */
.two-col-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}
.two-col-image img {
    border-radius: var(--card-radius);
}
.custom-list {
    list-style: none;
    padding: 0;
}
.custom-list li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 12px;
}
.custom-list li::before {
    content: '✔';
    color: var(--accent-primary);
    position: absolute;
    left: 0;
    top: 0;
}
@media (min-width: 992px) {
    .two-col-container {
        grid-template-columns: 1fr 1fr;
    }
}

/* --- Comparison Table --- */
.table-wrapper {
    overflow-x: auto;
}
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}
.comparison-table th, .comparison-table td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}
.comparison-table th {
    background-color: var(--bg-surface);
    color: var(--accent-primary);
}
.comparison-table tbody tr:hover {
    background-color: var(--bg-surface);
}
.check-cell { color: #27ae60; }
.cross-cell { color: #c0392b; }

/* --- FAQ Accordion --- */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}
.faq-accordion details {
    background-color: var(--bg-surface);
    border-radius: var(--card-radius);
    margin-bottom: 16px;
    border: 1px solid var(--border-color);
    box-shadow: 0 12px 32px var(--shadow-color);
}
.faq-accordion summary {
    padding: 24px;
    font-weight: bold;
    cursor: pointer;
    list-style: none;
    position: relative;
    border-radius: var(--card-radius);
}
.faq-accordion summary::-webkit-details-marker {
    display: none;
}
.faq-accordion summary::after {
    content: '+';
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: var(--accent-primary);
    transition: transform 0.3s ease;
}
.faq-accordion details[open] summary::after {
    transform: translateY(-50%) rotate(45deg);
}
.faq-accordion p {
    padding: 0 24px 24px 24px;
    margin: 0;
    color: var(--text-muted);
}

/* --- Page Header --- */
.page-header-section {
    padding: 80px 0;
    text-align: center;
    background-color: var(--bg-surface);
}
.page-title {
    color: var(--accent-primary);
}
.page-subtitle {
    max-width: 700px;
    margin: 16px auto 0;
    color: var(--text-muted);
    font-size: 1.1em;
}

/* --- Program Page (Grid 6 Cards) --- */
.program-grid-6 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
.program-card {
    background: var(--bg-surface);
    padding: 32px;
    border-radius: var(--card-radius);
    text-align: center;
    border: 1px solid var(--border-color);
    box-shadow: 0 24px 64px var(--shadow-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 32px 80px var(--shadow-color-hover);
}
.program-card-icon {
    font-size: 48px;
    margin-bottom: 16px;
}
.program-card-title {
    color: var(--accent-primary);
    margin-bottom: 12px;
}
@media (min-width: 768px) {
    .program-grid-6 {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1024px) {
    .program-grid-6 {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* --- CTA Section --- */
.cta-section {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 0;
}
.cta-title {
    font-size: clamp(28px, 5vw, 40px);
    color: #fff;
}
.cta-text {
    max-width: 600px;
    margin: 16px auto 32px;
    color: #fff;
}

/* --- Mission Page (Story Team) --- */
.mission-story-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: flex-start;
}
.mission-story-image img {
    border-radius: var(--card-radius);
}
.image-caption {
    font-style: italic;
    color: var(--text-muted);
    text-align: center;
    margin-top: 16px;
}
@media (min-width: 992px) {
    .mission-story-container {
        grid-template-columns: 2fr 1fr;
    }
}

/* --- Contact Page --- */
.contact-layout-form-left {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}
.contact-form-container {
    background-color: var(--bg-surface);
    padding: 40px;
    border-radius: var(--card-radius);
}
.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: var(--pill-radius);
    border: 1px solid var(--border-color);
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-size: 16px;
}
.contact-form textarea {
    border-radius: var(--card-radius);
    resize: vertical;
}
.contact-info-block {
    margin-bottom: 32px;
}
.contact-info-block h3 {
    color: var(--accent-primary);
}
@media (min-width: 992px) {
    .contact-layout-form-left {
        grid-template-columns: 3fr 2fr;
    }
}

/* --- Legal & Thank You Pages --- */
.legal-page .container, .thank-you-section .container {
    max-width: 800px;
}
.legal-page h2 {
    color: var(--accent-primary);
    margin-top: 40px;
}
.text-muted {
    color: var(--text-muted);
}
.thank-you-links {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

/* --- Footer --- */
.site-footer {
    background-color: var(--bg-surface) !important;
    color: var(--text-muted) !important;
    padding: 64px 0 0 0;
    border-top: 1px solid var(--border-color);
}
.footer-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}
.footer-title {
    color: var(--text-light) !important;
    margin-bottom: 16px;
}
.footer-links ul, .footer-legal ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li, .footer-legal li {
    margin-bottom: 10px;
}
.footer-links a, .footer-legal a, .footer-contact a {
    color: var(--text-muted) !important;
}
.footer-links a:hover, .footer-legal a:hover, .footer-contact a:hover {
    color: var(--accent-primary) !important;
}
.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 24px 0;
    margin-top: 48px;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1024px) {
    .footer-container {
        grid-template-columns: 2fr 1fr 1fr 2fr;
    }
}


/* --- Cookie Banner --- */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background-color: var(--bg-surface);
    color: var(--text-light);
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    border-top: 1px solid var(--border-color);
    box-shadow: 0 -10px 40px rgba(0,0,0,0.3);
    transition: transform 0.4s ease;
}
#cookie-banner.hidden {
    display: none;
}
#cookie-banner p {
    margin: 0;
    flex: 1;
    min-width: 200px;
}
.cookie-btns {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    flex-wrap: wrap;
}
.cookie-btn-accept, .cookie-btn-decline {
    padding: 10px 24px;
    border-radius: var(--pill-radius);
    border: none;
    cursor: pointer;
    font-weight: bold;
}
.cookie-btn-accept {
    background-color: var(--accent-primary);
    color: var(--bg-dark);
}
.cookie-btn-decline {
    background-color: var(--border-color);
    color: var(--text-light);
}
@media (max-width: 768px) {
    #cookie-banner {
        flex-direction: column;
        align-items: flex-start;
    }
    .cookie-btns {
        width: 100%;
    }
    .cookie-btn-accept, .cookie-btn-decline {
        flex: 1;
        text-align: center;
    }
}