:root {
    /* Primary Color Palette - 5 colors with light/dark shades */
    --color-primary: #6366f1;
    --color-primary-light: #a5b4fc;
    --color-primary-dark: #4338ca;
    
    --color-secondary: #10b981;
    --color-secondary-light: #6ee7b7;
    --color-secondary-dark: #047857;
    
    --color-accent: #f59e0b;
    --color-accent-light: #fbbf24;
    --color-accent-dark: #d97706;
    
    --color-neutral: #6b7280;
    --color-neutral-light: #d1d5db;
    --color-neutral-dark: #374151;
    
    --color-pastel: #ec4899;
    --color-pastel-light: #f9a8d4;
    --color-pastel-dark: #be185d;
    
    /* Typography */
    --font-size-base: 16px;
    --font-size-small: 14px;
    --font-size-large: 18px;
    --font-size-h1: 2rem;
    --font-size-h2: 1.75rem;
    --font-size-h3: 1.5rem;
    --font-size-h4: 1.25rem;
    --font-size-h5: 1.125rem;
    --font-size-h6: 1rem;
    
    /* Spacing */
    --section-padding: 5rem 0;
    --container-max-width: 1200px;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--color-neutral-dark);
    overflow-x: hidden;
}

/* Conservative Typography */
h1 {
    font-size: var(--font-size-h1);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h2 {
    font-size: var(--font-size-h2);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.875rem;
}

h3 {
    font-size: var(--font-size-h3);
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

h4 {
    font-size: var(--font-size-h4);
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 0.625rem;
}

h5 {
    font-size: var(--font-size-h5);
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

h6 {
    font-size: var(--font-size-h6);
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
    font-size: var(--font-size-base);
}

.lead {
    font-size: var(--font-size-large);
    font-weight: 400;
}

/* Conservative navbar brand sizing */
.navbar-brand {
    font-size: 1.25rem;
    font-weight: 600;
}

/* Bootstrap Override for Primary Color */
.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);
}

.btn-outline-primary {
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-outline-primary:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.text-primary {
    color: var(--color-primary);
}

.bg-primary {
    background-color: var(--color-primary);
}

.border-primary {
    border-color: var(--color-primary);
}

/* Custom Styles */
.hero-decorative {
    position: absolute;
    top: 20%;
    right: 10%;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--color-primary-light), var(--color-accent-light));
    border-radius: 50%;
    opacity: 0.1;
    z-index: -1;
}

.hero-decorative::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-secondary-light), var(--color-pastel-light));
    border-radius: 50%;
    opacity: 0.8;
}

/* Section Styling */
section {
    padding: var(--section-padding);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

/* Card Enhancements */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 12px;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.card-img-top {
    border-radius: 12px 12px 0 0;
    height: 200px;
    object-fit: cover;
}

/* Team Member Styling */
.team-member {
    text-align: center;
}

.team-member img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 4px solid var(--color-primary-light);
    transition: border-color 0.3s ease;
}

.team-member:hover img {
    border-color: var(--color-primary);
}

/* Timeline Styling */
.timeline {
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--color-primary-light);
    transform: translateX(-50%);
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Form Styling */
.form-control {
    border-radius: 8px;
    border: 1px solid var(--color-neutral-light);
    padding: 0.75rem 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 0.2rem rgba(99, 102, 241, 0.25);
}

/* Footer Styling */
footer {
    background-color: var(--color-neutral-dark);
}

footer a {
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--color-primary-light);
}

/* Utility Classes */
.text-muted {
    color: var(--color-neutral);
}

.bg-light {
    background-color: #f8fafc;
}

.shadow-sm {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

.shadow {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.rounded-3 {
    border-radius: 12px;
}

/* Animation Base */
[data-sal] {
    transition-duration: 0.5s;
}

/* Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms;
        animation-iteration-count: 1;
        transition-duration: 0.01ms;
        scroll-behavior: auto;
    }
    
    [data-sal] {
        transform: none;
        opacity: 1;
        transition: none;
    }
}

/* Breadcrumb Styling */
.breadcrumb {
    background: none;
    padding: 0;
}

.breadcrumb-item img {
    opacity: 0.6;
}

/* Stats Section */
.stats-item {
    text-align: center;
    padding: 2rem 1rem;
}

.stats-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    display: block;
    line-height: 1;
}

.stats-label {
    font-size: 0.875rem;
    color: var(--color-neutral);
    margin-top: 0.5rem;
}

/* Process Steps */
.process-step {
    position: relative;
    text-align: center;
}

.process-step-number {
    width: 60px;
    height: 60px;
    background: var(--color-primary);
    color: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

/* Icon Styling */
.icon-circle {
    width: 60px;
    height: 60px;
    background: var(--color-primary);
    color: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.icon-circle-lg {
    width: 80px;
    height: 80px;
}

/* High Contrast Footer - No Gradients */
footer {
    background-color: #1f2937;
    color: #f9fafb;
}

footer h5,
footer h6 {
    color: #ffffff;
}

footer .text-light {
    color: #e5e7eb;
}

footer .btn-primary {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

/* Smooth Transitions */
.btn,
.card,
.form-control,
a {
    transition: all 0.3s ease;
}

/* Focus States for Accessibility */
.btn:focus,
.form-control:focus,
a:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .navbar,
    footer,
    .btn {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    h1, h2, h3, h4, h5, h6 {
        page-break-after: avoid;
    }
} 


/* Team Social Links - Retro Style */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
}

.social-icons-grid {
    display: flex;
    gap: 14px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 0;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    border: 3px solid;
    background: transparent;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
}

.social-link:hover {
    transform: translateX(3px) translateY(-3px);
    box-shadow: -3px 3px 0px currentColor;
    color: white;
}

.facebook-link {
    border-color: #1877f2;
    background: #1877f2;
}

.facebook-link:hover {
    background: transparent;
    color: #1877f2;
}

.linkedin-link {
    border-color: #0a66c2;
    background: #0a66c2;
}

.linkedin-link:hover {
    background: transparent;
    color: #0a66c2;
}

.instagram-link {
    border-color: #e4405f;
    background: #e4405f;
}

.instagram-link:hover {
    background: transparent;
    color: #e4405f;
}

.x-link {
    border-color: #000000;
    background: #000000;
    position: relative;
}

.x-link::after {
    content: 'X';
    font-weight: bold;
    font-size: 20px;
    z-index: 2;
    position: relative;
}

.x-link:hover {
    background: transparent;
    color: #000000;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
