/*
Theme Name: rpv1 Child
Theme URI: https://landpress.keydesign.xyz/
Description: Marketing Landing Page Elementor WordPress Theme
Author: Key-Design
Author URI: http://themeforest.net/user/Key-Design
Template: rpv1
Version: 1.0
License: Envato Standard License
License URI: https://themeforest.net/licenses/standard
Tags: one-column, two-columns, three-columns, four-columns, left-sidebar, right-sidebar, custom-menu, featured-images, flexible-header, post-formats, sticky-post, translation-ready
Text Domain: rpv1-child
*/

html body .G_form_styling input {
    width: 100%;
    height: 50px;
    font-size: 16px !important;
    color: #232527 !important;
    padding: 25px 20px !important;
    border: 1px solid #e4e9f100 !important;
    border-radius: 8px !important;
    transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955) !important;
    background: #fff !important;
}

html body .G_form_styling textarea {
    width: 100%;
    height: 50px;
    font-size: 16px !important;
    color: #232527 !important;
    padding: 25px 20px !important;
    border: 1px solid #e4e9f100 !important;
    border-radius: 8px !important;
    transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955) !important;
    background: #fff !important;
}
input#gform_submit_button_1 {
    background-color: #fa3457 !important;
    width: 100%;
    color: #FFFFFF !important;
    padding: 15px !important;
}
input#gform_submit_button_1:hover {
    background-color: #1ebfbf !important;
  
}
#gform_fields_1 {
    row-gap: 15px !important;
}

input#gform_submit_button_2 {
    background-color: #fa3457 !important;
    width: 100%;
    color: #FFFFFF !important;
    padding: 15px !important;
}
input#gform_submit_button_2:hover {
    background-color: #1ebfbf !important;
  
}
#gform_fields_2 {
    row-gap: 15px !important;
}
/* accodion style */

.accordion-container {
    display: flex;
    flex-wrap: wrap;
}

.accordion-column {
    flex: 33.33%;
    padding: 10px;
    max-width: 33.33%;
}

.accordion-column.free {
    display: none;
}

.accordion-panel {
    background-color: #f1f1f1;
    padding: 0 18px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.accordion-panel ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
    margin: 10px 0;
}

.accordion-panel ul li {
    flex: 1 1 calc(50% - 10px);
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    padding: 10px 15px;
    font-size: 14px;
    color: #333;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    max-width: calc(50% - 10px);
    text-transform: capitalize;
}

.accordion-panel ul li:hover {
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15);
    border-color: #B67929;

}

.accordion-panel.show {
    max-height: 500px;
}

.accordion-header {
    background-color: #f4f4f4 !important;
    color: #000 !important;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
    font-size: 20px;
}

.accordion-header .service-icon {
    display: flex;
    align-items: center;
    gap: 20px;
}

.service-icon .free {
    background: var(--bg-brand-color);
    font-size: 12px;
    border-radius: 30px;
    padding: 2px 10px;
    color: #ffffff;
}

.accordion-header .arrow-icon {
    background-color: #ffffff;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e5e3e3;
    border-radius: 5px;
}

.accordion-header .arrow-icon::after {
    content: "";
    width: 8px;
    height: 8px;
    border-left: 2px solid #000;
    border-bottom: 2px solid #000;
    transform: rotate(-45deg);
    transition: transform 0.2s ease-in-out;
}

.accordion-header.active .arrow-icon::after {
    transform: rotate(135deg);
}

.toggle-container {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: #f6f6f6;
    width: 35%;
    padding: 5px;
    border-radius: 30px;
    border: 1px solid #d2d2d2;
}

.toggle button {
    width: 100%;
    border-radius: 30px;
    border: none;
    color: #00000080;
    font-size: 1.25rem;
    font-weight: 600;
}

.toggle button:not(.active):hover {
    width: 100%;
    border: none;
    color: var(--bg-brand-color);
    font-size: 1.25rem;
    font-weight: 600;
    background: none !important;
}

.toggle button.active {
    color: #ffffff;
    background-color: var(--bg-brand-color);
}

@media screen and (max-width: 768px) {
    .accordion-column {
        flex: 100%;
        max-width: 100%;
    }

    .toggle {
        width: 100%;
    }
}