/* Custom styles for DelegateHosts */

:root {
    --bs-primary: #0066cc;
    --bs-primary-rgb: 0, 102, 204;
}

body {
    font-family: 'Inter', sans-serif;
}

/* Smooth transitions */
.btn, .nav-link, .card {
    transition: all 0.3s ease;
}

/* Header styles */
.navbar-brand:hover {
    transform: translateY(-1px);
}

/* Card hover effects */
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

/* Hero section */
.bg-primary {
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%) !important;
}

/* Pricing cards */
.card.border-primary {
    position: relative;
    overflow: visible;
}

/* Form styling */
.form-control {
    border: 2px solid #e9ecef;
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 0.2rem rgba(0, 102, 204, 0.25);
}

/* Button styles */
.btn {
    border-radius: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background: #0056b3;
    border-color: #0056b3;
    transform: translateY(-1px);
}

.btn-outline-light:hover {
    transform: translateY(-1px);
}

/* Icon styling */
.fa-2x {
    font-size: 1.8em;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .display-4 {
        font-size: 2rem;
    }
    
    .display-5 {
        font-size: 1.75rem;
    }
    
    .display-6 {
        font-size: 1.5rem;
    }
}

/* Alert styling */
.alert {
    border-radius: 0.5rem;
    border: none;
}

.alert-success {
    background-color: #d1edff;
    color: #0066cc;
}

/* Footer styling */
footer a:hover {
    color: #ffffff !important;
    transition: color 0.3s ease;
}

/* Stats section counters */
.display-6 {
    font-weight: 700;
}

/* Testimonial cards */
.fst-italic {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* FAQ cards */
.card-title {
    color: #333;
}

/* Loading animation for forms */
.btn:disabled {
    opacity: 0.6;
    pointer-events: none;
}

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

/* Background patterns */
.bg-light {
    background-color: #f8f9fa !important;
}

/* Contact form styling */
.form-label {
    color: #333;
    margin-bottom: 0.5rem;
}

/* Navbar active state */
.nav-link.text-primary {
    color: var(--bs-primary) !important;
    font-weight: 600;
}

/* Card body padding consistency */
.card-body {
    padding: 1.5rem;
}

/* Shadow utilities */
.shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

/* Text utilities */
.text-white-50 {
    color: rgba(255, 255, 255, 0.5) !important;
}

/* Border radius consistency */
.rounded-3 {
    border-radius: 0.375rem !important;
}

.rounded-circle {
    border-radius: 50% !important;
}
