:root {
    /* Primary Color Palette - Eco-conscious pastels */
    --primary-green: #7cb342;
    --secondary-sage: #9ccc65;
    --accent-earth: #8d6e63;
    --neutral-cream: #f5f5dc;
    --highlight-coral: #ff8a65;
    
    /* Light/Dark Shades */
    --light-green: #aed581;
    --dark-green: #558b2f;
    --light-sage: #c5e1a5;
    --dark-sage: #689f38;
    --light-earth: #bcaaa4;
    --dark-earth: #5d4037;
    --light-cream: #fffef7;
    --dark-cream: #efebe9;
    --light-coral: #ffab91;
    --dark-coral: #d84315;
    
    /* Typography */
    --font-size-base: 1rem;
    --font-size-sm: 0.875rem;
    --line-height-base: 1.6;
    
    /* Spacing */
    --section-padding: 4rem 0;
    --card-padding: 2rem;
    
    /* Border Radius */
    --border-radius: 0.75rem;
    --border-radius-lg: 1rem;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 8px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 16px rgba(0,0,0,0.2);
}

/* Respect reduced motion preferences */
@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 Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: var(--line-height-base);
    overflow-x: hidden;
}

.text-primary {
    color: var(--primary-green) !important;
}

.bg-primary {
    background-color: var(--primary-green) !important;
}

.btn-primary {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
}

.btn-primary:hover {
    background-color: var(--dark-green);
    border-color: var(--dark-green);
}

.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);
}

/* Header Styles */
.navbar-brand {
    font-weight: 600;
    font-size: 1.5rem;
    color: var(--primary-green) !important;
}

.navbar-nav .nav-link {
    font-weight: 500;
    margin: 0 0.5rem;
    color: #555;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-green);
}

/* Hero Section */
#hero {
    position: relative;
    background: linear-gradient(135deg, var(--light-cream) 0%, var(--neutral-cream) 100%);
    overflow: hidden;
}

#hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-earth);
    margin-bottom: 1rem;
}

#hero h2 {
    font-size: 1.5rem;
    font-weight: 400;
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-shapes .shape-1,
.hero-shapes .shape-2 {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--light-sage), var(--light-coral));
    opacity: 0.1;
}

.hero-shapes .shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
}

.hero-shapes .shape-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -100px;
}

.hero-image img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

section h2 {
    font-size: 2.25rem;
    font-weight: 600;
    color: var(--dark-earth);
    margin-bottom: 1rem;
}

section h3 {
    font-size: 1.25rem;
    font-weight: 400;
}

/* Card Styles */
.feature-card,
.service-card,
.review-card,
.case-study-card,
.blog-card,
.faq-card,
.pricing-card,
.team-member,
.career-card,
.info-card,
.commitment-card,
.goal-card,
.tier-card,
.customization-card,
.quality-step,
.additional-service-card,
.story-content,
.impact-stat,
.process-step {
    background: white;
    padding: var(--card-padding);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover,
.service-card:hover,
.review-card:hover,
.case-study-card:hover,
.blog-card:hover,
.pricing-card:hover,
.career-card:hover,
.info-card:hover,
.commitment-card:hover,
.goal-card:hover,
.tier-card:hover,
.customization-card:hover,
.additional-service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

/* Service Cards */
.service-card img {
    border-radius: var(--border-radius);
    height: 200px;
    object-fit: cover;
}

.price-tag {
    text-align: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

/* Reviews */
.stars {
    color: #ffc107;
}

.reviewer {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

/* Team */
.team-member img {
    width: 120px;
    height: 120px;
    object-fit: cover;
}

/* Process Steps */
.process-step {
    text-align: center;
    padding: 1.5rem;
}

.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: 600;
    margin: 0 auto 1rem;
}

/* Timeline */
.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--light-sage);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-date {
    background: var(--primary-green);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    margin: 0 2rem;
    min-width: 80px;
    text-align: center;
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

/* FAQ Cards */
.faq-card {
    border-left: 4px solid var(--primary-green);
}

.faq-card h5 {
    color: var(--dark-earth);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Pricing Cards */
.pricing-card.featured {
    border: 2px solid var(--primary-green);
    transform: scale(1.05);
}

.pricing-card .card-header {
    background: var(--light-cream);
    padding: 1.5rem;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.price {
    margin: 1rem 0;
}

/* Gallery */
.gallery-img {
    transition: transform 0.3s ease;
    cursor: pointer;
}

.gallery-img:hover {
    transform: scale(1.05);
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.contact-info {
    background: var(--light-cream);
    padding: 2rem;
    border-radius: var(--border-radius);
}

.contact-item {
    text-align: center;
}

.contact-item i {
    color: var(--primary-green);
}

/* Footer */
#footer {
    background-color: #2c3e50 !important;
}

#footer h4,
#footer h5 {
    color: var(--light-sage);
}

#footer a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s ease;
}

#footer a:hover {
    color: var(--light-sage);
}

/* Additional Page Styles */
.breadcrumb-section {
    background: var(--light-cream);
    padding: 1rem 0;
}

.breadcrumb {
    background: none;
    margin: 0;
}

/* Tier Cards */
.tier-card .tier-header {
    text-align: center;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.tier-price {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-green);
}

.tier-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.tier-features li {
    padding: 0.25rem 0;
}

/* Service Overview Cards */
.service-overview-card {
    text-align: center;
    padding: 2rem;
}

.service-overview-card i {
    color: var(--primary-green);
}

/* Quality Steps */
.quality-step .step-icon {
    margin-bottom: 1rem;
}

.quality-guarantee {
    background: var(--light-green);
    padding: 2rem;
    border-radius: var(--border-radius);
    color: var(--dark-green);
}

/* Additional Services */
.service-price {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-top: 1rem;
}

/* Feature Items */
.feature-item {
    padding: 1.5rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    margin-bottom: 1rem;
}

.feature-icon {
    color: var(--primary-green);
}

/* Customization Cards */
.customization-card {
    text-align: center;
    padding: 2rem;
}

.custom-icon {
    margin-bottom: 1rem;
}

/* Process Timeline */
.process-timeline {
    position: relative;
}

.process-timeline .timeline-step {
    background: white;
    margin-bottom: 2rem;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 2rem;
}

.process-timeline .step-number {
    background: var(--primary-green);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    flex-shrink: 0;
}

.process-timeline .step-content {
    flex: 1;
}

/* Impact Stats */
.impact-stat {
    text-align: center;
    padding: 1.5rem;
}

.stat-number {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* Animations - Conservative for accessibility */
@media (prefers-reduced-motion: no-preference) {
    .hero-actions .btn {
        transition: all 0.3s ease;
    }
    
    .hero-actions .btn:hover {
        transform: translateY(-2px);
    }
}

/* Responsive Typography */
@media (max-width: 768px) {
    #hero h1 {
        font-size: 2rem;
    }
    
    section h2 {
        font-size: 1.75rem;
    }
    
    .navbar-brand {
        font-size: 1.25rem;
    }
    
    .pricing-card.featured {
        transform: none;
        margin-top: 1rem;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        flex-direction: column !important;
        align-items: flex-start;
        padding-left: 60px;
    }
    
    .timeline-date {
        position: absolute;
        left: 0;
        margin: 0;
        width: 40px;
        padding: 0.25rem;
        font-size: 0.875rem;
    }
    
    .timeline-content {
        margin-left: 0;
    }
    
    .process-timeline .timeline-step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

/* Button Styles */
.btn-lg {
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    border-radius: var(--border-radius);
}

.btn {
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: all 0.3s ease;
}

/* Form Styles */
.form-control {
    border-radius: var(--border-radius);
    border: 1px solid #ddd;
    padding: 0.75rem 1rem;
}

.form-control:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 0.2rem rgba(124, 179, 66, 0.25);
}

/* Utility Classes */
.text-secondary {
    color: var(--accent-earth) !important;
}

.bg-light {
    background-color: var(--light-cream) !important;
}

.bg-dark {
    background-color: #2c3e50 !important;
}

/* Lead Text */
.lead {
    font-size: 1.125rem;
    font-weight: 300;
    color: #666;
} 


/* Team Social Links - Gradient Style */
.team-social-links {
    margin-top: 20px;
    padding: 18px 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    border-radius: 20px;
}

.social-icons-grid {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 48px;
    height: 48px;
    border-radius: 24px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    background-clip: padding-box;
}

.social-link::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: inherit;
    border-radius: inherit;
    z-index: -1;
}

.social-link:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.facebook-link:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.linkedin-link {
    background: linear-gradient(135deg, #2196f3 0%, #21cbf3 100%);
}

.linkedin-link:hover {
    background: linear-gradient(135deg, #21cbf3 0%, #2196f3 100%);
}

.instagram-link {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.instagram-link:hover {
    background: linear-gradient(135deg, #f5576c 0%, #f093fb 100%);
}

.x-link {
    background: linear-gradient(135deg, #232526 0%, #414345 100%);
    position: relative;
}

.x-link::after {
    content: '✦';
    font-weight: bold;
    font-size: 22px;
    z-index: 2;
    position: relative;
}

.x-link:hover {
    background: linear-gradient(135deg, #414345 0%, #232526 100%);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 12px;
    }
    
    .social-link {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
}
