/* ====== VARIABLES ====== */
:root {
    /* Primary Colors */
    --primary-100: #5B3DFC;
    --primary-200: #4A2DE6;
    --primary-300: #3A1ED0;
    
    /* Split Complementary Colors */
    --accent-100: #FC3D7C;
    --accent-200: #E62D6A;
    --accent-300: #D01E58;
    
    --accent-alt-100: #3DFC9C;
    --accent-alt-200: #2DE68A;
    --accent-alt-300: #1ED078;
    
    /* Neutral Colors */
    --neutral-100: #FFFFFF;
    --neutral-200: #F5F5F7;
    --neutral-300: #E5E5E7;
    --neutral-400: #D0D0D5;
    --neutral-500: #9090A0;
    --neutral-600: #606070;
    --neutral-700: #404050;
    --neutral-800: #303040;
    --neutral-900: #202030;
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.15);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: rgba(0, 0, 0, 0.1);
    --glass-blur: 10px;
    
    /* Typography */
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    
    /* Transition */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-round: 50%;
}

/* ====== BASE STYLES ====== */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--neutral-800);
    background-color: var(--neutral-200);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: var(--neutral-900);
}

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

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

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

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

.container {
    padding-left: var(--space-md);
    padding-right: var(--space-md);
}

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

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: var(--space-xs);
    position: relative;
    display: inline-block;
}

.section-header h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-100), var(--accent-100));
    border-radius: var(--radius-sm);
}

.text-muted {
    color: var(--neutral-600);
}

/* ====== GLASSMORPHISM CARD ====== */
.glassmorphism-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    box-shadow: 0 8px 32px 0 var(--glass-shadow);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.glassmorphism-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 48px 0 var(--glass-shadow);
}

/* ====== BUTTONS ====== */
.btn, button, input[type='submit'] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-heading);
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-100), var(--primary-200));
    color: white;
    box-shadow: 0 4px 10px rgba(91, 61, 252, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-200), var(--primary-300));
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(91, 61, 252, 0.4);
}

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

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

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

.btn-outline-primary:hover {
    background: rgba(91, 61, 252, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(91, 61, 252, 0.1);
}

.btn-link {
    background: none;
    color: var(--primary-200);
    padding: 0;
    border: none;
    font-weight: 500;
}

.btn-link:hover {
    color: var(--primary-100);
    text-decoration: underline;
}

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

/* ====== NAVBAR ====== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: background var(--transition-normal);
}

.navbar {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

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

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

.nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--neutral-700);
    margin-left: var(--space-sm);
    padding: 0.5rem var(--space-sm);
    position: relative;
    transition: color var(--transition-fast);
}

.nav-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--primary-100), var(--accent-100));
    transition: width var(--transition-normal), left var(--transition-normal);
}

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

.nav-link:hover:after {
    width: 100%;
    left: 0;
}

/* ====== HERO SECTION ====== */
.hero-section {
    position: relative;
    margin-top: 0;
}

.hero-overlay {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
}

.hero-overlay:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(32, 32, 48, 0.7), rgba(91, 61, 252, 0.4));
}

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

.hero-section h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: var(--space-md);
    background: linear-gradient(135deg, var(--neutral-100), var(--neutral-300));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: titleReveal 1s ease forwards;
}

@keyframes titleReveal {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-section .lead {
    font-size: 1.25rem;
    margin-bottom: var(--space-lg);
    animation: fadeIn 1s ease 0.3s forwards;
    opacity: 0;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.hero-section .btn-group {
    display: flex;
    gap: var(--space-sm);
}

.hero-section .btn {
    animation: buttonReveal 1s ease 0.6s forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes buttonReveal {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ====== ABOUT SECTION ====== */
.about-section {
    padding: var(--space-xl) 0;
}

.about-image-container {
    position: relative;
    margin-bottom: var(--space-lg);
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform var(--transition-normal);
}

.about-image-container:hover {
    transform: scale(1.02);
}

.about-content h3 {
    font-size: 2rem;
    margin-bottom: var(--space-md);
    color: var(--primary-200);
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: var(--space-md);
}

.custom-accordion {
    margin-top: var(--space-lg);
}

.accordion-item {
    margin-bottom: var(--space-md);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: box-shadow var(--transition-normal);
}

.accordion-item:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.accordion-header {
    background: linear-gradient(to right, var(--primary-100), var(--primary-200));
    color: white;
    padding: var(--space-md);
    font-family: var(--font-heading);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.accordion-header:hover {
    background: linear-gradient(to right, var(--primary-200), var(--primary-300));
}

.accordion-content {
    padding: var(--space-md);
    background: var(--neutral-100);
    display: none;
}

.accordion-item.active .accordion-content {
    display: block;
}

/* ====== WORKSHOPS SECTION ====== */
.workshops-section {
    padding: var(--space-xl) 0;
    background-color: var(--neutral-200);
}

.workshop-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-md);
    background-color: var(--neutral-100);
}

.workshop-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.card-image {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 250px;
}

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

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

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

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
    color: var(--primary-200);
}

.card-content p {
    color: var(--neutral-700);
    margin-bottom: var(--space-md);
}

.custom-slider {
    margin-top: var(--space-xl);
    position: relative;
}

.slider-container {
    display: flex;
    overflow: hidden;
}

.slider-item {
    min-width: 100%;
    transition: transform var(--transition-normal);
}

.testimonial-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin: 0 auto;
    max-width: 700px;
}

.testimonial-card p {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--neutral-800);
    margin-bottom: var(--space-md);
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-author span {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary-200);
}

.testimonial-author small {
    color: var(--neutral-600);
}

.slider-controls {
    display: flex;
    justify-content: center;
    margin-top: var(--space-md);
}

.slider-controls button {
    background: linear-gradient(135deg, var(--primary-100), var(--primary-200));
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-round);
    font-size: 1.2rem;
    margin: 0 var(--space-xs);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.slider-controls button:hover {
    background: linear-gradient(135deg, var(--primary-200), var(--primary-300));
    transform: scale(1.1);
}

/* ====== CASE STUDIES SECTION ====== */
.case-studies-section {
    padding: var(--space-xl) 0;
}

.case-study-card {
    margin-bottom: var(--space-lg);
    overflow: hidden;
    border-radius: var(--radius-md);
    background-color: var(--neutral-100);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.case-study-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.case-study-card .card-image {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.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(--space-lg);
}

.case-study-card h3 {
    font-size: 1.75rem;
    margin-bottom: var(--space-sm);
    color: var(--primary-200);
}

.case-study-card p {
    color: var(--neutral-700);
    margin-bottom: var(--space-md);
}

/* ====== RESOURCES SECTION ====== */
.resources-section {
    padding: var(--space-xl) 0;
    background-color: var(--neutral-200);
}

.resource-card {
    background-color: var(--neutral-100);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.resource-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
    color: var(--primary-200);
}

.resource-list {
    list-style-type: none;
    padding-left: 0;
}

.resource-list li {
    margin-bottom: var(--space-sm);
}

.resource-list a {
    color: var(--neutral-700);
    transition: color var(--transition-fast);
    display: block;
    padding: var(--space-xs) 0;
}

.resource-list a:before {
    content: '→';
    margin-right: var(--space-xs);
    color: var(--primary-200);
    transition: transform var(--transition-fast);
    display: inline-block;
}

.resource-list a:hover {
    color: var(--primary-100);
}

.resource-list a:hover:before {
    transform: translateX(5px);
}

/* ====== PARTNERS SECTION ====== */
.partners-section {
    padding: var(--space-xl) 0;
}

.partners-container {
    margin-top: var(--space-lg);
}

.partner-card {
    background-color: var(--neutral-100);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    text-align: center;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.partner-card .image-container {
    height: 120px;
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-card img {
    max-height: 100%;
    margin: 0 auto;
    transition: transform var(--transition-normal);
}

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

.partner-card h4 {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
    color: var(--primary-200);
}

.partner-card p {
    color: var(--neutral-700);
    font-size: 0.95rem;
}

/* ====== INSIGHTS SECTION ====== */
.insights-section {
    padding: var(--space-xl) 0;
    background-color: var(--neutral-200);
}

.insight-card {
    background-color: var(--neutral-100);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.insight-card .card-image {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.insight-card .card-content {
    padding: var(--space-lg);
}

.insight-card h3 {
    font-size: 1.75rem;
    margin-bottom: var(--space-sm);
    color: var(--primary-200);
}

.insight-card p {
    color: var(--neutral-700);
    margin-bottom: var(--space-md);
}

.gallery-section {
    margin-top: var(--space-xl);
}

.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-md);
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

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

.gallery-item:hover img {
    transform: scale(1.1);
}

/* ====== SUSTAINABILITY SECTION ====== */
.sustainability-section {
    padding: var(--space-xl) 0;
}

.sustainability-image {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: var(--space-lg);
}

.sustainability-image img {
    width: 100%;
    transition: transform var(--transition-slow);
}

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

.sustainability-content h3 {
    font-size: 2rem;
    margin-bottom: var(--space-md);
    color: var(--primary-200);
}

.sustainability-content p {
    font-size: 1.1rem;
    margin-bottom: var(--space-md);
}

.eco-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.metric-item {
    flex: 1;
    text-align: center;
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    transition: transform var(--transition-normal);
}

.metric-item:hover {
    transform: translateY(-5px);
}

.metric-value {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    background: linear-gradient(135deg, var(--primary-100), var(--accent-alt-200));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.metric-label {
    font-size: 0.9rem;
    color: var(--neutral-700);
    margin-top: var(--space-xs);
}

.sustainability-toggle {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
}

.toggle-switch {
    position: relative;
    width: 60px;
    height: 30px;
}

.toggle-input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-label {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--neutral-400);
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition-normal);
}

.toggle-label:before {
    content: "";
    position: absolute;
    width: 26px;
    height: 26px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    border-radius: 50%;
    transition: var(--transition-normal);
}

.toggle-input:checked + .toggle-label {
    background: linear-gradient(135deg, var(--primary-100), var(--accent-alt-200));
}

.toggle-input:checked + .toggle-label:before {
    transform: translateX(30px);
}

.toggle-info {
    font-size: 0.9rem;
    color: var(--neutral-600);
}

/* ====== HISTORY SECTION ====== */
.history-section {
    padding: var(--space-xl) 0;
    background-color: var(--neutral-200);
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-100), var(--accent-100), var(--accent-alt-200));
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: var(--space-xl);
}

.timeline-dot {
    position: absolute;
    top: 0;
    left: 50%;
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, var(--primary-100), var(--accent-100));
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.timeline-content {
    position: relative;
    width: 45%;
    background: var(--neutral-100);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
}

.timeline-item:nth-child(odd) .timeline-content:before {
    content: '';
    position: absolute;
    top: 10px;
    left: -10px;
    width: 20px;
    height: 20px;
    background: var(--neutral-100);
    transform: rotate(45deg);
}

.timeline-item:nth-child(even) .timeline-content:before {
    content: '';
    position: absolute;
    top: 10px;
    right: -10px;
    width: 20px;
    height: 20px;
    background: var(--neutral-100);
    transform: rotate(45deg);
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
    color: var(--primary-200);
}

.timeline-content p {
    color: var(--neutral-700);
}

@media (max-width: 768px) {
    .timeline:before {
        left: 10px;
    }
    
    .timeline-dot {
        left: 10px;
    }
    
    .timeline-content {
        width: calc(100% - 40px);
        margin-left: 30px !important;
    }
    
    .timeline-item:nth-child(odd) .timeline-content:before,
    .timeline-item:nth-child(even) .timeline-content:before {
        left: -10px;
        right: auto;
    }
}

/* ====== CONTACT SECTION ====== */
.contact-section {
    padding: var(--space-xl) 0;
}

.contact-form-container {
    padding: var(--space-lg);
}

.contact-form .form-label {
    font-weight: 500;
    color: var(--neutral-800);
}

.contact-form .form-control {
    border: 1px solid var(--neutral-400);
    border-radius: var(--radius-md);
    padding: 0.75rem;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.contact-form .form-control:focus {
    border-color: var(--primary-200);
    box-shadow: 0 0 0 3px rgba(91, 61, 252, 0.25);
}

.contact-info {
    padding: var(--space-lg);
    height: 100%;
}

.contact-info h3 {
    font-size: 1.75rem;
    margin-bottom: var(--space-lg);
    color: var(--primary-200);
}

.contact-item {
    margin-bottom: var(--space-md);
}

.contact-item h4 {
    font-size: 1.25rem;
    margin-bottom: var(--space-xs);
    color: var(--neutral-800);
}

.contact-item p {
    color: var(--neutral-600);
}

.social-media h4 {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
}

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

.social-links a {
    display: inline-block;
    padding: var(--space-xs) var(--space-sm);
    background: linear-gradient(135deg, var(--primary-100), var(--primary-200));
    color: white;
    border-radius: var(--radius-md);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.social-links a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(91, 61, 252, 0.3);
}

/* ====== FOOTER ====== */
.footer {
    background-color: var(--neutral-900);
    color: var(--neutral-300);
    padding: var(--space-xl) 0 var(--space-lg);
}

.footer h3 {
    font-size: 1.75rem;
    margin-bottom: var(--space-md);
    color: white;
}

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

.footer p {
    color: var(--neutral-400);
    margin-bottom: var(--space-md);
}

.footer-nav {
    list-style-type: none;
    padding-left: 0;
}

.footer-nav li {
    margin-bottom: var(--space-xs);
}

.footer-nav a {
    color: var(--neutral-400);
    transition: color var(--transition-fast);
}

.footer-nav a:hover {
    color: var(--primary-100);
}

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

.social-media-footer a {
    color: var(--neutral-300);
    transition: color var(--transition-fast);
}

.social-media-footer a:hover {
    color: var(--primary-100);
}

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

.newsletter-form .form-control {
    border: none;
    padding: 0.75rem;
}

.newsletter-form .btn {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.footer-legal {
    margin-top: var(--space-md);
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.footer-legal a {
    color: var(--neutral-500);
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.footer-legal a:hover {
    color: var(--primary-100);
}

.footer-bottom {
    padding-top: var(--space-md);
    margin-top: var(--space-md);
    border-top: 1px solid var(--neutral-800);
}

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

/* ====== ADDITIONAL PAGES STYLES ====== */
body.success-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--neutral-200), var(--neutral-300));
}

.success-container {
    text-align: center;
    padding: var(--space-xl);
    max-width: 600px;
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    box-shadow: 0 20px 40px var(--glass-shadow);
}

.success-icon {
    font-size: 4rem;
    color: var(--accent-alt-200);
    margin-bottom: var(--space-md);
}

.success-title {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
    color: var(--primary-200);
}

.success-message {
    font-size: 1.2rem;
    margin-bottom: var(--space-lg);
    color: var(--neutral-700);
}

.privacy-page, .terms-page {
    padding-top: 100px;
}

.privacy-content, .terms-content {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--space-xl) var(--space-lg);
}

/* ====== ANIMATIONS ====== */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

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

/* ====== UTILITY CLASSES ====== */
.text-gradient {
    background: linear-gradient(135deg, var(--primary-100), var(--accent-100));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.bg-gradient {
    background: linear-gradient(135deg, var(--primary-100), var(--accent-100));
}

.shadow-lg {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* ====== MEDIA QUERIES ====== */
@media (max-width: 992px) {
    .hero-section h1 {
        font-size: 3rem;
    }
    
    .about-content {
        margin-top: var(--space-lg);
    }
    
    .timeline-content {
        padding: var(--space-md);
    }
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .about-content h3, .sustainability-content h3 {
        font-size: 1.75rem;
    }
    
    .eco-metrics {
        flex-direction: column;
    }
    
    .metric-item {
        width: 100%;
    }
    
    .card-image {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section .lead {
        font-size: 1.1rem;
    }
    
    .btn, button, input[type='submit'] {
        padding: 0.6rem 1.2rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .card-content, .timeline-content {
        padding: var(--space-md);
    }
    
    .social-links, .social-media-footer {
        justify-content: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
}