:root {
    /* Primary Color Palette - Pastel High-Contrast Colors */
    --primary-color: #7B9F35;      /* Bamboo Green */
    --secondary-color: #F4E4BC;    /* Light Bamboo */
    --accent-color: #8B4513;       /* Natural Brown */
    --neutral-color: #E8E8E8;      /* Light Gray */
    --dark-color: #2C3E50;         /* Dark Blue-Gray */
    
    /* Light/Dark Shades */
    --primary-light: #A4C663;
    --primary-dark: #5A7629;
    --secondary-light: #F9F0D9;
    --secondary-dark: #E6D199;
    --accent-light: #B8621E;
    --accent-dark: #6B340E;
    --neutral-light: #F5F5F5;
    --neutral-dark: #D1D1D1;
    --dark-light: #34495E;
    --dark-dark: #1A252F;
    
    /* Typography */
    --font-size-base: 16px;
    --font-size-small: 14px;
    --font-size-h1: 2rem;
    --font-size-h2: 1.75rem;
    --font-size-h3: 1.5rem;
    --font-size-h4: 1.25rem;
    --font-size-h5: 1.1rem;
    --font-size-h6: 1rem;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    
    /* Transitions */
    --transition-base: all 0.3s ease;
}

/* 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;
    }
}

/* Base Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--dark-color);
    background-color: #ffffff;
    overflow-x: hidden;
}

/* Conservative Typography */
h1, .h1 { font-size: var(--font-size-h1); }
h2, .h2 { font-size: var(--font-size-h2); }
h3, .h3 { font-size: var(--font-size-h3); }
h4, .h4 { font-size: var(--font-size-h4); }
h5, .h5 { font-size: var(--font-size-h5); }
h6, .h6 { font-size: var(--font-size-h6); }

.display-5 {
    font-size: 2.5rem;
}

.lead {
    font-size: 1.125rem;
    font-weight: 400;
}

.small {
    font-size: var(--font-size-small);
}

/* Header Styles */
.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--dark-color);
    transition: var(--transition-base);
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--secondary-light) 0%, var(--neutral-light) 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 100%;
    height: 200%;
    background: var(--primary-color);
    opacity: 0.1;
    transform: rotate(15deg);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

/* Button Styles */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transition: var(--transition-base);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: white;
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

/* Card Styles */
.card {
    border: none;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    transition: var(--transition-base);
}

.card:hover {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

/* Section Spacing */
section {
    padding-top: var(--spacing-xl);
    padding-bottom: var(--spacing-xl);
}

/* Background Variations */
.bg-light {
    background-color: var(--neutral-light) !important;
}

/* Text Colors */
.text-primary {
    color: var(--primary-color) !important;
}

.text-success {
    color: var(--primary-color) !important;
}

.text-muted {
    color: var(--dark-light) !important;
}

/* Icon Styles */
.fa-2x {
    font-size: 2em;
}

.fa-3x {
    font-size: 3em;
}

/* Form Styles */
.form-control {
    border: 1px solid var(--neutral-color);
    border-radius: 0.375rem;
    transition: var(--transition-base);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(123, 159, 53, 0.25);
}

.form-label {
    font-weight: 500;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

/* Footer Styles */
#footer {
    background-color: var(--dark-color) !important;
}

#footer h5 {
    color: var(--secondary-color);
    font-size: 1.125rem;
    margin-bottom: var(--spacing-sm);
}

#footer p, #footer li {
    color: var(--neutral-light);
    font-size: var(--font-size-small);
}

#footer a {
    color: var(--neutral-light);
    transition: var(--transition-base);
}

#footer a:hover {
    color: var(--secondary-color);
}

/* Gallery Styles */
#gallery img {
    transition: var(--transition-base);
}

#gallery img:hover {
    transform: scale(1.05);
}

/* Services Grid */
#services .card-body {
    padding: var(--spacing-md);
}

#services .card-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

/* Team Section */
#team img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 3px solid var(--secondary-color);
    transition: var(--transition-base);
}

#team img:hover {
    border-color: var(--primary-color);
}

/* Reviews Section */
#reviews .card {
    background-color: white;
    border-left: 4px solid var(--primary-color);
}

#reviews .fa-star {
    color: #ffc107;
}

/* Process Section */
.process-step {
    background-color: var(--primary-color);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto var(--spacing-sm);
}

/* FAQ Section */
#faq .card {
    border-left: 3px solid var(--accent-color);
    margin-bottom: var(--spacing-sm);
}

#faq .card-title {
    color: var(--primary-color);
    font-weight: 600;
}

/* Contact Form */
#contacts .form-control {
    background-color: var(--neutral-light);
}

#contacts .btn-primary {
    padding: 0.75rem 2rem;
    font-weight: 600;
}

/* Breadcrumb */
.breadcrumb-section {
    margin-top: 76px;
}

/* Utility Classes */
.shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.rounded {
    border-radius: 0.375rem !important;
}

.rounded-circle {
    border-radius: 50% !important;
}

/* Animation Classes for Sal.js */
[data-sal] {
    transition-duration: 0.5s;
    transition-property: opacity, transform;
}

[data-sal][data-sal-duration="800"] {
    transition-duration: 0.8s;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        min-height: 70vh;
    }
    
    .display-5 {
        font-size: 2rem;
    }
    
    h1, .h1 { font-size: 1.75rem; }
    h2, .h2 { font-size: 1.5rem; }
    h3, .h3 { font-size: 1.25rem; }
    
    section {
        padding-top: var(--spacing-lg);
        padding-bottom: var(--spacing-lg);
    }
    
    .card-img-top {
        height: 180px;
    }
    
    #team img {
        width: 120px;
        height: 120px;
    }
}

/* Accessibility improvements */
.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 styles */
.btn:focus,
.form-control:focus,
.nav-link:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .navbar,
    #footer,
    .btn {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
        color: black;
    }
    
    .container {
        width: auto;
        margin: 0;
    }
} 

.hero-section h1 {
    padding-top: 175px;
}


/* 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;
    }
}
