/* =====================================================
   CONTACT SECTION
   LEFT FORM + RIGHT CONTACT DETAILS
===================================================== */

.contact-section {
    position: relative;

    width: 100%;

    padding: 100px 6%;

    background: #020d26;

    overflow: hidden;
}


/* =====================================================
   BACKGROUND EFFECT
===================================================== */

.contact-section::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    left: -250px;
    top: 100px;

    background: radial-gradient(
        circle,
        rgba(255, 190, 0, 0.14),
        transparent 70%
    );

    pointer-events: none;
}


.contact-section::after {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    right: -250px;
    bottom: -200px;

    background: radial-gradient(
        circle,
        rgba(255, 190, 0, 0.12),
        transparent 70%
    );

    pointer-events: none;
}


/* =====================================================
   MAIN WRAPPER
===================================================== */

.contact-wrapper {

    position: relative;

    z-index: 2;

    max-width: 1400px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: 1.5fr 0.8fr;

    gap: 45px;

    align-items: stretch;
}


/* =====================================================
   LEFT FORM BOX
===================================================== */

.contact-form-box {
    background: transparent;
    border-radius: 0;
    padding: 20px 0;
    box-shadow: none;
    border: none;
}


/* =====================================================
   YOUR EXISTING FORM
===================================================== */

.book-panel {
    width: 100%;
}


/* =====================================================
   FORM GRID
===================================================== */

.book-fields {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 25px 30px;
}


/* =====================================================
   FIELD
===================================================== */

.book-panel .field {

    display: flex;

    flex-direction: column;

    width: 100%;
}


.book-panel .field label {

    margin-bottom: 10px;

    color: #111a2d;

    font-size: 15px;

    font-weight: 600;
}


/* =====================================================
   INPUT + TEXTAREA
===================================================== */

.book-panel .field input,
.book-panel .field textarea {

    width: 100%;

    box-sizing: border-box;

    border: 1px solid #d9d9d9;

    border-radius: 14px;

    background: #ffffff;

    color: #111a2d;

    font-family: inherit;

    font-size: 16px;

    outline: none;

    transition: all 0.3s ease;
}


.book-panel .field input {

    height: 62px;

    padding: 0 18px;
}


.book-panel .field textarea {

    min-height: 145px;

    padding: 16px 18px;

    resize: vertical;
}


/* =====================================================
   PLACEHOLDER
===================================================== */

.book-panel .field input::placeholder,
.book-panel .field textarea::placeholder {

    color: #888;
}


/* =====================================================
   INPUT FOCUS
===================================================== */

.book-panel .field input:focus,
.book-panel .field textarea:focus {

    border-color: #fbb800;

    box-shadow:
        0 0 0 3px rgba(251, 184, 0, 0.12);
}


/* =====================================================
   EVENT MESSAGE
===================================================== */

.book-panel .event-message {

    margin-top: 25px;
}


/* =====================================================
   BUTTON AREA
===================================================== */

.book-footer {

    display: flex;

    justify-content: center;

    margin-top: 35px;
}


/* =====================================================
   BUTTON
===================================================== */

.book-footer .btn-primary {

    min-width: 325px;

    padding: 17px 35px;

    border: none;

    border-radius: 35px;

    background: #fbb800;

    color: #050505;

    font-size: 15px;

    font-weight: 700;

    cursor: pointer;

    transition: all 0.3s ease;
}


.book-footer .btn-primary:hover {

    background: #ffc928;

    transform: translateY(-3px);

    box-shadow:
        0 12px 30px rgba(251, 184, 0, 0.30);
}


/* =====================================================
   RIGHT CONTACT INFORMATION
===================================================== */

.contact-info-box {

    position: relative;

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 45px 38px;

    border-radius: 26px;

    background:
        linear-gradient(
            145deg,
            #091d43,
            #020d26
        );

    border: 1px solid rgba(255, 255, 255, 0.12);

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.30);

    overflow: hidden;
}


/* =====================================================
   GOLD TOP LINE
===================================================== */

.contact-info-box::before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background: #fbb800;
}


/* =====================================================
   DECORATIVE CIRCLE
===================================================== */

.contact-info-box::after {

    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    right: -160px;
    top: -150px;

    border-radius: 50%;

    background:
        rgba(251, 184, 0, 0.08);

    pointer-events: none;
}


/* =====================================================
   CONTACT LABEL
===================================================== */

.contact-label {

    position: relative;

    z-index: 2;

    display: inline-block;

    margin-bottom: 15px;

    color: #fbb800;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 3px;
}


/* =====================================================
   CONTACT HEADING
===================================================== */

.contact-info-box h2 {

    position: relative;

    z-index: 2;

    margin: 0 0 20px;

    color: #ffffff;

    font-size: 36px;

    line-height: 1.2;

    font-weight: 700;
}


.contact-info-box h2 span {

    display: block;

    color: #fbb800;
}


/* =====================================================
   DESCRIPTION
===================================================== */

.contact-description {

    position: relative;

    z-index: 2;

    margin: 0 0 30px;

    color: #b9c5d9;

    font-size: 15px;

    line-height: 1.7;
}


/* =====================================================
   CONTACT ITEM
===================================================== */

.contact-item {

    position: relative;

    z-index: 3;

    display: flex;

    align-items: center;

    gap: 16px;

    padding: 17px 0;

    border-bottom: 1px solid
        rgba(255, 255, 255, 0.10);
}


/* =====================================================
   CONTACT ICON
===================================================== */

.contact-icon {

    flex-shrink: 0;

    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        rgba(251, 184, 0, 0.12);

    border: 1px solid
        rgba(251, 184, 0, 0.30);

    color: #fbb800;

    font-size: 19px;
}


/* =====================================================
   CONTACT TEXT
===================================================== */

.contact-text {

    display: flex;

    flex-direction: column;

    gap: 5px;
}


.contact-text span {

    color: #ffffff;

    font-size: 13px;

    font-weight: 600;
}


.contact-text a,
.contact-text p {

    margin: 0;

    color: #c5cede;

    font-size: 14px;

    text-decoration: none;

    transition: 0.3s ease;
}


.contact-text a:hover {

    color: #fbb800;
}


/* =====================================================
   COMPANY DETAILS
===================================================== */

.contact-company {

    position: relative;

    z-index: 3;

    margin-top: 30px;

    padding-top: 25px;

    border-top: 1px solid
        rgba(255, 255, 255, 0.10);
}


.contact-company strong {

    color: #fbb800;

    font-size: 12px;

    letter-spacing: 1.5px;
}


.contact-company p {

    margin: 8px 0 0;

    color: #8794aa;

    font-size: 12px;

    line-height: 1.6;
}


/* =====================================================
   TABLET
===================================================== */

@media screen and (max-width: 1000px) {

    .contact-wrapper {

        grid-template-columns: 1fr;

        gap: 30px;
    }


    .contact-info-box {

        min-height: auto;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media screen and (max-width: 768px) {

    .contact-section {

        padding: 70px 20px;
    }


    .contact-wrapper {

        grid-template-columns: 1fr;

        gap: 25px;
    }


    .contact-form-box {

        padding: 30px 22px;

        border-radius: 22px;
    }


    .book-fields {

        grid-template-columns: 1fr;

        gap: 20px;
    }


    .book-panel .event-message {

        margin-top: 20px;
    }


    .book-panel .field input {

        height: 56px;
    }


    .book-panel .field textarea {

        min-height: 130px;
    }


    .book-footer {

        margin-top: 25px;
    }


    .book-footer .btn-primary {

        width: 100%;

        min-width: auto;
    }


    .contact-info-box {

        padding: 35px 25px;

        border-radius: 22px;
    }


    .contact-info-box h2 {

        font-size: 30px;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media screen and (max-width: 480px) {

    .contact-section {

        padding: 55px 15px;
    }


    .contact-form-box {

        padding: 25px 18px;
    }


    .contact-info-box {

        padding: 30px 20px;
    }


    .contact-info-box h2 {

        font-size: 27px;
    }


    .contact-icon {

        width: 43px;
        height: 43px;

        font-size: 17px;
    }

}


/* =====================================================
   FINAL CONTACT FORM FIX
   REMOVE OUTER WHITE BOX
===================================================== */

.contact-form-box {
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    border: none !important;
}


/* FORM ITSELF SHOULD NOT BE A CARD */

.contact-form-box .book-panel,
form.book-panel {
    background: transparent !important;
    max-width: none !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}


/* Keep only the input boxes white */

.book-panel .field input,
.book-panel .field textarea {
    background: #ffffff !important;
}