/* Palette Name: Autumn Mobility */
/* Colors: #D95D39 (Terracotta), #F0A202 (Warm Gold), #F9F6F0 (Cream), #2E282A (Charcoal) */

:root {
    --primary: #D95D39;
    --secondary: #F0A202;
    --bg-light: #F9F6F0;
    --text-dark: #2E282A;
    --white: #ffffff;
    --font-main: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font-main); background-color: var(--bg-light); color: var(--text-dark); line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
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; }

/* Typography */
h1, h2, h3, h4 { line-height: 1.2; margin-bottom: 16px; color: var(--text-dark); }
p { margin-bottom: 16px; }
.clamp-title { font-size: clamp(2rem, 5vw, 3.5rem); }
.clamp-title-large { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 800; }

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block; padding: 14px 28px; font-weight: bold; border-radius: 4px; transition: all 0.3s ease; border: none; cursor: pointer;
}
.btn-primary { background-color: var(--primary); color: var(--white); }
.btn-primary:hover { background-color: #b84a2a; transform: translateY(-2px); }
.btn-secondary { background-color: var(--secondary); color: var(--text-dark); }
.btn-secondary:hover { background-color: #d69002; transform: translateY(-2px); }
.btn-block { display: block; width: 100%; text-align: center; }

/* Header & Nav */
.site-header { background-color: var(--white); box-shadow: 0 2px 10px rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 1000; }
.header-container { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; padding: 15px 10px; }
.logo { font-size: 24px; font-weight: 800; color: var(--primary); letter-spacing: 1px; }
.desktop-nav .nav-list { display: flex; list-style: none; gap: 30px; }
.desktop-nav a { font-weight: 600; transition: color 0.3s; }
.desktop-nav a:hover { color: var(--primary); }

/* Burger Menu */
.menu-checkbox { display: none; }
.hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.hamburger .line { width: 25px; height: 3px; background-color: var(--text-dark); transition: 0.3s; }
.mobile-nav { display: none; position: absolute; top: 100%; left: 0; width: 100%; background-color: var(--white); box-shadow: 0 4px 6px rgba(0,0,0,0.1); }
.mobile-nav ul { list-style: none; padding: 20px; }
.mobile-nav li { margin-bottom: 15px; text-align: center; }
.mobile-nav a { font-size: 18px; font-weight: 600; display: block; }

@media (max-width: 768px) {
    .desktop-nav { display: none; }
    .hamburger { display: flex; }
    #menu-toggle:checked ~ .mobile-nav { display: block; }
    #menu-toggle:checked ~ .hamburger .line:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    #menu-toggle:checked ~ .hamburger .line:nth-child(2) { opacity: 0; }
    #menu-toggle:checked ~ .hamburger .line:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}

/* Hero V3 (Asymmetric) */
.hero-v3 { padding: 60px 20px; background: linear-gradient(135deg, var(--bg-light) 0%, #e8e3d8 100%); overflow: hidden; }
.hero-v3-content { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
.badge { display: inline-block; padding: 6px 12px; background-color: var(--secondary); color: var(--text-dark); font-size: 12px; font-weight: bold; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; border-radius: 20px; }
.hero-v3-text h1 { font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 20px; }
.hero-v3-image-wrapper { position: relative; }
.clip-image { width: 100%; height: 500px; object-fit: cover; clip-path: polygon(10% 0, 100% 0, 90% 100%, 0% 100%); border-radius: 8px; }
@media (min-width: 992px) {
    .hero-v3-content { grid-template-columns: 1fr 1fr; }
}

/* Staggered Grid */
.intro-section { padding: 80px 0; }
.intro-header { max-width: 700px; margin: 0 auto 50px; text-align: center; }
.staggered-grid { display: grid; grid-template-columns: 1fr; gap: 30px; }
.stagger-card { background: var(--white); padding: 40px 30px; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); border-top: 4px solid var(--primary); }
.card-icon { font-size: 40px; margin-bottom: 20px; }
@media (min-width: 768px) {
    .staggered-grid { grid-template-columns: repeat(3, 1fr); }
    .card-up { transform: translateY(-20px); }
    .card-down { transform: translateY(20px); }
}

/* Split Layout V3 */
.deep-dive-section { padding: 80px 0; background-color: var(--white); }
.split-layout-v3 { display: grid; grid-template-columns: 1fr; gap: 50px; align-items: center; }
.split-image-box { position: relative; }
.floating-img { border-radius: 20px; box-shadow: -20px 20px 0 var(--secondary); }
.experience-badge { position: absolute; bottom: -20px; right: -20px; background: var(--primary); color: var(--white); padding: 20px; border-radius: 50%; width: 120px; height: 120px; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; box-shadow: 0 10px 20px rgba(217,93,57,0.3); }
.experience-badge .number { font-size: 24px; font-weight: bold; }
.experience-badge .text { font-size: 12px; }
.custom-list { list-style: none; margin-top: 20px; }
.custom-list li { position: relative; padding-left: 30px; margin-bottom: 12px; font-weight: 500; }
.custom-list li::before { content: '→'; position: absolute; left: 0; color: var(--primary); font-weight: bold; }
@media (min-width: 992px) {
    .split-layout-v3 { grid-template-columns: 1fr 1fr; }
}

/* Testimonials V3 */
.testimonials-v3 { padding: 80px 0; }
.quote-grid { display: grid; grid-template-columns: 1fr; gap: 30px; margin-top: 40px; }
.quote-card { background: var(--white); padding: 30px; border-left: 4px solid var(--secondary); position: relative; }
.quote-text { font-style: italic; font-size: 1.1rem; color: #555; }
.quote-author { margin-top: 20px; font-weight: bold; color: var(--primary); }
@media (min-width: 768px) {
    .quote-grid { grid-template-columns: repeat(3, 1fr); }
}

/* CTA Banner */
.cta-banner { background-color: var(--primary); color: var(--white); padding: 80px 20px; }
.cta-banner h2 { color: var(--white); }

/* Program Page */
.page-header { padding: 80px 20px; background-color: var(--text-dark); color: var(--white); }
.page-header h1 { color: var(--white); }
.subtitle { font-size: 1.2rem; opacity: 0.9; max-width: 600px; margin: 0 auto; }
.program-content { padding: 80px 0; }
.program-intro { max-width: 800px; margin: 0 auto 50px; text-align: center; }

/* Accordion */
.accordion-wrapper { max-width: 900px; margin: 0 auto; }
.custom-accordion { background: var(--white); margin-bottom: 15px; border-radius: 8px; box-shadow: 0 4px 6px rgba(0,0,0,0.05); overflow: hidden; }
.custom-accordion summary { padding: 20px; font-size: 1.2rem; font-weight: bold; cursor: pointer; background: var(--white); list-style: none; position: relative; }
.custom-accordion summary::-webkit-details-marker { display: none; }
.custom-accordion summary::after { content: '+'; position: absolute; right: 20px; top: 50%; transform: translateY(-50%); font-size: 1.5rem; color: var(--primary); }
.custom-accordion[open] summary::after { content: '-'; }
.accordion-content { padding: 0 20px 20px; border-top: 1px solid #eee; margin-top: 10px; }
.accordion-split { display: grid; grid-template-columns: 1fr; gap: 20px; margin-top: 15px; }
.rounded-img { border-radius: 8px; }
@media (min-width: 768px) {
    .accordion-split { grid-template-columns: 2fr 1fr; align-items: center; }
}

/* Stats */
.stats-section { padding: 60px 0; background: var(--secondary); }
.stats-grid { display: grid; grid-template-columns: 1fr; gap: 30px; text-align: center; }
.stat-number { display: block; font-size: 3rem; font-weight: 900; color: var(--text-dark); }
.stat-label { font-weight: bold; text-transform: uppercase; letter-spacing: 1px; }
@media (min-width: 768px) {
    .stats-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Mission Page */
.mission-hero { padding: 100px 20px; background: var(--bg-light); border-bottom: 1px solid #ddd; }
.mission-lead { font-size: 1.5rem; color: var(--primary); max-width: 600px; margin: 0 auto; }

/* Vertical Timeline */
.timeline-section { padding: 80px 0; }
.vertical-timeline { position: relative; max-width: 800px; margin: 0 auto; padding: 20px 0; }
.vertical-timeline::before { content: ''; position: absolute; top: 0; bottom: 0; left: 20px; width: 4px; background: var(--primary); }
.timeline-item { position: relative; margin-bottom: 50px; padding-left: 60px; }
.timeline-dot { position: absolute; left: 12px; top: 0; width: 20px; height: 20px; background: var(--secondary); border: 4px solid var(--white); border-radius: 50%; box-shadow: 0 0 0 4px var(--primary); }
.timeline-content { background: var(--white); padding: 30px; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.timeline-img { margin-top: 20px; border-radius: 8px; }
@media (min-width: 768px) {
    .vertical-timeline::before { left: 50%; transform: translateX(-50%); }
    .timeline-item { width: 50%; padding-left: 0; padding-right: 40px; }
    .timeline-item:nth-child(even) { margin-left: auto; padding-right: 0; padding-left: 40px; }
    .timeline-dot { left: auto; right: -10px; }
    .timeline-item:nth-child(even) .timeline-dot { right: auto; left: -10px; }
}

/* Values Grid */
.values-section { padding: 80px 0; background: var(--white); }
.values-grid { display: grid; grid-template-columns: 1fr; gap: 30px; margin-top: 40px; }
.value-card { padding: 30px; background: var(--bg-light); border-radius: 8px; text-align: center; border-bottom: 4px solid var(--primary); }
@media (min-width: 768px) {
    .values-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Contact Page */
.contact-section { padding: 80px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 50px; }
.info-block { margin-top: 30px; padding-left: 20px; border-left: 3px solid var(--secondary); }
.custom-form { background: var(--white); padding: 40px; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); max-width: 800px; margin: 0 auto; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: bold; }
.form-group input, .form-group textarea { width: 100%; padding: 12px 15px; border: 1px solid #ddd; border-radius: 4px; font-family: inherit; font-size: 1rem; }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--primary); }
@media (min-width: 992px) {
    .contact-grid { grid-template-columns: 1fr 1fr; }
}

/* Legal Pages */
.legal-section { padding: 80px 0; }
.legal-content { max-width: 800px; background: var(--white); padding: 50px; border-radius: 8px; box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
.legal-content h2 { margin-top: 30px; color: var(--primary); }

/* Thank You Page */
.thank-you-section { padding: 100px 0; min-height: 60vh; display: flex; align-items: center; }
.thank-you-box { max-width: 600px; margin: 0 auto; background: var(--white); padding: 50px; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.icon-success { font-size: 60px; color: var(--primary); margin-bottom: 20px; }
.next-steps { margin-top: 40px; padding-top: 30px; border-top: 1px solid #eee; }
.action-links { display: flex; gap: 15px; justify-content: center; margin-top: 20px; flex-wrap: wrap; }

/* Footer */
.site-footer { padding: 60px 20px 20px; }
.footer-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 40px; }
.footer-logo { font-size: 24px; font-weight: bold; display: block; margin-bottom: 15px; }
.footer-links ul, .footer-legal ul { list-style: none; }
.footer-links li, .footer-legal li { margin-bottom: 10px; }
@media (min-width: 768px) {
    .footer-container { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

/* 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; background-color: var(--text-dark); color: var(--white); transform: translateY(0); transition: transform 0.4s ease; box-shadow: 0 -4px 10px rgba(0,0,0,0.1); }
#cookie-banner.hidden { transform: translateY(110%); }
#cookie-banner p { margin: 0; flex: 1; min-width: 200px; color: var(--white); }
#cookie-banner a { color: var(--secondary); text-decoration: underline; }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }
.cookie-btn-accept, .cookie-btn-decline { padding: 10px 20px; border: none; border-radius: 4px; cursor: pointer; font-weight: bold; }
.cookie-btn-accept { background-color: var(--primary); color: var(--white); }
.cookie-btn-decline { background-color: transparent; color: var(--white); border: 1px solid var(--white); }
@media (max-width: 600px) {
    #cookie-banner { flex-direction: column; align-items: flex-start; }
    .cookie-btns { width: 100%; }
    .cookie-btn-accept, .cookie-btn-decline { flex: 1; text-align: center; }
}