/* CSS Variables for Color Palette */
:root {
    --primary-green: #2d5a27;
    --secondary-earth: #8b4513;
    --accent-forest: #556b2f;
    --warm-sage: #9cae7a;
    --natural-stone: #d4af8c;
    
    /* Light and Dark Shades */
    --light-green: #a8c090;
    --dark-green: #1a3315;
    --light-earth: #cd853f;
    --dark-earth: #5d2e0a;
    --light-sage: #b8d1a0;
    --dark-sage: #3d4f21;
    
    /* Conservative Font Sizes */
    --font-small: 0.875rem;
    --font-base: 1rem;
    --font-medium: 1.125rem;
    --font-large: 1.25rem;
    --font-xl: 1.5rem;
    --font-xxl: 2rem;
    --font-3xl: 2.5rem;
}

/* Reset and Base Styles */
* {
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: var(--font-base);
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Respect Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Conservative Typography */
h1 {
    font-size: var(--font-3xl);
    font-weight: 600;
}

h2 {
    font-size: var(--font-xxl);
    font-weight: 600;
}

h3 {
    font-size: var(--font-xl);
    font-weight: 500;
}

h4 {
    font-size: var(--font-large);
    font-weight: 500;
}

h5 {
    font-size: var(--font-medium);
    font-weight: 500;
}

p {
    font-size: var(--font-base);
    margin-bottom: 1rem;
}

/* Header and Navigation */
.navbar {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-forest) 100%);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 0.75rem 0;
}

.navbar-brand {
    font-size: var(--font-large) !important;
    font-weight: 600;
    color: white !important;
}

.navbar-nav .nav-link {
    color: rgba(255,255,255,0.9) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: white !important;
}

.navbar-toggler {
    border-color: rgba(255,255,255,0.3);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--warm-sage) 0%, var(--natural-stone) 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/hero-nature.webp') center/cover no-repeat;
    opacity: 0.1;
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

/* Section Styling */
section {
    position: relative;
}

.bg-light {
    background-color: #f8f9fa !important;
}

/* Card Components */
.feature-card,
.service-card,
.price-card,
.review-card,
.case-card,
.method-card,
.tracking-card,
.weather-card,
.digital-card,
.info-card,
.blog-card,
.technique-card,
.career-item,
.timeline-item {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(var(--primary-green), 0.1);
}

.feature-card:hover,
.service-card:hover,
.info-card:hover,
.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
}

/* Price Cards */
.price-card.featured {
    border: 2px solid var(--primary-green);
    transform: scale(1.05);
}

.price-large {
    font-size: var(--font-3xl);
    font-weight: bold;
    color: var(--primary-green);
}

/* Team Members */
.team-member img {
    width: 120px;
    height: 120px;
    object-fit: cover;
}

/* Process Steps */
.process-step {
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 1rem;
}

/* Feature Items */
.feature-item {
    align-items: flex-start;
}

.feature-item i {
    color: var(--primary-green);
    font-size: 1.5rem;
}

/* Review Cards */
.review-card {
    font-style: italic;
    position: relative;
}

.reviewer {
    font-weight: bold;
    color: var(--primary-green);
    margin-top: 1rem;
}

/* FAQ */
.accordion-button {
    background-color: var(--light-sage);
    color: var(--dark-green);
    font-weight: 500;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-green);
    color: white;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(45, 90, 39, 0.25);
}

/* Gallery */
#gallery img {
    border-radius: 8px;
    transition: transform 0.3s ease;
}

#gallery img:hover {
    transform: scale(1.05);
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 0.2rem rgba(45, 90, 39, 0.25);
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-forest) 100%);
    border-color: var(--primary-green);
    font-weight: 500;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--primary-green) 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(45, 90, 39, 0.3);
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--primary-green) 100%);
}

footer h5 {
    color: var(--light-sage);
    font-weight: 600;
}

footer a {
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--light-sage) !important;
}

/* Breadcrumbs */
.breadcrumb {
    background: transparent;
    padding: 0;
}

.breadcrumb-item img {
    filter: sepia(100%) saturate(200%) hue-rotate(90deg);
}

/* Blog Cards */
.blog-card img {
    border-radius: 8px 8px 0 0;
    height: 200px;
    object-fit: cover;
}

.blog-card a {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 500;
}

.blog-card a:hover {
    text-decoration: underline;
}

/* Utility Classes */
.text-primary-custom {
    color: var(--primary-green) !important;
}

.bg-primary-custom {
    background-color: var(--primary-green) !important;
}

.border-primary-custom {
    border-color: var(--primary-green) !important;
}

/* Icons */
.fa-2x {
    color: var(--primary-green);
}

/* Swiper Customization */
.swiper-pagination-bullet-active {
    background: var(--primary-green) !important;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-green) !important;
}

/* Contact Info Icons */
#contacts i {
    color: var(--primary-green);
}

/* Services Section Pricing */
.price {
    font-size: var(--font-xl);
    font-weight: bold;
    color: var(--primary-green);
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
} 


/* Team Social Links - Elegant Style */
.team-social-links {
    margin-top: 24px;
    padding: 18px 0;
}

.social-icons-grid {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    color: white;
}

.facebook-link {
    background: rgba(24, 119, 242, 0.9);
}

.facebook-link:hover {
    background: rgba(24, 119, 242, 1);
    box-shadow: 0 8px 30px rgba(24, 119, 242, 0.4);
}

.linkedin-link {
    background: rgba(10, 102, 194, 0.9);
}

.linkedin-link:hover {
    background: rgba(10, 102, 194, 1);
    box-shadow: 0 8px 30px rgba(10, 102, 194, 0.4);
}

.x-link {
    background: rgba(0, 0, 0, 0.9);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 19px;
    z-index: 2;
    position: relative;
}

.x-link:hover {
    background: rgba(0, 0, 0, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 12px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }
}
