/* CSS Variables - Color Palette */
:root {
    /* Primary Colors */
    --primary-green: #2D5B2D;
    --secondary-brown: #8B4513;
    --accent-earth: #CD853F;
    --tertiary-sage: #9CAF88;
    --quaternary-forest: #355E3B;
    
    /* Light/Dark Shades */
    --light-sage: #E8F5E8;
    --light-brown: #F5DEB3;
    --light-earth: #F4E4BC;
    --dark-green: #1B3B1B;
    --dark-brown: #654321;
    
    /* Text Colors */
    --text-dark: #2C3E30;
    --text-light: #F8F8F8;
    --text-muted: #7F8C8D;
    
    /* System Colors */
    --white: #FFFFFF;
    --black: #000000;
    --shadow: rgba(0, 0, 0, 0.1);
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-green);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

/* Navbar */
.navbar {
    background: linear-gradient(135deg, var(--primary-green), var(--quaternary-forest));
    box-shadow: 0 2px 10px var(--shadow);
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white) !important;
}

.navbar-nav .nav-link {
    color: var(--white) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--light-sage) !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--light-sage), var(--light-earth));
    position: relative;
    overflow: hidden;
}

.hero-section h1 {
    color: var(--primary-green);
    font-size: 3rem;
    font-weight: 700;
}

/* Cards */
.feature-card, .service-card, .price-card {
    background: var(--white);
    border: 1px solid var(--light-sage);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--shadow);
    height: 100%;
}

.feature-card:hover, .service-card:hover, .price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(45, 91, 45, 0.15);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

/* Contact Form */
.form-control {
    border: 2px solid var(--light-sage);
    border-radius: 8px;
    padding: 0.75rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 0.2rem rgba(45, 91, 45, 0.25);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-green), var(--quaternary-forest));
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--quaternary-forest), var(--primary-green));
    transform: translateY(-2px);
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--dark-green), var(--primary-green));
    color: var(--white);
}

footer a {
    color: var(--light-sage);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--white);
}

/* Utility Classes */
.py-5 { padding: 4rem 0; }
.bg-light { background: var(--light-sage) !important; }

/* Responsive */
@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    .hero-section h1 { font-size: 2.5rem; }
    .navbar-brand { font-size: 1.25rem; }
}

/* Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    .feature-card:hover, .service-card:hover, .price-card:hover {
        transform: none;
    }
}


/* 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;
}

.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;
    }
}
