.price-result {
    margin-top: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: none;
}

.price-result-header {
    background-color: #4CAF50;
    color: white;
    padding: 12px 15px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
}

.price-result-details {
    padding: 15px;
}

.route-info {
    margin-bottom: 15px;
}

.route-info div {
    margin-bottom: 8px;
}

.price-info {
    background-color: #f0f8f0;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 15px;
    text-align: center;
}

.price-range {
    margin-bottom: 10px;
}

.price-value {
    font-size: 24px;
    font-weight: bold;
    color: #e74c3c;
}

.price-note {
    font-size: 14px;
    color: #666;
}

.booking-actions {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.call-action {
    display: inline-block;
    background-color: #e74c3c;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.call-action:hover {
    background-color: #c0392b;
}

.call-action i {
    margin-right: 8px;
}

/* Form message styling */
.form-message {
    margin-top: 15px;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    display: none;
}

.form-message.success {
    display: block;
    background-color: #dff0d8;
    color: #3c763d;
    border: 1px solid #d6e9c6;
}

.form-message.error {
    display: block;
    background-color: #f2dede;
    color: #a94442;
    border: 1px solid #ebccd1;
}

/* Phone field styling */
.form-group input[type="tel"] {
    width: 100%;
    padding: 10px 10px 10px 35px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.form-group input[type="tel"]:focus {
    border-color: #4CAF50;
    outline: none;
    box-shadow: 0 0 5px rgba(76, 175, 80, 0.3);
}

/* Responsive form adjustments */
@media (max-width: 768px) {
    .form-group {
        margin-bottom: 15px;
    }
    
    .btn-primary {
        width: 100%;
        padding: 12px 0;
    }
    
    .price-value {
        font-size: 20px;
    }
}
