/* =========================================================
   CONTACT SECTION — Dark Navy & Gold Theme
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy: #0A1650;
    --navy-deep: #07091A;
    --gold: #FFD700;
    --gold-soft: #FFE44A;
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

body {
    font-family: var(--font-body);
    background: var(--navy-deep);
    color: #fff;
    -webkit-font-smoothing: antialiased;
}

.contact-section {
    width: 100%;
    background: var(--navy-deep);
    padding: 130px 0 45px !important; /* Top padding clears floating navbar */
}

/* Offset Clearance for Floating Right Side Buttons */
.contact-container,
.global-contact-container {
    width: 100%;
    max-width: 1380px;
    margin: auto;
    padding-left: 20px;
    padding-right: 75px !important;
}

.contact-container {
    display: flex;
    align-items: center;
    gap: 36px;
}

/* ==========================================
                LEFT IMAGE
========================================== */

.contact-image {
    flex: 0 0 44%;
}

.contact-image img {
    width: 100%;
    height: 100%;
    max-height: 460px;
    min-height: 380px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* ==========================================
              RIGHT SIDE FORM
========================================== */

.contact-form-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(7, 9, 26, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 24px 28px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.contact-title {
    margin: 0 0 4px;
    color: var(--gold);
    font-family: var(--font-heading) !important;
    font-size: 26px;
    font-weight: 700 !important;
    line-height: 1.2;
    text-transform: uppercase;
}

.contact-subtitle {
    margin: 0 0 16px;
    color: var(--gold-soft);
    font-family: var(--font-body) !important;
    font-size: 14px;
    font-weight: 600;
}

.contact-form {
    width: 100%;
}

.contact-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 10px;
}

.contact-row-full {
    margin-bottom: 10px;
}

/* ==========================================
              INPUT FIELDS
========================================== */

.contact-field input,
.contact-row-full input,
.contact-row-full textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 12px;
    font-size: 13px;
    font-family: var(--font-body) !important;
    color: #fff;
    outline: none;
    transition: border-color .25s ease;
}

.contact-field input,
.contact-row-full input {
    height: 38px;
}

.contact-row-full textarea {
    resize: none;
    height: 65px;
}

.contact-field input::placeholder,
.contact-row-full input::placeholder,
.contact-row-full textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.contact-field input:focus,
.contact-row-full input:focus,
.contact-row-full textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.15);
}

/* ==========================================
            CHECKBOX
========================================== */

.contact-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 4px 0 14px;
    cursor: pointer;
}

.contact-checkbox input {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    accent-color: var(--gold);
    cursor: pointer;
    flex-shrink: 0;
}

.contact-checkbox span {
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--font-body) !important;
    font-size: 11.5px;
    line-height: 1.45;
    font-weight: 500;
}

/* ==========================================
            SUBMIT BUTTON
========================================== */

.contact-submit-btn {
    width: 100%;
    height: 40px;
    border: none;
    outline: none;
    border-radius: 50px;
    cursor: pointer;
    font-family: var(--font-body) !important;
    font-size: 13px;
    font-weight: 700;
    color: var(--navy-deep);
    background: linear-gradient(135deg, var(--gold), var(--gold-soft));
    transition: transform .3s ease, box-shadow .3s ease;
}

.contact-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.25);
}

/* =========================================
        GLOBAL CONTACT CARDS
========================================= */

.global-contact-section {
    background: #0b112c;
    padding: 45px 0;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.global-contact-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.contact-card {
    background: rgba(7, 9, 26, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 18px 20px;
    text-align: center;
    transition: transform .35s ease, border-color .35s ease;
}

.contact-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
}

.contact-card h3 {
    color: var(--gold);
    font-family: var(--font-heading) !important;
    font-size: 16px;
    font-weight: 700 !important;
    margin-bottom: 8px;
    line-height: 1.25;
}

.contact-card h4 {
    color: rgba(255, 255, 255, 0.95);
    font-family: var(--font-body) !important;
    font-size: 13.5px;
    font-weight: 600;
    margin-bottom: 6px;
    line-height: 1.4;
}

.contact-card p {
    color: rgba(255, 255, 255, 0.75);
    font-family: var(--font-body) !important;
    font-size: 12.5px;
    line-height: 1.5;
    margin-bottom: 4px;
}

.contact-card i {
    color: var(--gold);
    width: 20px;
    margin-right: 4px;
}

.center-card {
    grid-column: 2;
}

/* ==========================================
            RESPONSIVE
========================================== */

@media(max-width: 1200px) {
    .contact-container {
        gap: 24px;
    }
}

@media(max-width: 991px) {
    .contact-container,
    .global-contact-container {
        padding-right: 20px !important;
    }

    .contact-section {
        padding: 110px 0 35px !important;
    }

    .contact-container {
        flex-direction: column;
        gap: 24px;
    }

    .contact-image {
        width: 100%;
    }

    .contact-image img {
        max-height: none;
        min-height: 280px;
        height: 280px;
    }

    .global-contact-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .center-card {
        grid-column: auto;
    }
}

@media(max-width: 768px) {
    .contact-row {
        grid-template-columns: 1fr;
    }

    .contact-title {
        font-size: 22px;
    }
}

@media(max-width: 576px) {
    .global-contact-container {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 18px 16px;
    }

    .contact-image img {
        min-height: 220px;
        height: 220px;
    }
}