/* =================================================
   RESET & BASE
================================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    background: #ffffff;
    color: #00204c;
    line-height: 1.7;
    
}

/* =================================================
   TYPOGRAPHY
================================================= */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 8px;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 15px;
    margin-bottom: 40px;
}

/* =================================================
   GLOBAL MEDIA
================================================= */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* =================================================
   LINKS
================================================= */
a {
    color: #00204c;
    text-decoration: none;
    transition: 0.3s ease;
}

a:hover {
    color: #b90c14;
}

/* =================================================
   GLOBAL SECTION SPACING
================================================= */
section {
    padding: 55px 0;
}

@media (max-width: 768px) {
    section {
        padding: 40px 0;
    }
}

/* =================================================
   CUSTOM LAYOUT CONTAINER (SAFE)
   ⚠️ DO NOT use Bootstrap .container for content
================================================= */
.site-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* =================================================
   BUTTONS
================================================= */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 500;
    transition: 0.3s ease;
}

.btn-primary {
    background: #b90c14;
    color: #ffffff;
    border: none;
}

.btn-primary:hover {
    background: #00204c;
}

.btn-red {
    background: #00204c;
    color: #ffffff;
}

.btn-red:hover {
    background: #b90c14;
}

/* =================================================
   NAVBAR
================================================= */
.custom-navbar {
    background: rgba(74, 111, 165, 0.85);
    backdrop-filter: blur(10px);
    transition: 0.3s ease;
}

.custom-navbar:hover {
    background: #ffffff;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

/* NAV LINKS */
.custom-navbar .nav-link {
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.4px;
    color: #ffffff !important;
    padding: 8px 14px;
    position: relative;
    transition: 0.3s ease;
}

.custom-navbar:hover .nav-link {
    color: #00204c !important;
}

.custom-navbar .nav-link:hover,
.custom-navbar .nav-link.active {
    color: #b90c14 !important;
}

/* Underline Animation */
.custom-navbar .nav-link::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background: #b90c14;
    left: 50%;
    bottom: 2px;
    transform: translateX(-50%);
    transition: 0.3s ease;
}

.custom-navbar .nav-link:hover::after,
.custom-navbar .nav-link.active::after {
    width: 60%;
}

/* LOGO */
.nav-logo {
    height: 56px;
    width: auto;
}

/* =================================================
   DROPDOWN MENU
================================================= */

.dropdown-menu {
    border: none;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    padding: 10px 0;
    margin-top: 10px;
}

.dropdown-item {
    font-size: 14px;
    font-weight: 400;
    padding: 8px 20px;
    color: #00204c;
    transition: 0.3s ease;
}

/* Dropdown hover */
.dropdown-item:hover,
.dropdown-item.active {
    background: rgba(185, 12, 20, 0.08);
    color: #b90c14;
}

/* Remove underline effect from dropdown toggle */
.dropdown-toggle::after {
    margin-left: 6px;
}

/* Desktop hover open (optional smooth experience) */
@media (min-width: 992px) {
    .navbar .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}

/* Mobile dropdown fix */
@media (max-width: 991px) {
    .dropdown-menu {
        box-shadow: none;
        border-radius: 0;
    }
}


/* =================================================
   FORMS
================================================= */
.form-control {
    border-radius: 6px;
    padding: 10px 14px;
    border: 1px solid #ccc;
    transition: 0.3s ease;
}

.form-control:focus {
    border-color: #b90c14;
    box-shadow: 0 0 0 0.2rem rgba(185, 12, 20, 0.2);
    outline: none;
}

/* =================================================
   FOOTER (BOOTSTRAP-SAFE)
================================================= */
.footer-separator {
    height: 4px;
    background: #00204c;
    width: 100%;
}

.site-footer {
    background: #ffffff;
    color: #00204c;
    padding-top: 40px;
}

.site-footer h5 {
    color: #b90c14;
    margin-bottom: 15px;
    font-weight: 600;
}

.site-footer p {
    font-size: 14px;
    line-height: 1.7;
}

.site-footer ul {
    list-style: none;
    padding-left: 0;
}

.site-footer ul li {
    margin-bottom: 10px;
}

.site-footer a {
    color: #00204c;
    transition: 0.3s ease;
}

.site-footer a:hover {
    color: #b90c14;
    padding-left: 5px;
}

/* LOCK FOOTER LOGO SIZE */
.footer-logo {
    height: 60px;
    width: auto;
    max-width: 100%;
    display: inline-block;
}

.footer-bottom {
    background: #00204c;
    color: #ffffff;
    font-size: 13px;
    padding: 12px 0;
}

@media (max-width: 768px) {
    .footer-logo {
        height: 50px;
    }
}
/* ================= CUSTOM CURSOR ================= */

/* DOT */
.cursor-dot {
    width: 6px;
    height: 6px;
    background: #b90c14;
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
}

/* RING */
.cursor-ring {
    width: 16px;
    height: 16px;
    border: 2px solid #00204c;
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.2s ease-out;
}

/* Hide default cursor */
body {
    cursor: none;
}

/* Disable on mobile */
@media (max-width: 768px) {
    .cursor-dot,
    .cursor-ring {
        display: none;
    }

    body {
        cursor: auto;
    }
}