/* Compact Price Calculator - Coral Theme */
.section-calculator {
    padding: 60px 0;
    position: relative;
    background: transparent;
}

.calc-container {
    max-width: 700px;
    /* Reduced width */
    margin: 0 auto;
    padding: 0 20px;
}

.calc-card {
    background: #1a1a1f;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Compact Header */
.calc-header {
    background: rgba(255, 255, 255, 0.02);
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.calc-progress {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 250px;
    margin: 0 auto;
}

.progress-bar-bg {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 0;
}

.progress-bar-fill {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 3px;
    background: #e85a4f;
    /* Coral */
    width: 0%;
    transition: width 0.3s ease;
    z-index: 1;
}

.step-indicator {
    width: 28px;
    height: 28px;
    background: #2d2d35;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #888;
    z-index: 2;
    transition: all 0.3s;
}

.step-indicator.active {
    border-color: #e85a4f;
    color: #e85a4f;
    background: #1a1a1f;
}

.step-indicator.completed {
    background: #e85a4f;
    border-color: #e85a4f;
    color: white;
}

/* Body */
.calc-body {
    padding: 25px;
    min-height: 200px;
}

.step-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.step-content.active {
    display: block;
}

.step-title {
    font-size: 18px;
    margin-bottom: 20px;
    color: #fff;
    text-align: center;
}

/* Service Grid - 2 Col Compact */
.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.service-option {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 15px;
    cursor: pointer;
    text-align: center;
    transition: all 0.2s;
}

.service-option:hover {
    background: rgba(255, 255, 255, 0.05);
}

.service-option.selected {
    border-color: #e85a4f;
    background: rgba(232, 90, 79, 0.1);
}

.serv-icon {
    font-size: 24px;
    display: block;
    margin-bottom: 8px;
}

.service-option h4 {
    font-size: 14px;
    margin: 0 0 5px 0;
    color: #fff;
}

.serv-price {
    font-size: 12px;
    color: #aaa;
    display: block;
}

/* Form Elements */
.calc-form-group {
    margin-bottom: 15px;
}

.calc-form-group label {
    display: block;
    font-size: 13px;
    color: #bbb;
    margin-bottom: 5px;
}

.calc-select,
.calc-input-addon {
    width: 100%;
    background: #2d2d35;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 10px;
    border-radius: 8px;
    font-size: 14px;
}

.calc-select:focus {
    border-color: #e85a4f;
    outline: none;
}

/* Result Box */
.result-box {
    text-align: center;
    background: rgba(232, 90, 79, 0.05);
    /* Faint Coral */
    border: 1px dashed rgba(232, 90, 79, 0.3);
    border-radius: 12px;
    padding: 20px;
}

.total-price {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: #e85a4f;
    margin-bottom: 5px;
}

.price-range {
    display: block;
    font-size: 13px;
    color: #888;
    margin-bottom: 15px;
}

.btn-wa-order {
    background: linear-gradient(135deg, #e85a4f 0%, #d6453b 100%);
    color: white;
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 15px;
}

/* Footer */
.calc-footer {
    padding: 15px 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
}

.calc-btn {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
}

.btn-next {
    background: #fff;
    color: #000;
    font-weight: 600;
    border: none;
}

.btn-next:disabled {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.3);
    cursor: not-allowed;
}

@media (max-width: 768px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .service-grid {
        grid-template-columns: 1fr;
    }
}