/* Zyndux CF7 Custom Form Styling */

.zyndux-step-container {
    display: flex;
    flex-wrap: wrap;
    font-family: 'Inter', sans-serif; /* Modern font fallback */
    background: #f4f6f8; /* Light gray background */
    padding: 20px;
    border-radius: 8px;
    gap: 20px;
}

.zyndux-sidebar {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
}

.zyndux-sidebar ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.zyndux-sidebar li {
    background-color: #8cc3aa; /* Seafoam green from image */
    color: white;
    padding: 15px;
    margin-bottom: 10px;
    font-weight: 500;
    border-radius: 4px;
    opacity: 0.7;
}

.zyndux-sidebar li.active {
    background-color: #007a53; /* Dark green active state */
    opacity: 1;
    font-weight: bold;
}

.zyndux-content {
    flex: 3;
    min-width: 300px;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.zyndux-content h2 {
    color: #333;
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 24px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.zyndux-content label {
    display: block;
    font-weight: 500;
    margin-bottom: 15px;
    color: #444;
}

.zyndux-content input[type="text"],
.zyndux-content input[type="email"],
.zyndux-content input[type="tel"],
.zyndux-content input[type="date"],
.zyndux-content input[type="number"],
.zyndux-content select,
.zyndux-content textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 16px;
}

.zyndux-content input[type="radio"],
.zyndux-content input[type="checkbox"] {
    margin-right: 5px;
}

/* Pricing Cards inside Step 1 */
.pricing-cards {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.pricing-cards .wpcf7-list-item {
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 10px;
    padding: 20px;
    flex: 1;
    min-width: 250px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.2s;
}

.pricing-cards .wpcf7-list-item:hover {
    transform: translateY(-5px);
    border-color: #d1a85b; /* Gold hover */
}

/* Repeater Plugin Custom Styling */
.repeater-item {
    border: 1px dashed #333;
    padding: 15px;
    margin-bottom: 15px;
    background: #fdfdfd;
}

.zyndux-content input[type="submit"],
.zyndux-content input[type="button"],
.zyndux-content .wpcf7-submit,
.zyndux-content .wpcf7-previous {
    background-color: #007a53;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    margin-right: 10px;
    float: right;
}

.zyndux-content .wpcf7-previous {
    float: left;
}

.zyndux-content input[type="submit"]:hover,
.zyndux-content input[type="button"]:hover {
    background-color: #005a3d;
}

/* Clearfix for buttons */
.zyndux-content::after {
    content: "";
    clear: both;
    display: table;
}

/* Subtext */
.subtext {
    display: block;
    font-size: 12px;
    color: #888;
    margin-bottom: 5px;
    font-weight: normal;
}

/* Responsive */
@media (max-width: 768px) {
    .zyndux-step-container {
        flex-direction: column;
    }
    .zyndux-sidebar, .zyndux-content {
        width: 100%;
        max-width: none;
    }
}
