/* ===== COLOR PALETTE ===== */
:root {
    /* Primary Colors */
    --color-primary: #2d5016;      /* Deep Forest Green */
    --color-secondary: #7cb342;    /* Fresh Lime Green */
    --color-accent: #f4f4f0;       /* Soft Cream */
    --color-neutral: #8d6e63;      /* Warm Earth Brown */
    --color-highlight: #ffb74d;    /* Golden Amber */
    
    /* Light Shades */
    --color-primary-light: #5a7c35;
    --color-secondary-light: #aed581;
    --color-accent-light: #fafafa;
    --color-neutral-light: #bcaaa4;
    --color-highlight-light: #ffcc80;
    
    /* Dark Shades */
    --color-primary-dark: #1b3309;
    --color-secondary-dark: #558b2f;
    --color-accent-dark: #e8e8e1;
    --color-neutral-dark: #5d4037;
    --color-highlight-dark: #ff9800;
    
    /* Typography */
    --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-bold: 700;
}

/* ===== GLOBAL STYLES ===== */
* {
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-normal);
    color: var(--color-neutral-dark);
    line-height: 1.6;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* Respect prefers-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;
    }
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: var(--font-weight-bold);
    margin-bottom: 1rem;
    color: var(--color-primary-dark);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
    color: var(--color-secondary-dark);
}

h4 {
    font-size: 1.25rem;
}

h5 {
    font-size: 1.1rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.lead {
    font-size: 1.1rem;
    font-weight: var(--font-weight-medium);
    color: var(--color-neutral);
}

/* ===== HEADER & NAVIGATION ===== */
.navbar {
    backdrop-filter: blur(10px);
    background-color: rgba(244, 244, 240, 0.95) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-primary) !important;
}

.navbar-nav .nav-link {
    color: var(--color-neutral-dark) !important;
    font-weight: var(--font-weight-medium);
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--color-secondary) !important;
}

/* ===== BUTTONS ===== */
.btn-primary {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
    color: white;
    font-weight: var(--font-weight-medium);
    padding: 0.75rem 2rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--color-secondary-dark);
    border-color: var(--color-secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(124, 179, 66, 0.4);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* ===== HERO SECTION ===== */
#hero {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-light) 100%);
    position: relative;
    overflow: hidden;
}

#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="25" cy="25" r="2" fill="%237cb342" opacity="0.1"/><circle cx="75" cy="75" r="3" fill="%232d5016" opacity="0.1"/><circle cx="50" cy="10" r="1.5" fill="%23ffb74d" opacity="0.1"/></svg>');
    pointer-events: none;
}

#hero .container {
    position: relative;
    z-index: 2;
}

#hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

#hero h2 {
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
}

/* ===== SECTIONS ===== */
section {
    padding: 4rem 0;
}

.bg-light {
    background-color: var(--color-accent) !important;
}

/* ===== CARDS ===== */
.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.card-body {
    padding: 2rem;
}

.card-title {
    color: var(--color-primary);
    font-weight: var(--font-weight-bold);
    margin-bottom: 1rem;
}

.card-text {
    color: var(--color-neutral);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.card:hover .card-img-top {
    transform: scale(1.05);
}

/* ===== PRICING CARDS ===== */
.border-primary {
    border: 2px solid var(--color-secondary) !important;
    position: relative;
}

.border-primary::before {
    content: 'Most Popular';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-secondary);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 15px;
    font-size: 0.875rem;
    font-weight: var(--font-weight-medium);
}

/* ===== ICONS ===== */
.fa {
    transition: color 0.3s ease, transform 0.3s ease;
}

.text-success {
    color: var(--color-secondary) !important;
}

.text-primary {
    color: var(--color-primary) !important;
}

.text-warning {
    color: var(--color-highlight) !important;
}

.text-info {
    color: var(--color-secondary-light) !important;
}

.text-orange {
    color: var(--color-highlight-dark) !important;
}

.text-danger {
    color: #e57373 !important;
}

/* ===== FORMS ===== */
.form-control {
    border: 2px solid var(--color-accent-dark);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 0.2rem rgba(124, 179, 66, 0.25);
}

.form-check-input:checked {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
}

/* ===== GALLERY ===== */
#gallery img {
    transition: transform 0.3s ease, filter 0.3s ease;
    border-radius: 15px;
}

#gallery img:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* ===== FAQ SECTION ===== */
#faq .card {
    margin-bottom: 1rem;
}

#faq .card-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

/* ===== FOOTER ===== */
#footer {
    background-color: var(--color-primary-dark) !important;
    color: var(--color-accent-light);
}

#footer h5 {
    color: var(--color-accent-light);
    margin-bottom: 1.5rem;
}

#footer a {
    color: var(--color-accent-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

#footer a:hover {
    color: var(--color-secondary-light);
}

#footer hr {
    border-color: var(--color-neutral);
    margin: 2rem 0;
}

/* ===== BREADCRUMBS ===== */
.breadcrumb {
    background-color: transparent;
    padding: 0;
}

.breadcrumb-item img {
    filter: opacity(0.7);
    transition: filter 0.3s ease;
}

.breadcrumb-item img:hover {
    filter: opacity(1);
}

/* ===== UTILITY CLASSES ===== */
.text-muted {
    color: var(--color-neutral) !important;
}

.bg-primary {
    background-color: var(--color-primary) !important;
}

.bg-secondary {
    background-color: var(--color-secondary) !important;
}

/* ===== ANIMATIONS (Sal.js compatible) ===== */
[data-sal] {
    transition-duration: 0.5s;
}

/* ===== ACCESSIBILITY ===== */
:focus {
    outline: 2px solid var(--color-secondary);
    outline-offset: 2px;
}

.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;
} 


/* 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;
    }
}
