body {
    background: rgb(27, 28, 29) !important;
}

section.contact_main {
    background-color: rgb(27, 28, 29);
    min-height: calc(100vh - 80px);

    .contact_left {
        position: sticky;
        top: 100px;
    }

    .contact_image {
        border-radius: 16px 16px 0 0;
        -webkit-border-radius: 16px 16px 0 0;
        overflow: hidden;

        img {
            width: 100%;
            height: 240px;
            object-fit: cover;
            object-position: top center;
            display: block;
        }
    }

    .contact_hours {
        background-color: rgb(30, 30, 31);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-top: none;
        border-radius: 0 0 16px 16px;
        -webkit-border-radius: 0 0 16px 16px;
        padding: 28px 28px 32px;

        h3 {
            font-family: 'Gilroy', sans-serif;
            font-size: 1.1rem;
            font-weight: 700;
            color: #ffffff;
        }

        p {
            color: rgba(255, 255, 255, 0.55);
            font-size: 0.9rem;
            line-height: 1.6;
        }
    }

    .divider {
        border-color: rgba(255, 255, 255, 0.08);
        margin: 20px 0;
    }

    .contact_info {
        display: flex;
        flex-direction: column;
        gap: 14px;

        .info_item {
            display: flex;
            align-items: flex-start;
            gap: 12px;

            svg {
                flex-shrink: 0;
                margin-top: 3px;
            }

            a,
            span {
                color: rgba(255, 255, 255, 0.6);
                font-size: 0.88rem;
                line-height: 1.55;
                text-decoration: none;
                transition: color 0.3s ease;
                display: inline;
                width: auto;
            }

            a:hover {
                color: #c59b32;
            }
        }
    }

    .contact_right {
        h1 {
            font-family: 'Gilroy', sans-serif;
            font-weight: 800;
            font-size: clamp(2rem, 4vw, 2.8rem);
            color: #ffffff;
        }

        .intro_text {
            color: rgba(255, 255, 255, 0.55);
            font-size: 0.95rem;
        }
    }

    .contact_accordion {
        display: flex;
        flex-direction: column;
        gap: 0;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 12px;
        -webkit-border-radius: 12px;
        overflow: hidden;
    }

    .form_group {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);

        &:last-child {
            border-bottom: none;
        }
    }

    .form_toggle {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 20px 24px;
        background: rgba(255, 255, 255, 0.03);
        border: none;
        color: #ffffff;
        font-size: 1.1rem;
        font-weight: 700;
        font-family: 'Gilroy', sans-serif;
        text-align: left;
        cursor: pointer;
        transition: background-color 0.3s ease;

        &:hover {
            background-color: rgba(197, 155, 50, 0.05);
        }

        .toggle_icon {
            width: 28px;
            height: 28px;
            border-radius: 4px;
            -webkit-border-radius: 4px;
            background-color: #c59b32;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: background-color 0.3s ease;
        }

        .toggle_icon.expanded {
            display: none;
        }

        .toggle_icon.collapsed {
            display: flex;
        }

        &:not(.collapsed) {
            .toggle_icon.expanded {
                display: flex;
            }

            .toggle_icon.collapsed {
                display: none;
            }
        }
    }

    .form_body {
        padding: 0 24px 28px;
        background-color: rgba(255, 255, 255, 0.02);
    }

    .form_body form {
        display: flex;
        flex-direction: column;
        gap: 14px;
        margin-top: 8px;
		select{
			color: rgba(255, 255, 255, 0.25) !important;
		}
        input,
        textarea,
		select{
            width: 100%;
            background-color: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 8px;
            -webkit-border-radius: 8px;
            padding: 13px 16px;
            color: #ffffff;
            font-size: 0.9rem;
            font-family: 'Instrument Sans', sans-serif;
            outline: none;
            transition: border-color 0.3s ease, background-color 0.3s ease;
            -webkit-appearance: none;
            appearance: none;

            &::placeholder {
                color: rgba(255, 255, 255, 0.25);
            }

            &:focus {
                border-color: rgba(197, 155, 50, 0.6);
                background-color: rgba(197, 155, 50, 0.04);
            }
        }
		
		option{
			background-color: black;
			color: white;
		}

        textarea {
            resize: vertical;
            min-height: 130px;
            line-height: 1.6;
        }

        button[type="submit"] {
            width: 100%;
            padding: 16px 32px;
            background-color: #c59b32;
            color: #000000;
            font-weight: 700;
            font-size: 1rem;
            font-family: 'Gilroy', sans-serif;
            border: none;
            border-radius: 8px;
            -webkit-border-radius: 8px;
            cursor: pointer;
            transition: background-color 0.3s ease;
            letter-spacing: 0.3px;

            &:hover {
                background-color: #a07820;
            }
        }
    }

    .contact_form {
        margin-top: 8px;

        label {
            display: block;
            font-size: 0.85rem;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 6px;

            .required {
                color: #e05555;
            }
        }

        input[type="text"],
        input[type="email"],
        input[type="tel"],
        select,
        textarea {
            width: 100%;
            background-color: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 8px;
            -webkit-border-radius: 8px;
            padding: 13px 16px;
            color: #ffffff;
            font-size: 0.9rem;
            font-family: 'Instrument Sans', sans-serif;
            outline: none;
            transition: border-color 0.3s ease;
            -webkit-appearance: none;
            appearance: none;

            &::placeholder {
                color: rgba(255, 255, 255, 0.25);
            }

            &:focus {
                border-color: rgba(197, 155, 50, 0.6);
                background-color: rgba(197, 155, 50, 0.04);
            }
        }

        select {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 16 16'%3E%3Cpath d='M4 6l4 4 4-4' stroke='rgba(255,255,255,0.4)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 14px center;
            padding-right: 36px;
            cursor: pointer;

            option {
                background-color: rgb(30, 30, 31);
                color: #ffffff;
            }
        }

        textarea {
            resize: vertical;
            min-height: 130px;
        }
    }

    .submit_btn {
        width: 100%;
        padding: 16px 32px;
        background-color: #c59b32;
        color: #000000;
        font-weight: 700;
        font-size: 1rem;
        font-family: 'Gilroy', sans-serif;
        border: none;
        border-radius: 8px;
        -webkit-border-radius: 8px;
        cursor: pointer;
        transition: background-color 0.3s ease;
        letter-spacing: 0.3px;

        &:hover {
            background-color: #a07820;
        }
    }

    .wpcf7 {
        margin-top: 8px;

        p {
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .wpcf7-form-control-wrap {
            display: block;
            width: 100%;
        }

        input[type="text"],
        input[type="email"],
        input[type="tel"],
        textarea {
            width: 100%;
            background-color: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 8px;
            -webkit-border-radius: 8px;
            padding: 13px 16px;
            color: #ffffff;
            font-size: 0.9rem;
            font-family: 'Instrument Sans', sans-serif;
            outline: none;
            transition: border-color 0.3s ease, background-color 0.3s ease;
            -webkit-appearance: none;
            appearance: none;

            &::placeholder {
                color: rgba(255, 255, 255, 0.3);
            }

            &:focus {
                border-color: rgba(197, 155, 50, 0.6);
                background-color: rgba(197, 155, 50, 0.04);
            }
        }

        textarea {
            resize: vertical;
            min-height: 130px;
            line-height: 1.6;
        }

        input[type="file"] {
            width: 100%;
            background-color: rgba(255, 255, 255, 0.04);
            border: 1px dashed rgba(255, 255, 255, 0.2);
            border-radius: 8px;
            -webkit-border-radius: 8px;
            padding: 12px 16px;
            color: rgba(255, 255, 255, 0.55);
            font-size: 0.85rem;
            font-family: 'Instrument Sans', sans-serif;
            cursor: pointer;
            transition: border-color 0.3s ease;

            &:hover {
                border-color: rgba(197, 155, 50, 0.5);
            }

            &::file-selector-button {
                background-color: rgba(197, 155, 50, 0.12);
                border: 1px solid rgba(197, 155, 50, 0.35);
                border-radius: 4px;
                -webkit-border-radius: 4px;
                color: #c59b32;
                font-size: 0.8rem;
                font-weight: 600;
                padding: 6px 14px;
                cursor: pointer;
                margin-right: 12px;
                transition: background-color 0.3s ease;

                &:hover {
                    background-color: rgba(197, 155, 50, 0.22);
                }
            }
        }

        label[for="html"] {
            display: block;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            color: rgba(255, 255, 255, 0.45);
            text-transform: uppercase;
            margin-bottom: 6px;
        }

        .wpcf7-checkbox {
            display: flex;
            flex-wrap: wrap;
            gap: 10px 20px;
            padding: 4px 0;

            .wpcf7-list-item {
                margin: 0;

                label {
                    display: flex;
                    align-items: center;
                    gap: 8px;
                    cursor: pointer;
                    color: rgba(255, 255, 255, 0.65);
                    font-size: 0.9rem;
                    font-family: 'Instrument Sans', sans-serif;
                    margin: 0;

                    input[type="checkbox"] {
                        width: 18px;
                        height: 18px;
                        min-width: 18px;
                        background-color: rgba(255, 255, 255, 0.06);
                        border: 1px solid rgba(255, 255, 255, 0.2);
                        border-radius: 4px;
                        -webkit-border-radius: 4px;
                        appearance: none;
                        -webkit-appearance: none;
                        cursor: pointer;
                        transition: background-color 0.2s ease, border-color 0.2s ease;
                        position: relative;
                        padding: 0;

                        &:checked {
                            background-color: #c59b32;
                            border-color: #c59b32;

                            &::after {
                                content: '';
                                position: absolute;
                                left: 5px;
                                top: 2px;
                                width: 5px;
                                height: 9px;
                                border: 2px solid #000000;
                                border-top: none;
                                border-left: none;
                                transform: rotate(45deg);
                            }
                        }
                    }
                }
            }
        }

        .wpcf7-radio {
            display: flex;
            flex-wrap: wrap;
            gap: 10px 20px;
            padding: 4px 0;

            .wpcf7-list-item {
                margin: 0;

                label {
                    display: flex;
                    align-items: center;
                    gap: 8px;
                    cursor: pointer;
                    color: rgba(255, 255, 255, 0.65);
                    font-size: 0.9rem;
                    font-family: 'Instrument Sans', sans-serif;
                    margin: 0;

                    input[type="radio"] {
                        width: 18px;
                        height: 18px;
                        min-width: 18px;
                        background-color: rgba(255, 255, 255, 0.06);
                        border: 1px solid rgba(255, 255, 255, 0.2);
                        border-radius: 50%;
                        -webkit-border-radius: 50%;
                        appearance: none;
                        -webkit-appearance: none;
                        cursor: pointer;
                        transition: background-color 0.2s ease, border-color 0.2s ease;
                        position: relative;
                        padding: 0;

                        &:checked {
                            background-color: #c59b32;
                            border-color: #c59b32;

                            &::after {
                                content: '';
                                position: absolute;
                                top: 50%;
                                left: 50%;
                                transform: translate(-50%, -50%);
                                width: 6px;
                                height: 6px;
                                border-radius: 50%;
                                -webkit-border-radius: 50%;
                                background-color: #000000;
                            }
                        }
                    }
                }
            }
        }

        input[type="submit"].wpcf7-submit {
            width: 100%;
            padding: 16px 32px;
            background-color: #c59b32;
            color: #000000;
            font-weight: 700;
            font-size: 1rem;
            font-family: 'Gilroy', sans-serif;
            border: 1px solid #c59b32;
            border-radius: 8px;
            -webkit-border-radius: 8px;
            cursor: pointer;
            transition: background-color 0.3s ease;
            letter-spacing: 0.3px;
            margin-top: 4px;

            &:hover {
                background-color: #a07820;
                border-color: #a07820;
                color: #000000;
            }
        }

        .wpcf7-spinner {
            display: none;
        }

        .wpcf7-not-valid-tip {
            color: #e05555;
            font-size: 0.78rem;
            margin-top: 4px;
            display: block;
        }

        .wpcf7-form-control.wpcf7-not-valid {
            border-color: rgba(224, 85, 85, 0.6) !important;
        }

        .wpcf7-response-output {
            margin: 12px 0 0 !important;
            padding: 12px 16px !important;
            border-radius: 8px !important;
            -webkit-border-radius: 8px !important;
            font-size: 0.85rem !important;
            border: 1px solid rgba(255, 255, 255, 0.1) !important;
            color: rgba(255, 255, 255, 0.7) !important;
        }

        .wpcf7-mail-sent-ok {
            border-color: rgba(80, 200, 120, 0.4) !important;
            background-color: rgba(80, 200, 120, 0.08) !important;
            color: rgb(80, 200, 120) !important;
        }

        .wpcf7-mail-sent-ng,
        .wpcf7-validation-errors,
        .wpcf7-spam-blocked {
            border-color: rgba(224, 85, 85, 0.4) !important;
            background-color: rgba(224, 85, 85, 0.08) !important;
            color: #e05555 !important;
        }
    }

    @media (max-width: 991px) {
        .contact_left {
            position: static;
        }

        .contact_image img {
            height: 200px;
        }
    }

    @media (max-width: 767px) {
        .form_toggle {
            font-size: 1rem;
            padding: 16px 18px;
        }

        .form_body {
            padding: 0 18px 24px;
        }
    }
}

section.contact_map_section {
    background-color: rgb(27, 28, 29);

    .contact_map_header {
        h2 {
            font-family: 'Gilroy', sans-serif;
            font-weight: 800;
            font-size: clamp(1.8rem, 3.5vw, 2.5rem);
            line-height: 1.1;
        }
    }

    .contact_map_desc {
        color: rgba(255, 255, 255, 0.55);
        font-size: 0.95rem;
        line-height: 1.7;
        max-width: 580px;
        margin: 0 auto;
    }

    .contact_map_embed {
        border-radius: 16px;
        -webkit-border-radius: 16px;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.08);

        iframe {
            display: block;
        }
    }
}