.mc-modal-content {
    border-radius: 12px;
    border: none;
    overflow: hidden;
}

.mc-modal-header {
    background: #E3120B;
    padding: 16px 20px;
    border-bottom: none;
}

.mc-modal-title {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0;
}

.mc-close {
    color: #ffffff;
    opacity: 1;
    font-size: 1.4rem;
    text-shadow: none;
    outline: 0 !important;
    border: 0 !important;
}

.mc-close:hover { color: #ffffff; opacity: 0.8; }

.mc-modal-body {
    padding: 20px 24px 24px;
    background: #ffffff;
}

.mc-subtitle {
    font-size: 16px;
    color: #62666D;
    margin-bottom: 1.25rem;
    margin-top: -4px;
}

.mc-form-group { margin-bottom: 1rem; }

.mc-label {
    font-weight: 600;
    font-size: 0.9rem;
    color: #1a1a1a;
    margin-bottom: 8px;
    display: block;
}

.mc-type-group { display: flex; gap: 8px; }

.mc-type-group input[type="radio"] { display: none; }

.mc-type-label {
    flex: 1;
    padding: 8px 6px;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.82rem;
    color: #1a1a1a;
    transition: all 0.2s ease;
    margin: 0;
}

.mc-type-label:hover { border-color: #E3120B; background: #fff5f5; }

.mc-type-group input[type="radio"]:checked + .mc-type-label {
    background: #E3120B;
    color: #ffffff;
    border-color: #E3120B;
}

.mc-revenue-input-wrap { position: relative; }

.mc-rupee {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.95rem;
    color: #555;
    font-weight: 600;
    pointer-events: none;
}

.mc-input {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 8px 12px 8px 28px;
    font-size: 0.9rem;
    color: #1a1a1a;
    width: 100%;
}

.mc-input:focus {
    border-color: #E3120B;
    outline: none;
    box-shadow: 0 0 0 2px rgba(208, 2, 27, 0.1);
}

.mc-crore-hint {
    font-size: 0.82rem;
    color: #E3120B;
    font-weight: 600;
    margin-top: 4px;
    min-height: 18px;
}

.mc-range-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 5px;
    color: #62666D;
    font-size: 0.78rem;
}

.mc-result {
    background: #fafafa;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    padding: 14px 16px;
    margin-bottom: 1rem;
}

.mc-result-label {
    font-size: 0.8rem;
    color: #62666D;
    text-align: center;
    margin-bottom: 4px;
}

.mc-estimated-fee {
    font-size: 2rem;
    font-weight: 800;
    color: #E3120B;
    text-align: center;
    margin-bottom: 12px;
}

.mc-breakdown { display: flex; flex-direction: column; }

.mc-breakdown-item {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid #eee;
    font-size: 0.875rem;
}

.mc-breakdown-item:last-child { border-bottom: none; }

.mc-breakdown-total {
    font-weight: 700;
    font-size: 0.9rem;
    border-top: 1.5px solid #E3120B !important;
    padding-top: 8px;
    margin-top: 2px;
}

.mc-breakdown-label { color: #666; }
.mc-breakdown-value { font-weight: 600; color: #1a1a1a; }

.mc-note {
    font-size: 0.78rem;
    color: #E3120B;
    margin: 8px 0 0 0;
    text-align: center;
    min-height: 16px;
}

.mc-apply-btn {
    background: #E3120B;
    color: #ffffff !important;
    border: none;
    border-radius: 8px;
    padding: 11px;
    font-size: 0.95rem;
    font-weight: 700;
    width: 100%;
    display: block;
    text-align: center;
    transition: background 0.2s ease;
    cursor: pointer;
}

.mc-apply-btn:hover { opacity: 0.9;  }

@media (max-width: 480px) {
    .mc-type-group { flex-direction: column; }
    .mc-estimated-fee { font-size: 1.6rem; }
}