/* Оригинален стил (запазен) */
body {
    background-color: #e9ecef;
}
.card-header {
    background-color: #2c7da0 !important;
}

/* НОВ ФИРМЕН СТИЛ (navy + gold) */
.bg-navy {
    background-color: #0a1a3a;
}
.bg-navy-light {
    background-color: #102a4e;
}
.text-gold {
    color: #d4af37;
}
.border-gold {
    border-color: #d4af37 !important;
}
.btn-gold {
    background-color: #d4af37;
    color: #0a1a3a;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.75rem;
    padding: 0.75rem 1.5rem;
    transition: all 0.2s;
}
.btn-gold:hover {
    background-color: #c5a527;
    color: #0a1a3a;
}
.btn-outline-gold {
    border: 1px solid rgba(212, 175, 55, 0.5);
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.75rem;
    padding: 0.75rem 1.5rem;
    transition: all 0.2s;
}
.btn-outline-gold:hover {
    border-color: #d4af37;
    color: #d4af37;
    background-color: transparent;
}
.card-gold-border {
    border-left: 4px solid #d4af37;
    border-radius: 0.5rem;
}
.hero-section {
    background: linear-gradient(135deg, #0a1a3a 0%, #102a4e 100%);
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.hero-section .decor-circle {
    position: absolute;
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 50%;
}
.login-card {
    background-color: white;
    border-radius: 1rem;
    box-shadow: 0 20px 35px -10px rgba(0,0,0,0.15);
}
.footer {
    background-color: #0a1a3a;
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
}
.footer a {
    color: #d4af37;
    text-decoration: none;
}
.badge-gold {
    background-color: #d4af37;
    color: #0a1a3a;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
}