/* ===== COLOR PALETTE ===== */
:root {
    /* Primary Colors */
    --eco-green: #2d5a27;
    --eco-light-green: #4a7c59;
    --eco-sage: #87a96b;
    --eco-cream: #f4f1e8;
    --eco-earth: #8b4513;
    
    /* Light/Dark Shades */
    --eco-green-light: #e8f5e8;
    --eco-green-dark: #1a3a1a;
    --eco-sage-light: #f0f4ed;
    --eco-sage-dark: #5d7a4f;
    --eco-cream-light: #faf8f3;
    --eco-cream-dark: #e6e0d3;
}

/* ===== GLOBAL STYLES ===== */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* 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;
    }
}

/* ===== TYPOGRAPHY ===== */
.navbar-brand {
    font-size: 1.5rem;
}

.display-4 {
    font-size: 2.5rem;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
}

.lead {
    font-size: 1.125rem;
    font-weight: 400;
}

/* ===== HERO SECTION ===== */
#hero {
    position: relative;
    background: linear-gradient(135deg, var(--eco-cream) 0%, var(--eco-green-light) 100%);
    overflow: hidden;
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.shape-blob-1 {
    position: absolute;
    top: 20%;
    right: 10%;
    width: 200px;
    height: 200px;
    background: var(--eco-sage);
    border-radius: 50% 30% 70% 40%;
    opacity: 0.1;
    transform: rotate(45deg);
}

.shape-blob-2 {
    position: absolute;
    bottom: 20%;
    left: 5%;
    width: 150px;
    height: 150px;
    background: var(--eco-light-green);
    border-radius: 60% 40% 30% 70%;
    opacity: 0.1;
    transform: rotate(-30deg);
}

#hero .container {
    position: relative;
    z-index: 2;
}

/* ===== SECTIONS ===== */
section {
    scroll-margin-top: 80px;
}

.bg-light {
    background-color: var(--eco-cream-light) !important;
}

/* ===== CARDS ===== */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 0.75rem;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* ===== BUTTONS ===== */
.btn-success {
    background-color: var(--eco-green);
    border-color: var(--eco-green);
    padding: 0.75rem 2rem;
    font-weight: 500;
    border-radius: 0.5rem;
}

.btn-success:hover {
    background-color: var(--eco-green-dark);
    border-color: var(--eco-green-dark);
}

.btn-outline-success {
    color: var(--eco-green);
    border-color: var(--eco-green);
}

.btn-outline-success:hover {
    background-color: var(--eco-green);
    border-color: var(--eco-green);
}

/* ===== NAVBAR ===== */
.navbar {
    padding: 1rem 0;
    backdrop-filter: blur(10px);
    transition: background-color 0.3s ease, padding 0.3s ease;
}

.navbar-scrolled {
    background-color: rgba(255, 255, 255, 0.95) !important;
    padding: 0.5rem 0;
}

.navbar-brand {
    color: var(--eco-green) !important;
    font-weight: 700;
}

.nav-link {
    font-weight: 500;
    color: #333 !important;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--eco-green) !important;
}

/* ===== TEAM SECTION ===== */
#team img {
    object-fit: cover;
    border: 3px solid var(--eco-green-light);
    transition: border-color 0.3s ease;
}

#team img:hover {
    border-color: var(--eco-green);
}

/* ===== GALLERY ===== */
#gallery img {
    transition: transform 0.3s ease;
    border-radius: 0.5rem;
}

#gallery img:hover {
    transform: scale(1.05);
}

/* ===== PROCESS SECTION ===== */
#process .rounded-circle {
    background-color: var(--eco-green) !important;
    font-size: 1.25rem;
}

/* ===== CONTACT FORM ===== */
.form-control {
    border-radius: 0.5rem;
    border: 2px solid #e9ecef;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: var(--eco-green);
    box-shadow: 0 0 0 0.2rem rgba(45, 90, 39, 0.25);
}

/* ===== FOOTER ===== */
#footer {
    background-color: var(--eco-green-dark) !important;
}

#footer a:hover {
    color: var(--eco-sage) !important;
}

/* ===== UTILITIES ===== */
.text-success {
    color: var(--eco-green) !important;
}

.bg-success {
    background-color: var(--eco-green) !important;
}

.border-success {
    border-color: var(--eco-green) !important;
}

/* ===== PRICING CARDS ===== */
.card.border-success {
    position: relative;
}

.card.border-success::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--eco-green), var(--eco-sage));
    border-radius: 0.75rem 0.75rem 0 0;
}

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 768px) {
    .display-4 {
        font-size: 2rem;
    }
    
    .navbar-brand {
        font-size: 1.25rem;
    }
    
    #hero {
        padding-top: 80px;
    }
    
    .shape-blob-1,
    .shape-blob-2 {
        display: none;
    }
}

/* ===== ACCESSIBILITY ===== */
.btn:focus,
.form-control:focus,
.nav-link:focus {
    outline: 2px solid var(--eco-green);
    outline-offset: 2px;
}

/* Skip to main content */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--eco-green);
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 0 0 4px 4px;
    z-index: 9999;
}

.skip-link:focus {
    top: 0;
} 


/* Team Social Links - Retro Style */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
}

.social-icons-grid {
    display: flex;
    gap: 14px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 0;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    border: 3px solid;
    background: transparent;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
}

.social-link:hover {
    transform: translateX(3px) translateY(-3px);
    box-shadow: -3px 3px 0px currentColor;
    color: white;
}

.facebook-link {
    border-color: #1877f2;
    background: #1877f2;
}

.facebook-link:hover {
    background: transparent;
    color: #1877f2;
}

.linkedin-link {
    border-color: #0a66c2;
    background: #0a66c2;
}

.linkedin-link:hover {
    background: transparent;
    color: #0a66c2;
}

.instagram-link {
    border-color: #e4405f;
    background: #e4405f;
}

.instagram-link:hover {
    background: transparent;
    color: #e4405f;
}

.x-link {
    border-color: #000000;
    background: #000000;
    position: relative;
}

.x-link::after {
    content: 'X';
    font-weight: bold;
    font-size: 20px;
    z-index: 2;
    position: relative;
}

.x-link:hover {
    background: transparent;
    color: #000000;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
