/* EcoFleet Zero-Emission Delivery Service - Main Styles */

/* Color Variables - Eco-friendly Palette */
:root {
    /* Primary Colors */
    --eco-green: #2d7d3a;
    --electric-blue: #1e88e5;
    --clean-white: #ffffff;
    --earth-brown: #8d6e63;
    --solar-orange: #ff9800;
    
    /* Light Shades */
    --eco-green-light: #81c784;
    --electric-blue-light: #64b5f6;
    --clean-white-light: #fafafa;
    --earth-brown-light: #bcaaa4;
    --solar-orange-light: #ffcc02;
    
    /* Dark Shades */
    --eco-green-dark: #1b5e20;
    --electric-blue-dark: #0d47a1;
    --clean-white-dark: #e0e0e0;
    --earth-brown-dark: #5d4037;
    --solar-orange-dark: #e65100;
    
    /* Semantic Colors */
    --primary-color: var(--eco-green);
    --secondary-color: var(--electric-blue);
    --accent-color: var(--solar-orange);
    --neutral-color: var(--earth-brown);
    --background-color: var(--clean-white);
    
    /* Typography */
    --font-family-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-size-base: 1rem;
    --font-size-small: 0.875rem;
    --font-size-large: 1.125rem;
    --line-height-base: 1.6;
    
    /* Spacing */
    --section-padding: 5rem 0;
    --card-padding: 2rem;
    --border-radius: 0.5rem;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

/* Global Typography - Conservative Sizing */
body {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: #333;
    overflow-x: hidden;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--eco-green-dark);
    margin-bottom: 1rem;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--eco-green);
    margin-bottom: 0.75rem;
}

h3 {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--electric-blue);
    margin-bottom: 0.5rem;
}

h4 {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--earth-brown-dark);
    margin-bottom: 0.5rem;
}

h5 {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

p {
    font-size: var(--font-size-base);
    margin-bottom: 1rem;
    color: #666;
}

/* Conservative Navbar Brand */
.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--eco-green);
}

/* Button Styles - Eco Theme */
.btn-primary {
    background-color: var(--eco-green);
    border-color: var(--eco-green);
    color: white;
}

.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);
    color: white;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--clean-white-light) 0%, var(--eco-green-light) 100%);
    padding: var(--section-padding);
}

.hero-actions .btn {
    margin-right: 1rem;
}

/* Section Spacing */
section {
    padding: var(--section-padding);
}

/* Feature Cards */
.feature-card {
    background: var(--clean-white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

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

/* Service Cards */
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--clean-white-dark);
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.service-card img {
    height: 200px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

/* Pricing Cards */
.pricing-card {
    transition: transform 0.3s ease;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: scale(1.02);
    border-color: var(--eco-green-light);
}

.pricing-card.bg-primary {
    background-color: var(--eco-green);
}

.price-display {
    padding: 1rem 0;
}

/* Team Section */
.team-member img {
    width: 120px;
    height: 120px;
    object-fit: cover;
}

/* Review Cards */
.review-card {
    border: 1px solid var(--clean-white-dark);
    transition: box-shadow 0.3s ease;
}

.review-card:hover {
    box-shadow: var(--box-shadow);
}

.stars {
    font-size: 1.2rem;
}

/* Case Study Cards */
.case-study-card img {
    height: 200px;
    object-fit: cover;
}

/* Process Steps */
.process-step .step-number {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    font-weight: 700;
}

/* Timeline */
.timeline-item .year {
    width: 80px;
    height: 80px;
    font-size: 1rem;
    font-weight: 600;
}

/* Job Cards */
.job-card {
    border: 1px solid var(--clean-white-dark);
    transition: transform 0.3s ease;
}

.job-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

/* Info Cards */
.info-card {
    text-align: center;
    padding: var(--card-padding);
}

/* Contact Form */
.contact-form {
    box-shadow: var(--box-shadow);
}

.contact-info .contact-item h5 {
    color: var(--eco-green);
    font-weight: 600;
}

/* Blog Cards */
.blog-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.blog-card img {
    height: 200px;
    object-fit: cover;
}

/* FAQ Cards */
.faq-card {
    border: 1px solid var(--clean-white-dark);
}

.faq-card h5 {
    color: var(--eco-green);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Gallery */
.gallery img {
    transition: transform 0.3s ease;
}

.gallery img:hover {
    transform: scale(1.05);
}

/* Footer - High Contrast Colors Only */
footer {
    background-color: var(--earth-brown-dark) !important;
    color: var(--clean-white) !important;
}

footer.bg-dark {
    background-color: var(--earth-brown-dark);
}

footer h5 {
    color: var(--clean-white) !important;
    font-weight: 600;
    margin-bottom: 1rem;
}

footer p,
footer li {
    color: var(--clean-white-light) !important;
}

footer a {
    color: var(--clean-white) !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--eco-green-light) !important;
}

footer small {
    color: var(--clean-white-light) !important;
}

/* Utility Classes */
.text-eco-green {
    color: var(--eco-green);
}

.text-electric-blue {
    color: var(--electric-blue);
}

.text-solar-orange {
    color: var(--solar-orange);
}

.bg-eco-green {
    background-color: var(--eco-green);
}

.bg-electric-blue {
    background-color: var(--electric-blue);
}

.bg-solar-orange {
    background-color: var(--solar-orange);
}

/* Services List Badges */
.services-list .badge {
    font-size: var(--font-size-small);
    padding: 0.5rem 1rem;
}

/* Custom Border Colors */
.border-eco {
    border-color: var(--eco-green-light);
}

/* Feature Icons */
.feature-icon {
    min-width: 60px;
}

/* Animation Ready Classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* 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: 0;
}

/* Focus States */
.btn:focus,
.form-control:focus,
.form-check-input:focus {
    box-shadow: 0 0 0 0.2rem rgba(45, 125, 58, 0.25);
}

/* Print Styles */
@media print {
    .navbar,
    .hero-actions,
    footer {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    h1, h2, h3, h4, h5, h6 {
        page-break-after: avoid;
    }
}


.hero-section h1 {
    padding-top: 200px;
}


/* Team Social Links - Minimal Style */
.team-social-links {
    margin-top: 16px;
    padding: 10px 0;
}

.social-icons-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
    background: white;
}

.social-link:hover {
    transform: translateY(-1px);
    color: white;
}

.facebook-link:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: white;
}

.linkedin-link:hover {
    background: #0a66c2;
    border-color: #0a66c2;
    color: white;
}

.instagram-link:hover {
    background: #e4405f;
    border-color: #e4405f;
    color: white;
}

.x-link {
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 18px;
    color: inherit;
}

.x-link:hover {
    background: #000000;
    border-color: #000000;
    color: white;
}

.x-link:hover::after {
    color: white;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 15px;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}
