/* Dark theme styling to match the plans-form popup */
.order-form-area {
    padding: 100px 0;
    background: #111111;
    color: #ffffff;
}

.order-form-wrapper {
    background: #161616;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    padding: 60px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-section {
    margin-bottom: 40px;
    border-bottom: 1px solid #2e2e2e;
    padding-bottom: 30px;
}

.form-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.form-section h3.section-title {
    font-size: 22px;
    margin-bottom: 25px;
    color: #ffffff;
    font-weight: 600;
    font-family: var(--tp-ff-gallery);
    text-align: center;
}

.input-group {
    margin-bottom: 20px;
}

.input-group input,
.input-group textarea,
.input-group select {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 11px;
    font-size: 15px;
    background: #2e2e2e;
    color: #ffffff;
}

.input-group textarea {
    min-height: 120px;
    resize: vertical;
}

.checkbox-group .checkbox-label {
    font-weight: 500;
    margin-bottom: 15px;
}

.checkbox-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.checkbox-wrapper label {
    display: flex;
    align-items: center;
    font-size: 15px;
    color: #ffffff;
    cursor: pointer;
}

.checkbox-wrapper input {
    margin-right: 10px;
    width: auto;
}

.radio-buttons {
    display: flex;
    margin-bottom: 15px;
}

.radio-buttons label {
    margin-right: 20px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.radio-buttons input {
    margin-right: 10px;
    width: auto;
}

.form-label {
    font-weight: 500;
    margin-bottom: 10px;
    color: #ffffff;
}

.submit-btn {
    width: 100%;
    margin: 13px auto;
    padding: 10px 40px;
    border: none;
    background: #fff;
    color: #111;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.submit-btn:hover {
    transform: translateY(-3px);
    color: #fff;
}

#success-message {
    /* position: absolute; */
    top: 0;
    left: 0;
    /* width: 100%; */
    height: 100%;
    background: #161616;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.success-content {
    padding: 30px;
    max-width: 500px;
}

.success-content i {
    font-size: 80px;
    color: #4CAF50;
    margin-bottom: 20px;
}

.success-content h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #ffffff;
}

.success-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #ffffff;
}

.back-home-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #ffffff;
    color: #111111;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}


.back-home-btn:hover {
    background: #000000;
    color:#fff;
}

/* Radio buttons styling to match dark theme */
.radio-buttons label {
    color: #ffffff;
}

@media (max-width: 768px) {
    .order-form-wrapper {
        padding: 40px 20px;
    }
    
    .checkbox-wrapper {
        grid-template-columns: 1fr;
    }
}