:root {
    --primary: #56d4fa;
    --primary-dark: #3db8e8;
    --secondary: #6c757d;
    --success: #198754;
    --info: #0dcaf0;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #212529;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

.navbar .nav-link {
    color: #333 !important;
    font-weight: 500;
    transition: color 0.2s ease;
}

.navbar .nav-link:hover {
    color: #0d6efd !important;
}

.hero-section {
    position: relative;
}

.navbar-brand {
    font-size: 1.5rem;
}

.card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15) !important;
}

.service-card {
    cursor: pointer;
    border: none;
}

.service-card:hover {
    transform: translateY(-8px);
}

.partner-card {
    background: white;
    border-radius: 1rem;
}

.partner-logo {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.icon-display {
    font-size: 3rem;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.modal-header {
    border-bottom: none;
}

.modal-footer {
    border-top: none;
}

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

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

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

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

.section-divider {
    height: 4px;
    width: 60px;
    background: var(--primary);
    margin: 0 auto;
    border-radius: 2px;
}

@media (max-width: 768px) {
    .display-2 {
        font-size: 2.5rem;
    }
    
    .display-3 {
        font-size: 2.5rem;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .hero-section {
        padding: 3rem 0 !important;
    }
    
    .card:hover {
        transform: none;
    }
    
    .service-card:hover {
        transform: none;
    }
}

.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.ajax-loading {
    position: relative;
}

.ajax-loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
}

.list-group-item {
    border: none;
    padding: 0.5rem 0;
}

.alert-success {
    background: linear-gradient(135deg, #d1e7dd 0%, #a3cfbb 100%);
    border: none;
}

#formMessage.success {
    background: linear-gradient(135deg, #d1e7dd 0%, #a3cfbb 100%);
    color: #0f5132;
}

#formMessage.error {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c2c7 100%);
    color: #842029;
}
