/* ===== CSS VARIABLES ===== */
:root {
    /* Primary Colors - Pastel High Contrast */
    --eco-green: #4ade80;
    --eco-green-light: #86efac;
    --eco-green-dark: #16a34a;
    
    --nature-blue: #0ea5e9;
    --nature-blue-light: #7dd3fc;
    --nature-blue-dark: #0284c7;
    
    --earth-brown: #a3a3a3;
    --earth-brown-light: #d6d3d1;
    --earth-brown-dark: #57534e;
    
    --sun-yellow: #fbbf24;
    --sun-yellow-light: #fde047;
    --sun-yellow-dark: #f59e0b;
    
    --forest-teal: #14b8a6;
    --forest-teal-light: #5eead4;
    --forest-teal-dark: #0f766e;
    
    /* Typography */
    --font-family-base: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    /* Spacing */
    --section-padding: 5rem 0;
    --card-padding: 2rem;
}

/* ===== GLOBAL STYLES ===== */
body {
    font-family: var(--font-family-base);
    line-height: 1.6;
    color: #374151;
    overflow-x: hidden;
}

/* Conservative font sizes */
.navbar-brand {
    font-size: 1.25rem !important;
    font-weight: 600;
    color: var(--eco-green-dark);
}

h1, .display-4 {
    font-size: 2.5rem;
    color: var(--earth-brown-dark);
}

h2, .h2 {
    font-size: 2rem;
    color: var(--nature-blue-dark);
}

p.lead {
    font-size: 1.125rem;
}

/* ===== HEADER STYLES ===== */
#header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--earth-brown-dark);
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--eco-green);
}

/* ===== HERO SECTION ===== */
.hero-section {
    background: linear-gradient(135deg, var(--eco-green-light) 0%, var(--nature-blue-light) 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 40%;
    height: 200%;
    background: var(--sun-yellow-light);
    border-radius: 50%;
    opacity: 0.1;
    transform: rotate(45deg);
}

.hero-buttons .btn {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
}

.btn-primary {
    background-color: var(--eco-green);
    border-color: var(--eco-green);
}

.btn-primary:hover {
    background-color: var(--eco-green-dark);
    border-color: var(--eco-green-dark);
}

.btn-outline-primary {
    color: var(--eco-green);
    border-color: var(--eco-green);
}

.btn-outline-primary:hover {
    background-color: var(--eco-green);
    border-color: var(--eco-green);
}

/* ===== SECTION STYLES ===== */
section {
    padding: var(--section-padding);
}

.bg-light {
    background-color: #f8fafc !important;
}

/* ===== CARD STYLES ===== */
.card {
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-card .card-img-top,
.blog-card .card-img-top,
.case-study-card .card-img-top {
    height: 200px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
}

/* ===== FEATURE CARDS ===== */
.feature-card {
    background: white;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-3px);
}

/* ===== PRICING CARDS ===== */
.pricing-card {
    position: relative;
    border-radius: 12px;
}

.pricing-card .badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.price-display {
    padding: 1rem;
    background: linear-gradient(135deg, var(--eco-green-light), var(--nature-blue-light));
    border-radius: 8px;
    margin: 1rem 0;
}

/* ===== TEAM STYLES ===== */
.team-photo {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 4px solid var(--eco-green-light);
}

/* ===== PROCESS STYLES ===== */
.step-number {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    font-weight: bold;
}

.process-step {
    position: relative;
}

/* ===== TIMELINE STYLES ===== */
.timeline {
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    height: 100%;
    width: 2px;
    background: var(--eco-green-light);
}

.timeline-item {
    position: relative;
    padding-left: 80px;
}

.timeline-marker {
    position: absolute;
    left: 20px;
    top: 5px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 3px solid white;
}

/* ===== REVIEW STYLES ===== */
.review-card {
    border-left: 4px solid var(--eco-green);
}

.stars i {
    font-size: 1rem;
}

/* ===== FAQ STYLES ===== */
.faq-card {
    border-left: 4px solid var(--nature-blue);
}

/* ===== GALLERY STYLES ===== */
#gallery img {
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

#gallery img:hover {
    transform: scale(1.05);
}

/* ===== CONTACT STYLES ===== */
.contact-info {
    background: white;
    border-radius: 12px;
    border: 2px solid var(--eco-green-light);
}

.contact-form {
    border: 2px solid var(--nature-blue-light);
}

.form-control {
    border-radius: 8px;
    border: 2px solid #e5e7eb;
    padding: 12px 16px;
}

.form-control:focus {
    border-color: var(--eco-green);
    box-shadow: 0 0 0 0.2rem rgba(74, 222, 128, 0.25);
}

/* ===== FOOTER STYLES ===== */
#footer {
    background: #1f2937;
    color: #e5e7eb;
    /* High contrast colors - no gradients */
}

#footer a {
    transition: color 0.3s ease;
    color: #d1d5db;
}

#footer a:hover {
    color: var(--eco-green-light);
}

#footer .h4, #footer .h5 {
    color: #f9fafb;
}

/* ===== ADDITIONAL PAGE STYLES ===== */
.story-card,
.mission-card,
.guide-card,
.location-card,
.safety-card,
.community-card,
.care-item,
.goal-card,
.innovation-item,
.partner-card,
.info-card {
    transition: transform 0.3s ease;
}

.story-card:hover,
.mission-card:hover,
.guide-card:hover,
.location-card:hover,
.safety-card:hover,
.community-card:hover {
    transform: translateY(-3px);
}

.partner-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.partner-logo:hover {
    filter: grayscale(0%);
}

/* ===== BREADCRUMB STYLES ===== */
.breadcrumb {
    background: transparent;
    padding: 0;
}

.breadcrumb-item img {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.breadcrumb-item:hover img {
    opacity: 1;
}

/* ===== ACCESSIBILITY ===== */
@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-eco-green { color: var(--eco-green); }
.text-nature-blue { color: var(--nature-blue); }
.text-earth-brown { color: var(--earth-brown); }
.text-sun-yellow { color: var(--sun-yellow); }
.text-forest-teal { color: var(--forest-teal); }

.bg-eco-green { background-color: var(--eco-green); }
.bg-nature-blue { background-color: var(--nature-blue); }
.bg-earth-brown { background-color: var(--earth-brown); }
.bg-sun-yellow { background-color: var(--sun-yellow); }
.bg-forest-teal { background-color: var(--forest-teal); } 

.hero-section h1 {
    padding-top: 225px;
}


/* Team Social Links - Rounded Style */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
}

.social-icons-grid {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.facebook-link:hover {
    background: linear-gradient(135deg, #0d6efd, #1877f2);
}

.linkedin-link {
    background: linear-gradient(135deg, #0a66c2, #2196f3);
}

.linkedin-link:hover {
    background: linear-gradient(135deg, #084a8a, #0a66c2);
}

.instagram-link {
    background: linear-gradient(135deg, #e4405f, #f77737, #fcaf45);
}

.instagram-link:hover {
    background: linear-gradient(135deg, #d62976, #e4405f, #f77737);
}

.x-link {
    background: linear-gradient(135deg, #000000, #333333);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 20px;
}

.x-link:hover {
    background: linear-gradient(135deg, #1a1a1a, #000000);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
