/* Color Palette Variables */
:root {
    --primary-color: #35642b;
    --primary-light: #548062;
    --primary-dark: #1b3a19;
    
    --secondary-color: #773411;
    --secondary-light: #c37e3f;
    --secondary-dark: #4d230e;
    
    --accent-color: #c2540f;
    --accent-light: #ffa757;
    --accent-dark: #ae4c2c;
    
    --neutral-color: #dce0c8;
    --neutral-light: #fefef0;
    --neutral-dark: #fcfdc8;
    
    --highlight-color: #6e8721;
    --highlight-light: #88d137;
    --highlight-dark: #505d21;
}

/* Global Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #434343;
    overflow-x: hidden;
}

/* Conservative Font Sizes */
.navbar-brand {
    font-size: 1.11rem !important;
    font-weight: 600;
    color: var(--primary-color);
}

h1 {
    font-size: 2.57rem;
    font-weight: 700;
    color: var(--primary-dark);
}

h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
}

h3 {
    font-size: 1.53rem;
    font-weight: 500;
}

h4, h5, h6 {
    font-weight: 500;
}

p {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.19rem;
}

/* Custom Button Styles */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    border-radius: 29px;
    padding: 0.75rem 2rem;
    font-weight: 500;
    transition: all 1.03s ease;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    border-radius: 20px;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Hero Section */
#hero {
    background: linear-gradient(135deg, var(--neutral-light) 0%, var(--neutral-color) 100%);
    position: relative;
    overflow: hidden;
}

#hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, var(--highlight-light) 0%, transparent 70%);
    opacity: 0.1;
    z-index: 1;
}

#hero .container {
    position: relative;
    z-index: 2;
}

/* Card Enhancements */
.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.93s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.15);
}

.card-img-top {
    border-radius: 15px 15px 0 0;
    height: 200px;
    object-fit: cover;
}

/* Team Section */
.rounded-circle {
    border: 4px solid var(--primary-light);
    transition: all 1.10s ease;
}

.rounded-circle:hover {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

/* Section Spacing */
section {
    scroll-margin-top: 80px;
}

/* Background Variations */
.bg-light {
    background-color: var(--neutral-light) !important;
}

/* Icon Styling */
.fa-3x {
    transition: all 0.64s ease;
}

.text-center:hover .fa-3x {
    transform: scale(1.1);
}

/* Form Styling */
.form-control {
    border-radius: 10px;
    border: 2px solid #e0f1ff;
    padding: 0.75rem 1rem;
    transition: all 1.04s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(42, 79, 41, 0.25);
}

/* Gallery Section */
#gallery img {
    transition: all 0.67s ease;
    border-radius: 10px;
}

#gallery img:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* Footer */
#footer {
    background: linear-gradient(135deg, #2b2d30 0%, #393c40 100%) !important;
}

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .card:hover {
        transform: none;
    }
    
    .btn-primary:hover {
        transform: none;
    }
    
    .rounded-circle:hover {
        transform: none;
    }
    
    #gallery img:hover {
        transform: none;
    }
}

/* Custom Grid Helper for 5 columns */
.col-lg-2-4 {
    flex: 0 0 auto;
    width: 20%;
}

@media (max-width: 991.98px) {
    .col-lg-2-4 {
        width: 50%;
    }
}

@media (max-width: 575.98px) {
    .col-lg-2-4 {
        width: 100%;
    }
}

/* Process Step Circles */
.bg-primary.rounded-circle {
    background-color: var(--primary-color) !important;
}

/* Pricing Card Highlight */
.border-primary {
    border-color: var(--primary-color) !important;
    border-width: 2px !important;
}

.bg-primary.text-white {
    background-color: var(--primary-color) !important;
}

/* Text Color Utilities */
.text-primary {
    color: var(--primary-color) !important;
}

.text-success {
    color: var(--highlight-color) !important;
}

.text-warning {
    color: var(--accent-color) !important;
}

.text-danger {
    color: var(--secondary-color) !important;
}

.text-info {
    color: var(--primary-light) !important;
} 


/* Team Social Links - Glass Style */
.team-social-links {
    margin-top: 22px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icons-grid {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 46px;
    height: 46px;
    border-radius: 15px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.social-link:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    color: white;
}

.facebook-link {
    background: rgba(24, 119, 242, 0.3);
}

.facebook-link:hover {
    background: rgba(24, 119, 242, 0.5);
}

.linkedin-link {
    background: rgba(10, 102, 194, 0.3);
}

.linkedin-link:hover {
    background: rgba(10, 102, 194, 0.5);
}

.instagram-link {
    background: rgba(228, 64, 95, 0.3);
}

.instagram-link:hover {
    background: rgba(228, 64, 95, 0.5);
}

.x-link {
    background: rgba(0, 0, 0, 0.3);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 20px;
    z-index: 2;
    position: relative;
}

.x-link:hover {
    background: rgba(0, 0, 0, 0.5);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 12px;
    }
    
    .social-link {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
}
