@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

body {
    background: #f1f4f9;
    font-family: 'Outfit', sans-serif !important;
    color: #1e293b;
}

.brand-title {
    font-weight: 800;
    color: #4f46e5;
    letter-spacing: -1px;
}

.btn-back {
    background: #fff;
    border: 1px solid #ddd;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.2s;
}

.btn-back:hover { transform: translateX(-5px); background: #f8f9fa; }

.registration-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    overflow: hidden;
}

.card-header {
    background: #4f46e5;
    padding: 30px;
    color: #fff;
}

.card-header h3 { font-weight: 700; margin: 0; }
.card-header p { opacity: 0.8; margin-top: 5px; font-size: 0.9rem; }

.section-title {
    color: #4f46e5;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    border-bottom: 2px solid #f1f4f9;
    padding-bottom: 10px;
}

.section-title i { font-size: 1.5rem; margin-right: 10px; }

label { font-weight: 600; font-size: 0.85rem; color: #444; margin-bottom: 5px; }

.form-control {
    border-radius: 10px;
    border: 1.5px solid #e2e8f0;
    padding: 12px;
    height: auto;
    font-size: 0.9rem;
    background: #f8fafc;
}

.form-control:focus {
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
    border-color: #4f46e5;
    background: #fff;
}

/* Upload UI */
.upload-container {
    position: relative;
    border: 2px dashed #cbd5e1;
    background: #f8fafc;
    border-radius: 12px;
    padding: 30px 15px;
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
}

.upload-container:hover { border-color: #4f46e5; background: #eff6ff; }

.file-input-hidden {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0; cursor: pointer;
}

.upload-icon { font-size: 2.5rem; color: #4f46e5; margin-bottom: 10px; display: block; }
.upload-text { font-weight: 700; font-size: 0.9rem; color: #1e293b; display: block; }

.google-map-wrapper {
    height: 400px;
    width: 100%;
    border-radius: 15px;
    border: 1px solid #ddd;
}

.preview-area, .preview-area-multi {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.photo-preview-item {
    position: relative;
    width: 90px;
    height: 90px;
}

.photo-preview-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid #eee;
}

.photo-preview-item button {
    position: absolute;
    top: -5px; right: -5px;
    background: #ef4444; color: #fff;
    border: none; border-radius: 50%;
    width: 22px; height: 22px;
    font-size: 12px; cursor: pointer;
}

.logo-preview-wrap {
    min-height: 58px;
}

.logo-preview-shell {
    width: 124px;
    height: 62px;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid #dbe3ef;
    box-shadow: 0 6px 14px rgba(15, 23, 42, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-preview-thumb {
    width: 112px;
    height: 50px;
    object-fit: contain !important;
    object-position: center;
    border-radius: 10px;
    border: none;
    background: #ffffff;
    padding: 2px;
}

#map {
    height: 350px;
    width: 100%;
    border-radius: 12px;
    border: 1px solid #ddd;
    margin-bottom: 15px;
}

.service-builder {
    border: 1px solid #dbe3ef;
    border-radius: 12px;
    padding: 12px;
    background: #f8fafc;
}

.service-select-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    margin-bottom: 12px;
}

.selected-services-box {
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    background: #ffffff;
    min-height: 48px;
    padding: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.service-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #eff6ff;
    color: #1d4ed8;
    border: 1px solid #bfdbfe;
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 0.86rem;
    font-weight: 700;
    line-height: 1;
}

.service-chip button {
    border: 0;
    background: transparent;
    color: #1d4ed8;
    font-size: 0.95rem;
    font-weight: 900;
    line-height: 1;
    padding: 0;
    cursor: pointer;
}

.service-placeholder {
    color: #64748b;
    font-size: 0.88rem;
    margin: 0;
    padding-left: 2px;
}

.service-hint {
    color: #64748b;
    font-size: 0.82rem;
    margin-top: 8px;
}

.service-error {
    color: #dc2626;
    font-size: 0.82rem;
    margin-top: 6px;
    display: none;
}

@media (max-width: 575.98px) {
    .service-select-row {
        grid-template-columns: 1fr;
    }
}

.amenity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 10px;
}

.amenity-item {
    background: #f1f4f9;
    padding: 10px 15px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    display: flex; align-items: center;
}

.amenity-item input { margin-right: 10px; }

.btn-submit-form {
    background: #4f46e5;
    color: #fff;
    border: none;
    padding: 16px 50px;
    border-radius: 50px;
    font-weight: 700;
    width: 100%;
    box-shadow: 0 10px 20px rgba(79, 70, 229, 0.3);
    transition: 0.3s;
}

.btn-submit-form:hover { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(79, 70, 229, 0.4); }

.btn-cancel-all {
    background: transparent;
    color: #ef4444;
    border: none;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 5px;
    cursor: pointer;
}
