/* Root Variables */
:root {
    /* Primary Colors */
    --primary-color: #6c9e7b;
    --primary-dark: #588768;
    --primary-light: #8fb79c;
    
    /* Secondary Colors */
    --secondary-color: #e9c46a;
    --secondary-dark: #d4b055;
    --secondary-light: #f3d282;
    
    /* Accent Colors */
    --accent-color: #f39c94;
    --accent-dark: #e07e75;
    --accent-light: #f8b5ae;
    
    /* Neutral Colors */
    --neutral-100: #ffffff;
    --neutral-200: #f8f9fa;
    --neutral-300: #e9ecef;
    --neutral-400: #dee2e6;
    --neutral-500: #adb5bd;
    --neutral-600: #6c757d;
    --neutral-700: #495057;
    --neutral-800: #343a40;
    --neutral-900: #212529;
    
    /* Shadows & Highlights for Neuromorphism */
    --shadow-color: rgba(0, 0, 0, 0.06);
    --highlight-color: rgba(255, 255, 255, 0.8);
    --neuro-shadow: 5px 5px 10px var(--shadow-color), -5px -5px 10px var(--highlight-color);
    --neuro-pressed: inset 5px 5px 10px var(--shadow-color), inset -5px -5px 10px var(--highlight-color);
    
    /* Typography */
    --heading-font: 'Manrope', sans-serif;
    --body-font: 'Rubik', sans-serif;
    
    /* Border Radius */
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 20px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Spacings */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 3rem;
    --space-xl: 5rem;
}

/* Base Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    color: var(--neutral-700);
    background-color: var(--neutral-200);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 600;
    line-height: 1.3;
    color: var(--neutral-800);
    margin-bottom: var(--space-sm);
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
}

h3 {
    font-size: 1.8rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.2rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: var(--space-sm);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-normal);
}

a:hover {
    color: var(--primary-dark);
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius-sm);
}

section {
    padding: var(--space-xl) 0;
    position: relative;
}

.section-header {
    margin-bottom: var(--space-lg);
}

.subtitle {
    font-size: 1.2rem;
    color: var(--neutral-600);
    margin-bottom: var(--space-md);
}

/* Buttons */
.btn, 
button, 
input[type='submit'] {
    display: inline-block;
    font-family: var(--heading-font);
    font-weight: 500;
    padding: 0.8rem 1.8rem;
    border-radius: var(--border-radius-md);
    transition: all var(--transition-normal);
    text-align: center;
    border: none;
    cursor: pointer;
    box-shadow: var(--neuro-shadow);
}

.btn:hover, 
button:hover, 
input[type='submit']:hover {
    transform: translateY(-3px);
}

.btn:active, 
button:active, 
input[type='submit']:active {
    transform: translateY(1px);
    box-shadow: var(--neuro-pressed);
}

.btn-primary, 
.btn-primary:visited {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover, 
.btn-primary:active, 
.btn-primary:focus {
    background-color: var(--primary-dark);
    color: white;
}

.btn-outline-primary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline-primary:hover, 
.btn-outline-primary:active, 
.btn-outline-primary:focus {
    background-color: var(--primary-color);
    color: white;
}

.btn-outline-light {
    background-color: transparent;
    color: var(--neutral-100);
    border: 2px solid var(--neutral-100);
}

.btn-outline-light:hover, 
.btn-outline-light:active, 
.btn-outline-light:focus {
    background-color: var(--neutral-100);
    color: var(--primary-color);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* Form Elements */
.form-control, 
.form-select {
    padding: 0.8rem 1rem;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--neutral-400);
    background-color: var(--neutral-100);
    transition: all var(--transition-normal);
}

.form-control:focus, 
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(108, 158, 123, 0.25);
}

textarea.form-control {
    min-height: 120px;
}

.form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--neutral-700);
}

/* Card Styles */
.card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--neutral-100);
    border-radius: var(--border-radius-lg);
    border: none;
    overflow: hidden;
    box-shadow: var(--neuro-shadow);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    margin-bottom: var(--space-md);
    height: 100%;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.card-image {
    width: 100%;
    height: 230px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    padding: var(--space-md);
    flex: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.card-content h3 {
    font-size: 1.4rem;
    margin-bottom: var(--space-sm);
}

.card-content p {
    color: var(--neutral-700);
    flex: 1;
}

.card-content .btn {
    align-self: flex-start;
    margin-top: auto;
}

/* Animation Utilities */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

/* Header Styles */
.header-section {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    transition: all var(--transition-normal);
}

.header-section.scrolled {
    padding: 0.7rem 0;
    background-color: rgba(255, 255, 255, 0.98);
}

.navbar-brand {
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--primary-color);
}

.navbar-brand:hover {
    color: var(--primary-dark);
}

.nav-link {
    font-family: var(--heading-font);
    font-weight: 500;
    color: var(--neutral-700);
    padding: 0.5rem 1rem !important;
    position: relative;
    transition: color var(--transition-normal);
}

.nav-link:hover, 
.nav-link:focus {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: all var(--transition-normal);
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 70%;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    color: white;
    margin-top: 0;
    padding-top: 80px;
}

.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4));
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
}

.hero-section p.lead {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: white;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Mission Section */
.mission-section {
    background-color: var(--neutral-100);
}

.image-container {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--neuro-shadow);
}

.content-box {
    padding: var(--space-md);
}

.stats-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-top: var(--space-md);
}

.stats-item {
    text-align: center;
    flex: 1;
    min-width: 100px;
}

.stats-item h4 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stats-item p {
    font-size: 0.9rem;
    color: var(--neutral-600);
}

/* Workshops Section */
.workshops-section {
    background-color: var(--neutral-200);
    position: relative;
    overflow: hidden;
}

.workshops-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background-color: rgba(108, 158, 123, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.workshops-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(233, 196, 106, 0.1);
    border-radius: 50%;
    z-index: 0;
}

/* Insights Section */
.insights-section {
    background-color: var(--neutral-100);
}

.insight-card {
    background-color: var(--neutral-100);
    border-radius: var(--border-radius-lg);
    padding: var(--space-md);
    box-shadow: var(--neuro-shadow);
    height: 100%;
}

.insight-card h3 {
    color: var(--primary-color);
    font-size: 1.6rem;
}

.insight-card .source {
    color: var(--neutral-600);
    font-size: 0.9rem;
    font-style: italic;
    margin-bottom: var(--space-sm);
}

.quote {
    padding: var(--space-sm);
    background-color: rgba(108, 158, 123, 0.05);
    border-left: 4px solid var(--primary-color);
    border-radius: var(--border-radius-sm);
    margin-bottom: var(--space-sm);
}

.slider-container {
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    box-shadow: var(--neuro-shadow);
}

.custom-slider .slide img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--border-radius-sm);
}

/* Resources Section */
.resources-section {
    background-color: var(--neutral-200);
}

/* Instructors Section */
.instructors-section {
    background-color: var(--neutral-100);
}

.instructors-section .card-image {
    height: 450px;
}

.instructors-section .card-content {
    text-align: center;
}

.position {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: var(--space-sm);
}

.social-links {
    margin-top: var(--space-sm);
}

.social-links a {
    display: inline-block;
    margin: 0 var(--space-xs);
    color: var(--primary-color);
    font-weight: 500;
    transition: color var(--transition-normal);
}

.social-links a:hover {
    color: var(--primary-dark);
}

/* Pricing Section */
.pricing-section {
    background-color: var(--neutral-200);
}

.pricing-card {
    background-color: var(--neutral-100);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--neuro-shadow);
    transition: transform var(--transition-normal);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.pricing-card.featured {
    transform: scale(1.05);
    border: 2px solid var(--primary-color);
    z-index: 10;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-header {
    padding: var(--space-md);
    background-color: rgba(108, 158, 123, 0.1);
    text-align: center;
    position: relative;
}

.badge {
    position: absolute;
    top: 0;
    right: var(--space-sm);
    background-color: var(--primary-color);
    color: white;
    padding: 0.25rem 1rem;
    font-size: 0.8rem;
    border-radius: 0 0 var(--border-radius-sm) var(--border-radius-sm);
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--neutral-800);
    display: flex;
    justify-content: center;
    align-items: baseline;
    margin: var(--space-sm) 0;
}

.price .currency {
    font-size: 1rem;
    margin-right: 0.25rem;
}

.price .period {
    font-size: 1rem;
    color: var(--neutral-600);
    margin-left: 0.5rem;
}

.pricing-features {
    padding: var(--space-md);
    flex: 1;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    padding: 0.5rem 0;
    color: var(--neutral-700);
    position: relative;
    padding-left: 1.5rem;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.pricing-footer {
    padding: var(--space-md);
    text-align: center;
    margin-top: auto;
}

/* News Section */
.news-section {
    background-color: var(--neutral-100);
}

.news-card {
    display: flex;
    flex-direction: column;
    background-color: var(--neutral-100);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--neuro-shadow);
    height: 100%;
    transition: transform var(--transition-normal);
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-card .card-image {
    height: 300px;
}

.news-card .card-content {
    padding: var(--space-md);
    flex: 1;
}

.date {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: var(--space-xs);
}

/* Careers Section */
.careers-section {
    background-color: var(--neutral-200);
}

.career-positions {
    list-style: none;
    padding: 0;
}

.career-positions li {
    margin-bottom: var(--space-sm);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid var(--neutral-300);
}

.career-positions li:last-child {
    border-bottom: none;
}

.career-positions h5 {
    color: var(--neutral-800);
    margin-bottom: 0.3rem;
}

/* Press Section */
.press-section {
    background-color: var(--neutral-100);
}

.press-logos {
    margin: var(--space-lg) 0;
}

.press-logos img {
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all var(--transition-normal);
    max-height: 80px;
    width: auto;
}

.press-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.press-feature {
    background-color: var(--neutral-100);
    border-radius: var(--border-radius-lg);
    padding: var(--space-md);
    box-shadow: var(--neuro-shadow);
    height: 100%;
}

.press-feature h3 {
    color: var(--primary-color);
}

.press-feature .source {
    color: var(--neutral-600);
    font-size: 0.9rem;
    font-style: italic;
}

/* Contact Section */
.contact-section {
    background-color: var(--neutral-200);
}

.contact-info {
    background-color: var(--neutral-100);
    padding: var(--space-md);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--neuro-shadow);
    height: 100%;
}

.contact-info ul {
    list-style: none;
    padding: 0;
    margin: var(--space-md) 0;
}

.contact-info li {
    margin-bottom: var(--space-sm);
    display: flex;
    align-items: flex-start;
}

.contact-info i {
    margin-right: var(--space-sm);
    color: var(--primary-color);
}

.map-container {
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    box-shadow: var(--neuro-shadow);
}

.contact-form {
    background-color: var(--neutral-100);
    padding: var(--space-md);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--neuro-shadow);
    height: 100%;
}

/* Footer Section */
.footer-section {
    background-color: var(--neutral-800);
    color: var(--neutral-300);
    padding: var(--space-lg) 0 var(--space-sm);
    position: relative;
    overflow: hidden;
}

.footer-section h3 {
    color: var(--neutral-100);
    font-size: 1.4rem;
    margin-bottom: var(--space-md);
}

.footer-section p {
    color: var(--neutral-400);
}

.footer-about, 
.footer-links, 
.footer-newsletter {
    margin-bottom: var(--space-lg);
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--neutral-400);
    transition: color var(--transition-normal);
}

.footer-links a:hover {
    color: var(--primary-light);
}

.footer-newsletter form {
    margin-bottom: var(--space-sm);
}

.footer-newsletter .input-group {
    border-radius: var(--border-radius-md);
    overflow: hidden;
}

.footer-newsletter input {
    border: none;
    padding: 0.8rem 1rem;
}

.social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-top: var(--space-sm);
}

.social-icons a {
    color: var(--neutral-300);
    transition: color var(--transition-normal);
}

.social-icons a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    margin-top: var(--space-lg);
    padding-top: var(--space-sm);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin-bottom: 0;
    color: var(--neutral-500);
}

/* Success Page */
.success-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-lg) 0;
}

.success-content {
    max-width: 600px;
    padding: var(--space-md);
    /* background-color: var(--neutral-100); */
    border-radius: var(--border-radius-lg);
    /* box-shadow: var(--neuro-shadow); */
    margin-left: auto;
    margin-right: auto;
}

.success-content h1 {
    color: var(--primary-color);
    margin-bottom: var(--space-md);
}

.success-content .icon {
    font-size: 5rem;
    color: var(--primary-color);
    margin-bottom: var(--space-md);
}

/* Terms & Privacy Pages */
.terms-page, 
.privacy-page {
    padding-top: 100px;
}

.terms-content, 
.privacy-content {
    background-color: var(--neutral-100);
    padding: var(--space-md);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--neuro-shadow);
}

/* Mobile Optimizations */
@media (max-width: 991.98px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-section h1 {
        font-size: 2.8rem;
    }
    
    .hero-section p.lead {
        font-size: 1.2rem;
    }
    
    .card-image {
        height: 200px;
    }
    
    .instructors-section .card-image {
        height: 300px;
    }
    
    .news-card .card-image {
        height: 250px;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 767.98px) {
    section {
        padding: var(--space-lg) 0;
    }
    
    .section-header {
        margin-bottom: var(--space-md);
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-section h1 {
        font-size: 2.2rem;
    }
    
    .hero-section {
        min-height: 500px;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-buttons .btn {
        width: 100%;
        margin-left: 0 !important;
        margin-top: var(--space-xs);
    }
    
    .content-box {
        padding: var(--space-sm) 0;
    }
    
    .stats-container {
        flex-direction: column;
        align-items: center;
        gap: var(--space-sm);
    }
    
    .card, 
    .insight-card, 
    .pricing-card, 
    .news-card, 
    .press-feature, 
    .contact-info, 
    .contact-form {
        margin-bottom: var(--space-md);
    }
}

@media (max-width: 575.98px) {
    .hero-section {
        min-height: 450px;
    }
    
    .hero-section h1 {
        font-size: 1.8rem;
    }
    
    .hero-section p.lead {
        font-size: 1.1rem;
    }
}

/* Utilities */
.bg-primary {
    background-color: var(--primary-color) !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

.bg-secondary {
    background-color: var(--secondary-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

.bg-accent {
    background-color: var(--accent-color) !important;
}

.text-accent {
    color: var(--accent-color) !important;
}

.read-more {
    display: inline-block;
    font-weight: 500;
    color: var(--primary-color);
    position: relative;
    padding-right: 1.5rem;
    margin-top: var(--space-xs);
    transition: all var(--transition-normal);
}

.read-more:after {
    content: '→';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: transform var(--transition-normal);
}

.read-more:hover {
    color: var(--primary-dark);
}

.read-more:hover:after {
    transform: translateY(-50%) translateX(3px);
}