@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
    /* Brand Colors */
    --primary-color: #08A046;
    --primary-hover: #068038;
    --primary-light: #e6f6ec; /* Very light green for backgrounds */
    
    /* Neutral/Accent Palette */
    --neutral-100: #ffffff;
    --neutral-200: #f8f9fa;
    --neutral-300: #e9ecef;
    --neutral-400: #dee2e6;
    --neutral-500: #adb5bd;
    --neutral-600: #6c757d;
    --neutral-700: #495057;
    --neutral-800: #343a40;
    --neutral-900: #212529;

    --accent-blue-light: #D8F7FF;
    --accent-blue-mid: #CBDBFE;
    --accent-blue-ice: #D2F0F8;

    /* Text Colors */
    --text-heading: #111827;
    --text-body: #4b5563;
    --text-muted: #9ca3af;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

    /* Fonts */
    --font-heading: 'Manrope', sans-serif;
    --font-body: 'Inter', sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--text-body);
    background-color: var(--neutral-100);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.2s ease;
}

a:hover {
    color: var(--primary-hover);
}

/* Typography Utilities */
.display-1, .display-2, .display-3, .display-4 {
    font-weight: 800;
}

.text-primary { color: var(--primary-color) !important; }
.text-muted { color: var(--text-muted) !important; }
.bg-primary { background-color: var(--primary-color) !important; }
.bg-primary-light { background-color: var(--primary-light) !important; }

.bg-accent-1 { background-color: var(--accent-blue-light) !important; }
.bg-accent-2 { background-color: var(--accent-blue-mid) !important; }
.bg-accent-3 { background-color: var(--accent-blue-ice) !important; }

/* Buttons */
.btn {
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: all 0.2s ease;
}

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

.btn-primary:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

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

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

.btn-light {
    background-color: white;
    color: var(--text-heading);
    border: 1px solid var(--neutral-300);
}

.btn-light:hover {
    background-color: var(--neutral-200);
    border-color: var(--neutral-400);
}

/* Navbar */
.navbar {
    padding: 1rem 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--neutral-300);
}

.navbar-brand {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--text-heading);
    letter-spacing: -0.03em;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-body);
    font-size: 0.95rem;
    padding: 0.5rem 1rem !important;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-color);
}

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-lg);
    border-radius: 12px;
    padding: 1rem;
    margin-top: 1rem;
}

.dropdown-item {
    border-radius: 6px;
    padding: 0.5rem 1rem;
    font-weight: 500;
    color: var(--text-body);
}

.dropdown-item:hover {
    background-color: var(--primary-light);
    color: var(--primary-color);
}

/* Cards */
.card {
    border: 1px solid var(--neutral-300);
    border-radius: 16px;
    background: white;
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.icon-box {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.icon-box-primary {
    background-color: var(--primary-light);
    color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--accent-blue-light) 0%, rgba(255,255,255,0) 100%);
}

/* Section Spacing */
section {
    padding: 5rem 0;
}

.bg-light-section {
    background-color: var(--neutral-200);
}

/* Footer */
footer {
    background-color: #111827;
    color: var(--neutral-400);
    font-size: 0.9rem;
}

footer h5 {
    color: white;
    margin-bottom: 1.5rem;
}

footer a {
    color: var(--neutral-400);
}

footer a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Utilities */
.rounded-xl {
    border-radius: 1rem !important;
}

.rounded-2xl {
    border-radius: 1.5rem !important;
}

.text-gradient {
    background: linear-gradient(135deg, var(--text-heading), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
