/* --- Color Variables --- */
:root {
    --savoy-blue: #616DCBff;
    --royal-blue-web-color: #616DD3ff;
    --vista-blue: #9A9FD7ff;
    --ghost-white: #F8F8FCff;
    --savoy-blue-2: #696FBAff;
    --aero-gradient: linear-gradient(135deg, #616DCB, #9A9FD7 60%, #F5E9D5);
}

/* --- Body & Typography --- */
html,
body {
    height: 100%;
}

body {
    background-color: #f7f7f7;
    color: #333;
    margin: 0;
    padding: 0;
    font-family: "Montserrat", "Libre Franklin", sans-serif;
    font-weight: 400;
    font-optical-sizing: auto;
    font-style: normal;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1 0 auto;
}

h1,
h2,
h3 {
    font-family: "Futura", "Montserrat", sans-serif;
    font-weight: 600;
    color: var(--savoy-blue);
}

header h1 {
    font-size: 3em;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

/* --- Global Utility Classes --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col {
    padding: 0 15px;
    flex: 1 0 0%;
}

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

.mb-0 {
    margin-bottom: 0;
}

.mt-0 {
    margin-top: 0;
}

.pt-0 {
    padding-top: 0;
}

.pb-0 {
    padding-bottom: 0;
}

.bg-light {
    background-color: #f8f9fa;
}

.bg-dark {
    background-color: #343a40;
}

.text-light {
    color: #f8f9fa;
}

.text-dark {
    color: #343a40;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    text-align: center;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn-primary {
    background-color: var(--savoy-blue);
    color: #fff;
}

.btn-primary:hover {
    background-color: #4e5b8d;
}

.btn-secondary {
    background-color: #6c757d;
    color: #fff;
}

.btn-secondary:hover {
    background-color: #5a6268;
}

/* --- Contact Page Hero/Top Section --- */
.contact-hero-bg {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    min-height: 180px;
    background: url('/images/5images.jpg') center/cover no-repeat;
    background-color: var(--savoy-blue-2);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    z-index: 1;
    margin-bottom: 2.5rem;
    box-shadow: 0 8px 32px rgba(30, 30, 40, 0.10);
}

.contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(40, 44, 80, 0.68);
    z-index: 1;
}

.contact-hero-title {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
    padding: 3.5rem 0 2.2rem 0;
}

.contact-hero-title h2 {
    color: #fff;
    font-size: 2.3rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    margin: 0;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
    font-family: "Futura", "Montserrat", sans-serif;
}

@media (max-width: 700px) {
    .contact-hero-bg {
        min-height: 110px;
        margin-bottom: 1.2rem;
    }

    .contact-hero-title {
        padding: 2.2rem 0 1.2rem 0;
    }

    .contact-hero-title h2 {
        font-size: 1.25rem;
        padding: 0 0.5rem;
    }
}