/* CSS For the Contact Page */
.contact-title {
    /* font-family: "untitled-sans"; fallback in case font not found */
    font-size: 42px;
    font-weight: 700;
    line-height: 63px;
    color: #000000;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.contact-custom-input {
    background-color: #eee;
    /* Light gray background */
    width: 100%;
    /* Full width */
    border: 0;
    /* No border */
    border-radius: 0;
    /* No rounded corners */
    color: #999;
    /* Text color */
    font-size: 14px;
    /* Font size */
    padding: 16px;
    /* Padding inside input */
    box-sizing: border-box;
    /* Include padding in width */

}

.contact-custom-input:focus {
    outline: none;
    background-color: #ddd;
    /* Slightly darker on focus */
    color: #333;
    /* Darker text */
    border: 0;
    border-color: #999 !important;
}

.custom-btn-primary {
    font-size: 14px;
    background-color: #2d318b;
    /* Primary color */
    color: #fff;
    /* Text color */
    border-width: 0 !important;
    /* No border */
    border-color: #2d318b;
    /* Border color matches background */
    border-radius: 0;
    /* Flat corners */
    font-weight: bold;
    font-style: normal;
    text-transform: uppercase;
    /* Uppercase letters */
    text-decoration: none;
    letter-spacing: 2px;
    /* Space between letters */
    padding: 16px 24px;
    /* Add padding */
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    /* Smooth hover */
}

/* Optional hover effect */
.custom-btn-primary:hover {
    background-color: rgba(45, 49, 139, 0.8);
    /* Slightly darker on hover */
    color: #fff;
}

.contact-email-link {
    font-size: 17px;
    /* Font size */
    font-weight: 500;
    /* Medium weight */
    line-height: 28.9px;
    /* Line height */
    color: rgb(0, 180, 227);
    /* Blue color */
    text-decoration: none;
    /* Remove underline */
    transition: color 0.3s ease;
}


/* CSS For the Highlights Page */

.toggle-title {
    font-family: 'Untitled Sans', sans-serif;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
}

.toggle-icon {
    font-size: 20px;
    font-weight: bold;
    transition: transform 0.3s ease;
}

/* Rotate icon when collapse is shown */
.collapse.show+.toggle-title .toggle-icon,
.toggle-title[aria-expanded="true"] .toggle-icon {
    transform: rotate(45deg);
}


/* Highlight title */
.toggle-title-custom {
    font-size: 21px;
    font-weight: 700;
    line-height: 27.3px;
    color: rgb(0, 0, 0);
    cursor: pointer;
    /* So it shows clickable */
}

/* Toggle content */
.toggle-content-custom {
    font-size: 17px;
    font-weight: 500;
    line-height: 28.9px;
    color: rgb(0, 0, 0);
    margin-top: 8px;
    /* Space below the title */
}

.no-bottom-padding {
    padding-bottom: 0 !important;
    padding-top: 0 !important;
}

.highlights-page {
    background-color: #EEEEEE;
    padding: 50px 0;
    /* optional spacing */
}

/* Default (desktop / large screens) */
.highlight-img {
    width: 564px;
    height: 282px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.highlight-box {
    height: 100%;
}

/* Laptop screens (up to 1200px wide) */
@media (max-width: 1200px) {
    .highlight-img {
        width: 480px;
        height: 240px;
    }

    .contact-title {
        font-size: 36px;
        line-height: 54px;
    }
}

/* Tablet screens (up to 992px wide) */
@media (max-width: 992px) {
    .highlight-img {
        width: 100%;
        height: auto;
        max-width: 420px;
    }

    .contact-title {
        font-size: 32px;
        line-height: 48px;
    }

    .toggle-title-custom {
        font-size: 19px;
        line-height: 25px;
    }

    .toggle-content-custom {
        font-size: 16px;
        line-height: 26px;
    }
}

/* Tablet screens (up to 768px wide) */
@media (max-width: 768px) {
    .highlight-img {
        width: 100%;
        /* take full width of column */
        height: auto;
        /* adjust height automatically */
        max-width: 100%;
        /* full width on tablets */
    }

    .highlights-page {
        padding: 40px 0;
    }

    .contact-title {
        font-size: 28px;
        line-height: 42px;
        margin-bottom: 15px;
    }

    .toggle-title-custom {
        font-size: 18px;
        line-height: 24px;
    }

    .toggle-content-custom {
        font-size: 15px;
        line-height: 24px;
    }
}

/* Mobile screens (up to 576px wide) */
@media (max-width: 576px) {
    .highlight-img {
        width: 100%;
        /* full width */
        height: auto;
        /* auto height */
        max-width: 100%;
        /* never overflow */
    }

    .highlights-page {
        padding: 30px 0;
    }

    .contact-title {
        font-size: 24px;
        line-height: 36px;
        margin-bottom: 12px;
    }

    .toggle-title-custom {
        font-size: 17px;
        line-height: 23px;
    }

    .toggle-content-custom {
        font-size: 14px;
        line-height: 22px;
    }

    .toggle-icon {
        font-size: 18px;
    }

    .custom-btn-primary {
        font-size: 13px;
        padding: 14px 20px;
        letter-spacing: 1.5px;
    }

    .contact-custom-input {
        font-size: 13px;
        padding: 14px;
    }
}

/* Extra small mobile screens (up to 375px wide) */
@media (max-width: 375px) {
    .highlights-page {
        padding: 25px 0;
    }

    .contact-title {
        font-size: 20px;
        line-height: 30px;
        margin-bottom: 10px;
    }

    .toggle-title-custom {
        font-size: 16px;
        line-height: 22px;
    }

    .toggle-content-custom {
        font-size: 13px;
        line-height: 20px;
    }

    .toggle-icon {
        font-size: 16px;
    }

    .custom-btn-primary {
        font-size: 12px;
        padding: 12px 18px;
        letter-spacing: 1px;
    }

    .contact-custom-input {
        font-size: 12px;
        padding: 12px;
    }
}

/* Very small mobile screens (up to 320px wide) */
@media (max-width: 320px) {
    .highlights-page {
        padding: 20px 0;
    }

    .contact-title {
        font-size: 18px;
        line-height: 27px;
        margin-bottom: 8px;
    }

    .toggle-title-custom {
        font-size: 15px;
        line-height: 20px;
    }

    .toggle-content-custom {
        font-size: 12px;
        line-height: 18px;
    }

    .toggle-icon {
        font-size: 15px;
    }

    .custom-btn-primary {
        font-size: 11px;
        padding: 10px 16px;
        letter-spacing: 0.5px;
    }

    .contact-custom-input {
        font-size: 11px;
        padding: 10px;
    }

    .contact-email-link {
        font-size: 14px;
        line-height: 22px;
    }
}