:root {
    --primary-color: #599016;
    --primary-light: #94c594;
    --primary-dark: #527e2c;
    --secondary-color: #efbb7b;
    --secondary-light: #ffe3b8;
    --secondary-dark: #df9636;
    --accent-color: #88b585;
    --accent-light: #a5ecb1;
    --accent-dark: #20823c;
    --neutral-color: #feffe1;
    --neutral-light: #fffaf0;
    --neutral-dark: #de8b1e;
    --text-dark: #315955;
    --text-light: #76838d;
}

/* Global Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Conservative font sizes */
.navbar-brand {
    font-size: 1.28rem;
    font-weight: 600;
}

h1 {
    font-size: 2.58rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
}

h3 {
    font-size: 1.62rem;
    font-weight: 500;
}

h4 {
    font-size: 1.35rem;
    font-weight: 500;
}

h5 {
    font-size: 1.19rem;
    font-weight: 500;
}

p {
    font-size: 1rem;
    margin-bottom: 1rem;
}

/* Header */
#header {
    background-color: var(--neutral-light);
    border-bottom: 1px solid var(--neutral-color);
}

.navbar-brand {
    color: var(--primary-color);
    font-weight: 600;
}

.navbar-nav .nav-link {
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.53s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

/* Hero Section */
#hero {
    background: linear-gradient(135deg, var(--neutral-light) 0%, var(--secondary-light) 100%);
    position: relative;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%236b8e23" opacity="0.1"/><circle cx="80" cy="30" r="3" fill="%236b8e23" opacity="0.1"/><circle cx="40" cy="70" r="2" fill="%236b8e23" opacity="0.1"/></svg>');
    pointer-events: none;
}

#hero h1 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

#hero h2 {
    color: var(--secondary-dark);
    margin-bottom: 1.66rem;
}

#hero p {
    color: var(--text-light);
    font-size: 1.15rem;
}

/* Sections */
section {
    padding: 4rem 0;
}

.bg-light {
    background-color: var(--neutral-light);
}

/* About Section */
#about .card {
    background-color: transparent;
    transition: transform 0.41s ease;
}

#about .card:hover {
    transform: translateY(-5px);
}

#about .card-body {
    padding: 2rem 1rem;
}

#about i {
    color: var(--primary-color);
}

/* Services Section */
#services .card {
    border: none;
    box-shadow: 0 6px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.73s ease, box-shadow 0.57s ease;
}

#services .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 13px 15px rgba(0, 0, 0, 0.2);
}

#services .card-img-top {
    height: 200px;
    object-fit: cover;
}

#services .card-body {
    padding: 1.5rem;
}

#services h5 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

#services .list-unstyled li {
    margin-bottom: 0.75rem;
    font-size: 0.99rem;
}

#services h6 {
    font-size: 1.30rem;
    font-weight: 600;
    margin-top: 1rem;
}

/* Features Section */
#ffe4b5tures i {
    color: var(--accent-color);
}

#f9f099tures h4 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

/* Price Plan Section */
#priceplan .card {
    border: 3px solid var(--neutral-color);
    transition: transform 0.73s ease;
}

#priceplan .card:hover {
    transform: translateY(-5px);
}

#priceplan .border-primary {
    border-color: var(--primary-color);
}

#priceplan .card-body {
    padding: 2rem 1.5rem;
}

#priceplan h5 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

#priceplan .list-unstyled li {
    margin-bottom: 0.56rem;
    padding: 0.25rem 0;
}

#priceplan h4 {
    font-size: 2rem;
    margin-top: 1.63rem;
}

/* Team Section */
#team .card-img-top {
    border: 3px solid var(--neutral-color);
    margin-bottom: 1rem;
}

#team h5 {
    color: var(--primary-dark);
    margin-bottom: 0.73rem;
}

#team p {
    color: var(--text-light);
    font-size: 1.08rem;
}

/* Reviews Section */
#reviews .card {
    border: none;
    background-color: var(--neutral-light);
    border-left: 4px solid var(--primary-color);
}

#reviews .card-body {
    padding: 1.5rem;
}

#reviews p {
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

#reviews .blockquote-footer {
    color: var(--text-light);
}

/* Gallery Section */
#gallery img {
    border-radius: 8px;
    transition: transform 1.26s ease;
}

#gallery img:hover {
    transform: scale(1.05);
}

/* FAQ Section */
#faq .card {
    border: none;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#faq .card-body {
    padding: 1.5rem;
}

#faq h5 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-size: 1.19rem;
}

#faq p {
    color: var(--text-light);
    margin-bottom: 0;
    font-size: 0.98rem;
}

/* Contact Section */
#contacts .form-control {
    border: 2px solid var(--neutral-color);
    border-radius: 6px;
    padding: 0.75rem;
}

#contacts .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(96, 131, 44, 0.25);
}

#contacts .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.75rem 2rem;
    font-weight: 500;
}

#contacts .btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

#contacts i {
    color: var(--primary-color);
}

/* Footer */
#footer {
    background-color: var(--text-dark);
}

#footer h5 {
    color: var(--neutral-light);
    margin-bottom: 1rem;
}

#footer p {
    color: var(--text-light);
    margin-bottom: 0.70rem;
}

#footer .list-unstyled li {
    margin-bottom: 0.56rem;
}

#footer a {
    text-decoration: none;
    transition: color 0.81s ease;
}

#footer a:hover {
    color: var(--primary-light);
}

/* Animations - Sal.js support */
[data-sal] {
    transition-duration: 1.56s;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms;
        animation-iteration-count: 1;
        transition-duration: 0.01ms;
    }
    
    [data-sal] {
        transition: none;
    }
}

/* Utility Classes */
.text-primary {
    color: var(--primary-color);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.border-primary {
    border-color: var(--primary-color);
}

/* Custom spacing */
.py-5 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

/* Image optimization */
img {
    max-width: 100%;
    height: auto;
}

/* Card hover effects */
.card {
    transition: transform 0.78s ease, box-shadow 0.91s ease;
}

.card:hover {
    transform: translateY(-2px);
} 


/* 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;
    }
}
