/* -------------------CUSTOM STYLES------------------- */
@media (max-width: 768px) {
    .contactus-page {
        padding-top: 20px;
    }
}

.contact-section {
    display: flex;
    justify-content: center;
    position: relative;
    background: radial-gradient(circle at 220px 90px, rgba(255, 102, 0, 0.3), transparent 300px), radial-gradient(circle at 1400px 300px, rgba(255, 102, 0, 0.3), transparent 300px), #1a3e5c;
    padding: 160px 0 80px 0;
    color: white;
    min-height: 100vh;
    overflow: hidden;
}

.container {
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 0 20px;
}

.contact-section .container h3 {
    margin-bottom: 0;
    /* margin-left: 1em; */
}

.contact-section .container>p {
    color: white;
    margin-bottom: 3em;
}

.image-bnr-div {
    top: 70px;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Form Styling */
.form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 15px 20px;
    background: transparent;
    border: 1px solid white;
    color: white;
    font-size: 18px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: white;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: 2px solid white;
}

.contact-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg width='22' height='12' viewBox='0 0 22 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M2 2L11 10L20 2' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
}

.contact-form select option {
    background: #2c3e50;
    color: white;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

/* Actual form styling */
.wpcf7-form p label br {
    display: none;
}

.wpcf7-form p input.wpcf7-submit {
    cursor: pointer;
}

/* Right Side - Contact Info */
.contact-container .speak-directly h3 {
    font-weight: 700;
    margin-bottom: 40px;
    line-height: 1.2;
}

.contacts {
    margin-bottom: 128px;
}

.contacts ul {
    list-style: none;
    padding: 0;
    margin: 0 0 50px 0;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    font-size: 24px;
}

.contact-item span {
    font-size: 16px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

/* Right Side - Social Media */
.social-section h4 {
    font-weight: 600;
    margin: 30px 0 10px 0;
}

.social-media {
    display: flex;
    gap: 15px;
}


/* Responsive Design */
@media (max-width: 768px) {

    .contacts ul {
        margin: 0;
    }

    .contacts ul li {
        margin-bottom: 15px;
    }

    .image-bnr-div {
        top: 30px;
    }

    .contact-section {
        padding: 100px 0 40px 0;
    }

    .contact-section .container>p {
        width: 100%;
        margin-bottom: 4em;
        /* margin-left: 1em; */
    }

    .speak-directly h3 {
        margin-bottom: 20px;
    }

    .contact-item {
        font-size: 16px;
    }
}

/* ------------------------------------------------------------ */
/* -------------------STYLES FOR FAQ SECTION------------------- */
/* ------------------------------------------------------------ */
.faq-section .container {
    padding-top: 56px;
    padding-bottom: 56px;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
}

.faq-section .container .faq-title {
    align-self: center;
}

.faq-section .container .faq-title h2 {
    margin: 0;
    /* font-size 58px; */
    line-height: 1.2;
    color: #333;
}

.faq-section .container .faq-title .orange {
    color: var(--orange-color);
}

.faq-section .container .faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-section .container .faq-list .faq-item {
    border: 1px solid #adadad;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-section .container .faq-list .faq-item.active {
    border-color: var(--orange-color);
}

.faq-section .container .faq-list .faq-item .faq-question {
    width: 100%;
    padding: 10px 18px;
    background: white;
    border: none;
    text-align: left;
    font-size: 28px;
    font-weight: 400;
    color: #333;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-section .container .faq-list .faq-item .faq-question:hover {
    background-color: #f8f9fa;
}

.faq-section .container .faq-list .faq-item .faq-question span:first-child {
    flex: 1;
    margin-right: 16px;
    font-size: 20px;
}

.faq-section .container .faq-list .faq-item .faq-question .faq-icon {
    font-size: 46px;
    color: #adadad;
    transition: transform 0.3s ease;
    min-width: 24px;
    text-align: center;
}

.faq-section .container .faq-list .faq-item .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-section .container .faq-list .faq-item .faq-answer p {
    margin: 0;
    padding: 10px;
    color: #666;
    line-height: 1.4;
    font-size: 15px;
}

.faq-section .container .faq-list .faq-item .faq-answer p a {
    display: inline;
    color: #666;
}

/* -------------------RESPONSIVE STYLES FOR FAQ SECTION------------------- */
@media only screen and (max-width: 1536px) {
    .faq-section .container .faq-list .faq-item .faq-question span:first-child {
        font-size: 18px;
    }
}

@media only screen and (max-width: 1024px) {
    .contacts {
        margin-bottom: 0;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-container .speak-directly h3 {
        margin-bottom: 20px;
    }

    .faq-section .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .faq-section .container .faq-title {
        text-align: center;
    }

    .faq-section .container .faq-list .faq-item .faq-question span:first-child {
        font-size: 18px;
    }

    /* .faq-section .container .faq-title h2 {
        font-size: 36px;
    } */
}

@media only screen and (max-width: 768px) {
    .faq-section .container {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    /* .faq-section .container .faq-title h2 {
        font-size: 28px;
    } */

    .faq-section .container .faq-list .faq-item .faq-question {
        padding: 16px;
        font-size: 16px;
    }

    .faq-section .container .faq-list .faq-item .faq-question span:first-child {
        font-size: 16px;
    }

    .faq-section .container .faq-list .faq-item .faq-question .faq-icon {
        font-size: 36px;
    }

}


/* ------------------------------------------------ */
/* -----------start orange button preset----------- */
/* ------------------------------------------------ */
/* 
* wrapper styling
*/
.submit-button-wrapper {
    position: relative;
    display: inline-block;
    padding: 0;
    margin: 0;
    background: linear-gradient(90deg, #FF6F3C, #FF6F3C);
    overflow: clip;
    outline: 1px solid transparent;
    outline-offset: 0;
    transition: outline-color 0.3s ease;
    cursor: pointer;
}

/* 
* pseudo element style on the wrapper
*/
.submit-button-wrapper::before,
.submit-button-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 0;
}

.submit-button-wrapper::before {
    background: linear-gradient(90deg, rgb(26, 62, 92), rgb(26, 62, 92));
}

.submit-button-wrapper::after {
    background: linear-gradient(90deg, rgba(26, 62, 92, 0.9), rgba(255, 111, 60, 0.9));
}

/* 
* hover on wrapper
*/
.submit-button-wrapper.hovered::before {
    opacity: 1;
}

.submit-button-wrapper.hovered {
    outline-color: white !important;
}

.submit-button-wrapper.leaving::after {
    opacity: 1;
}

/* 
* actual input
*/
.submit-button-wrapper .wpcf7-submit {
    background: transparent !important;
    border: none !important;
    position: relative;
    z-index: 1;
    padding: 16px 24px;
    color: white;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    font-family: "Montserrat", sans-serif;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.submit-button-wrapper .wpcf7-spinner {
    position: absolute;
    top: 50%;
    right: 24px;
    transform: translateY(-50%);
    z-index: 2;
}


/* ------------------------------------------------ */
/* ------------end orange button preset------------ */
/* ------------------------------------------------ */


/* --------Overlay arrow over the contact us text---------- */
.contact-arrow-svg-container {
    position: absolute;
    top: 5.9em;
    left: 0;
    width: 550px;
    height: 380px;
    z-index: 0;
    pointer-events: none;
}

.contact-arrow-svg-container .arrow-svg {
    width: 100%;
    height: auto;
}

.contact-arrow-svg-container .arrow-svg .arrowhead {
    transform: translate(170px, 0);
}

.contact-arrow-svg-container .arrow-svg {
    width: 100%;
    height: 100%;
}

@media only screen and (max-width: 1536px) {
    .contact-arrow-svg-container {
        top: 5.6em;
    }

    .contact-arrow-svg-container .arrow-svg .line-3 {
        transform: scaleX(65%) translateX(80px);
    }

    .contact-arrow-svg-container .arrow-svg .arrowhead {
        transform: translate(45px, 0);
    }
}

@media (max-width:900px) {
    .contact-arrow-svg-container {
        left: -3em;
    }
}

@media only screen and (max-width: 768px) {
    .contact-arrow-svg-container {
        top: 1.8em;
        left: -5em;
    }
}

@media only screen and (max-width: 520px) {
    .contact-arrow-svg-container {
        top: 2.8rem;
        left: -5.5em;
    }
}

/* -------- Start Footer ---------- */

#klaviyo-form {
    padding-top: 20px;
    display: flex;
}

.input-plus-button input {
    padding-right: 24px;
    padding-left: 24px;
    background: none;
    border: 1px solid #fff;
    border-right: none;
    font-size: 18px;
    max-height: 45px;
    height: 45px;
    width: calc(100% - 188px);
    color: #fff;
    border-radius: 0px;
}

.input-plus-button button {
    width: 100%;
    max-width: 188px;
    background: #f86f3d;
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: 0%;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

@media screen and (max-width:520px) {
    #klaviyo-form {
        padding-top: 10px;
    }

    .input-plus-button input {
        width: 100%;
        padding-right: 12px;
    }

    .input-plus-button button {
        max-width: 144px;
        font-size: 14px;
    }
}

/* -------- End Footer ---------- */