/* RESET */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background: #f1f3f6;
    color: #333;
}

/* LAYOUT */
.page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.header {
    background: #0d6efd;
    color: #fff;
    padding: 16px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    width: 40px;
    height: 40px;
    background: #fff;
    color: #0d6efd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.content {
    flex: 1;
    padding: 16px;
}

.footer {
    text-align: center;
    font-size: 12px;
    color: #777;
    padding: 10px;
}

/* CARD */
.card {
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,.08);
}

/* FORM */
.form-group {
    margin-bottom: 14px;
}

label {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 4px;
    display: block;
}

small {
    font-size: 12px;
    color: #666;
}

input, textarea, select {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #ccc;
    font-size: 14px;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: #0d6efd;
}

/* MAP */
#map {
    height: 220px;
    border-radius: 12px;
    margin-bottom: 16px;
}

/* BUTTON */
.btn-primary {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    border: none;
    background: #0d6efd;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
}

/* ALERT */
.alert.success {
    background: #d1e7dd;
    color: #0f5132;
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 12px;
}

/* DESKTOP ENHANCEMENT */
@media (min-width: 768px) {
    .content {
        max-width: 480px;
        margin: auto;
    }
}
/* SUCCESS PAGE */
.success-card {
    text-align: center;
}

.success-icon {
    font-size: 48px;
    margin-bottom: 10px;
}

.success-text {
    font-size: 14px;
    color: #555;
    margin-bottom: 16px;
}

.info-box {
    text-align: left;
    background: #f8f9fa;
    padding: 14px;
    border-radius: 10px;
    margin-bottom: 16px;
}

.info-box h4 {
    margin-top: 0;
    font-size: 15px;
}

.info-box ul {
    padding-left: 18px;
    margin: 0;
}

.estimate-box {
    background: #e7f1ff;
    color: #084298;
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 16px;
    font-size: 14px;
}

.btn-secondary {
    display: block;
    padding: 12px;
    border-radius: 12px;
    background: #6c757d;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}
