/* ============================================================
   GLS GLOBAL STYLES (Inter font, smooth, neutral grey base)
============================================================ */
body.gls-body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: #f5f7fb;
    color: #0a2342;
    -webkit-font-smoothing: antialiased;
    line-height: 1.45;
}

/* ============================================================
   NAVY TOP NAVIGATION BAR
============================================================ */
.gls-topnav {
    background: #0a2342;
    color: white;
    padding: 16px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gls-nav-logo {
    font-size: 26px;
    color: white;
    text-decoration: none;
    font-weight: 700;
}

.gls-nav-subtitle {
    font-size: 12px;
    font-weight: 300;
    display: block;
    color: #d0e2ff;
}

.btn-nav {
    background: #103a61;
    padding: 10px 18px;
    margin-left: 12px;
    border-radius: 10px;
    color: white;
    text-decoration: none;
    display: inline-flex;
    gap: 6px;
    align-items: center;
    font-size: 15px;
    font-weight: 500;
}

.btn-nav:hover {
    background: #164a7c;
}

/* ============================================================
   DEV BANNER
============================================================ */
.gls-dev-banner {
    background: #cc0000;
    color: white;
    text-align: center;
    padding: 6px 0;
    font-size: 15px;
    font-weight: 600;
}

/* ============================================================
   BREADCRUMBS
============================================================ */
.gls-breadcrumbs {
    padding: 14px 30px;
    font-size: 14px;
    color: #103a61;
}

.gls-breadcrumbs a {
    text-decoration: none;
    color: #0a2342;
    font-weight: 600;
}

.gls-breadcrumbs span {
    color: #103a61;
}

/* ============================================================
   GLS MAIN CONTENT WRAPPER
============================================================ */
.gls-container {
    padding: 30px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

/* ============================================================
   GENERIC WHITE "CARD" CONTAINER
============================================================ */
.gls-card {
    background: white;
    border-radius: 18px;
    padding: 35px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.06);
    margin-bottom: 35px;
}

/* ============================================================
   FLEX LAYOUT (2 COLUMNS)
============================================================ */
.gls-two-col {
    display: flex;
    gap: 35px;
}

.gls-two-col > .gls-card {
    flex: 1;
}

/* Mobile stack */
@media (max-width: 980px) {
    .gls-two-col {
        flex-direction: column;
    }
}

/* ============================================================
   FORM FIELD STYLING (Signup)
============================================================ */
.gls-form-label {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 6px;
    display: block;
}

.gls-form-desc {
    font-size: 14px;
    color: #3d4d63;
    margin-top: 2px;
    margin-bottom: 14px;
}

.gls-input,
.gls-select,
.gls-textarea {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid #0a2342;
    border-radius: 8px;
    font-size: 16px;
    background: white;
    color: #0a2342;
    outline: none;
}

.gls-input:focus,
.gls-select:focus,
.gls-textarea:focus {
    border-color: #164a7c;
    box-shadow: 0 0 0 2px rgba(22,74,124,0.2);
}

.gls-textarea {
    min-height: 90px;
    resize: vertical;
}

/* ============================================================
   STEP BUTTON
============================================================ */
.gls-step-btn {
    background: #0a2342;
    color: white;
    padding: 16px 26px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    display: inline-block;
    margin-top: 25px;
}

.gls-step-btn:hover {
    background: #164a7c;
}

/* ============================================================
   PAGE TITLES
============================================================ */
.gls-page-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 14px;
}

.gls-page-lead {
    font-size: 18px;
    color: #31415c;
    margin-bottom: 25px;
}

/* ============================================================
   FOOTER
============================================================ */
.gls-footer {
    margin-top: 60px;
    padding: 26px 0;
    text-align: center;
}

.gls-footer-navy {
    background: #0a2342;
    color: white;
}

.gls-footer-links a {
    color: white;
    margin: 0 10px;
    font-size: 14px;
    text-decoration: none;
}

/* ============================================================
   ELFIE ASSISTANT
============================================================ */
#elfie-container {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9999;
}

#elfie-img {
    width: 70px;
    cursor: pointer;
}

#elfie-bubble {
    position: absolute;
    background: white;
    padding: 12px 16px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    bottom: 80px;
    right: 0;
    width: 240px;
    font-size: 14px;
    display: none;
    opacity: 1;
    transition: opacity 0.3s ease;
}
