/* ============================================
   CSS Variables & Theme Configuration
   ============================================ */
:root {
    /* Split-Complementary Color Scheme */
    --primary-color: #2D5F3F;
    --primary-light: #3D7F5F;
    --primary-dark: #1D4F2F;
    --secondary-color: #8B4513;
    --secondary-light: #A0522D;
    --accent-color: #D4A373;
    --accent-light: #E5C4A0;
    --accent-dark: #C4935F;
    
    /* Eco-Minimalist Palette */
    --eco-green: #7FA650;
    --eco-sage: #A8C090;
    --eco-sand: #E8DCC4;
    --eco-stone: #9CA394;
    --eco-earth: #6B5D4F;
    
    /* Neutral Colors */
    --white: #FFFFFF;
    --off-white: #F8F9FA;
    --light-gray: #E9ECEF;
    --medium-gray: #ADB5BD;
    --dark-gray: #495057;
    --black: #212529;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--eco-green) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(45, 95, 63, 0.95) 0%, rgba(127, 166, 80, 0.85) 100%);
    --gradient-card: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 249, 250, 0.9) 100%);
    
    /* Typography */
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(45, 95, 63, 0.08);
    --shadow-md: 0 4px 16px rgba(45, 95, 63, 0.12);
    --shadow-lg: 0 8px 32px rgba(45, 95, 63, 0.16);
    --shadow-xl: 0 12px 48px rgba(45, 95, 63, 0.24);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Layout */
    --header-height: 80px;
    --max-width: 1400px;
}

/* ============================================
   Global Styles & Reset
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-weight: var(--font-weight-normal);
    line-height: 1.7;
    color: var(--dark-gray);
    background-color: var(--off-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: var(--font-weight-bold);
    line-height: 1.3;
    color: var(--primary-dark);
    margin-bottom: var(--spacing-md);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

p {
    margin-bottom: var(--spacing-md);
    font-size: 1.0625rem;
    line-height: 1.8;
}

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

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* ============================================
   Container & Layout Utilities
   ============================================ */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.section {
    padding: var(--spacing-3xl) 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-sm);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    margin: var(--spacing-md) auto 0;
    border-radius: var(--radius-full);
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: var(--medium-gray);
    margin-bottom: var(--spacing-2xl);
    font-weight: var(--font-weight-medium);
}

/* ============================================
   Global Button Styles
   ============================================ */
.button,
.btn,
button:not(.navbar-burger),
input[type='submit'],
input[type='button'] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-md) var(--spacing-xl);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: var(--font-weight-semibold);
    text-decoration: none;
    border-radius: var(--radius-full);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.button::before,
.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--gradient-primary);
    transition: width var(--transition-base);
    z-index: -1;
}

.button:hover::before,
.btn:hover::before {
    width: 100%;
}

.button.is-primary,
.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.button.is-primary:hover,
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

.button.is-light,
.button.is-outlined {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.button.is-light:hover,
.button.is-outlined:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.button.is-large {
    padding: var(--spacing-lg) var(--spacing-2xl);
    font-size: 1.125rem;
}

.button.is-medium {
    padding: var(--spacing-md) var(--spacing-lg);
    font-size: 1rem;
}

.button.is-fullwidth {
    width: 100%;
}

/* ============================================
   Header & Navigation
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.navbar {
    height: var(--header-height);
    background: transparent !important;
}

.navbar-brand {
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary-color) !important;
    letter-spacing: -0.01em;
}

.logo-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-burger {
    color: var(--primary-color);
}

.navbar-item {
    font-family: var(--font-heading);
    font-weight: var(--font-weight-medium);
    color: var(--dark-gray);
    padding: var(--spacing-sm) var(--spacing-md);
    transition: color var(--transition-fast);
    position: relative;
}

.navbar-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-base);
}

.navbar-item:hover {
    color: var(--primary-color);
    background-color: transparent;
}

.navbar-item:hover::after {
    width: 80%;
}

/* ============================================
   Hero Section
   ============================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(45, 95, 63, 0.85) 0%, rgba(127, 166, 80, 0.75) 100%);
    z-index: 1;
}

#particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.hero-body {
    position: relative;
    z-index: 3;
    padding: var(--spacing-3xl) 0;
}

.hero-title {
    color: var(--white) !important;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    margin-bottom: var(--spacing-md);
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    color: var(--white) !important;
    font-size: 1.75rem;
    margin-bottom: var(--spacing-lg);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-description {
    color: var(--white) !important;
    font-size: 1.125rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto var(--spacing-xl);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
}

/* ============================================
   Workshops Section
   ============================================ */
.workshops-section {
    background: var(--off-white);
}

.workshop-card {
    height: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
    background: var(--white);
    border: none;
    display: flex;
    flex-direction: column;
}

.workshop-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.workshop-card .card-image {
    overflow: hidden;
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-gray);
}

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

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

.workshop-card .card-content {
    padding: var(--spacing-lg);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.workshop-card .title {
    color: var(--primary-dark);
    margin-bottom: var(--spacing-md);
    font-size: 1.5rem;
}

.workshop-description {
    color: var(--dark-gray);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
    flex-grow: 1;
}

.workshop-meta {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
    margin-top: auto;
}

.tag {
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: var(--font-weight-medium);
}

.tag.is-info {
    background: var(--eco-sage);
    color: var(--primary-dark);
}

.tag.is-success {
    background: var(--eco-green);
    color: var(--white);
}

.tag.is-warning {
    background: var(--accent-color);
    color: var(--primary-dark);
}

.tag.is-primary {
    background: var(--primary-color);
    color: var(--white);
}

/* ============================================
   Case Studies Section
   ============================================ */
.case-studies-section {
    background: var(--white);
}

.case-study-card {
    height: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    background: var(--white);
    border: none;
    display: flex;
    flex-direction: column;
}

.case-study-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}

.case-study-card .card-image {
    overflow: hidden;
    height: 320px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-gray);
}

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

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

.case-study-card .card-content {
    padding: var(--spacing-xl);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.case-study-card .title {
    color: var(--primary-dark);
    margin-bottom: var(--spacing-md);
    font-size: 1.75rem;
}

.case-study-text {
    color: var(--dark-gray);
    font-size: 1.0625rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
    flex-grow: 1;
}

.case-study-card .tag.is-medium {
    padding: var(--spacing-sm) var(--spacing-lg);
    font-size: 1rem;
    align-self: flex-start;
}

/* ============================================
   Statistics Section
   ============================================ */
.statistics-section {
    background: var(--gradient-primary);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.statistics-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.statistics-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    pointer-events: none;
}

.statistics-section .section-title {
    color: var(--white);
}

.statistics-section .section-title::after {
    background: var(--white);
}

.statistics-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    text-align: center;
    transition: all var(--transition-base);
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stat-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.stat-icon {
    margin-bottom: var(--spacing-md);
    color: var(--eco-sand);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--white);
    margin-bottom: var(--spacing-sm);
    line-height: 1;
}

.stat-label {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: var(--font-weight-semibold);
    color: var(--white);
    margin-bottom: var(--spacing-sm);
}

.stat-description {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   Research Section
   ============================================ */
.research-section {
    background: var(--off-white);
}

.research-content h3 {
    color: var(--primary-dark);
    margin-top: var(--spacing-xl);
    margin-bottom: var(--spacing-md);
}

.research-content p {
    color: var(--dark-gray);
    font-size: 1.0625rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
}

.research-image-wrapper {
    margin: var(--spacing-xl) 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-gray);
}

.research-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.research-sidebar {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-md);
    margin-bottom: var(--spacing-lg);
    border: 1px solid var(--light-gray);
}

.research-sidebar .title {
    color: var(--primary-dark);
    margin-bottom: var(--spacing-md);
    font-size: 1.25rem;
}

.research-list {
    list-style: none;
    padding: 0;
}

.research-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    color: var(--dark-gray);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.research-list li i {
    color: var(--eco-green);
    margin-top: 4px;
    flex-shrink: 0;
}

.research-source {
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--light-gray);
}

.research-source .title {
    font-size: 1rem;
    margin-bottom: var(--spacing-sm);
}

/* ============================================
   External Resources Section
   ============================================ */
.resources-section {
    background: var(--white);
}

.resource-cards {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.resource-card {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    border: 1px solid var(--light-gray);
    background: var(--white);
}

.resource-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.resource-card .card-content {
    padding: var(--spacing-xl);
}

.resource-card .media {
    margin-bottom: var(--spacing-md);
}

.resource-card .title a {
    color: var(--primary-dark);
    transition: color var(--transition-fast);
    text-decoration: none;
    display: inline-block;
    position: relative;
}

.resource-card .title a::after {
    content: ' →';
    opacity: 0;
    transform: translateX(-10px);
    transition: all var(--transition-base);
}

.resource-card .title a:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.resource-card .title a:hover {
    color: var(--primary-light);
}

.resource-card .subtitle {
    color: var(--medium-gray);
    font-size: 0.9375rem;
    margin-bottom: var(--spacing-sm);
}

.resource-card .content p {
    color: var(--dark-gray);
    line-height: 1.7;
    margin: 0;
}

.resource-card .icon {
    color: var(--primary-color);
}

/* ============================================
   Customer Stories Section
   ============================================ */
.customer-stories-section {
    background: var(--off-white);
}

.testimonial-carousel {
    width: 100%;
}

.testimonial-card {
    height: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    background: var(--white);
    border: none;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.testimonial-card .card-content {
    padding: var(--spacing-xl);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.testimonial-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-color);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-gray);
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info {
    flex-grow: 1;
}

.testimonial-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary-dark);
    margin-bottom: var(--spacing-xs);
}

.testimonial-role {
    font-size: 0.9375rem;
    color: var(--medium-gray);
    margin: 0;
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: var(--spacing-md);
    color: #FFB800;
}

.testimonial-text {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--dark-gray);
    font-style: italic;
    position: relative;
    padding-left: var(--spacing-lg);
    margin: 0;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

/* ============================================
   Contact Section
   ============================================ */
.contact-section {
    background: var(--white);
}

.contact-form-wrapper {
    background: var(--off-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-2xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--light-gray);
}

.contact-form .field {
    margin-bottom: var(--spacing-lg);
}

.contact-form .label {
    font-family: var(--font-heading);
    font-weight: var(--font-weight-semibold);
    color: var(--primary-dark);
    margin-bottom: var(--spacing-sm);
    display: block;
}

.contact-form .input,
.contact-form .textarea,
.contact-form .select select {
    width: 100%;
    padding: var(--spacing-md);
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--dark-gray);
    background: var(--white);
    transition: all var(--transition-base);
}

.contact-form .input:focus,
.contact-form .textarea:focus,
.contact-form .select select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(45, 95, 63, 0.1);
}

.contact-form .textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-form .control.has-icons-left .icon {
    color: var(--medium-gray);
}

.contact-form .checkbox {
    font-size: 0.9375rem;
    color: var(--dark-gray);
}

.contact-form .checkbox input {
    margin-right: var(--spacing-xs);
}

.contact-form .checkbox a {
    color: var(--primary-color);
    font-weight: var(--font-weight-medium);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.contact-info-item {
    display: flex;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    border: 1px solid var(--light-gray);
}

.contact-info-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.contact-info-item .icon-wrapper {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    color: var(--white);
    flex-shrink: 0;
}

.contact-details {
    flex-grow: 1;
}

.contact-details .title {
    font-size: 1.125rem;
    color: var(--primary-dark);
    margin-bottom: var(--spacing-xs);
}

.contact-details p {
    margin: 0;
    color: var(--dark-gray);
    font-size: 1rem;
    line-height: 1.6;
}

.contact-details a {
    color: var(--primary-color);
    font-weight: var(--font-weight-medium);
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: var(--spacing-3xl) 0 var(--spacing-lg);
    margin-top: auto;
}

.footer .title {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
}

.footer-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
}

.social-links {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-sm) var(--spacing-md);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: var(--font-weight-medium);
    font-size: 0.9375rem;
    text-decoration: none;
    transition: all var(--transition-base);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    background: var(--eco-green);
    color: var(--white);
    transform: translateY(-2px);
    border-color: var(--eco-green);
}

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

.footer-links li {
    margin-bottom: var(--spacing-sm);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    transition: all var(--transition-fast);
    display: inline-block;
    position: relative;
    padding-left: var(--spacing-md);
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: 0;
    opacity: 0;
    transition: all var(--transition-base);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: var(--spacing-lg);
}

.footer-links a:hover::before {
    opacity: 1;
}

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

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.6;
}

.footer-contact li i {
    color: var(--eco-sand);
    margin-top: 4px;
    flex-shrink: 0;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.85);
    transition: color var(--transition-fast);
}

.footer-contact a:hover {
    color: var(--white);
}

.footer-divider {
    background: rgba(255, 255, 255, 0.2);
    height: 1px;
    border: none;
    margin: var(--spacing-xl) 0 var(--spacing-lg);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    margin: 0;
}

/* ============================================
   Success Page Styles
   ============================================ */
.success-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    padding: var(--spacing-2xl) var(--spacing-lg);
}

.success-content {
    text-align: center;
    background: var(--white);
    padding: var(--spacing-3xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    max-width: 600px;
    width: 100%;
}

.success-icon {
    font-size: 5rem;
    color: var(--eco-green);
    margin-bottom: var(--spacing-lg);
}

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

.success-content p {
    color: var(--dark-gray);
    font-size: 1.125rem;
    margin-bottom: var(--spacing-xl);
}

/* ============================================
   Privacy & Terms Pages
   ============================================ */
.content-page {
    padding-top: 100px;
    min-height: 100vh;
    background: var(--off-white);
}

.content-page .container {
    max-width: 900px;
}

.content-page .content {
    background: var(--white);
    padding: var(--spacing-3xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin-bottom: var(--spacing-3xl);
}

.content-page h1 {
    color: var(--primary-dark);
    margin-bottom: var(--spacing-xl);
    padding-bottom: var(--spacing-md);
    border-bottom: 3px solid var(--primary-color);
}

.content-page h2 {
    color: var(--primary-dark);
    margin-top: var(--spacing-xl);
    margin-bottom: var(--spacing-md);
}

.content-page h3 {
    color: var(--primary-color);
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-sm);
}

.content-page p {
    color: var(--dark-gray);
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

.content-page ul,
.content-page ol {
    margin-bottom: var(--spacing-lg);
    padding-left: var(--spacing-xl);
}

.content-page li {
    color: var(--dark-gray);
    margin-bottom: var(--spacing-sm);
    line-height: 1.7;
}

.content-page strong {
    color: var(--primary-dark);
    font-weight: var(--font-weight-semibold);
}

.content-page a {
    color: var(--primary-color);
    font-weight: var(--font-weight-medium);
    text-decoration: underline;
}

/* ============================================
   Read More Links
   ============================================ */
.read-more,
a.read-more {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-weight: var(--font-weight-semibold);
    font-size: 1rem;
    text-decoration: none;
    transition: all var(--transition-base);
    position: relative;
}

.read-more::after {
    content: '→';
    transition: transform var(--transition-base);
}

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

.read-more:hover::after {
    transform: translateX(4px);
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Particle Animation */
@keyframes particleFloat {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(50px);
        opacity: 0;
    }
}

/* ============================================
   Responsive Design
   ============================================ */
@media screen and (max-width: 1024px) {
    :root {
        --spacing-3xl: 4rem;
        --spacing-2xl: 3rem;
    }
    
    .section {
        padding: var(--spacing-2xl) 0;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 768px) {
    :root {
        --spacing-3xl: 3rem;
        --spacing-2xl: 2rem;
        --spacing-xl: 2rem;
    }
    
    .navbar-menu {
        background: rgba(255, 255, 255, 0.98);
        box-shadow: var(--shadow-lg);
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-buttons .button {
        width: 100%;
    }
    
    .workshop-card .card-image,
    .case-study-card .card-image {
        height: 220px;
    }
    
    .research-image-wrapper {
        height: 280px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .contact-form-wrapper {
        padding: var(--spacing-lg);
    }
    
    .contact-info-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .testimonial-header {
        flex-direction: column;
        text-align: center;
    }
    
    .footer .columns {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .content-page .content {
        padding: var(--spacing-lg);
    }
}

@media screen and (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-md);
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .button.is-large {
        padding: var(--spacing-md) var(--spacing-lg);
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
}

/* ============================================
   Print Styles
   ============================================ */
@media print {
    .header,
    .navbar,
    .hero-buttons,
    .contact-section,
    .footer {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .section {
        page-break-inside: avoid;
    }
}

/* ============================================
   Accessibility
   ============================================ */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

*:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #1D4F2F;
        --dark-gray: #000000;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============================================
   Utility Classes
   ============================================ */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--spacing-xs); }
.mb-2 { margin-bottom: var(--spacing-sm); }
.mb-3 { margin-bottom: var(--spacing-md); }
.mb-4 { margin-bottom: var(--spacing-lg); }
.mb-5 { margin-bottom: var(--spacing-xl); }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--spacing-xs); }
.mt-2 { margin-top: var(--spacing-sm); }
.mt-3 { margin-top: var(--spacing-md); }
.mt-4 { margin-top: var(--spacing-lg); }
.mt-5 { margin-top: var(--spacing-xl); }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

.justify-center { justify-content: center; }
.align-center { align-items: center; }
.flex-column { flex-direction: column; }

/* ============================================
   Loading States
   ============================================ */
.is-loading {
    position: relative;
    pointer-events: none;
    opacity: 0.6;
}

.is-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 24px;
    margin: -12px 0 0 -12px;
    border: 3px solid var(--light-gray);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}
.navbar{
    background-color: #212529 !important;
}
@media (max-width: 768px) {
    .hero-body{
        padding-top: 100px;
    }
}