:root {
    --primary-color: #0d6efd;
    --secondary-color: #ffc107;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

/* Navbar */
.navbar-brand {
    font-weight: 700;
}

.btn-nav-cta {
    background-color: var(--secondary-color);
    color: #000;
    font-weight: bold;
    border-radius: 50rem;
    padding: 0.5rem 1.5rem;
    transition: all 0.3s ease;
    border: none;
}

.btn-nav-cta:hover {
    background-color: #ffca2c;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(180deg, rgba(13,110,253,0.05) 0%, rgba(255,255,255,0) 100%);
}

/* Custom Utilities */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
}

.icon-box {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Soft Background Colors */
.bg-primary-soft { background-color: rgba(13,110,253,0.1); color: #0d6efd; }
.bg-secondary-soft { background-color: rgba(108,117,125,0.1); color: #6c757d; }
.bg-success-soft { background-color: rgba(25,135,84,0.1); color: #198754; }
.bg-info-soft { background-color: rgba(13,202,240,0.1); color: #0dcaf0; }
.bg-warning-soft { background-color: rgba(255,193,7,0.1); color: #ffc107; }
.bg-danger-soft { background-color: rgba(220,53,69,0.1); color: #dc3545; }

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

.btn-warning {
    color: #000;
    font-weight: bold;
}

/* Footer */
footer a:hover {
    color: var(--primary-color) !important;
}

/* Responsive Logo */
.logo-box {
    width: 45px;
    height: 45px;
}
.logo-icon {
    font-size: 1.5rem;
}
.logo-text {
    font-size: 1.1rem;
    letter-spacing: -0.5px;
}

.mobile-btn {
    width: 36px;
    height: 36px;
}

@media (min-width: 992px) {
    .logo-box {
        width: 52px;
        height: 52px;
    }
    .logo-icon {
        font-size: 2rem;
    }
    .logo-text {
        font-size: 1.4rem;
    }
}
