/* 
   Palette Name: Rust & Charcoal (Corporate Clean)
   Primary: #D35400 (Rust/Copper)
   Secondary: #2C3E50 (Charcoal) - No blue/green tones, using true Charcoal #2D2D2D
   Background Dark: #1A1A1A
   Background Light: #FAFAFA
   Border-style: sharp (0px border-radius)
   Shadow-style: dramatic (deep shadows)
   Color-mode: mixed (dark hero, alternating sections)
*/

:root {
    --primary: #D35400;
    --primary-hover: #A04000;
    --dark-bg: #121212;
    --dark-card: #1A1A1A;
    --light-bg: #FAFAFA;
    --light-card: #FFFFFF;
    --text-light: #FFFFFF;
    --text-dark: #222222;
    --text-muted: #777777;
    --border-color: #333333;
    --accent: #E59866;
    --font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-family);
    background-color: var(--light-bg);
    color: var(--text-dark);
    line-height: 1.6;
    font-size: clamp(14px, 4vw, 18px);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    color: inherit;
}

h1 {
    font-size: clamp(32px, 6vw, 56px);
}

h2 {
    font-size: clamp(24px, 5vw, 40px);
}

h3 {
    font-size: clamp(20px, 4vw, 28px);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: var(--primary-hover);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Sharp design system rule */
button, input, textarea, select, .btn, .card, .testimonial-card, .value-card, .step-card, .info-card, .thank-card, #cookie-banner {
    border-radius: 0 !important;
}

/* Header Layout */
.site-header {
    position: relative;
    width: 100%;
    padding: 15px 10px;
    background-color: var(--dark-bg);
    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) !important;
    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 Navigation */
.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;
}

.desktop-nav .nav-list a:hover {
    color: var(--primary);
}

/* Mobile Navigation */
.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(--dark-bg);
}

.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.1);
}

.mobile-nav a {
    color: var(--text-light);
    display: block;
}

/* Grid Overlap Hero Layout */
.hero-overlap {
    background-color: var(--dark-bg);
    color: var(--text-light);
    padding: 60px 16px;
}

.hero-grid-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}

.hero-image-column {
    position: relative;
    width: 100%;
}

.hero-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border: 1px solid var(--border-color);
}

.hero-content-column {
    background-color: var(--dark-card);
    padding: 32px;
    border: 1px solid var(--border-color);
    box-shadow: 0 24px 64px rgba(0,0,0,0.4);
}

.hero-badge {
    display: inline-block;
    padding: 6px 12px;
    background-color: var(--primary);
    color: var(--text-light);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.hero-content-column h1 {
    margin-bottom: 20px;
}

.hero-content-column p {
    margin-bottom: 16px;
    color: #ccc;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 24px;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 14px 28px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--text-light);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    color: var(--text-light);
    box-shadow: 0 12px 24px rgba(211, 84, 0, 0.3);
}

.btn-secondary {
    background-color: transparent;
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background-color: var(--text-light);
    color: var(--text-dark);
}

.btn-large {
    padding: 18px 36px;
    font-size: 18px;
}

/* Section Common Styles */
.section {
    padding: 60px 16px;
}

.section-light {
    background-color: var(--light-bg);
    color: var(--text-dark);
}

.section-dark {
    background-color: var(--dark-bg);
    color: var(--text-light);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-subtitle {
    font-size: 14px;
    text-transform: uppercase;
    color: var(--primary);
    letter-spacing: 2px;
    display: block;
    margin-bottom: 8px;
}

.divider {
    width: 60px;
    height: 4px;
    background-color: var(--primary);
    margin: 16px auto 0;
}

/* Text Grid */
.text-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

/* Benefits Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--border-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 60px;
}

.timeline-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 42px;
    height: 42px;
    background-color: var(--primary);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    border: 2px solid var(--dark-bg);
    z-index: 2;
}

.timeline-content {
    background-color: var(--dark-card);
    padding: 24px;
    border: 1px solid var(--border-color);
    box-shadow: 0 24px 64px rgba(0,0,0,0.15);
}

.timeline-content h3 {
    margin-bottom: 12px;
    color: var(--text-light);
}

/* Quote Section */
.section-quote {
    background-color: var(--primary);
    color: var(--text-light);
    padding: 80px 16px;
    text-align: center;
}

.quote-container {
    max-width: 800px;
    margin: 0 auto;
}

.quote-mark {
    font-size: 80px;
    line-height: 1;
    display: block;
    height: 40px;
    color: rgba(255,255,255,0.3);
}

.quote-text {
    font-size: clamp(18px, 4vw, 24px);
    font-style: italic;
    margin-bottom: 24px;
}

.quote-author {
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CTA Banner */
.cta-banner-section {
    background-color: var(--dark-bg);
    color: var(--text-light);
    padding: 80px 16px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.cta-banner-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-banner-content h2 {
    margin-bottom: 16px;
}

.cta-banner-content p {
    margin-bottom: 32px;
    color: #ccc;
}

/* Testimonials (Vertical) */
.testimonials-vertical {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: var(--light-card);
    padding: 32px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 24px 64px rgba(0,0,0,0.08);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.avatar-placeholder {
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.testimonial-meta {
    display: flex;
    flex-direction: column;
}

.testimonial-name {
    font-weight: bold;
}

.testimonial-rating {
    color: var(--primary);
}

/* Split Section */
.section-split {
    display: flex;
    flex-direction: column;
}

.split-container {
    display: grid;
    grid-template-columns: 1fr;
}

.split-text {
    background-color: var(--light-bg);
    padding: 60px 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-text h2 {
    margin-bottom: 20px;
}

.split-text p {
    margin-bottom: 16px;
}

.split-text .btn {
    align-self: flex-start;
    margin-top: 16px;
    border: 1px solid var(--primary);
}

.split-image {
    position: relative;
    height: 300px;
}

.split-img-element {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.step-card {
    background-color: var(--dark-card);
    padding: 32px;
    border: 1px solid var(--border-color);
    box-shadow: 0 24px 64px rgba(0,0,0,0.22);
}

.step-number {
    font-size: 48px;
    font-weight: bold;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 16px;
}

.step-card h4 {
    margin-bottom: 12px;
    color: var(--text-light);
}

.step-card p {
    color: #bbb;
}

/* Page Hero */
.page-hero {
    background-color: var(--dark-bg);
    color: var(--text-light);
    padding: 80px 16px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.page-hero h1 {
    margin-bottom: 16px;
}

.lead {
    font-size: clamp(16px, 3vw, 22px);
    color: #ccc;
    max-width: 800px;
    margin: 0 auto;
}

/* Image Text Layout (Program) */
.image-text-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}

.layout-text h2 {
    margin-bottom: 20px;
}

.layout-text p {
    margin-bottom: 16px;
}

.program-intro-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border: 1px solid #e0e0e0;
}

/* Numbered Sections (Program) */
.numbered-sections-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.num-section-item {
    display: flex;
    flex-direction: column;
    gap: 16px;
    background-color: var(--dark-card);
    padding: 32px;
    border-left: 4px solid var(--primary);
    border-top: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.num-section-number {
    font-size: 36px;
    font-weight: bold;
    color: var(--primary);
}

.num-section-content h3 {
    margin-bottom: 12px;
    color: var(--text-light);
}

.num-section-content p {
    color: #ccc;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
}

.stat-box {
    padding: 32px;
    background-color: var(--light-card);
    border: 1px solid #e0e0e0;
    box-shadow: 0 24px 64px rgba(0,0,0,0.05);
}

.stat-num {
    font-size: 64px;
    font-weight: bold;
    color: var(--primary);
    display: block;
    line-height: 1;
    margin-bottom: 12px;
}

/* FAQ List */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.faq-item {
    background-color: var(--dark-card);
    padding: 24px;
    border: 1px solid var(--border-color);
}

.faq-item h4 {
    color: var(--text-light);
    margin-bottom: 12px;
}

.faq-item p {
    color: #ccc;
}

/* Values Grid (Mission) */
.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.value-card {
    background-color: var(--dark-card);
    padding: 32px;
    border: 1px solid var(--border-color);
    box-shadow: 0 24px 64px rgba(0,0,0,0.22);
}

.value-icon {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 16px;
}

.value-card h3 {
    margin-bottom: 12px;
    color: var(--text-light);
}

.value-card p {
    color: #bbb;
}

/* Contact Layout */
.contact-split-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    font-family: inherit;
    font-size: 16px;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.info-card {
    background-color: var(--light-card);
    padding: 32px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 24px 64px rgba(0,0,0,0.08);
    margin-top: 24px;
}

.info-item {
    margin-bottom: 20px;
}

.info-item strong {
    display: block;
    margin-bottom: 4px;
}

.contact-link {
    color: var(--text-dark);
    font-weight: bold;
}

.contact-link:hover {
    color: var(--primary);
}

.contact-note {
    margin-top: 24px;
    background-color: #fcf8e3;
    border-left: 4px solid #f0ad4e;
    padding: 16px;
}

.contact-note h4 {
    color: #8a6d3b;
    margin-bottom: 8px;
}

.contact-note p {
    font-size: 14px;
    color: #8a6d3b;
    line-height: 1.4;
}

/* Legal Pages */
.legal-container {
    max-width: 800px;
}

.legal-date {
    color: var(--text-muted);
    font-style: italic;
    margin-top: 8px;
}

.legal-section {
    margin-top: 32px;
}

.legal-section h2 {
    margin-bottom: 16px;
    font-size: 22px;
}

.legal-section p, .legal-section ul {
    margin-bottom: 16px;
}

.legal-section ul {
    padding-left: 20px;
}

/* Thank you page */
.thank-section {
    padding: 100px 16px;
}

.text-center-wrapper {
    text-align: center;
}

.thank-card {
    background-color: var(--light-card);
    padding: 48px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 24px 64px rgba(0,0,0,0.1);
    max-width: 700px;
    margin: 0 auto;
}

.thank-icon {
    font-size: 64px;
    color: #27ae60;
    display: block;
    margin-bottom: 20px;
}

.thank-card h1 {
    margin-bottom: 16px;
}

.thank-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 24px;
}

/* Footer Layout */
.site-footer {
    background-color: var(--dark-bg) !important;
    color: var(--text-light) !important;
    padding: 60px 16px 20px;
    border-top: 1px solid var(--border-color);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col-brand .footer-logo {
    font-size: 28px;
    font-weight: bold;
    color: var(--text-light) !important;
    display: block;
    margin-bottom: 16px;
}

.footer-col-brand p {
    color: #aaa !important;
}

.footer-grid h4 {
    color: var(--text-light) !important;
    margin-bottom: 20px;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-grid ul {
    list-style: none;
    padding: 0;
}

.footer-grid li {
    margin-bottom: 12px;
}

.footer-grid a {
    color: #ccc !important;
}

.footer-grid a:hover {
    color: var(--primary) !important;
}

.footer-tel, .footer-email {
    font-weight: bold;
    color: var(--text-light) !important;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
    color: #888 !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(--dark-card);
    color: var(--text-light);
    border-top: 2px solid var(--primary);
    box-shadow: 0 -10px 40px rgba(0,0,0,0.3);
}

#cookie-banner.hidden {
    transform: translateY(110%);
}

#cookie-banner p {
    margin: 0;
    flex: 1;
    min-width: 200px;
    font-size: 14px;
}

#cookie-banner a {
    color: var(--primary);
    text-decoration: underline;
}

.cookie-btns {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.cookie-btn-accept {
    background-color: var(--primary);
    color: var(--text-light);
    border: none;
    padding: 8px 16px;
    cursor: pointer;
    font-weight: bold;
}

.cookie-btn-accept:hover {
    background-color: var(--primary-hover);
}

.cookie-btn-decline {
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid var(--border-color);
    padding: 8px 16px;
    cursor: pointer;
}

.cookie-btn-decline:hover {
    background-color: rgba(255,255,255,0.1);
}

/* Media Queries - Mobile First */

@media (min-width: 600px) {
    #cookie-banner {
        flex-direction: row;
    }
}

@media (min-width: 768px) {
    .desktop-nav {
        display: block;
    }

    .hamburger {
        display: none;
    }

    .hero-grid-container {
        grid-template-columns: 1fr 1fr;
        align-items: stretch;
    }

    .hero-image-column {
        grid-column: 1;
    }

    .hero-content-column {
        grid-column: 2;
        margin-left: -60px; /* Overlap style */
        align-self: center;
        z-index: 10;
    }

    .hero-img {
        height: 100%;
        min-height: 450px;
    }

    .text-grid {
        grid-template-columns: 1fr 1fr;
    }

    .timeline::before {
        left: 50%;
        transform: translateX(-50%);
    }

    .timeline-item {
        width: 50%;
        padding-left: 0;
        margin-bottom: 60px;
    }

    .timeline-item:nth-child(even) {
        align-self: flex-end;
        margin-left: 50%;
        padding-left: 40px;
    }

    .timeline-item:nth-child(odd) {
        align-self: flex-start;
        padding-right: 40px;
        text-align: right;
    }

    .timeline-icon {
        left: 50%;
        transform: translateX(-50%);
    }

    .timeline-item:nth-child(even) .timeline-icon {
        left: 0;
        transform: translateX(-50%);
    }

    .timeline-item:nth-child(odd) .timeline-icon {
        right: -43px;
        left: auto;
        transform: translateX(-50%);
    }

    .section-split {
        flex-direction: row;
    }

    .split-container {
        grid-template-columns: 1fr 1fr;
    }

    .split-image {
        height: auto;
        min-height: 400px;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .image-text-layout {
        grid-template-columns: 1.2fr 0.8fr;
    }

    .num-section-item {
        flex-direction: row;
        gap: 32px;
    }

    .num-section-number {
        font-size: 48px;
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-split-layout {
        grid-template-columns: 1.2fr 0.8fr;
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
    }
}

@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;
    }
}

@media (min-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}