/* Color Palette - 5 primary colors + light/dark shades */
:root {
    /* Primary Colors */
    --color-primary: #209749;          /* Green */
    --color-secondary: #5d6d79;        /* Gray */
    --color-success: #25bba2;          /* Teal */
    --color-info: #1e9dcc;            /* Cyan */
    --color-warning: #ffd500;          /* Yellow */
    
    /* Light Shades */
    --color-primary-light: #6ac481;
    --color-secondary-light: #a1a3a5;
    --color-success-light: #79eaee;
    --color-info-light: #5fbccf;
    --color-warning-light: #ffe460;
    
    /* Dark Shades */
    --color-primary-dark: #17791d;
    --color-secondary-dark: #444a4f;
    --color-success-dark: #1d917d;
    --color-info-dark: #1b6484;
    --color-warning-dark: #d89500;
}

/* Body and Typography */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2f2f2f;
    padding-top: 76px;
    overflow-x: hidden;
}

/* Conservative Typography */
.navbar-brand {
    font-size: 1.28rem;
    font-weight: 600;
}

h1, .display-5 {
    font-size: 2rem;
    font-weight: 700;
}

h2 {
    font-size: 1.90rem;
    font-weight: 600;
}

h3, h4, h5, h6 {
    font-weight: 600;
}

p {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.18rem;
    font-weight: 400;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-success-light) 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Sections */
section {
    scroll-margin-top: 80px;
}

/* Cards */
.card {
    border: 1px solid rgba(0,0,0,0.125);
    border-radius: 0.5rem;
    transition: transform 1.04s ease, box-shadow 0.87s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15);
}

/* Contact Form */
.contact-info {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 0.5rem;
    height: fit-content;
}

.contact-info h5 {
    color: var(--color-primary);
    margin-bottom: 1.69rem;
}

.contact-info p {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.contact-info i {
    width: 20px;
    margin-right: 10px;
    color: var(--color-primary);
}

/* Team Section */
.team img {
    width: 120px;
    height: 120px;
    object-fit: cover;
}

/* Gallery */
.gallery img {
    transition: transform 0.99s ease;
}

.gallery img:hover {
    transform: scale(1.05);
}

/* Process Steps */
.process-step {
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 30px;
    left: 100%;
    width: 50px;
    height: 2px;
    background: var(--color-primary);
}

.process-step:last-child::after {
    display: none;
}

/* Breadcrumb */
.breadcrumb-icon {
    width: 20px;
    height: 20px;
}

/* Footer */
footer {
    background: var(--color-secondary-dark);
}

footer a {
    text-decoration: none;
    color: #a6b0b8;
}

footer a:hover {
    color: #fff;
}

/* Utilities */
.text-success {
    color: var(--color-success);
}

.text-primary {
    color: var(--color-primary);
}

.bg-primary {
    background-color: var(--color-primary);
}

.bg-success {
    background-color: var(--color-success);
}

.btn-primary {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
}

/* Animations - Conservative and Accessible */
@media (prefers-reduced-motion: no-preference) {
    .card {
        transition: transform 0.42s ease, box-shadow 1.08s ease;
    }
    
    .gallery img {
        transition: transform 0.63s ease;
    }
    
    footer a {
        transition: color 1.26s ease;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms;
        animation-iteration-count: 1;
        transition-duration: 0.01ms;
        scroll-behavior: auto;
    }
}

/* Custom spacing */
.py-6 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

/* Image placeholders */
img[src*=".webp"] {
    background: #f8f9fa;
    border: 1px solid #ebebeb;
    display: block;
} 

.hero-section h1 {
    padding-top: 225px;
}


/* Team Social Links - Rounded Style */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
}

.social-icons-grid {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.facebook-link:hover {
    background: linear-gradient(135deg, #0d6efd, #1877f2);
}

.linkedin-link {
    background: linear-gradient(135deg, #0a66c2, #2196f3);
}

.linkedin-link:hover {
    background: linear-gradient(135deg, #084a8a, #0a66c2);
}

.instagram-link {
    background: linear-gradient(135deg, #e4405f, #f77737, #fcaf45);
}

.instagram-link:hover {
    background: linear-gradient(135deg, #d62976, #e4405f, #f77737);
}

.x-link {
    background: linear-gradient(135deg, #000000, #333333);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 20px;
}

.x-link:hover {
    background: linear-gradient(135deg, #1a1a1a, #000000);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
