* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Helvetica Neue", Arial, sans-serif;
}

:root {
    --brand-blue: #035796;
    --brand-blue-dark: #035796;
}

body {
    background: #000;
    color: #fff;
}

/* Utility Bar */
.utility-bar {
    background: #000;
    padding: 10px 30px;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
}

.utility-bar a {
    color: var(--brand-blue);
    text-decoration: none;
}

/* Header */
.main-header {
    position: absolute;
    top: 45px;
    width: 100%;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 5;
}

.logo {
    font-weight: bold;
    letter-spacing: 3px;
    font-size: 50px;
    font-family: Bradley Hand, cursive;
}

.nav-links a {
    display: inline-flex;
    align-items: center;
    white-space: normal;
    margin-left: 30px;
    text-decoration: none;
    color: #fff;
    text-transform: uppercase;
    padding: 0 .6rem;
    letter-spacing: -0.5px;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    font-family: "Poppins", Arial, sans-serif;
}

.nav-links a:hover {
    color: rgb(2,58,100);
}

/* Hero */
.hero {
    height: 100vh;
    position: relative;
}

.hero-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
}

.geo-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(25,118,210,0.15) 0%, transparent 60%);
}

.hero-content {
    position: absolute;
    bottom: 100px;
    left: 70px;
    max-width: 900px;
}

.hero-content h1 {
    font-size: 68px;
    line-height: 1.05;
    margin-bottom: 40px;
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    letter-spacing: -0.5px;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    font-family: "Poppins", Arial, sans-serif;
}

.btn {
    background: #035796;
    padding: 16px 30px;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    color: #fff;
    transition: background 0.3s;
}

.btn:hover {
    background: rgb(2,58,100);
}

/* CONTACT */
.contact-form {
    max-width: 600px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.container h2 {
    text-align: center;
    margin-top: 10px;
}

.contact-form input,
.contact-form textarea {
    margin-top: 20px;
    padding: 0.75rem;
    border-radius: 5px;
    border: none;
}

/* FOOTER */
.footer {
    background: #035796;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
}