/* ===== Car Shipping Form ===== */
.car-shipping-form {
    background: #fff;
    padding: 20px;
    max-width: 350px;
    margin: 20px auto;
    border-radius: 8px;
    box-shadow: 0px 2px 8px rgba(0,0,0,0.2);
    font-family: Arial, sans-serif;
}

/* Tabs Wrapper */
.form-tabs {
    display: flex;
    width: 100%;
    margin-bottom: 15px;
    overflow: hidden;
}

/* Tab Buttons */
.form-tabs .tab-btn {
    flex: 1;
    padding-top: 14px;
	padding-left: 10px;
	padding-right: 10px; 
	padding-bottom: 4px; /* ↑↓ more padding for vertical spacing */
    margin: 3px 3px;          /* left-right spacing */
    text-align: center;
    background: #222;
    color: #fff;
    font-size: 15px;
    line-height: 1;       /* text के ऊपर-नीचे थोड़ा space */
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 6px 6px 0 0; /* smooth rounded top */
}

.form-tabs .tab-btn.active {
    background: #0097d6; /* Blue active background */
    color: #fff;
}

/* Input Fields */
.car-shipping-form input[type="text"] {
    width: 100%;
    padding: 12px;
    margin: 8px 0;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    box-sizing: border-box;
}

/* Radio Buttons Section */
.transport-type {
    margin: 12px 0;
    font-size: 14px;
    color: #333;
}

/* Submit Button */
.car-shipping-form input.wpcf7-submit {
    width: 100%;
    background: #00bcd4;
    color: white;
    padding: 14px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: background 0.3s ease;
}

.car-shipping-form input.wpcf7-submit:hover {
    background: #0097a7;
}

/* Hide inactive tab content */
.tab-content.hidden {
    display: none;
}

