/* main.css - Global styles for Abraham's Listing */

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #f5f5f5;
}

/* Header */
.header {
    background: #1a56db;
    color: white;
    padding: 15px 0;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header h1 {
    font-size: 24px;
}

.header h1 a {
    color: white;
    text-decoration: none;
}

.header h1 i {
    margin-right: 8px;
}

.header nav {
    margin-top: 10px;
}

.header nav a {
    margin: 0 15px;
    color: white;
    text-decoration: none;
    font-size: 14px;
}

.header nav a i {
    margin-right: 5px;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-weight: bold;
}

.btn-primary {
    background: #1a56db;
    color: white;
}

.btn-primary:hover {
    background: #0e3f9e;
}

.btn-success {
    background: #059669;
    color: white;
}

.btn-success:hover {
    background: #047857;
}

.btn-secondary {
    background: #6b7280;
    color: white;
}

.btn-secondary:hover {
    background: #4b5563;
}

.btn-warning {
    background: #f59e0b;
    color: white;
}

.btn-warning:hover {
    background: #d97706;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 20px;
}

.mb-4 {
    margin-bottom: 20px;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    text-align: center;
    padding: 30px;
    margin-top: 40px;
}

.footer a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
}

.footer a:hover {
    text-decoration: underline;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a56db 0%, #0e3f9e 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.search-bar {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    gap: 10px;
    background: white;
    border-radius: 50px;
    padding: 5px;
}

.search-bar input {
    flex: 2;
    padding: 15px 20px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    outline: none;
}

.search-bar input:first-child {
    flex: 2;
}

.search-bar input:nth-child(2) {
    flex: 1;
}

.search-bar button {
    background: #1a56db;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
}

.search-bar button:hover {
    background: #0e3f9e;
}

/* Section */
.section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 32px;
    color: #1a56db;
    margin-bottom: 10px;
}

.section-title p {
    color: #666;
}

/* Category Grid */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
}

.category-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    text-decoration: none;
    color: #333;
    transition: transform 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.category-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.12);
}

.category-card .icon {
    font-size: 32px;
    margin-bottom: 10px;
}

.category-card .name {
    font-weight: bold;
}

/* Artisan Grid */
.artisan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.artisan-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.2s;
}

.artisan-card:hover {
    transform: translateY(-3px);
}

.artisan-card .info {
    padding: 20px;
}

.artisan-card h3 {
    margin-bottom: 10px;
}

.artisan-card h3 a {
    color: #1a56db;
    text-decoration: none;
}

.rating {
    color: #fbbf24;
    margin: 10px 0;
}

.phone {
    font-weight: bold;
    color: #059669;
    margin: 10px 0;
}

.phone-missing {
    color: #999;
    font-style: italic;
    margin: 10px 0;
}

/* Property Grid */
.property-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.property-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.property-card .info {
    padding: 20px;
}

.property-price {
    font-size: 20px;
    font-weight: bold;
    color: #059669;
    margin: 10px 0;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}

.pricing-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.pricing-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.pricing-price {
    font-size: 36px;
    font-weight: bold;
    color: #1a56db;
    margin: 20px 0;
}

.pricing-price span {
    font-size: 14px;
    color: #666;
}

.pricing-features {
    list-style: none;
    margin: 20px 0;
}

.pricing-features li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.btn-pricing {
    background: #1a56db;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
}

.btn-pricing:hover {
    background: #0e3f9e;
}

.pricing-card.featured {
    border: 2px solid #f59e0b;
    position: relative;
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #f59e0b;
    color: white;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 12px;
}

/* Call to Action */
.cta {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: white;
    text-align: center;
    padding: 60px 0;
    margin-top: 20px;
}

.cta h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.cta .btn {
    background: white;
    color: #059669;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
}

.cta .btn:hover {
    background: #f0fdf4;
}

/* Login Modal */
.login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
}

.login-modal .modal-content {
    max-width: 450px;
    margin: 100px auto;
    background: white;
    border-radius: 15px;
    padding: 30px;
}

.login-modal .close {
    text-align: right;
}

.login-modal .close button {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.login-modal h3 {
    text-align: center;
    margin-bottom: 20px;
}

.login-modal input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 15px;
}

.login-modal button[type="submit"] {
    width: 100%;
    padding: 12px;
    background: #1a56db;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

/* Dashboard specific */
.dashboard-container {
    max-width: 1000px;
    margin: 40px auto;
    background: white;
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.welcome-card {
    background: #d1fae5;
    color: #059669;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid #1a56db;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.stat-card {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    min-width: 150px;
}

.stat-number {
    font-size: 28px;
    font-weight: bold;
    color: #1a56db;
}

/* Property Details Page */
.property-container {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    margin-top: 20px;
}

.property-gallery {
    height: 400px;
    background: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
}

.property-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.property-content {
    padding: 30px;
}

.property-title {
    font-size: 28px;
    margin-bottom: 15px;
}

.property-price {
    font-size: 32px;
    font-weight: bold;
    color: #059669;
    margin: 15px 0;
}

.property-details {
    display: flex;
    gap: 30px;
    margin: 20px 0;
    padding: 20px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.detail-item {
    text-align: center;
}

.detail-value {
    font-size: 24px;
    font-weight: bold;
}

.contact-box {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    margin-top: 30px;
}

.btn-contact {
    background: #1a56db;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.amenity-tag {
    display: inline-block;
    background: #e5e7eb;
    padding: 5px 12px;
    border-radius: 20px;
    margin: 5px;
}

/* Search Results Page */
.search-header {
    background: linear-gradient(135deg, #1a56db 0%, #0e3f9e 100%);
    color: white;
    padding: 40px 0 30px;
}

.search-header h1 {
    font-size: 28px;
    margin-bottom: 10px;
}

.refine-search {
    background: white;
    padding: 20px;
    border-radius: 12px;
    margin-top: 20px;
}

.refine-search input, .refine-search select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
}

.refine-search button {
    width: 100%;
    padding: 12px;
    background: #1a56db;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}

.result-card {
    background: white;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    overflow: hidden;
}

.result-card .card-body {
    padding: 20px;
}

.result-card h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.result-card h3 a {
    color: #1a56db;
    text-decoration: none;
}

.badge-premium {
    background: #f59e0b;
    color: white;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 11px;
    margin-left: 10px;
}

.rating {
    color: #fbbf24;
    margin: 8px 0;
}

.phone-number {
    font-size: 18px;
    font-weight: bold;
    color: #059669;
    margin: 10px 0;
}

.btn-request {
    background: #1a56db;
    color: white;
    padding: 10px 24px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
}

.no-results {
    text-align: center;
    padding: 60px;
    background: white;
    border-radius: 12px;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 40px 0;
}

.pagination a, .pagination span {
    padding: 8px 14px;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-decoration: none;
    color: #333;
}

.pagination .active {
    background: #1a56db;
    color: white;
}

@media (max-width: 768px) {
    .property-title { font-size: 22px; }
    .property-price { font-size: 24px; }
    .property-details { flex-wrap: wrap; gap: 15px; }
    .property-gallery { height: 250px; }
    .search-header h1 { font-size: 22px; }
    .result-card .row { flex-direction: column; }
    .col-md-2, .col-md-3, .col-md-4, .col-md-7 { width: 100%; margin-bottom: 15px; }
    .text-right { text-align: left; }
}

/* Currency Switcher */
.currency-switcher select {
    background: transparent;
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 5px;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 14px;
}

.currency-switcher select:hover {
    border-color: white;
}

.currency-switcher select option {
    background: #1a56db;
    color: white;
}

/* Currency and symbol support */
body {
    font-family: Arial, 'Segoe UI', 'Helvetica Neue', sans-serif;
}

.currency-symbol {
    font-family: 'Segoe UI', 'Arial', sans-serif;
}

/* Global search */
.global-search {
    margin: 20px 0;
    padding: 15px;
    background: white;
    border-radius: 10px;
}

.global-search select {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 28px;
    }
    .search-bar {
        flex-direction: column;
        border-radius: 12px;
        background: white;
    }
    .search-bar button {
        border-radius: 12px;
    }
    .section-title h2 {
        font-size: 24px;
    }
    .artisan-grid, .property-grid, .category-grid, .pricing-grid {
        grid-template-columns: 1fr;
    }
    .header nav a {
        margin: 0 8px;
        font-size: 11px;
    }
    .stats {
        flex-direction: column;
    }
    .dashboard-container {
        margin: 20px;
        padding: 25px;
    }
}

/* ============================================ */
/* ARTISAN PROFILE PAGE STYLES
/* ============================================ */

.profile-header {
    background: linear-gradient(135deg, #1a56db 0%, #0e3f9e 100%);
    color: white;
    padding: 40px 0;
}

.profile-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
}

.default-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: white;
    color: #1a56db;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: bold;
}

.premium-badge {
    background: #f59e0b;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 12px;
    margin-left: 10px;
}

.profile-info {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-top: -30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.address-box {
    background: #f0fdf4;
    padding: 15px;
    border-radius: 10px;
    margin: 15px 0;
    border-left: 4px solid #059669;
}

.privacy-note {
    font-size: 12px;
    color: #666;
    margin-top: 10px;
    font-style: italic;
}

.review-card {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

.contact-box {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
}

.phone-large {
    font-size: 20px;
    font-weight: bold;
    color: #059669;
    margin: 15px 0;
}

.copy-btn, .btn-contact {
    background: #1a56db;
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    margin-left: 10px;
}

.btn-contact {
    width: 100%;
    padding: 12px;
    margin-left: 0;
    margin-top: 10px;
}

.skill-tag {
    display: inline-block;
    background: #e5e7eb;
    padding: 5px 12px;
    border-radius: 20px;
    margin: 5px;
    font-size: 13px;
}

.similar-card {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    height: 100%;
}

.similar-card a {
    text-decoration: none;
    color: #1a56db;
}

/* ============================================ */
/* SEARCH RESULTS PAGE STYLES
/* ============================================ */

.search-header {
    background: linear-gradient(135deg, #1a56db 0%, #0e3f9e 100%);
    color: white;
    padding: 40px 0 30px;
}

.search-header h1 {
    font-size: 28px;
    margin-bottom: 10px;
}

.refine-search {
    background: white;
    padding: 20px;
    border-radius: 12px;
    margin-top: 20px;
}

.refine-search input,
.refine-search select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
}

.refine-search button {
    width: 100%;
    padding: 12px;
    background: #1a56db;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}

.result-card {
    background: white;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    overflow: hidden;
}

.result-card .card-body {
    padding: 20px;
}

.result-card h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.result-card h3 a {
    color: #1a56db;
    text-decoration: none;
}

.badge-premium {
    background: #f59e0b;
    color: white;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 11px;
    margin-left: 10px;
}

.rating {
    color: #fbbf24;
    margin: 8px 0;
}

.phone-number {
    font-size: 18px;
    font-weight: bold;
    color: #059669;
    margin: 10px 0;
}

.btn-request {
    background: #1a56db;
    color: white;
    padding: 10px 24px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
}

.no-results {
    text-align: center;
    padding: 60px;
    background: white;
    border-radius: 12px;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 40px 0;
}

.pagination a,
.pagination span {
    padding: 8px 14px;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-decoration: none;
    color: #333;
}

.pagination .active {
    background: #1a56db;
    color: white;
}

/* ============================================ */
/* REGISTRATION & PROFILE FORM STYLES
/* ============================================ */

.form-container {
    max-width: 550px;
    margin: 60px auto;
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.form-container h2 {
    text-align: center;
    margin-bottom: 10px;
    color: #1a56db;
}

.form-container .subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
}

.form-group input[type="file"] {
    padding: 10px;
}

.error-message {
    background: #fee2e2;
    color: #dc2626;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.success-message {
    background: #d1fae5;
    color: #059669;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.info-box {
    background: #eef2ff;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 25px;
}

.plan-notice {
    background: #eef2ff;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
    font-size: 14px;
}

.photo-preview {
    margin-top: 10px;
}

.photo-preview img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #1a56db;
}

.radio-group {
    display: flex;
    gap: 20px;
    margin-top: 5px;
}

.radio-group label {
    font-weight: normal;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.radio-group input {
    width: auto;
    margin-right: 5px;
}

/* Role Selector */
.role-selector {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.role-option {
    flex: 1;
    text-align: center;
    padding: 20px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.role-option.selected {
    border-color: #1a56db;
    background: #eef2ff;
}

.role-option i {
    font-size: 40px;
    margin-bottom: 10px;
    display: block;
}

.role-option h3 {
    margin-bottom: 5px;
    font-size: 18px;
}

.role-option p {
    font-size: 12px;
    color: #666;
}

.role-option input {
    display: none;
}

/* Section Title */
.section-title {
    background: #f8f9fa;
    padding: 10px 15px;
    margin: 20px 0 15px;
    border-radius: 8px;
    font-weight: bold;
    color: #1a56db;
}

/* Buttons */
.btn-back {
    display: inline-block;
    background: #6b7280;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    margin-top: 20px;
    margin-right: 10px;
}

.btn-submit {
    background: #1a56db;
    color: white;
    padding: 14px;
    border: none;
    border-radius: 8px;
    width: 100%;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}

.btn-submit:hover {
    background: #0e3f9e;
}

/* ============================================ */
/* PROPERTIES PAGE ADDITIONAL STYLES
/* ============================================ */

.main-layout {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.sidebar {
    width: 280px;
    flex-shrink: 0;
}

.content {
    flex: 1;
}

.filters-sidebar {
    background: white;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.filter-group {
    margin-bottom: 20px;
}

.filter-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    font-size: 14px;
}

.filter-group select,
.filter-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
}

.price-range {
    display: flex;
    gap: 10px;
}

.price-range input {
    width: 50%;
}

.btn-filter {
    background: #1a56db;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}

.btn-filter:hover {
    background: #0e3f9e;
}

.btn-reset {
    background: #6b7280;
}

.btn-reset:hover {
    background: #4b5563;
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.results-header select {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: white;
}

.property-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
}

.property-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.2s;
}

.property-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
}

.property-image {
    height: 200px;
    background: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #f59e0b;
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: bold;
}

.property-info {
    padding: 20px;
}

.property-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.property-title a {
    color: #1a56db;
    text-decoration: none;
}

.property-title a:hover {
    text-decoration: underline;
}

.property-price {
    font-size: 22px;
    font-weight: bold;
    color: #059669;
    margin: 10px 0;
}

.property-details {
    display: flex;
    gap: 15px;
    margin: 15px 0;
    color: #666;
    font-size: 14px;
}

.property-location {
    color: #666;
    font-size: 14px;
    margin: 10px 0;
}

.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    margin-right: 8px;
}

.badge-rent {
    background: #d1fae5;
    color: #059669;
}

.badge-sale {
    background: #fee2e2;
    color: #dc2626;
}

.btn-add {
    display: inline-block;
    background: #059669;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
}

.btn-add:hover {
    background: #047857;
}

/* ============================================ */
/* PROPERTY DETAILS PAGE STYLES
/* ============================================ */

.property-container {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    margin-top: 20px;
}

.property-gallery {
    height: 400px;
    background: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
}

.property-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.property-content {
    padding: 30px;
}

.property-title {
    font-size: 28px;
    margin-bottom: 15px;
}

.property-price {
    font-size: 32px;
    font-weight: bold;
    color: #059669;
    margin: 15px 0;
}

.property-details {
    display: flex;
    gap: 30px;
    margin: 20px 0;
    padding: 20px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.detail-item {
    text-align: center;
}

.detail-value {
    font-size: 24px;
    font-weight: bold;
}

.contact-box {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    margin-top: 30px;
}

.btn-contact {
    background: #1a56db;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.amenity-tag {
    display: inline-block;
    background: #e5e7eb;
    padding: 5px 12px;
    border-radius: 20px;
    margin: 5px;
}

/* ============================================ */
/* RESPONSIVE STYLES
/* ============================================ */

@media (max-width: 768px) {
    .profile-header {
        text-align: center;
    }
    
    .col-md-2, .col-md-3, .col-md-4, .col-md-7, .col-md-8, .col-md-10 {
        width: 100%;
    }
    
    .copy-btn {
        margin-top: 10px;
        display: inline-block;
    }
    
    .text-right {
        text-align: center;
    }
    
    .search-header h1 {
        font-size: 22px;
    }
    
    .main-layout {
        flex-direction: column;
    }
    
    .sidebar {
        width: 100%;
    }
    
    .property-grid {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .results-header {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .property-title {
        font-size: 22px;
    }
    
    .property-price {
        font-size: 24px;
    }
    
    .property-details {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .property-gallery {
        height: 250px;
    }
    
    .role-selector {
        flex-direction: column;
        gap: 10px;
    }
    
    .radio-group {
        flex-direction: column;
        gap: 10px;
    }
    
    .form-container {
        margin: 20px;
        padding: 25px;
    }
    
    .row {
        flex-direction: column;
        gap: 0;
    }
}

/*Additional Review Arvatar*/
.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.similar-section {
    margin-top: 40px;
}

.mb-2 {
    margin-bottom: 10px;
}