/* Reset & Global Styles */
:root {
    /* Deep Navy Blue */
    --accent-orange: #ea961d;
    /* Gold/Orange */
    --text-dark: #333;
    --text-light: #666;
    --bg-light: #fff;
    --divider-color: #ddd;
    --button-blue: #134f82;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-dark);
    font-size: 15px;
    line-height: 1.6;
    background-color: #fff;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.text-uppercase {
    text-transform: uppercase;
}

.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 1.5rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}


.main-nav a:hover,
.main-nav a.active {
    color: var(--accent-orange);
}

.nav-item-badge {
    position: relative;
}

/* Main Content Styles */
.page-title {
    text-align: center;
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 24px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.title-underline {
    height: 2px;
    width: 100%;
    margin-bottom: 30px;
    position: relative;
    background-color: #ccc;
}

/* Optional partial underline effect if desired, but image is full width thin line */

.result-layout {
    display: flex;
    /* Two columns */
}

.col-left {
    flex: 1;
    padding-right: 40px;
}

.col-right {
    flex: 1;
    /* Actually looks more like 45-55 split or equal, let's keep equal */
    padding-left: 40px;
    /* padding-top: 20px; */
    /* Slight offset alignment */
}

/* Vertical Divider */
.vertical-divider {
    width: 2px;
    background-color: #ccc;
    margin: 20px 0;
}

/* Info Sections */
.info-section {
    margin-bottom: 40px;
}

.section-title {
    color: var(--accent-orange);
    font-size: 22px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 46px;
}

.col-right .section-title {
    margin-bottom: 46px;
}

.info-row .label {
    min-width: fit-content;
    margin-right: 4px;
    color: #4d4c4c;
}



.title-main {}

.info-row {
    display: flex;
    margin-bottom: 10px;
    font-size: 20px;
}

.label {
    min-width: 180px;
    font-weight: 700;
    color: #222;
}

.value {
    font-weight: 700;
    color: #4d4c4c;
}

/* Action Buttons Area */
.action-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* 2 columns for buttons */
    gap: 15px 30px;
    /* row-gap col-gap */
    max-width: 600px;
    margin: 0 auto;
}

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 12px 20px;
    border-radius: 30px;
    /* Pill shape */
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
    transition: transform 0.2s, opacity 0.2s;
    white-space: nowrap;
}

.btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.status-btn {
    background-color: var(--accent-orange) !important;
    color: #fff;
    /* The first button spans no link, just static ? Image implies it's a label-like button */
}

.action-btn {
    background-color: var(--button-blue) !important;
    color: #fff;
}

/* Note Box */
.note-box {
    margin-top: 30px;
    font-size: 16px;
    color: #4d4c4c;
    line-height: 1.6;
    padding-left: 10px;
    /* Visual alignment */
    font-weight: 700;
}

/* Footer Styles */
.footer {
    background-color: var(--primary-blue);
    color: #fff;
    padding: 40px 0 20px;
    font-size: 13px;
}

.footer h3 {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: #add8e6;
    /* Light blue text for labels? Or just white. Image looks white/light grey */
    color: rgba(255, 255, 255, 0.7);
}

.footer p {
    margin-bottom: 5px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.footer-logo-col .logo-placeholder.small {
    width: 50px;
    height: 50px;
    font-size: 24px;
    border: none;
}

.footer-logo-col .school-name strong {
    font-size: 15px;
}

.footer-logo-col .school-name span {
    font-size: 11px;
}

.footer-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 20px 0;
}

.footer-middle {
    display: grid;
    grid-template-columns: 1.5fr 1.5fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-icons a {
    width: 35px;
    height: 35px;
    background-color: #fff;
    border-radius: 50%;
    color: var(--primary-blue);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
}

.social-icons a:hover {
    background-color: var(--accent-orange);
    color: white;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
}

.copyright-note {
    margin-top: 10px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
}

.messenger-btn {
    width: 50px;
    height: 50px;
    background-color: #0084ff;
    border-radius: 50%;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.live-chat-badge {
    background-color: #0084ff;
    color: white;
    border-radius: 5px;
    padding: 5px 10px;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    text-align: center;
    font-size: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.live-chat-badge .live {
    background: #43b929;
    padding: 0 3px;
    border-radius: 2px;
    margin-bottom: 2px;
    display: inline-block;
    align-self: center;
}


/* Responsive */
@media (max-width: 768px) {
    /* .header-container {
        flex-direction: column;
        gap: 15px;
    } */

    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .result-layout {
        flex-direction: column;
    }

    .vertical-divider {
        width: 100%;
        height: 1px;
        margin: 30px 0;
    }

    /* .col-left,
    .col-right {
        padding: 0;
    }

    .footer-middle {
        grid-template-columns: 1fr;
    }

    .footer-top {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    } */

    .logo-area {
        justify-content: center;
    }
}

.search-form-container {
    max-width: 800px;
    margin: 0 auto;
}

.guide-title {
    color: var(--accent-orange);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.guide-text {
    font-size: 14px;
    color: #333;
    margin-bottom: 40px;
}

.guide-text p {
    margin-bottom: 15px;
    font-weight: 500;
}

.search-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.form-group-center {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 500px;
}

.form-group-center label {
    font-weight: 700;
    color: #666;
    min-width: 100px;
    /* text-align: right; */
    /* margin-right: 20px; */
}

.pill-input input {
    border: none;
    box-shadow: none !important;
    padding: 17px 0;
}

.pill-input {
    border-radius: 30px;
    padding: 0px 22px;
    border: 1px solid var(--input-border);
    outline: none;
    width: 100%;
    font-size: 15px;
    color: #333;
    background: #fdfdfd;
}

.pill-input:focus {
    border-color: var(--accent-orange);
}

.pill-wrapper {
    width: 100%;
    position: relative;
}

.calendar-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
}

.form-action {
    margin-top: 20px;
}

.btn-search {
    background-color: var(--accent-orange);
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    border-radius: 30px;
    padding: 12px 50px;
    cursor: pointer;
    font-size: 14px;
    transition: opacity 0.3s;
}

.btn-search:hover {
    opacity: 0.9;
}

/* Responsive Form */
@media (max-width: 600px) {
    .form-group-center {
        /* flex-direction: column; */
        /* align-items: flex-start; */
        gap: 5px;
        padding: 0 10px;
    }

    .form-group-center label {
        text-align: left;
        margin-right: 0;
        /* min-width: auto; */
        font-size: 14px;
    }.pill-input input {
    font-size: 14px;
}
}

@media (max-width: 900px) {
    .header-container {
        flex-direction: column;
        gap: 15px;
    }

    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-middle {
        grid-template-columns: 1fr;
    }

    .footer-top {
        flex-direction: column;
        text-align: center;
    }

    .logo-area {
        justify-content: center;
    }
}