/* ====================================
   Contact Page Styles
======================================= */

.contact-page {
    background-color: #000;
    color: #000000;
    min-height: 100vh;
    font-family: 'Optima', Arial, sans-serif;
}

/* ===== Header Styles ===== */
.contact-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 4vw;
    z-index: 1000;
    background-color: transparent;
}

.contact-header .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-header .logo-section .logo {
    width: 150px;
    height: auto;
}

.contact-header .back-button-section .back-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #d4d4d4;
    color: #000;
    text-decoration: none;
    font-family: 'Optima', Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.contact-header .back-button-section .back-btn:hover {
    background-color: #fff;
    color: #000;
}

/* ===== Main Content Styles ===== */
.contact-main {
    padding: 140px 4vw 40px;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: #000;
    background-image: url("assets/img/1.svg");
    background-size: 70%; /* Adjust this value for image size */
    background-repeat: no-repeat;
    background-position: center 85%;
    background-attachment: scroll;
    /* Overlay for background */
}



.contact-main::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 90%);
    z-index: 0;
    pointer-events: none;
}

.contact-wrapper {
    max-width: 1230px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-title {
    font-family: 'Optima', Arial, sans-serif;
    font-size: 48px;
    font-weight: 400;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 30px;
    margin-top: 40px;
    color: #fff;
    letter-spacing: 2px;
}

/* ===== Form Styles ===== */
.contact-form {
    width: 100%;
}

.form-row {
    display: flex;
    gap: 80px;
    margin-bottom: 40px;
}

.form-group {
    flex: 1;
    position: relative;
}

.form-group.full-width {
    flex: 1 1 100%;
}

.form-group label {
    display: block;
    font-family: 'Optima', Arial, sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #fff;
    padding: 12px 0;
    color: #fff;
    font-family: 'Optima', Arial, sans-serif;
    font-size: 18px;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus {
    border-bottom-color: #fff;
}

.form-group input[type="text"]::placeholder,
.form-group input[type="email"]::placeholder,
.form-group input[type="tel"]::placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Optima', Arial, sans-serif;
}

.form-group input[type="text"]:-webkit-autofill,
.form-group input[type="email"]:-webkit-autofill,
.form-group input[type="tel"]:-webkit-autofill,
.form-group input[type="text"]:-webkit-autofill:hover,
.form-group input[type="email"]:-webkit-autofill:hover,
.form-group input[type="tel"]:-webkit-autofill:hover,
.form-group input[type="text"]:-webkit-autofill:focus,
.form-group input[type="email"]:-webkit-autofill:focus,
.form-group input[type="tel"]:-webkit-autofill:focus {
    -webkit-text-fill-color: #fff !important;
    caret-color: #fff;
    -webkit-box-shadow: 0 0 0 1000px transparent inset !important;
    box-shadow: 0 0 0 1000px transparent inset !important;
    transition: background-color 5000s ease-in-out 0s;
}

.form-group select {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #fff;
    padding: 12px 0;
    padding-right: 30px;
    color: #fff;
    font-family: 'Optima', Arial, sans-serif;
    font-size: 18px;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    position: relative;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 12px;
}

.form-group select:focus {
    border-bottom-color: #fff;
}

.form-group select option {
    background-color: #000;
    color: #fff;
    padding: 10px;
}

.form-description {
    margin: 30px 0 40px;
}

.form-description p {
    font-family: 'Optima', Arial, sans-serif;
    font-size: 16px;
    color: #fff;
    line-height: 1.6;
    margin: 0;
}

.form-submit {
    text-align: center;
    margin-top: 60px;
}

.submit-btn {
    background-color: #fff;
    color: #000;
    border: none;
    padding: 13px 120px;
    font-family: 'Optima', Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 200px;
}

.submit-btn:hover {
    background-color: #f0f0f0;
    color: #000;
}

.submit-btn:active {
    transform: scale(0.98);
}

/* ===== Responsive Styles ===== */
@media screen and (max-width: 991px) {
    .contact-title {
        font-size: 32px;
        margin-bottom: 50px;
    }

    .form-row {
        flex-direction: column;
        gap: 80px;
    }

    .contact-header {
        padding: 20px 4vw;
    }

    .contact-header .logo-section .logo {
        width: 120px;
    }

    .contact-main {
        padding: 120px 4vw 80px;
        background-attachment: scroll;
        background-position: center;
    }

    .form-group label {
        font-size: 14px;
    }

    .form-group input[type="text"],
    .form-group input[type="email"],
    .form-group input[type="tel"],
    .form-group select {
        font-size: 16px;
    }
}

@media screen and (max-width: 576px) {
    .contact-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .contact-header .back-button-section .back-btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .form-description p {
        font-size: 14px;
    }

    .submit-btn {
        padding: 12px 120px;
        font-size: 14px;
        min-width: 150px;
    }
}

