/* #B08000, #D4A000, #006064, #FFF9E0 */
:root {
    --color-primary: #B08000;
    --color-secondary: #D4A000;
    --color-accent: #006064;
    --bg-tint: #FFF9E0;
    --bg-dark: #121212;
    --bg-card-dark: #1e1e1e;
    --text-light: #f5f5f5;
    --text-muted: #b0b0b0;
    --border-radius-card: 16px;
    --border-radius-btn: 8px;
    --font-sans: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Base resets & Dark Mode default style */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body.dark-mode {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: var(--color-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-primary);
}

/* Layout Utilities (No Tailwind!) */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dark-bg {
    background-color: #1a1a1a;
}

.text-center-block {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px auto;
}

.section-header h2 {
    font-size: clamp(24px, 4vw, 36px);
    color: var(--color-secondary);
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-muted);
}

.badge {
    display: inline-block;
    background-color: var(--color-accent);
    color: var(--bg-tint);
    padding: 6px 12px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 4px;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

/* Buttons styling with dramatic shadows */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--border-radius-btn);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    min-height: 44px;
}

.btn-primary {
    background-color: var(--color-primary);
    color: #000;
    border: 2px solid var(--color-primary);
    box-shadow: 0 12px 32px rgba(176, 128, 0, 0.3);
}

.btn-primary:hover {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
    color: #000;
    box-shadow: 0 16px 40px rgba(212, 160, 0, 0.4);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-muted);
}

.btn-secondary:hover {
    border-color: var(--color-secondary);
    color: var(--color-secondary);
    transform: translateY(-2px);
}

.btn-accent {
    background-color: var(--color-accent);
    color: var(--text-light);
    border: 2px solid var(--color-accent);
    box-shadow: 0 12px 32px rgba(0, 96, 100, 0.3);
}

.btn-accent:hover {
    background-color: #00838f;
    border-color: #00838f;
    transform: translateY(-2px);
}

.btn-block {
    display: block;
    width: 100%;
}

/* Header & Hamburger styling */
.site-header {
    position: relative;
    width: 100%;
    padding: 15px 10px;
    background-color: var(--bg-dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.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(--color-secondary) !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;
    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;
}

.desktop-nav .nav-list a:hover {
    color: var(--color-secondary);
}

.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-dark);
}

.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);
    font-size: 18px;
    display: block;
}

/* Hero Section: Floating Card Layout */
.hero-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: flex-end;
}

.floating-card {
    background-color: rgba(30, 30, 30, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-card);
    padding: 40px;
    max-width: 650px;
    box-shadow: 0 24px 64px rgba(0,0,0,0.5);
}

.floating-card h1 {
    font-size: clamp(32px, 5vw, 48px);
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-light);
}

.floating-card p {
    font-size: clamp(15px, 3vw, 18px);
    color: var(--text-muted);
    margin-bottom: 30px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

/* Page Hero Header for subpages */
.page-hero {
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-hero h1 {
    font-size: clamp(32px, 5vw, 44px);
    margin-bottom: 16px;
    color: var(--text-light);
}

.page-hero p {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto;
}

/* Benefits 2x2 Grid with Dramatic Shadows */
.grid-2x2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.benefit-card {
    background-color: var(--bg-card-dark);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-card);
    padding: 32px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.22);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.35);
    border-color: var(--color-primary);
}

.benefit-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 20px;
    color: var(--color-secondary);
    margin-bottom: 12px;
}

.benefit-card p {
    color: var(--text-muted);
}

/* Split Section layout */
.split-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.split-text h2 {
    font-size: clamp(26px, 4vw, 36px);
    color: var(--color-secondary);
    margin-bottom: 20px;
}

.split-text p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.rounded-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: var(--border-radius-card);
    box-shadow: 0 24px 64px rgba(0,0,0,0.3);
}

/* Icon Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-item {
    background-color: var(--bg-card-dark);
    border-radius: var(--border-radius-card);
    padding: 24px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.03);
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

.feature-emoji {
    font-size: 32px;
    display: block;
    margin-bottom: 12px;
}

.feature-item h4 {
    font-size: 16px;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.feature-item p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}

/* Numbered Steps Styling */
.steps-horizontal {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.step-card {
    background-color: var(--bg-card-dark);
    border-radius: var(--border-radius-card);
    padding: 32px;
    position: relative;
    border-left: 4px solid var(--color-primary);
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

.step-number {
    font-size: 40px;
    font-weight: 800;
    color: rgba(212, 160, 0, 0.15);
    position: absolute;
    top: 10px;
    right: 20px;
}

.step-card h4 {
    font-size: 18px;
    color: var(--color-secondary);
    margin-bottom: 12px;
}

.step-card p {
    color: var(--text-muted);
    margin: 0;
}

/* Checklist Block Styling */
.checklist-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.checklist-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 16px;
}

.check-icon {
    background-color: var(--color-accent);
    color: var(--bg-tint);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.checklist-item p {
    margin: 0;
    color: var(--text-muted);
}

/* Accordion FAQ Styling */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--bg-card-dark);
    border-radius: var(--border-radius-card);
    margin-bottom: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.faq-item summary {
    padding: 20px;
    font-size: 18px;
    font-weight: 600;
    color: var(--color-secondary);
    cursor: pointer;
    outline: none;
    user-select: none;
    transition: background-color 0.3s;
}

.faq-item summary:hover {
    background-color: rgba(255, 255, 255, 0.02);
}

.faq-content {
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background-color: rgba(0, 0, 0, 0.1);
}

.faq-content p {
    color: var(--text-muted);
    margin: 0;
}

/* Vertical Timeline for Program Page */
.timeline-vertical {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 30px;
    border-left: 2px solid var(--color-accent);
}

.timeline-item {
    position: relative;
    margin-bottom: 48px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-badge {
    position: absolute;
    left: -46px;
    top: 0;
    width: 32px;
    height: 32px;
    background-color: var(--color-primary);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

.timeline-content {
    background-color: var(--bg-card-dark);
    border-radius: var(--border-radius-card);
    padding: 28px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

.timeline-content h3 {
    color: var(--color-secondary);
    margin-bottom: 12px;
}

.timeline-content p {
    color: var(--text-muted);
    margin: 0;
}

/* Stats Block for Program Page */
.section-stats {
    background-color: var(--color-accent);
    color: var(--bg-tint);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
}

.stat-card .stat-num {
    font-size: clamp(36px, 6vw, 54px);
    font-weight: 800;
    color: var(--color-secondary);
    margin-bottom: 8px;
}

.stat-card p {
    font-size: 16px;
    max-width: 250px;
    margin: 0 auto;
    color: var(--bg-tint);
}

/* Manifesto section */
.section-manifesto {
    background-color: var(--bg-tint);
    color: #000;
    text-align: center;
}

.manifesto-text {
    font-family: Georgia, serif;
    font-style: italic;
    font-size: clamp(18px, 4vw, 24px);
    line-height: 1.6;
    color: var(--color-accent);
}

/* Contact Grid & Form Layout */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.contact-form-block {
    background-color: var(--bg-card-dark);
    border-radius: var(--border-radius-card);
    padding: 40px;
    box-shadow: 0 24px 64px rgba(0,0,0,0.2);
}

.custom-form {
    max-width: 800px;
    margin-top: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--color-secondary);
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-btn);
    color: var(--text-light);
    font-family: var(--font-sans);
    outline: none;
    transition: border-color 0.3s;
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--color-primary);
}

.contact-info-block {
    border-radius: var(--border-radius-card);
    padding: 40px;
    box-shadow: 0 24px 64px rgba(0,0,0,0.22);
}

.info-card-item {
    display: flex;
    gap: 20px;
    margin-top: 28px;
    align-items: flex-start;
}

.info-icon {
    font-size: 28px;
    background-color: rgba(176, 128, 0, 0.1);
    padding: 10px;
    border-radius: var(--border-radius-btn);
    flex-shrink: 0;
}

.info-card-item h4 {
    color: var(--color-secondary);
    margin-bottom: 4px;
}

.info-card-item p, .info-card-item a {
    color: var(--text-muted);
    font-size: 15px;
}

.accent-link {
    color: var(--color-secondary) !important;
}

.accent-link:hover {
    color: var(--color-primary) !important;
}

/* Policy Pages Layout */
.policy-main {
    padding: 60px 0;
}

.policy-container {
    max-width: 800px;
    margin: 0 auto;
}

.policy-date {
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 30px;
}

.policy-section {
    margin-bottom: 40px;
}

.policy-section h2 {
    color: var(--color-secondary);
    font-size: 22px;
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 8px;
}

.policy-section p, .policy-section li {
    color: var(--text-muted);
    margin-bottom: 14px;
}

.policy-section ul {
    padding-left: 20px;
}

/* Thank you Page styling */
.thank-main {
    padding: 80px 0;
}

.thank-container {
    max-width: 700px;
    margin: 0 auto;
}

.thank-icon {
    font-size: 64px;
    margin-bottom: 24px;
}

.next-steps-card {
    background-color: var(--bg-card-dark);
    border-radius: var(--border-radius-card);
    padding: 32px;
    margin: 40px 0;
    text-align: left;
    box-shadow: 0 24px 64px rgba(0,0,0,0.22);
}

.next-steps-card h3 {
    color: var(--color-secondary);
    margin-bottom: 20px;
}

.steps-list {
    padding-left: 20px;
}

.steps-list li {
    color: var(--text-muted);
    margin-bottom: 16px;
}

.thank-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Footer layout */
.site-footer {
    background-color: var(--bg-card-dark) !important;
    color: var(--text-light) !important;
    padding: 60px 0 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.footer-brand .logo {
    display: inline-block;
    margin-bottom: 16px;
}

.footer-desc {
    color: var(--text-muted) !important;
    max-width: 320px;
}

.footer-links h4, .footer-contact h4 {
    color: var(--color-secondary) !important;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted) !important;
}

.footer-links a:hover {
    color: var(--color-secondary) !important;
}

.footer-contact p {
    color: var(--text-muted) !important;
    margin-bottom: 12px;
}

.footer-phone, .footer-email {
    color: var(--color-secondary) !important;
}

.footer-phone:hover, .footer-email:hover {
    color: var(--color-primary) !important;
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0 auto;
    padding: 20px 24px 0 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    font-size: 14px;
    color: var(--text-muted) !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: #1a1a1a;
    border-top: 2px solid var(--color-primary);
}

#cookie-banner.hidden { transform: translateY(110%); }

#cookie-banner p { margin: 0; flex: 1; min-width: 200px; color: var(--text-light); font-size: 14px; }

#cookie-banner a { color: var(--color-secondary); text-decoration: underline; }

.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }

.cookie-btn-accept {
    background-color: var(--color-primary);
    color: #000;
    border: none;
    padding: 8px 16px;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
}

.cookie-btn-decline {
    background-color: transparent;
    color: var(--text-muted);
    border: 1px solid var(--text-muted);
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
}

/* Mobile responsive rules (Mobile-First) */
@media (min-width: 768px) {
    .grid-2x2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .split-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 60px;
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .steps-horizontal {
        grid-template-columns: repeat(2, 1fr);
    }

    .checklist-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-grid {
        grid-template-columns: 60% 40%;
    }

    .footer-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@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-horizontal {
        grid-template-columns: repeat(4, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}