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

body {
    font-family: 'DM Sans', sans-serif;
}

/* HEADER */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 90px;
    background: #001333;
    display: flex;
    align-items: center;
    z-index: 1000;
}

/* wrapper inside header */
.header-container {
    display: flex;
    justify-content: space-between; /* logo left, nav right */
    align-items: center;
    width: 100%;
    padding-left: 50px;
    padding-right: 50px;
}

/* LOGO */
.logo img {
    height: 50px;
    object-fit: contain;
}

/* NAVIGATION */
.nav {
    display: flex;
    gap: 80px; /* spacing between links */
}

.nav a {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: -0.5px;
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #BE9B55;
}


/* ========== CONTACT SECTION ========== */
.contact {
    padding: 120px 0;

}



/* HEADER */
.contact-header {
    text-align: center;
    margin-bottom: 100px;
}

.contact-header h1 {
font-size: 110px;
    line-height: 110px;
    font-weight: 400;
    letter-spacing: -7px;
    word-break: break-word;
    max-width: 100%;
    margin-bottom: 30px;
    margin-top: 100px;
    color: #BE9B55;
    
}

.contact-header h2 {
    font-size: 35px;
    margin-bottom: 120px;
}

/* GRID */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 100px;
    margin-left: 60px;
    margin-right: 60px;
}

/* CARDS */
.contact-item {
    padding: 30px;
    border-radius: 20px;

    border: 1px solid rgba(200, 169, 106, 0.2);

    box-shadow: 0 0 15px rgba(0, 0, 0, 0.08); */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* smooth hover effect */
}


.contact-item h3 {
    margin-bottom: 15px;
    font-size: 23px;
}

.contact-item p {
    font-size: 17px;
    line-height: 1.6;
}

/* CTA */
.contact-cta {
    text-align: center;
    margin-bottom: 100px;
}

.contact-cta h2 {
    font-size: 50px;
    margin-bottom: 20px;
}

.contact-cta p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto 30px;

}


/* CONTACT FORM SECTION */


/* ================= FORM UPGRADE ================= */

/* ================= FORM (FORMspree RAW HTML) ================= */

.contact-form-section form {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    border-radius: 20px;
    background: rgba(0, 19, 51, 0.6);
    border: 1px solid rgba(200, 169, 106, 0.2);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

/* LABELS */
.contact-form-section form label {
    display: block;
    text-align: left;
    margin-bottom: 8px;
    margin-top: 18px;
    font-size: 14px;
    color: #BE9B55;
    letter-spacing: 0.5px;
}

/* INPUTS + TEXTAREA */
.contact-form-section form input,
.contact-form-section form textarea {
    width: 100%;
    padding: 16px;
    border-radius: 10px;
    border: 1px solid rgba(200, 169, 106, 0.3);
    background: #00204d;
    color: white;
    font-size: 15px;
    outline: none;
    transition: all 0.3s ease;
}

/* PLACEHOLDER */
.contact-form-section form input::placeholder,
.contact-form-section form textarea::placeholder {
    color: rgba(255,255,255,0.4);
}

/* FOCUS EFFECT */
.contact-form-section form input:focus,
.contact-form-section form textarea:focus {
    border-color: #BE9B55;
    background: #002a66;
    box-shadow: 0 0 0 2px rgba(190,155,85,0.2);
}

/* TEXTAREA */
.contact-form-section form textarea {
    resize: vertical;
    min-height: 140px;
}

/* BUTTON */
.contact-form-section form button {
    width: 100%;
    margin-top: 25px;
    padding: 14px 28px;
    border-radius: 50px;
    background: #BE9B55;
    color: #001333;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

/* BUTTON HOVER */
.contact-form-section form button:hover {
    background: transparent;
    color: #BE9B55;
    border: 1px solid #BE9B55;
}

.contact-form-section {
    background: #001333;
    padding: 100px 0;
    text-align: center;
}

.contact-form-section h2 {
    color: white;
    margin-bottom: 40px;
}

/* FORM */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

/* INPUT GROUP */
.form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 16px;
    border-radius: 10px;
    border: 1px solid rgba(200, 169, 106, 0.3);
    background: #00204d;
    color: white;
    font-size: 15px;
    outline: none;
}

/* PLACEHOLDER */
.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #94a3b8;
}

/* FOCUS */
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #c8a96a;
}

/* BUTTON */
.contact-form .btn {
    margin-top: 10px;
    width: 100%;
}

/* OFFICES */
.contact-offices {
    text-align: center;
}

.contact-offices h2 {
    font-size: 50px;
    margin-bottom: 40px;
    margin-top: 100px;
}

.offices-grid {
    display: flex;
    justify-content: center;
    gap: 80px;
}

.office {
    max-width: 300px;
}

.office h3 {
    font-size: 30px;
    margin-bottom: 10px;
    color: #BE9B55;
}

.office p {
    font-size: 18px;
    line-height: 1.6;
}

/* BUTTON */
.btn {
    padding: 14px 28px;
    border-radius: 50px;
    background: #c8a96a;
    color: #001333;
    text-decoration: none;
    transition: 0.3s;
}

.btn:hover {
    background: transparent;
    color: #c8a96a;
    border: 1px solid #c8a96a;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .offices-grid {
        flex-direction: column;
        gap: 40px;
    }
}

/* ================= FOOTER ================= */
.footer {
    background: #001333;
    color: white;
    padding: 80px 50px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    line-height: 1.5;
}

/* FLEX GRID */
.footer-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 50px; /* space between columns */
}

/* LEFT COLUMN: LOGO + TEXT + COPYRIGHT */
.footer-left {
    flex: 2; /* takes roughly twice the space of each right column */
    min-width: 250px;
}

.footer-left .footer-logo {
    width: 200px;
    margin-bottom: 30px;
}

.footer-left p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
    padding-right: 100px;
    padding-left: 10px;
}

/* RIGHT COLUMNS */
.footer-right {
    flex: 1;
    display: flex;

    min-width: 200px;
}

/* NAVIGATION COLUMN */
.footer-nav, .footer-alliance-legal {
    display: flex;
    flex-direction: column;
    margin-right: 100px;
}

.footer-nav h4, .footer-alliance h4 {
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.footer-nav h4, .footer-legal h4 {
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}
.footer-nav a, .footer-alliance a {
    display: block;
    color: white;
    font-size: 18px;
    font-weight: 400;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s;
}
.footer-nav a, .footer-legal a {
    display: block;
    color: white;
    font-size: 18px;
    font-weight: 400;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s;
}


.footer-nav a:hover, .footer-alliance, .footer-legal a:hover {
    color: #BE9B55;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .footer-grid {
        flex-direction: column;
    }

    .footer-left, .footer-right {
        flex: 0 0 100%;
    }

    .footer-right {
        flex-direction: row;
        gap: 50px;
        margin-top: 40px;
    }

    .footer-nav, .footer-alliance, .footer-legal {
        flex: 1;
    }
}

@media (max-width: 600px) {
    .footer-right {
        flex-direction: column;
        gap: 40px;
    }
}


