:root {
    /* Primary Color Palette - Eco-friendly Pastels */
    --primary-green: #7aae69;
    --primary-green-light: #add474;
    --primary-green-dark: #647d4f;
    
    --secondary-blue: #6f87bc;
    --secondary-blue-light: #87b0df;
    --secondary-blue-dark: #448bba;
    
    --accent-mint: #a3eade;
    --accent-mint-light: #cefff4;
    --accent-mint-dark: #8eaea5;
    
    --neutral-cream: #F5F3ED;
    --neutral-cream-light: #FDFCF8;
    --neutral-cream-dark: #d8d5c0;
    
    --contrast-charcoal: #454545;
    --contrast-charcoal-light: #5f656b;
    --contrast-charcoal-dark: #202224;
    
    /* Typography */
    --heading-weight: 600;
    --body-weight: 400;
    --small-size: 0.875rem;
    --base-size: 1rem;
    --h6-size: 1.1rem;
    --h5-size: 1.25rem;
    --h4-size: 1.5rem;
    --h3-size: 1.75rem;
    --h2-size: 2rem;
    --h1-size: 2.25rem;
    
    /* Spacing */
    --section-padding: 4rem 0;
    --card-padding: 1.5rem;
    --border-radius: 0.75rem;
    
    /* Shadows */
    --soft-shadow: 0 4px 20px rgba(152, 190, 125, 0.15);
    --card-shadow: 0 2px 15px rgba(104, 168, 232, 0.10);
}

/* Base Typography */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--contrast-charcoal);
    background-color: var(--neutral-cream-light);
    line-height: 1.6;
    font-weight: var(--body-weight);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: var(--heading-weight);
    color: var(--contrast-charcoal-dark);
    margin-bottom: 1rem;
}

h1 { font-size: var(--h1-size); }
h2 { font-size: var(--h2-size); }
h3 { font-size: var(--h3-size); }
h4 { font-size: var(--h4-size); }
h5 { font-size: var(--h5-size); }
h6 { font-size: var(--h6-size); }

p {
    font-size: var(--base-size);
    margin-bottom: 1.25rem;
    color: var(--contrast-charcoal-light);
}

.lead {
    font-size: 1.125rem;
    color: var(--contrast-charcoal);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--accent-mint-light) 0%, var(--secondary-blue-light) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: var(--primary-green-light);
    border-radius: 50%;
    opacity: 0.3;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 225px;
}

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

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

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-subtitle {
    color: var(--primary-green);
    font-size: var(--small-size);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

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

.custom-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--soft-shadow);
}

.custom-card .card-body {
    padding: var(--card-padding);
}

/* Service Cards */
.service-card {
    text-align: center;
    border: 1px solid var(--neutral-cream-dark);
}

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

.service-price {
    color: var(--primary-green-dark);
    font-weight: 700;
    font-size: 1.25rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.service-features li {
    padding: 0.25rem 0;
    color: var(--contrast-charcoal-light);
    font-size: var(--small-size);
}

.service-features li:before {
    content: "âœ“";
    color: var(--primary-green);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Features Grid */
.feature-item {
    text-align: center;
    padding: 2rem 1rem;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

/* Price Plan Cards */
.price-card {
    text-align: center;
    position: relative;
    background: white;
    border: 2px solid var(--neutral-cream-dark);
}

.price-card.featured {
    border-color: var(--primary-green);
    transform: scale(1.05);
}

.price-card .card-header {
    background: var(--primary-green);
    color: white;
    border: none;
    padding: 1.5rem;
}

.price-card.featured .card-header {
    background: var(--secondary-blue);
}

.price-value {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.price-period {
    font-size: var(--small-size);
    opacity: 0.8;
}

/* Team Cards */
.team-card {
    text-align: center;
    background: white;
    border: none;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.team-card .card-img-top {
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.team-role {
    color: var(--primary-green);
    font-size: var(--small-size);
    margin-top: 0.5rem;
}

/* Reviews/Testimonials */
.review-card {
    background: var(--neutral-cream);
    border: none;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    height: 100%;
}

.review-text {
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--contrast-charcoal);
}

.review-author {
    font-weight: 600;
    color: var(--primary-green-dark);
}

/* Process Steps */
.process-step {
    text-align: center;
    position: relative;
}

.process-number {
    width: 50px;
    height: 50px;
    background: var(--secondary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-weight: 700;
    font-size: 1.25rem;
}

/* Timeline */
.timeline-item {
    padding: 1.5rem;
    background: white;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-green);
    margin-bottom: 1.5rem;
}

.timeline-item:nth-child(even) {
    border-left-color: var(--secondary-blue);
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
}

.contact-form .form-control {
    border: 2px solid var(--neutral-cream-dark);
    border-radius: 0.5rem;
    padding: 0.75rem;
    transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 0.2rem rgba(140, 175, 117, 0.25);
}

.contact-info {
    background: var(--primary-green-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    color: var(--contrast-charcoal-dark);
}

.contact-info h5 {
    color: var(--contrast-charcoal-dark);
    margin-bottom: 1.5rem;
}

.contact-info p {
    margin-bottom: 1rem;
    color: var(--contrast-charcoal);
}

/* Buttons */
.btn-primary {
    background: var(--primary-green);
    border-color: var(--primary-green);
    border-radius: 0.5rem;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--primary-green-dark);
    border-color: var(--primary-green-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--secondary-blue);
    border-color: var(--secondary-blue);
    color: white;
}

.btn-secondary:hover {
    background: var(--secondary-blue-dark);
    border-color: var(--secondary-blue-dark);
}

/* Gallery */
.gallery-item {
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* FAQ Cards */
.faq-item {
    background: white;
    border: 1px solid var(--neutral-cream-dark);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    padding: 1.5rem;
}

.faq-question {
    color: var(--contrast-charcoal-dark);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.faq-answer {
    color: var(--contrast-charcoal-light);
    margin: 0;
}

/* Blog Cards */
.blog-card {
    background: white;
    border: none;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-3px);
}

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

/* Footer */
.footer-section {
    background: var(--contrast-charcoal-dark);
    color: var(--neutral-cream);
    padding: 3rem 0 1rem;
}

.footer-section h5 {
    color: var(--primary-green-light);
    margin-bottom: 1rem;
}

.footer-section a {
    color: var(--neutral-cream-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-green-light);
}

/* Breadcrumbs */
.breadcrumb-section {
    background: var(--neutral-cream);
    padding: 1rem 0;
    border-bottom: 1px solid var(--neutral-cream-dark);
}

.breadcrumb {
    background: transparent;
    margin: 0;
    padding: 0;
}

.breadcrumb-item img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

/* Utility Classes */
.text-primary-green { color: var(--primary-green); }
.text-secondary-blue { color: var(--secondary-blue); }
.text-accent-mint { color: var(--accent-mint-dark); }

.bg-primary-green { background-color: var(--primary-green); }
.bg-secondary-blue { background-color: var(--secondary-blue); }
.bg-accent-mint { background-color: var(--accent-mint); }
.bg-neutral-cream { background-color: var(--neutral-cream); }

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
} 


/* Team Social Links - Neon Style */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 15px;
}

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

.social-link {
    display: inline-flex;
    width: 50px;
    height: 50px;
    border-radius: 25px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
    border: 2px solid;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    border-radius: inherit;
    filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link:hover::before {
    opacity: 0.7;
}

.social-link:hover {
    transform: scale(1.1);
    text-shadow: 0 0 20px currentColor;
    box-shadow: 0 0 20px currentColor;
}

.facebook-link {
    border-color: #1877f2;
    color: #1877f2;
    background: rgba(24, 119, 242, 0.1);
}

.linkedin-link {
    border-color: #0a66c2;
    color: #0a66c2;
    background: rgba(10, 102, 194, 0.1);
}

.instagram-link {
    border-color: #e4405f;
    color: #e4405f;
    background: rgba(228, 64, 95, 0.1);
}

.x-link {
    border-color: #ffffff;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 22px;
    z-index: 2;
    position: relative;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 12px;
    }
    
    .social-link {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
}
