:root {
    /* Primary Color Palette - Eco-friendly Pastels */
    --primary-green: #4a7c59;
    --primary-green-light: #6fa37f;
    --primary-green-dark: #2d4a35;
    
    --secondary-sage: #8fbc8f;
    --secondary-sage-light: #a8d1a8;
    --secondary-sage-dark: #7ba07b;
    
    --accent-earth: #d2b48c;
    --accent-earth-light: #e5d4b1;
    --accent-earth-dark: #c19a6b;
    
    --neutral-cream: #f5f5dc;
    --neutral-cream-light: #faf9f0;
    --neutral-cream-dark: #ebe9d0;
    
    --text-forest: #2f4f2f;
    --text-forest-light: #556b55;
    --text-forest-dark: #1a2e1a;
    
    /* Bootstrap Override Variables */
    --bs-primary: var(--primary-green);
    --bs-secondary: var(--secondary-sage);
    --bs-success: var(--primary-green);
    --bs-info: var(--accent-earth);
    --bs-warning: #e6a43b;
    --bs-danger: #dc3545;
    --bs-light: var(--neutral-cream);
    --bs-dark: var(--text-forest);
}

/* Base Typography */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-forest);
    background-color: var(--neutral-cream-light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-forest-dark);
    font-weight: 600;
}

/* Conservative font sizes */
h1 { font-size: 2.25rem; }
h2 { font-size: 1.875rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p { 
    font-size: 1rem;
    margin-bottom: 1rem;
}

/* Header Styles */
.navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.5rem !important;
    font-weight: 700;
    color: var(--primary-green) !important;
}

.navbar-nav .nav-link {
    color: var(--text-forest) !important;
    font-weight: 500;
    padding: 0.75rem 1rem !important;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-green) !important;
}

/* Hero Section */
#hero {
    background: linear-gradient(135deg, var(--neutral-cream-light) 0%, var(--secondary-sage-light) 100%);
    position: relative;
    overflow: hidden;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

/* Button Styles */
.btn {
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
}

.btn-primary:hover {
    background-color: var(--primary-green-dark);
    border-color: var(--primary-green-dark);
    transform: translateY(-2px);
}

.btn-outline-primary {
    color: var(--primary-green);
    border-color: var(--primary-green);
}

.btn-outline-primary:hover {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
}

/* Card Styles */
.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

/* Services Section */
#services .card {
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

#services .card:hover {
    border-color: var(--primary-green);
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-top: 1rem;
}

/* Process Steps */
.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.process-step {
    padding: 2rem 1rem;
}

/* Statistics */
.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-green);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.impact-stat {
    padding: 2rem 1rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.impact-stat:hover {
    transform: translateY(-3px);
}

/* Team Section */
.team-member img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 4px solid var(--neutral-cream);
    transition: border-color 0.3s ease;
}

.team-member:hover img {
    border-color: var(--primary-green);
}

/* Form Styles */
.form-control {
    border: 2px solid var(--neutral-cream-dark);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 0.2rem rgba(74, 124, 89, 0.25);
}

/* Footer */
#footer {
    background: var(--text-forest) !important;
    color: var(--neutral-cream);
}

#footer a {
    color: var(--neutral-cream);
    text-decoration: none;
    transition: color 0.3s ease;
}

#footer a:hover {
    color: var(--secondary-sage-light);
}

/* Gallery */
#gallery img {
    border-radius: 10px;
    transition: transform 0.3s ease;
}

#gallery img:hover {
    transform: scale(1.05);
}

/* Animations and Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .card:hover,
    .impact-stat:hover,
    .btn-primary:hover,
    #gallery img:hover {
        transform: none;
    }
}

/* Custom Component Styles */
.certification-card,
.goal-card,
.program-card,
.supply-step,
.innovation-card {
    padding: 2rem 1rem;
    text-align: center;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.certification-card:hover,
.goal-card:hover,
.program-card:hover,
.supply-step:hover,
.innovation-card:hover {
    transform: translateY(-3px);
}

/* Breadcrumb */
.breadcrumb-section {
    background: var(--neutral-cream);
    border-bottom: 1px solid var(--neutral-cream-dark);
}

.breadcrumb-icon {
    width: 24px;
    height: 24px;
}

/* Section Spacing */
section {
    position: relative;
}

.bg-light {
    background-color: var(--neutral-cream) !important;
}

/* Utility Classes */
.text-success {
    color: var(--primary-green) !important;
}

.text-primary {
    color: var(--primary-green) !important;
}

.text-warning {
    color: #e6a43b !important;
}

.text-info {
    color: var(--accent-earth) !important;
}

.text-danger {
    color: #dc3545 !important;
}

/* Contact Info */
.contact-info {
    background: var(--neutral-cream);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-info h4 {
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

.contact-info .fas {
    color: var(--primary-green);
}

/* Responsive Design Helpers */
@media (max-width: 768px) {
    h1 { font-size: 1.875rem; }
    h2 { font-size: 1.625rem; }
    h3 { font-size: 1.375rem; }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
} 


/* Team Social Links - Retro Style */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
}

.social-icons-grid {
    display: flex;
    gap: 14px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 0;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    border: 3px solid;
    background: transparent;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
}

.social-link:hover {
    transform: translateX(3px) translateY(-3px);
    box-shadow: -3px 3px 0px currentColor;
    color: white;
}

.facebook-link {
    border-color: #1877f2;
    background: #1877f2;
}

.facebook-link:hover {
    background: transparent;
    color: #1877f2;
}

.linkedin-link {
    border-color: #0a66c2;
    background: #0a66c2;
}

.linkedin-link:hover {
    background: transparent;
    color: #0a66c2;
}

.instagram-link {
    border-color: #e4405f;
    background: #e4405f;
}

.instagram-link:hover {
    background: transparent;
    color: #e4405f;
}

.x-link {
    border-color: #000000;
    background: #000000;
    position: relative;
}

.x-link::after {
    content: 'X';
    font-weight: bold;
    font-size: 20px;
    z-index: 2;
    position: relative;
}

.x-link:hover {
    background: transparent;
    color: #000000;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
