/* Sasyog Property Portal - Enhanced UI/UX Styles */

body {
    font-family: 'Segoe UI', 'Roboto', Arial, sans-serif;
    background-color: #f8f9fa;
    color: #222;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: #2c3e50;
}

.navbar {
    box-shadow: 0 2px 8px rgba(44, 62, 80, 0.05);
}

.nav-link {
    transition: color 0.2s;
}

.nav-link:hover, .nav-link.active {
    color: #ffd700 !important;
}

.btn, .btn-primary {
    border-radius: 6px;
    transition: background 0.2s, box-shadow 0.2s;
    font-weight: 600;
}

.btn-primary {
    background: linear-gradient(90deg, #007bff 60%, #00c6ff 100%);
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(90deg, #0056b3 60%, #007bff 100%);
    box-shadow: 0 4px 16px rgba(0, 123, 255, 0.15);
}

.card {
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(44, 62, 80, 0.07);
    transition: box-shadow 0.2s;
}

.card:hover {
    box-shadow: 0 6px 24px rgba(44, 62, 80, 0.13);
}

input, select, textarea {
    border-radius: 6px !important;
    border: 1px solid #ced4da;
    transition: border-color 0.2s, box-shadow 0.2s;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    line-height: 1.5;
}

input:focus, select:focus, textarea:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.form-label {
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.5rem;
}

.form-control, .form-select {
    margin-bottom: 0.25rem;
}

.mb-3 {
    margin-bottom: 1.5rem !important;
}

.row {
    margin-bottom: 0.5rem;
}

.form-section {
    margin-bottom: 2.5rem;
}

.section-header {
    margin-bottom: 2rem;
}

.input-group-text {
    font-weight: 600;
    background-color: #f8f9fa;
    border-color: #ced4da;
}

.form-text {
    font-size: 0.875rem;
    color: #6c757d;
    margin-top: 0.25rem;
}

/* Form validation styles */
.form-control.is-invalid, .form-select.is-invalid {
    border-color: #dc3545;
}

.form-control.is-valid, .form-select.is-valid {
    border-color: #28a745;
}

.invalid-feedback {
    display: block;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875rem;
    color: #dc3545;
}

.valid-feedback {
    display: block;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875rem;
    color: #28a745;
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #007bff;
    letter-spacing: 0.5px;
}

footer {
    background: #222;
    color: #fff;
    padding: 2rem 0;
    text-align: center;
    margin-top: 3rem;
}

@media (max-width: 767px) {
    .section-title {
        font-size: 1.5rem;
    }
    .navbar-brand {
        font-size: 1.2rem;
    }
}
