:root {
    --web-brand: #0b2e57;
    --web-brand-hover: #082444;
    --web-gold: #c9a227;
    --web-gold-hover: #a5883a;
    --web-soft: rgba(11, 46, 87, 0.1);
    --web-text: #1a202c;
    --web-muted: #5a6577;
}

body {
    background: #f5f7fa;
    color: var(--web-text);
}

.preloader {
    display: none !important;
}

.mainmenu.navbar-default {
    background: var(--web-brand) !important;
    border: 0 !important;
    box-shadow: 0 4px 16px rgba(11, 46, 87, 0.18);
    min-height: 72px;
}
.mainmenu.menu-bg {
    background: var(--web-brand) !important;
    color: #ffffff !important;
}
.mainmenu .brand-bg {
    background: transparent !important;
    height: auto;
    padding: 12px 0 8px;
    border-radius: 0;
}
.mainmenu .brand-bg a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff !important;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 15px;
}
.mainmenu .brand-bg img {
    height: 42px;
    width: auto;
    margin: 0;
    padding: 0;
}
.mainmenu .navbar-nav {
    padding-top: 12px;
}
.mainmenu .navbar-nav > li > a {
    color: #ffffff !important;
    font-weight: 600;
    text-transform: none;
    font-size: 14px;
    padding: 10px 14px !important;
}
.mainmenu .navbar-nav > li > a:hover,
.mainmenu .navbar-nav > li > a:focus {
    background: transparent !important;
    color: var(--web-gold) !important;
}
.mainmenu .navbar-toggle {
    border-color: rgba(255, 255, 255, 0.3);
    margin-top: 18px;
}
.mainmenu .navbar-toggle .icon-bar {
    background: #ffffff;
}
.navbar-cta {
    background: var(--web-gold) !important;
    color: var(--web-brand) !important;
    border-radius: 8px !important;
    margin: 6px 6px 0 !important;
    padding: 8px 16px !important;
}
.navbar-cta:hover {
    background: #ffffff !important;
    color: var(--web-brand) !important;
}

.home-bg {
    background: url(../assets_web/images/header-bg.JPG) no-repeat center top;
    background-size: cover;
    min-height: auto;
}
.home-bg .overlay-img {
    background: linear-gradient(105deg, rgba(11, 46, 87, 0.92) 0%, rgba(11, 46, 87, 0.55) 70%, rgba(11, 46, 87, 0.25) 100%);
    padding: 150px 0 90px;
    color: #ffffff;
}
.home-bg .header-details {
    padding-top: 0;
    color: #ffffff;
    max-width: 620px;
}
.home-bg .header-details h1 {
    color: #ffffff;
    font-size: 38px;
    line-height: 1.2;
    margin-bottom: 12px;
    text-transform: none;
}
.home-bg .header-details p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    margin-bottom: 24px;
}
.btn-web,
.home-bg .header-details a.btn-web {
    display: inline-block;
    background: var(--web-gold) !important;
    color: var(--web-brand) !important;
    border: 0;
    border-radius: 8px;
    font-weight: 700;
    padding: 12px 26px !important;
    width: auto;
    height: auto;
    font-size: 15px;
    margin-top: 0;
}
.btn-web:hover,
.home-bg .header-details a.btn-web:hover {
    background: #ffffff !important;
    color: var(--web-brand) !important;
}
.btn-web-outline {
    display: inline-block;
    background: transparent !important;
    color: var(--web-brand) !important;
    border: 1.5px solid var(--web-brand) !important;
    border-radius: 8px;
    font-weight: 700;
    padding: 11px 24px;
}
.btn-web-outline:hover {
    background: var(--web-brand) !important;
    color: #ffffff !important;
}

.feature-grid {
    margin-top: -48px;
    position: relative;
    z-index: 2;
    padding-bottom: 20px;
}
.feature-card {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 24px rgba(11, 46, 87, 0.08);
    padding: 28px 24px;
    min-height: 220px;
    margin-bottom: 24px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(11, 46, 87, 0.14);
}
.feature-card .feature-icon {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background: var(--web-soft);
    color: var(--web-brand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 14px;
}
.feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--web-brand);
    margin: 0 0 10px;
}
.feature-card p {
    color: var(--web-muted);
    font-size: 14px;
    line-height: 1.55;
    margin-bottom: 14px;
}
.feature-card a {
    color: var(--web-gold-hover);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.feature-card a:hover {
    color: var(--web-brand);
}

.auth-section {
    padding: 120px 0 70px;
    min-height: calc(100vh - 180px);
    background: #f5f7fa !important;
}
.web-section {
    padding: 50px 0 70px;
    background: #ffffff !important;
}
.web-section h2 {
    color: var(--web-brand);
    font-weight: 700;
    margin-bottom: 16px;
}
.web-section p {
    color: var(--web-muted);
    line-height: 1.7;
    font-size: 15px;
}

.web-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 12px 32px rgba(11, 46, 87, 0.08);
    padding: 36px 32px;
}
.auth-wrap {
    max-width: 480px;
    margin: 0 auto;
}
.auth-wrap-lg {
    max-width: 920px;
    margin: 0 auto;
}
.web-card h1,
.web-card h2 {
    color: var(--web-brand);
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 8px;
}
.web-card .lead-text {
    color: var(--web-muted);
    margin-bottom: 24px;
}
.web-card label,
.web-card .form-group label {
    font-weight: 600;
    color: var(--web-text);
    font-size: 13px;
    margin-bottom: 4px;
}
.web-card .form-control,
.auth-section input.form-control,
.auth-section select.form-control {
    height: 44px;
    border-radius: 8px;
    border: 1.5px solid #cbd5e1;
    box-shadow: none;
    font-size: 15px;
}
.web-card .form-control:focus,
.auth-section input.form-control:focus {
    border-color: var(--web-brand);
    box-shadow: 0 0 0 3px var(--web-soft);
}
.web-card .btn-web,
.auth-section .btn-web {
    width: 100%;
    margin-top: 8px;
}
.auth-links {
    margin-top: 18px;
    font-size: 14px;
    color: var(--web-muted);
}
.auth-links a {
    color: var(--web-brand);
    font-weight: 700;
}
.contact-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 18px;
}
.contact-item i {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--web-soft);
    color: var(--web-brand);
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-item strong {
    display: block;
    color: var(--web-brand);
    font-size: 13px;
}
.web-footer {
    background: var(--web-brand);
    color: rgba(255, 255, 255, 0.8);
    padding: 28px 0;
    margin-top: 0;
}
.web-footer a {
    color: var(--web-gold);
}
.web-footer .copyright p {
    margin: 0;
    font-size: 13px;
}
.web-footer .social-network a {
    color: #ffffff;
    font-size: 18px;
    margin-right: 12px;
}
.alert {
    border-radius: 8px;
}
.select2-container {
    width: 100% !important;
}
.select2-container .select2-selection--single {
    height: 44px !important;
    border: 1.5px solid #cbd5e1 !important;
    border-radius: 8px !important;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 42px !important;
    padding-left: 12px !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 42px !important;
}

@media (max-width: 767px) {
    .home-bg .header-details h1 {
        font-size: 28px;
    }
    .web-card {
        padding: 24px 18px;
    }
    .mainmenu .navbar-nav {
        background: var(--web-brand);
        padding: 10px 0 16px;
    }
}

label.required:after,
.required:after {
    content: " *";
    color: #dc3545 !important;
    font-weight: 700;
}
.form-error-list {
    list-style: none;
    padding: 0;
    margin: 0.35rem 0 0;
}
.form-error-list li {
    color: #dc3545;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.35;
}
.form-error-list li + li {
    margin-top: 0.15rem;
}
.alert .form-error-list {
    margin-top: 0;
}
.web-card .form-control.is-invalid,
.auth-wrap .form-control.is-invalid {
    border-color: #dc3545 !important;
}
