* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #f3b925;
    --primary-dark: #B8930F;
    --secondary-color: #F0E68C;
    --accent-color: #576175;
    --light-bg: #f8f9fa;
    --border-color: #e0e0e0;
    --text-dark: #333;
    --text-light: #666;
    --success-color: #2ecc71;
    --danger-color: #e74c3c;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    background: white;
    line-height: 1.6;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
.header {
    background: #f6f6f7;
    color: #576175;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
    border-bottom: 3px solid #daa521;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 1px;
    text-decoration: none;
    color: white;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: #576175;
    transition: all 0.3s ease;
}

.logo-link:hover {
    opacity: 0.9;
}

.logo-image {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 0.5px;
    background: linear-gradient(91.38deg, #d3a020 1.03%, rgb(243 185 37) 48.76%, #cd9c1f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.nav {
    display: flex;
    gap: 10px;
    align-items: center;
    list-style: none;
}

.nav-link {
    color: #576175;
    text-decoration: none;
    padding: 4px 18px;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 15px;
}

.nav-link:hover,
.nav-link.active {
    background: #fef7e7;
    color: #11192b;
}

.btn-add-property {
    border-radius: 6px;
    color: #11192b;
    font-size: 15px;
    font-weight: 500;
    background-image: linear-gradient(91.38deg, #d3a020 1.03%, rgb(243 185 37) 48.76%, #cd9c1f 100%);
    border: none;
}

.btn-add-property:hover {
    background-image: linear-gradient(91.38deg, #d3a020 1.03%, rgb(243 185 37) 48.76%, #cd9c1f 100%);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #576175;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%), url('../../assets/images/hero-img.jpg') center/cover;
    color: white;
    padding: 24px 20px 24px;
    text-align: center;
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: bold;
}

.hero p {
    font-size: 18px;
    margin-bottom: 16px;
    opacity: 0.9;
}

.search-bar {
    background: white;
    border-radius: 12px;
    padding: 8px;
    margin-bottom: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.search-tabs {
    display: flex;
    gap: 10px;
    background: rgba(255, 255, 255, 0.3);
    padding: 4px 4px 4px 4px;
    border-radius: 8px;
    flex-shrink: 0;
    justify-content: center;
    width: max-content;
    margin: auto;
    backdrop-filter: blur(10px);
    margin-bottom:6px;
}

.search-tab {
    padding: 10px 16px;
    border: none;
    background: transparent;
    color: #fff;
    cursor: pointer;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.search-tab.active {
    background: #fef7e7;
    color: #11192b;
}

.search-tab:hover {
    background: white;
    color: #D4AF37;
}

.search-input {
    flex: 1;
    min-width: 250px;
    padding: 10px 10px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    outline: none;
    font-weight:500;
}

.search-input::placeholder {
    color: #999;
}

.search-btn {
    padding: 14px 35px;
    background: linear-gradient(91.38deg, #d3a020 1.03%, rgb(243 185 37) 48.76%, #cd9c1f 100%);
    color: #11192b;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.4);
}

.search-btn:hover {
    background: #F5F5DC;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.4);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 24px;
}

.stat-box {
    background: rgba(255, 255, 255, 0.15);
    padding: 8px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.stat-number {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
}

/* Page Header */
.page-header {
    background: hsl(217.89deg 26.76% 13.92%);
    color: white;
    padding: 24px 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

/* Categories Section */
.categories-section {
    padding: 40px 20px;
    background: var(--light-bg);
}

.categories-section h2 {
    font-size: 32px;
    margin-bottom: 0px;
    text-align: left;
}

.section-subtitle {
    text-align: left;
    color: var(--text-light);
    font-size: 18px;
    margin-bottom: 24px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.category-card {
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.8) 0%, rgba(91, 127, 191, 0.8) 100%);
    background-size: cover;
    background-position: center;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    color: white;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.category-card > * {
    position: relative;
    z-index: 2;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.category-card:nth-child(1) {
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.8) 0%, rgba(91, 127, 191, 0.8) 100%), url('https://images.unsplash.com/photo-1502672260266-1c1ef2d93688?w=500&h=400&fit=crop') center/cover;
}

.category-card:nth-child(2) {
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.8) 0%, rgba(91, 127, 191, 0.8) 100%), url('https://images.unsplash.com/photo-1480074568708-e7b720bb3f5d?w=500&h=400&fit=crop') center/cover;
}

.category-card:nth-child(3) {
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.8) 0%, rgba(91, 127, 191, 0.8) 100%), url('https://images.unsplash.com/photo-1564013799919-ab600027ffc6?w=500&h=400&fit=crop') center/cover;
}

.category-card:nth-child(4) {
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.8) 0%, rgba(91, 127, 191, 0.8) 100%), url('https://images.unsplash.com/photo-1577720643272-265e434f2495?w=500&h=400&fit=crop') center/cover;
}

.category-card:nth-child(5) {
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.8) 0%, rgba(91, 127, 191, 0.8) 100%), url('https://images.unsplash.com/photo-1449844908441-8829872d2607?w=500&h=400&fit=crop') center/cover;
}

.category-card:nth-child(6) {
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.8) 0%, rgba(91, 127, 191, 0.8) 100%), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=500&h=400&fit=crop') center/cover;
}

.category-card:nth-child(7) {
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.8) 0%, rgba(91, 127, 191, 0.8) 100%), url('https://images.unsplash.com/photo-1479154912035-8d44aaf1137e?w=500&h=400&fit=crop') center/cover;
}

.category-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.category-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: white;
    font-weight: 600;
}

.category-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    margin-bottom: 15px;
}

.category-count {
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Featured Section */
.featured-section {
    padding: 40px 20px;
}

.featured-section h2 {
    font-size: 32px;
    margin-bottom: 0px;
    text-align: left;
}

/* Properties Grid */
.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin: 50px 0;
}

.property-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.property-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.property-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: linear-gradient(45deg, #ddd 25%, transparent 25%, transparent 75%, #ddd 75%, #ddd),
                linear-gradient(45deg, #ddd 25%, transparent 25%, transparent 75%, #ddd 75%, #ddd);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
    background-color: #f0f0f0;
}

.property-info {
    padding: 20px;
}

.property-title {
    font-size: 18px;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.property-price {
    font-size: 22px;
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 12px;
}

.property-details {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
    font-size: 13px;
    color: #666;
    flex-wrap: wrap;
}

.detail-item {
    display: flex;
    align-items: start;
    gap: 0px;
    flex-flow:column;
}

.property-location {
    font-size: 13px;
    color: #999;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.property-description {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 15px;
    max-height: 60px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.property-contact {
    font-size: 12px;
    color: var(--primary-color);
    margin-bottom: 15px;
    word-break: break-all;
}

.property-actions {
    display: flex;
    gap: 10px;
    align-items:start;
}

.btn-delete, 
.btn-contact {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
}

.btn-contact {
    background: var(--primary-color);
    color: white;
}

.btn-contact:hover {
    background: var(--primary-dark);
}

.btn-delete {
    background: var(--danger-color);
    color: white;
}

.btn-delete:hover {
    background: #c0392b;
}

/* Featured Properties Styles */
.featured-card {
    position: relative;
    display: flex;
    flex-direction: column;
}

.property-card-header {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.property-card-header .property-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--primary-color);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
}

.listing-type-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: bold;
}

.property-price-featured {
    font-size: 20px;
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 8px;
}

.property-furnished {
    font-size: 12px;
    color: #666;
    margin-bottom: 5px;
}

.property-verified {
    font-size: 12px;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 600;
}

.property-details-featured {
    display: flex;
    gap: 15px;
    margin-bottom: 8px;
    font-size: 12px;
    color: #666;
}

.property-details-featured span {
    padding: 4px 8px;
}

.property-agent-info {
    font-size: 12px;
    color: #666;
    margin-bottom: 12px;
}

.btn-login-featured {
    width: 100%;
    padding: 10px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
}

.btn-login-featured:hover {
    background: var(--primary-dark);
}

.no-properties {
    text-align: center;
    padding: 60px 20px;
    color: #999;
    font-size: 18px;
    display: none;
}

.view-all-btn-container {
    text-align: center;
    margin-top: 40px;
}

.view-all-btn {
    display: inline-block;
    padding: 14px 40px;
    background: linear-gradient(91.38deg, #d3a020 1.03%, rgb(243 185 37) 48.76%, #cd9c1f 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}
.view-all-btn:hover {
    color:#11192b;
}

/* Form Styles */
.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-container h1 {
    font-size: 32px;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

.property-form,
.contact-form {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-row .form-group {
    margin-bottom: 0;
}

.form-group label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.submit-btn,
.cta-btn {
    padding: 14px 30px;
    background: linear-gradient(91.38deg, #d3a020 1.03%, rgb(243 185 37) 48.76%, #cd9c1f 100%);
    color: #11192b;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    display: inline-block;
    text-decoration: none;
    text-align: center;
}

.submit-btn:hover,
.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.submit-btn:active,
.cta-btn:active {
    transform: translateY(0);
}

.cta-btn.secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cta-btn.secondary:hover {
    background: var(--light-bg);
}

.success-message {
    background: var(--success-color);
    color: white;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.modal.active {
    display: flex;
}

.modal-content,
.modal-dialog {
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.modal-dialog {
    max-width: 600px;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.modal-close {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #999;
}

.modal-content h2 {
    color: var(--text-dark);
    margin-bottom: 15px;
}

.modal-content p {
    color: var(--text-light);
    margin-bottom: 25px;
}

.modal-buttons {
    display: flex;
    gap: 15px;
}

.btn-cancel {
    flex: 1;
    padding: 12px;
    background: var(--light-bg);
    color: var(--text-dark);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
}

.btn-cancel:hover {
    background: #ddd;
}

/* Why Choose Section */
.why-choose-section {
    padding: 40px 20px;
    background:var(--light-bg);
}

.why-choose-section h2 {
    font-size: 32px;
    margin-bottom: 0px;
    text-align: left;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-top: 4px solid var(--primary-color);
}

.feature-card:hover {
    background: #f8fbff;
    box-shadow: 0 8px 25px rgba(44, 90, 160, 0.15);
    transform: translateY(-8px);
}

.feature-icon {
    width: 60px;
    min-width:60px!important;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.1) 0%, rgba(91, 127, 191, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
    font-weight: 600;
}

.feature-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: #fef7e7;
    color: #11192b;
    padding: 60px 20px;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Post Property Section */
.post-property-section {
    background: linear-gradient(91.38deg, #d3a020 1.03%, rgb(243 185 37) 48.76%, #cd9c1f 100%);
    color: #11192b;
    padding: 80px 20px;
    text-align: center;
    margin: 60px 0;
}

.post-property-content {
    max-width: 600px;
    margin: 0 auto;
}

.post-property-section h2 {
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: bold;
}

.post-property-section p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* Partner Section */
.partner-section {
    background: linear-gradient(91.38deg, #1a212d 1.03%, rgb(46 47 48) 48.76%, #2c2d2c 100%);
    color: #ffffff;
    padding: 32px 20px;
    text-align: center;
    border-radius:10px;
}

.partner-content {
    max-width: 600px;
    margin: 0 auto;
}

.add-property-section h2, .partner-section h2 {
    font-size: 32px;
    margin-bottom: 15px;
    text-align:center;
}

.add-property-section p, .partner-section p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-btn {
    display: inline-block;
    padding: 14px 40px;
    background: white;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta-btn-secondary {
    display: inline-block;
    padding: 14px 40px;
    background:#434955;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-add-property {
    display: inline-block;
    padding: 14px 40px;
    background: linear-gradient(91.38deg, #d3a020 1.03%, rgb(243 185 37) 48.76%, #cd9c1f 100%);
    color: #11192b;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-add-property:hover {
    background: linear-gradient(91.38deg, #d3a020 1.03%, rgb(243 185 37) 48.76%, #cd9c1f 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    color: #11192b;
}

.cta-btn-secondary:hover {
    background: #434955;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    color: #ffffff;
}
/* Properties Page - Purpose Tabs */
.purpose-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.purpose-tab {
    padding: 12px 24px;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-dark);
}

.purpose-tab:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.purpose-tab.active {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border-color: var(--primary-color);
}

/* Properties Toolbar */
.properties-toolbar {
    margin-bottom: 40px;
}

.search-filter-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 0;
}

.search-box-main {
    display: flex;
    align-items: center;
}

.search-input-main {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.search-input-main:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.filter-controls {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.filter-input {
    padding: 10px 14px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
    background: white;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 150px;
}

.filter-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.clear-btn-toolbar {
    padding: 12px 24px;
    background: linear-gradient(91.38deg, #d3a020 1.03%, rgb(243 185 37) 48.76%, #cd9c1f 100%);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #11192b;
}

.clear-btn-toolbar:hover {
    padding: 10px 20px;
    background: linear-gradient(91.38deg, #d3a020 1.03%, rgb(243 185 37) 48.76%, #cd9c1f 100%);
    color: #11192b;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    min-width: max-content;
    display: flex;
    align-items: center;
    gap: 10px;
}

.properties-header-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.sort-container {
    min-width: 180px;
}

.property-count {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    background: linear-gradient(91.38deg, #d3a020 1.03%, rgb(243 185 37) 48.76%, #cd9c1f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

/* Enhanced Properties Grid */
.properties-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    margin: 40px 0;
}

.property-card-enhanced {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    position: relative;
    cursor:pointer;
}

.property-card-enhanced:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.property-card-image-wrapper {
    position: relative;
    height: 260px;
    overflow: hidden;
    background: #f5f5f5;
}

.property-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.property-purpose-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    z-index: 10;
}

.property-purpose-badge.for-sale {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    color: white;
}

.property-purpose-badge.for-rent {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
}

.property-featured-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.property-card-content {
    padding: 16px;
}

.property-card-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.4;
    min-height: auto;
    text-transform:capitalize;
    min-height:44.80px;
}

.property-card-location {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 4px;
    text-transform:capitalize;
    min-height:44.80px;
}

.property-card-location:before {
    content: "📍";
    font-size: 14px;
}

.property-card-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4px;
    background: rgba(17, 25, 43, 0.6);
    border-radius: 6px;
    padding: 4px 10px;
    backdrop-filter: blur(10px);
}

.property-card-furnishing {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.property-card-type {
    display: inline-block;
    padding: 4px 10px;
    background: var(--light-bg);
    border-radius: 4px;
    font-size: 11px;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 5px;
    margin-right: 6px;
}

.property-card-verified {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: var(--success-color);
    font-weight: 600;
    margin-bottom: 12px;
}

.property-card-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 7px;
    padding-bottom: 7px;
    padding-top: 7px;
    border-bottom: 1px solid var(--border-color);
    border-top: 1px solid var(--border-color);
}

.property-card-feature {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--text-light);
}

.property-card-feature-icon {
    font-size: 16px;
}

.property-card-owner {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 0px;
}

.property-card-owner-name {
    font-weight: 600;
    color: var(--text-dark);
    text-transform:capitalize;
}

.property-card-actions {
    display: flex;
    gap: 10px;
}

.btn-view-property {
    flex: 1;
    padding: 10px 14px;
    color: #576175;
    border: 1px solid #576175;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.btn-view-property:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
    color:#576175;
}

/* No Properties State */
.no-properties {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
    text-align: center;
}

.no-properties-content {
    max-width: 400px;
}

.no-properties-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.no-properties-content h3 {
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 700;
}

.no-properties-content p {
    color: var(--text-light);
    margin-bottom: 24px;
    font-size: 14px;
}

.btn-reset {
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-reset:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}

/* Responsive Properties Page */
@media (max-width: 1024px) {
    .properties-grid-enhanced {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
    }

    .filter-controls {
        flex-direction: column;
    }

    .filter-input {
        min-width: unset;
    }

    .properties-header-info {
        flex-direction: column;
        align-items: stretch;
    }

    .sort-container {
        min-width: unset;
    }
}

@media (max-width: 768px) {
    .start-btn {
        width:100%!important;
    }
    .section-subtitle {
        font-size: 16px;
        margin-bottom: 12px;
        line-height: 22px;
    }
    
    .features-list {
        grid-template-columns: 1fr!important;
    }
    .footer-tagline, .tagline {
        font-size: 13px!important;
    }
    .why-choose-section h2, .featured-section h2, .categories-section h2{
        font-size:24px;
        margin-bottom:6px;
    }
    .partner-grid {
        grid-template-columns: 1fr!important;
    }
    .nav-link {
        padding: 5px 18px;
    }
    .partner-section {
        padding: 32px 10px;
    }
    .add-property-section h2, .partner-section h2 {
        font-size: 24px;
    }
    .add-property-section p, .partner-section p {
        font-size: 16px;
        margin-bottom: 20px;
        opacity: 0.95;
    }
    .why-choose-section {
        padding: 32px 10px;
    }
    .cta-btn-secondary {
        padding: 10px 10px;
    }

    .featured-section {
        padding: 36px 0px;
    }
    .auth-card {
        padding:24px!important;
    }
    .search-box-main {
        display:grid;
    }
    .auth-container {
        grid-template-columns: 1fr!important;
    }
    .purpose-tabs {
        gap: 8px;
    }

    .purpose-tab {
        padding: 10px 16px;
        font-size: 12px;
    }

    .properties-grid-enhanced {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 16px;
    }

    .search-filter-wrapper {
        gap: 14px;
    }

    .filter-controls {
        gap: 10px;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .filter-input {
        flex: 1;
        min-width: 140px;
    }

    .clear-btn-toolbar {
        padding: 10px 16px;
    }

    .properties-header-info {
        gap: 12px;
    }

    .property-card-enhanced {
        border-radius: 10px;
    }

    .property-card-image-wrapper {
        height: 180px;
    }

    .property-card-content {
        padding: 16px;
    }

    .property-card-title {
        font-size: 14px;
        min-height: auto;
    }

    .property-card-price {
        font-size: 18px;
    }

    .property-card-features {
        gap: 10px;
        margin-bottom: 12px;
        padding-bottom: 12px;
    }

    .property-card-feature {
        font-size: 12px;
    }
    .footer {
        padding: 40px 16px 24px!important;
    }
}

@media (max-width: 480px) {
    .purpose-tabs {
        gap: 6px;
    }

    .purpose-tab {
        padding: 8px 12px;
        font-size: 11px;
        flex: 1;
        min-width: 100px;
    }

    .properties-grid-enhanced {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .search-filter-wrapper {
        gap: 12px;
    }

    .search-input-main {
        padding: 12px;
        font-size: 16px;
    }

    .filter-controls {
        flex-direction: column;
        gap: 8px;
    }

    .filter-input {
        min-width: unset;
        padding: 10px 12px;
        font-size: 13px;
    }

    .properties-header-info {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .sort-container {
        width: 100%;
    }

    .property-card-image-wrapper {
        height: 160px;
    }

    .property-card-content {
        padding: 14px;
    }

    .property-card-title {
        font-size: 13px;
        margin-bottom: 6px;
    }

    .property-card-location {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .property-card-price {
        font-size: 16px;
        margin-bottom: 4px;
    }

    .property-card-furnishing {
        font-size: 11px;
        margin-bottom: 8px;
    }

    .property-purpose-badge {
        padding: 6px 10px;
        font-size: 10px;
    }

    .property-featured-badge {
        padding: 6px 10px;
        font-size: 10px;
    }

    .property-card-features {
        gap: 8px;
        margin-bottom: 10px;
        padding-bottom: 10px;
    }

    .property-card-actions {
        gap: 8px;
    }

    .btn-view-property {
        padding: 9px 12px;
        font-size: 11px;
    }
}
.footer {
    background: hsl(217.89deg 26.76% 13.92%);
    color: #bbb;
    padding: 60px 20px 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 24px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 0px;
}

.footer-logo-img {
    height: 35px;
    width: auto;
    object-fit: contain;
}

.footer-logo-text {
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 0.5px;
    background: linear-gradient(91.38deg, #d3a020 1.03%, rgb(243 185 37) 48.76%, #cd9c1f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.footer-section h4 {
    color: white;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
}

.footer-section p {
    line-height: 1.8;
    font-size: 16px;
    margin-bottom:0;
    background: linear-gradient(91.38deg, #d3a020 1.03%, rgb(243 185 37) 48.76%, #cd9c1f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.footer-section ul {
    list-style: none;
    padding-left:0;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 16px;
    background: linear-gradient(91.38deg, #d3a020 1.03%, rgb(243 185 37) 48.76%, #cd9c1f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-section a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid #444;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    font-size: 14px;
    color: #f3b925;
    opacity: 0.9;
}

.footer-bottom a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: white;
}

/* Breadcrumb */
.breadcrumb {
    background: var(--light-bg);
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.breadcrumb div {
    display: flex;
    gap: 10px;
    font-size: 14px;
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Properties Toolbar */
.properties-toolbar {
    margin: 20px 0;
    /*padding: 25px;*/
    /*background: var(--light-bg);*/
    /*border-radius: 10px;*/
}

.search-filter-wrapper {
    display: flex;
    gap: 15px;
    margin-bottom: 0;
    flex-wrap: wrap;
}

.search-box-main {
    flex: 1;
    min-width: 250px;
}

.search-input-main {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
}

.search-input-main:focus {
    outline: none;
    border-color: var(--primary-color);
}

.filter-controls {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-input {
    padding: 10px 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    min-width: 150px;
    font-weight:500;
}

.clear-btn-toolbar {
    padding: 10px 20px;
    background: linear-gradient(91.38deg, #d3a020 1.03%, rgb(243 185 37) 48.76%, #cd9c1f 100%);
    color: #11192b;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    min-width:max-content;
    display:flex;
    align-items:center;
    gap:10px;
    justify-content:center;
}



.properties-header-info {
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.property-count {
    letter-spacing: 0.5px;
    background: linear-gradient(91.38deg, #d3a020 1.03%, rgb(243 185 37) 48.76%, #cd9c1f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-size: 14px;
    font-weight: 500;
}

/* Improved Properties Grid */
.properties-grid-improved {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 25px;
    margin: 20px 0 40px 0;
}

/* No Properties State */
.no-properties {
    display: none;
    padding: 80px 40px;
    text-align: center;
}

.no-properties-content {
    max-width: 400px;
    margin: 0 auto;
}

.no-properties-icon {
    font-size: 60px;
    display: block;
    margin-bottom: 20px;
}

.no-properties h3 {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.no-properties p {
    color: var(--text-light);
    margin-bottom: 25px;
}

.btn-reset {
    padding: 12px 30px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-reset:hover {
    background: var(--primary-dark);
}

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.search-box-container {
    position: sticky;
    top: 100px;
}

.search-box {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
}

.search-box:focus {
    outline: none;
    border-color: var(--primary-color);
}

.filter-box {
    background: var(--light-bg);
    padding: 20px;
    border-radius: 10px;
    position: sticky;
    top: 200px;
}

.filter-box h3 {
    margin-bottom: 20px;
    color: var(--text-dark);
}

.filter-group {
    margin-bottom: 20px;
}

.filter-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-dark);
}

.filter-select {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 14px;
}

.clear-btn {
    width: 100%;
    padding: 10px;
    background: var(--danger-color);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    margin-top: 10px;
}

.clear-btn:hover {
    background: #c0392b;
}

.add-property-panel {
    background: var(--primary-color);
    color: white;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
}

.add-property-panel h3 {
    margin-bottom: 10px;
}

.add-property-panel p {
    margin-bottom: 15px;
    opacity: 0.9;
    font-size: 14px;
}

.add-property-toggle {
    width: 100%;
    padding: 12px;
    background: white;
    color: var(--primary-color);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-property-toggle:hover {
    background: rgba(255, 255, 255, 0.9);
}

.properties-main {
    display: flex;
    flex-direction: column;
}

.properties-header {
    margin-bottom: 20px;
}

.property-count {
    letter-spacing: 0.5px;
    background: linear-gradient(91.38deg, #d3a020 1.03%, rgb(243 185 37) 48.76%, #cd9c1f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-size: 16px;
    font-weight: 600;
}

/* Property Details Page */
.property-details-wrapper {
    margin: 40px 0;
}

.property-details-header {
    margin-bottom: 40px;
}

.property-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.property-main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    background: #f0f0f0;
}

.property-thumbnails {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.property-thumbnail {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.property-thumbnail:hover {
    border-color: var(--primary-color);
}

.property-details-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.property-info-main {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.property-header-details {
    flex-direction: column;
    gap: 15px;
}

.property-title-large {
    font-size: 32px;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.property-type-badge {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    width: fit-content;
}

.property-price-large {
    font-size: 28px;
    color: var(--primary-color);
    font-weight: bold;
}

.property-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.property-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 25px;
    background: var(--light-bg);
    border-radius: 10px;
}

.stat {
    text-align: center;
}

.stat-value {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
}

.stat-label {
    font-size: 12px;
    color: #f7f7e2;
    margin-top: 5px;
}

.property-description-large {
    line-height: 1.8;
    color: var(--text-light);
}

.property-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: var(--light-bg);
    border-radius: 8px;
}

.feature-icon {
    font-size: 20px;
}

.property-details-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.agent-card {
    background: var(--light-bg);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
}

.agent-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 15px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    border: 3px solid var(--primary-color);
}

.agent-name {
    font-size: 18px;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.agent-title {
    color: var(--text-light);
    font-size: 13px;
    margin-bottom: 15px;
}

.agent-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.agent-btn {
    padding: 10px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 13px;
}

.agent-btn-primary {
    background: var(--primary-color);
    color: white;
}

.agent-btn-primary:hover {
    background: var(--primary-dark);
}

.agent-btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.agent-btn-secondary:hover {
    background: var(--light-bg);
}

/* Similar Properties */
.similar-properties-section {
    padding: 60px 20px;
    background: var(--light-bg);
}

.similar-properties-section h2 {
    font-size: 28px;
    margin-bottom: 40px;
    text-align: center;
}

/* Authentication Pages */
.auth-wrapper {
    background: linear-gradient(135deg, var(--light-bg) 0%, white 100%);
    min-height: calc(100vh - 200px);
    padding: 60px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1000px;
    width: 100%;
}

.auth-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.auth-card h1 {
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.auth-subtitle {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 15px;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 25px;
}

.auth-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0;
}

.auth-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.auth-form .form-row .form-group {
    margin: 0;
}

.auth-form label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 14px;
}

.auth-form input,
.auth-form select {
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.auth-form input:focus,
.auth-form select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 10px 0;
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-checkbox label {
    margin: 0;
    cursor: pointer;
    font-weight: 400;
}

.form-checkbox a {
    color: var(--primary-color);
    text-decoration: none;
}

.form-checkbox a:hover {
    text-decoration: underline;
}

.auth-btn {
    padding: 14px;
    background: linear-gradient(91.38deg, #d3a020 1.03%, rgb(243 185 37) 48.76%, #cd9c1f 100%);
    color: #11192b;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.auth-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.auth-divider {
    text-align: center;
    color: var(--text-light);
    position: relative;
    margin: 30px 0;
    font-size: 14px;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: var(--border-color);
}

.auth-divider::before {
    left: 0;
}

.auth-divider::after {
    right: 0;
}

.social-login {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-btn {
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    background: white;
    color: var(--text-dark);
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.social-btn:hover {
    border-color: var(--primary-color);
    background: var(--light-bg);
}

.google-btn {
    border-color: #ddd;
}

.facebook-btn {
    border-color: #ddd;
}

.auth-footer {
    text-align: center;
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.auth-footer p {
    font-size: 14px;
    color: var(--text-light);
}

.auth-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.auth-link:hover {
    text-decoration: underline;
}

.auth-benefits {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.auth-benefits h2 {
    font-size: 24px;
    color: var(--text-dark);
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    list-style: none;
}

.benefits-list li {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.benefit-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.benefits-list h3 {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.benefits-list p {
    color: var(--text-light);
    font-size: 14px;
    margin: 0;
}

/* About Page Styles */
.about-section {
    padding: 40px 0;
    text-align: center;
}

.about-content {
    max-width: 800px;
    margin: 0 auto 50px;
}

.about-content h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.about-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 15px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.stat-card {
    background: var(--light-bg);
    padding: 40px 20px;
    border-radius: 10px;
    text-align: center;
}

.stat-number {
    font-size: 28px;
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
    background: linear-gradient(91.38deg, #d3a020 1.03%, rgb(243 185 37) 48.76%, #cd9c1f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.stat-card p {
    color: var(--text-light);
    font-size: 16px;
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 60px 0;
}

.mission-card,
.vision-card {
    background: var(--light-bg);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
}

.mission-card h3,
.vision-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.mission-card p,
.vision-card p {
    color: var(--text-light);
    line-height: 1.8;
}

.why-choose-us {
    padding: 60px 0;
}

.why-choose-us h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 50px;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.feature-item {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 25px;
    align-items: flex-start;
    padding: 20px;
    background: var(--light-bg);
    border-radius: 10px;
}

.feature-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-weight: bold;
    font-size: 20px;
}

.feature-item h4 {
    margin-bottom: 10px;
    color: var(--text-dark);
}

.feature-item p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom:0;
}

.team-section {
    padding: 60px 0;
    text-align: center;
}

.team-section h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.team-member {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.member-avatar {
    font-size: 60px;
    margin-bottom: 15px;
}

.team-member h4 {
    margin: 10px 0;
    color: var(--text-dark);
}

.team-member p {
    color: var(--text-light);
    font-size: 14px;
}

/* Contact Page Styles */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin: 60px 0;
}

.contact-form-section h2,
.contact-info-section h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.info-card {
    background: var(--light-bg);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 25px;
}

.info-icon {
    font-size: 32px;
    margin-bottom: 15px;
}

.info-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.info-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.8;
}

.social-links {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.social-links h3 {
    margin-bottom: 15px;
    color: var(--text-dark);
}

.social-icons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.social-icon:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

.map-section {
    margin: 80px 0;
    text-align: center;
}

.map-section h2 {
    font-size: 28px;
    margin-bottom: 30px;
}

.map-placeholder {
    background: var(--light-bg);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 24px;
    color: #999;
}

.faq-section {
    margin: 80px 0;
}

.faq-section h2 {
    font-size: 28px;
    margin-bottom: 40px;
    text-align: center;
}

.faq-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    background: var(--light-bg);
    border-radius: 10px;
    overflow: hidden;
}

.faq-item summary {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-dark);
    user-select: none;
    transition: all 0.3s ease;
}

.faq-item summary:hover {
    background: #e8e8e8;
}

.faq-item[open] summary {
    background: var(--primary-color);
    color: white;
}

.faq-item p {
    padding: 0;
    color: var(--text-light);
    line-height: 1.8;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .properties-wrapper {
        grid-template-columns: 1fr;
    }

    .sidebar {
        flex-direction: row;
        gap: 15px;
    }

    .filter-box,
    .add-property-panel {
        flex: 1;
    }

    .search-box-container {
        position: static;
    }

    .filter-box {
        position: static;
    }

    .mission-vision {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        background: hsl(217.89deg 26.76% 13.92%);
        padding: 20px;
        gap: 10px;
    }
    
    .nav-link {
        color:#ffffff;
    }

    .nav.mobile-active {
        display: flex;
        align-items:start;
    }
    
 

    .header-container {
        flex-wrap: wrap;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 16px;
    }

    .search-bar {
        flex-direction: column;
        gap: 10px;
    }

    .search-tabs {
        width: max-content;
        justify-content: center;
    }

    .search-input {
        width: 100%;
        min-width: unset;
    }

    .search-btn {
        width: 100%;
    }

    .hero-search {
        flex-direction: column;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .stat-box {
        padding: 15px;
    }

    .stat-number {
        font-size: 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .properties-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
        margin-top:24px;
    }

    .sidebar {
        flex-direction: column;
    }

    .filter-box,
    .add-property-panel {
        flex: none;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap:0px;
        margin-bottom: 20px;
    }
    .footer-section h4 {
        margin-bottom:0;
    }
    
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
    }

    .properties-grid {
        grid-template-columns: 1fr;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .page-header h1 {
        font-size: 24px;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .feature-item {
        grid-template-columns: 50px 1fr;
        gap: 15px;
    }

    .feature-number {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }

    .modal-content,
    .modal-dialog {
        width: 95%;
    }

    .social-icons {
        gap: 10px;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .map-placeholder {
        height: 250px;
    }
}

/* Property Details Page Styles */
.back-link {
    display: inline-flex;
    align-items: center;
    margin-bottom: 30px;
    margin-top: 20px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.back-link:hover {
    color: var(--primary-dark);
    transform: translateX(-5px);
}

.property-details-container {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
    align-items: start;
}

.property-image-gallery {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background: #f5f5f5;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.property-image-gallery:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.property-main-image {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
}

.property-label {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.property-main-info {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

#property-title-detail {
    font-size: 26px;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.3;
}

.property-location {
    color: var(--text-light);
    font-size: 15px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.property-location:before {
    content: "📍";
    font-size: 18px;
}

.property-price-section {
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 2px solid var(--light-bg);
}

.property-price {
    font-size: 36px;
    color: var(--primary-color);
    margin: 0 0 8px 0;
    font-weight: 700;
}

.property-type-label {
    color: var(--text-light);
    font-size: 13px;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: 0.3px;
}

.property-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 0px;
}

.feature-box {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: linear-gradient(135deg, var(--light-bg) 0%, #ffffff 100%);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-box:hover {
    background: linear-gradient(135deg, #f0e68c 0%, var(--light-bg) 100%);
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.15);
}

.feature-icon {
    font-size: 26px;
    min-width: 26px;
}

.feature-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.feature-label {
    font-size: 10px;
    color: var(--text-light);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.feature-value {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
}

.btn-contact-owner {
    width: 100%;
    padding: 16px;
    background: linear-gradient(91.38deg, #d3a020 1.03%, rgb(243 185 37) 48.76%, #cd9c1f 100%);
    color: #11192b;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
    letter-spacing: 0.3px;
}

.btn-contact-owner:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.btn-contact-owner:active {
    transform: translateY(0);
}

.property-section {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 28px;
    animation: fadeInUp 0.6s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.property-section h3 {
    font-size: 20px;
    margin-bottom: 24px;
    color: var(--text-dark);
    font-weight: 700;
    position: relative;
    padding-bottom: 12px;
}

.property-section h3:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color) 0%, transparent 100%);
    border-radius: 2px;
}

.property-description {
    color: var(--text-light);
    line-height: 1.85;
    font-size: 15px;
}

.property-details-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.detail-item {
    padding: 18px;
    background: linear-gradient(135deg, var(--light-bg) 0%, #ffffff 100%);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.detail-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

.detail-label {
    display: block;
    font-size: 10px;
    color: var(--text-light);
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}

.detail-value {
    display: block;
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 700;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 14px;
}

.amenity-badge {
    padding: 14px;
    background: linear-gradient(135deg, var(--light-bg) 0%, #ffffff 100%);
    border: 2px solid transparent;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-transform:capitalize;
    max-width: max-content;
}

.amenity-badge:hover {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #f0e68c 0%, var(--light-bg) 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.15);
}

.owner-section {
    background: linear-gradient(135deg, #fffef5 0%, #fff9f0 100%);
}

.owner-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 28px;
    padding: 28px;
    background: white;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.owner-info h4 {
    font-size: 18px;
    margin-bottom: 6px;
    color: var(--text-dark);
    font-weight: 700;
}

.owner-role {
    color: var(--primary-color);
    font-size: 13px;
    margin-bottom: 14px;
    font-weight: 600;
}

.owner-badges {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 14px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    background: var(--light-bg);
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    width: fit-content;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
}

.badge.verified {
    color: var(--success-color);
    background: rgba(46, 204, 113, 0.1);
}

.badge.phone-verified {
    color: var(--accent-color);
    background: rgba(44, 90, 160, 0.1);
}

.response-time {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 500;
}

.owner-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.btn-call,
.btn-message {
    padding: 12px 22px;
    border: 2px solid var(--primary-color);
    background: white;
    color: var(--primary-color);
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    letter-spacing: 0.3px;
}

.btn-message {
    background: var(--primary-color);
    color: white;
}

.btn-call:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}

.btn-message:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(184, 147, 15, 0.2);
}

/* Responsive Property Details */
@media (max-width: 1024px) {
    .property-details-container {
        grid-template-columns: 1.5fr 1fr;
        gap: 25px;
    }

    .property-main-image {
        height: 420px;
    }

    #property-title-detail {
        font-size: 24px;
    }

    .property-price {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .property-details-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .property-main-image {
        height: 300px;
    }

    .property-main-info {
        padding: 20px;
    }

    #property-title-detail {
        font-size: 22px;
        margin-bottom: 8px;
    }

    .property-price {
        font-size: 28px;
    }

    .property-features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        margin-bottom: 0px;
    }

    .feature-box {
        padding: 12px;
    }

    .feature-icon {
        font-size: 22px;
    }

    .feature-value {
        font-size: 15px;
    }

    .property-details-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .property-section {
        padding: 20px;
        margin-bottom: 20px;
    }

    .property-section h3 {
        font-size: 18px;
        margin-bottom: 16px;
    }

    .amenities-grid {
        grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
        gap: 12px;
    }

    .amenity-badge {
        padding: 12px;
        font-size: 12px;
    }

    .owner-card {
        flex-direction: column;
        text-align: left;
        gap: 20px;
        padding: 20px;
    }

    .owner-badges {
        align-items: left;
    }

    .owner-actions {
        width: 100%;
        justify-content: center;
        gap: 10px;
    }

    .btn-call,
    .btn-message {
        flex: 1;
        min-width: 120px;
        padding: 12px 16px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .section-container {
        padding: 0 16px;
    }

    .back-link {
        margin-bottom: 20px;
        margin-top: 12px;
        font-size: 14px;
    }

    .property-main-image {
        height: 220px;
    }

    #property-title-detail {
        font-size: 18px;
    }

    .property-location {
        font-size: 13px;
    }

    .property-price {
        font-size: 24px;
    }

    .property-type-label {
        font-size: 11px;
    }

    .property-main-info {
        padding: 16px;
    }

    .property-price-section {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .property-features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .feature-box {
        padding: 12px;
        gap: 10px;
    }

    .feature-icon {
        font-size: 20px;
    }

    .feature-value {
        font-size: 14px;
    }

    .btn-contact-owner {
        padding: 14px;
        font-size: 14px;
    }

    .property-section {
        padding: 16px;
        margin-bottom: 16px;
    }

    .property-section h3 {
        font-size: 16px;
        margin-bottom: 14px;
    }

    .amenities-grid {
        grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
        gap: 10px;
    }

    .amenity-badge {
        padding: 10px;
        font-size: 11px;
    }

    .detail-item {
        padding: 12px;
    }

    .owners-info h4 {
        font-size: 16px;
    }

    .owner-role {
        font-size: 12px;
    }

    .btn-call,
    .btn-message {
        padding: 10px 14px;
        font-size: 12px;
        min-width: 100px;
    }

    .owner-actions {
        gap: 8px;
    }
}

/* Add Property Page Styles */
.add-property-header {
    background: hsl(217.89deg 26.76% 13.92%);
    color: white;
}

.add-property-header h1 {
    color: white;
    font-size: 36px;
    margin-bottom: 12px;
}

.add-property-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
}

.add-property-wrapper {
    margin-bottom: 60px;
}

.add-property-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 50px;
}

.info-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.15);
}

.info-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
}

.info-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.info-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

.add-property-form-container {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.property-form-full {
    max-width: 100%;
}

.property-form-full > h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--light-bg);
}

.form-section {
    margin-bottom: 36px;
    padding-bottom: 36px;
    border-bottom: 1px solid var(--light-bg);
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.section-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title:before {
    content: "";
    width: 4px;
    height: 24px;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 2px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 14px;
    letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
    color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-group small {
    display: block;
    margin-top: 6px;
    color: var(--text-light);
    font-size: 12px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 0;
}

.form-row .form-group {
    margin-bottom: 0;
}

textarea {
    resize: vertical;
    line-height: 1.5;
}

.form-actions {
    display: flex;
    gap: 16px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid var(--light-bg);
}

.submit-btn-large {
    flex: 1;
    padding: 16px 32px;
    background: linear-gradient(91.38deg, #d3a020 1.03%, rgb(243 185 37) 48.76%, #cd9c1f 100%);
    color: #11192b;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.submit-btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.submit-btn-large:active {
    transform: translateY(0);
}

.cancel-btn {
    padding: 16px 32px;
    background: white;
    color: var(--text-dark);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.cancel-btn:hover {
    border-color: var(--text-dark);
    background: var(--light-bg);
    transform: translateY(-2px);
}

/* Responsive Add Property Page */
@media (max-width: 1024px) {
    .add-property-form-container {
        padding: 30px;
    }

    .add-property-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .add-property-header h1 {
        font-size: 28px;
    }

    .add-property-header p {
        font-size: 14px;
    }

    .add-property-form-container {
        padding: 20px;
    }

    .property-form-full > h2 {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .form-section {
        margin-bottom: 24px;
        padding-bottom: 24px;
    }

    .section-title {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .form-actions {
        flex-direction: column;
        gap: 12px;
    }

    .submit-btn-large,
    .cancel-btn {
        padding: 14px 24px;
        font-size: 14px;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .add-property-header {
        padding: 30px 0;
    }

    .add-property-header h1 {
        font-size: 22px;
        margin-bottom: 8px;
    }

    .add-property-header p {
        font-size: 12px;
    }

    .add-property-form-container {
        padding: 16px;
        border-radius: 12px;
    }

    .property-form-full > h2 {
        font-size: 18px;
        margin-bottom: 16px;
    }

    .form-section {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .section-title {
        font-size: 14px;
        margin-bottom: 14px;
    }

    .form-group {
        margin-bottom: 16px;
    }

    .form-group label {
        font-size: 13px;
        margin-bottom: 6px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 14px;
    }

    .form-group small {
        margin-top: 4px;
        font-size: 11px;
    }

    .form-actions {
        margin-top: 24px;
        padding-top: 20px;
    }

    .submit-btn-large,
    .cancel-btn {
        padding: 12px 20px;
        font-size: 13px;
    }

    .info-card {
        padding: 20px;
    }

    .info-icon {
        font-size: 36px;
        margin-bottom: 12px;
    }

    .info-card h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .info-card p {
        font-size: 12px;
    }
}


/* My Account Button & Dropdown Styles */
        .my-account-container {
            position: relative;
        }

        .btn-my-account {
            background: linear-gradient(135deg, #D4AF37 0%, #F0E68C 100%);
            color: #11192b;
            border: none;
            padding: 4px 18px;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 600;
            font-size: 15px;
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .btn-my-account:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(212, 175, 55, 0.3);
        }

        .account-dropdown {
            position: absolute;
            top: 100%;
            right: 0;
            background: white;
            border: 1px solid #ddd;
            border-radius: 4px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            z-index: 1000;
            min-width: 200px;
            margin-top: 8px;
            display: none;
        }

        .account-dropdown.show {
            display: block;
            animation: slideDown 0.3s ease-out;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .account-dropdown a {
            display: block;
            padding: 12px 16px;
            color: #333;
            text-decoration: none;
            border-bottom: 1px solid #eee;
            transition: background-color 0.2s, color 0.2s;
        }

        .account-dropdown a:last-child {
            border-bottom: none;
        }

        .account-dropdown a:hover {
            background-color: #f5f5f5;
            color: #D4AF37;
        }

        .account-dropdown a.logout-link {
            color: #d9534f;
        }

        .account-dropdown a.logout-link:hover {
            background-color: #fff5f5;
            color: #c9302c;
        }
        
        
        
        
        
 /* Dashboard Styles */
        .dashboard-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        .dashboard-header {
            background: hsl(217.89deg 26.76% 13.92%);
            padding: 30px;
            border-radius: 8px;
            margin-bottom: 40px;
            color: #ffffff;
        }

        .dashboard-header h1 {
            margin: 0 0 10px 0;
            font-size: 32px;
        }

        .dashboard-header p {
            margin: 0;
            font-size: 16px;
            opacity: 0.9;
        }

        .user-info {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 15px;
        }

        .user-profile {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .user-avatar {
            width: 60px;
            height: 60px;
            background: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .user-details h3 {
            margin: 0;
            font-size: 18px;
        }

        .user-details p {
            margin: 5px 0 0 0;
            font-size: 14px;
            opacity: 0.8;
        }

        .btn-back {
            background: white;
            color: #D4AF37;
            border: 2px solid #D4AF37;
            padding: 5px 10px;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.2s;
            text-decoration: none;
            display: inline-block;
            text-align:center;
        }

        .btn-back:hover {
            background: #D4AF37;
            color: white;
        }

        .dashboard-tabs {
            display: flex;
            gap: 20px;
            margin-bottom: 30px;
            border-bottom: 2px solid #eee;
        }

        .tab-btn {
            padding: 15px 0;
            background: none;
            border: none;
            border-bottom: 3px solid transparent;
            color: #666;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
        }

        .tab-btn.active {
            color: #D4AF37;
            border-bottom-color: #D4AF37;
        }

        .tab-btn:hover {
            color: #D4AF37;
        }

        .tab-content-dashboard {
            display: none;
        }

        .tab-content-dashboard.active {
            display: block;
        }

        /* My Properties Section */
        .properties-section {
            margin-bottom: 40px;
        }

        .section-title {
            font-size: 24px;
            margin-bottom: 20px;
            color: #1a1a2e;
            font-weight: 700;
        }

        .properties-list {
            display: grid;
            gap: 20px;
        }

        .property-card {
            background: white;
            border: 1px solid #ddd;
            border-radius: 8px;
            padding: 20px;
            display: flex;
            gap: 20px;
            transition: all 0.3s;
        }

        .property-card:hover {
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            border-color: #D4AF37;
        }

        .property-image {
            width: 150px;
            height: 150px;
            background: linear-gradient(135deg, #D4AF37 0%, #F0E68C 100%);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 50px;
            flex-shrink: 0;
        }

        .property-details {
            flex: 1;
        }

        .property-title {
            font-size: 18px;
            font-weight: 700;
            color: #1a1a2e;
            margin-bottom: 10px;
        }

        .property-info {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            margin-bottom: 15px;
            font-size: 14px;
            color: #666;
        }

        .property-price {
            font-size: 18px;
            font-weight: 700;
            color: #D4AF37;
            margin-bottom: 10px;
        }

        .property-actions {
            display: flex;
            gap: 10px;
            margin-top: 0px;
            align-items:start;
        }

        .btn-small {
            padding: 8px 16px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 14px;
            font-weight: 600;
            transition: all 0.2s;
        }

        .btn-edit {
            background: #576175;
            color: white;
            text-align:center;
        }

        .btn-edit:hover {
            background: #1e3f70;
        }

        .btn-delete {
            background: #d9534f;
            color: white;
            text-align:center;
        }

        .btn-delete:hover {
            background: #c9302c;
        }

        /* Inquiries Section */
        .inquiries-section {
            margin-bottom: 40px;
        }

        .inquiries-list {
            display: grid;
            gap: 15px;
        }

        .inquiry-card {
            background: white;
            border-left: 4px solid #D4AF37;
            padding: 20px;
            border-radius: 4px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        }

        .inquiry-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 15px;
        }

        .inquiry-property {
            font-size: 16px;
            font-weight: 700;
            color: #1a1a2e;
        }

        .inquiry-date {
            font-size: 13px;
            color: #999;
        }

        .inquiry-details {
            display: grid;
            gap: 10px;
            margin-bottom: 15px;
        }

        .inquiry-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 14px;
            padding-bottom: 10px;
            border-bottom: 1px solid #eee;
        }

        .inquiry-item:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }

        .inquiry-label {
            color: #666;
            font-weight: 600;
        }

        .inquiry-value {
            color: #1a1a2e;
        }
        
        .inquiry-value a {
            color: #1a1a2e;
            text-decoration:none;
        }

        .inquiry-message {
            background: #f9f9f9;
            padding: 12px;
            border-radius: 4px;
            font-size: 14px;
            color: #666;
            line-height: 1.5;
            margin-bottom: 15px;
        }

        .inquiry-actions {
            display: flex;
            gap: 10px;
        }

        .btn-reply {
            background: #D4AF37;
            color: #1a1a2e;
            padding: 8px 16px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 14px;
            font-weight: 600;
            transition: all 0.2s;
            text-decoration:none;
        }

        .btn-reply:hover {
            background: #F0E68C;
        }

        .empty-state {
            background: #f9f9f9;
            padding: 60px 20px;
            text-align: center;
            border-radius: 8px;
            color: #999;
        }

        .empty-state-icon {
            font-size: 48px;
            margin-bottom: 15px;
        }

        .empty-state h3 {
            margin: 0 0 10px 0;
            color: #666;
        }

        .empty-state p {
            margin: 0;
            font-size: 14px;
        }

        @media (max-width: 768px) {
            .property-card {
                flex-direction: column;
            }

            .property-image {
                width: 100%;
                height: 200px;
            }

            .property-info {
                grid-template-columns: 1fr;
            }

            .property-actions {
                flex-direction: column;
            }

            .btn-small {
                width: 100%;
            }

            .dashboard-header {
                padding: 20px;
            }

            .dashboard-header h1 {
                font-size: 24px;
            }

            .user-info {
                flex-direction: column;
                align-items: flex-start;
                gap: 20px;
            }

            .inquiry-header {
                flex-direction: column;
                gap: 5px;
            }
        }   
        
        
        
        
        
.account-dropdown {
    display: none;
    position: absolute;
    background: #fff;
    border: 1px solid #ddd;
    min-width: 180px;
    z-index: 999;
}

.account-dropdown.show {
    display: block;
}

.only-desktop { display: block; }
.only-mobile { display: none; }

@media (max-width: 768px) {
    .only-desktop { display: none; }
    .only-mobile { display: block; }
    
    
    .btn-my-account{
        padding: 4px 10px;
    }
}


.amenity-checkbox {
    display: flex;
    align-items: center;
    gap:10px;
}
.amenity-checkbox input {
    width:20px;
    height:20px;
    border-radius:50%;
}

.amenity-checkbox input[type="checkbox"]:checked {
    accent-color: #f0b624;
}


.amenity-checkbox label {
    margin-bottom:0;
}


.property-type-dropdown {
    padding: 15px 16px;
    border: 1px solid #e0e0e0;
    background: rgba(255, 255, 255, 0.1);
    color: #11192b;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    min-width: 150px;
    width:100%;
    margin-bottom:8px;
}

.property-type-dropdown:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #e0e0e0;
}

.property-type-dropdown:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.25);
    border-color: #e0e0e0;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.property-type-dropdown option {
    background: #1a1a2e;
    color: white;
    padding: 10px;
}

.property-type-dropdown option:hover {
    background: #D4AF37;
    color: #1a1a2e;
}

.theme-btn {
    border-radius: 6px;
    padding: 6px 14px;
    color: #11192b;
    font-size: 16px;
    font-weight: 500;
    background-image: linear-gradient(91.38deg, #d3a020 1.03%, rgb(243 185 37) 48.76%, #cd9c1f 100%);
    border: none;
}
.theme-btn-light {
    flex: 1;
    padding: 6px 10px;
    color: #576175;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 15px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.theme-filter-input {
    padding: 7px 10px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 15px;
    min-width: 150px;
    font-weight:400;
    background:#fcfaf8;
    color:#576175;
}

  /* Price Filter Range Styling */
.price-filter-container {
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 6px;
    transition: all 0.3s;
}

.price-filter-container:hover {
    border-color: #D4AF37;
    background: #f9f9f9;
}

.price-input-wrapper {
    position: relative;
    flex: 1;
    min-width: 120px;
}

.price-input-icon {
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 16px;
    pointer-events: none;
}

.price-input-wrapper input {
    width: 100%;
    padding: 6px 7px 6px 28px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 15px;
    transition: all 0.2s;
    background:#fcfaf8;
    color:#576175;
}

.price-input-wrapper input:hover {
    border-color: var(--border-color);
    background: #fcfaf8;
}

.price-input-wrapper input:focus {
    outline: none;
    border-color: #576175;
    box-shadow: 0 0 6px rgba(212, 175, 55, 0.3);
    background: #fcfaf8;
}

.price-separator {
    color: #999;
    font-weight: 600;
    font-size: 14px;
}
.semi-title {
    font-size: 16px;
    font-weight: 500;
}
.active-filter {
    background:linear-gradient(91.38deg, #d3a020 1.03%, rgb(243 185 37) 48.76%, #cd9c1f 100%);
    border:none;
    color:#fff;
    padding:7px 10px;
}
.w-max {
    width:max-content;
}
.mw-max {
    min-width:max-content;
}
.clear-filter {
    background: #fef7e7;
    min-width: max-content;
}

.price-type {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    bottom: 16px;
    width: 94%;
    margin: auto;
    left: 0;
    right: 0;
    align-items: end;
}


.filter-chip {
    flex: 1;
    padding: 6px 10px;
    color: #576175;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 15px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
    background:#fcfaf8;
}
.filter-chip input { display: none; }
.filter-chip:hover, .filter-chip.active {
    border-color: var(--border-color);
    background: #f3b925;
    color: #11192b;
}
    
    
 /* File Upload Styling */
        .file-upload-wrapper {
            position: relative;
            display: inline-block;
            width: 100%;
        }

        .upload-section {
            flex: 1;
            min-width: 250px;
        }

        .file-input {
            display: none;
        }

        .file-upload-label {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 30px;
            border: 2px dashed #D4AF37;
            border-radius: 8px;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(240, 230, 140, 0.05) 100%);
            cursor: pointer;
            transition: all 0.3s;
            text-align: center;
        }

        .file-upload-label:hover {
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(240, 230, 140, 0.1) 100%);
            border-color: #F0E68C;
        }

        .file-upload-label:active {
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(240, 230, 140, 0.15) 100%);
        }

        .upload-icon {
            font-size: 40px;
            margin-bottom: 10px;
        }

        .upload-text h4 {
            margin: 10px 0 5px 0;
            color: #1a1a2e;
            font-size: 16px;
        }

        .upload-text p {
            margin: 0;
            color: #666;
            font-size: 13px;
        }

        /* Image Preview Grid */
        .image-preview-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
            gap: 15px;
            margin-top: 20px;
        }

        .image-preview-item {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            border: 2px solid #eee;
            transition: all 0.3s;
        }

        .image-preview-item:hover {
            border-color: #D4AF37;
            box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
        }

        .image-preview-img {
            width: 100%;
            height: 120px;
            object-fit: cover;
            display: block;
        }

        .image-preview-badge {
            position: absolute;
            top: 5px;
            right: 5px;
            background: #D4AF37;
            color: white;
            padding: 2px 8px;
            border-radius: 4px;
            font-size: 11px;
            font-weight: 600;
        }

        .image-remove-btn {
            position: absolute;
            top: 5px;
            left: 5px;
            background: #d9534f;
            color: white;
            border: none;
            width: 28px;
            height: 28px;
            border-radius: 4px;
            cursor: pointer;
            font-size: 18px;
            transition: all 0.2s;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .image-remove-btn:hover {
            background: #c9302c;
            transform: scale(1.1);
        }

        .file-count {
            color: #D4AF37;
            font-weight: 600;
            margin-top: 10px;
        }    
    
/* Property Image Gallery Styling */
.property-image-gallery {
    width: 100%;
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
    background: #f5f5f5;
}

.gallery-main {
    position: relative;
    width: 100%;
    background: #000;
    aspect-ratio: 4 / 1.5;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.property-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.3s ease;
}

.property-label {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #D4AF37;
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gallery-counter {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    color: #1a1a2e;
    font-weight: bold;
    z-index: 10;
}

.gallery-arrow:hover {
    background: #D4AF37;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.gallery-prev {
    left: 15px;
}

.gallery-next {
    right: 15px;
}

/* Thumbnails Container */
.gallery-thumbnails {
    padding: 12px;
    background: white;
    border-radius: 0 0 12px 12px;
}

.thumbnails-scroll {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 5px;
    scroll-behavior: smooth;
}

.thumbnail-item {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s;
    background: #f0f0f0;
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.thumbnail-item:hover {
    border-color: #D4AF37;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
    transform: scale(1.05);
}

.thumbnail-item.active {
    border-color: #D4AF37;
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    .gallery-main {
        aspect-ratio: 1 / 0.75;
    }

    .gallery-arrow {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .gallery-arrow.gallery-prev {
        left: 10px;
    }

    .gallery-arrow.gallery-next {
        right: 10px;
    }

    .gallery-counter {
        bottom: 10px;
        right: 10px;
        font-size: 11px;
        padding: 6px 12px;
    }

    .property-label {
        top: 10px;
        left: 10px;
        font-size: 11px;
        padding: 6px 12px;
    }

    .gallery-thumbnails {
        padding: 10px;
    }

    .thumbnails-scroll {
        gap: 8px;
        padding: 3px;
    }

    .thumbnail-item {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 480px) {
    .gallery-main {
        aspect-ratio: 1 / 0.6;
    }

    .gallery-arrow {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .thumbnail-item {
        width: 60px;
        height: 60px;
    }

    .gallery-thumbnails {
        padding: 8px;
    }

    .thumbnails-scroll {
        gap: 6px;
    }
}  

/* Area Input with Unit Dropdown */
.input-with-dropdown {
    display: flex;
    gap: 0;
    align-items: stretch;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.input-with-dropdown input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid #e0e0e0;
    border-right: none;
    border-radius: 8px 0 0 8px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    min-width: 40%;
}



.input-with-dropdown select {
    padding: 10px 14px;
    border: 1px solid #e0e0e0;
    border-left: 1px solid #e8e8e8;
    border-radius: 0 8px 8px 0;
    background: linear-gradient(135deg, #f9f9f9 0%, #f5f5f5 100%);
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 130px;
    font-family: inherit;
    color: #333;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23D4AF37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 18px;
    padding-right: 38px;
}

.input-with-dropdown select:focus {
    outline: none;
    border-color: #D4AF37;
    box-shadow: inset 0 0 0 1px #D4AF37;
    background: linear-gradient(135deg, #fffef9 0%, #fffcf0 100%);
}

.input-with-dropdown select:hover {
    border-color: #D4AF37;
    background: linear-gradient(135deg, #faf8f3 0%, #f8f5ed 100%);
}

.input-with-dropdown select option {
    background: white;
    color: #333;
    padding: 8px;
    font-weight: 500;
}

.location-autocomplete-dropdown {
    background:#ffffff;
    border:1px solid #e0e0e0;
    border-radius:6px;
    max-height:200px;
    overflow-y:auto;
    z-index:1000;
    box-shadow:0 10px 30px rgba(0, 0, 0, 0.2);
    display:none;
    min-width:100%;
    color:#11192b;
    font-size:16px;
    font-weight:500;
    text-align:left;
    padding-left:6px;
    padding-right:6px;
    top:66px;
    z-index:9;
}
    
    
        .range-wrapper {
    position: relative;
    width: 100%;
    height: 40px;
}

.range-wrapper input[type=range] {
    position: absolute;
    width: 100%;
    pointer-events: none;
    -webkit-appearance: none;
    background: none;
}

.range-wrapper input[type=range]::-webkit-slider-thumb {
    pointer-events: auto;
    -webkit-appearance: none;
    height: 18px;
    width: 18px;
    border-radius: 50%;
    background: #007bff;
    cursor: pointer;
}

.range-wrapper input[type=range]::-moz-range-thumb {
    pointer-events: auto;
    height: 18px;
    width: 18px;
    border-radius: 50%;
    background: #007bff;
    cursor: pointer;
}

.slider-track {
    position: absolute;
    height: 5px;
    width: 100%;
    background: #ddd;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 5px;
}
    
    
    
  /* Billing Toggle */
.billing-toggle-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 24px;
    gap: 15px;
    margin-top:24px;
}

.billing-toggle {
    display: flex;
    gap: 20px;
    background: #f5f5f5;
    padding: 8px;
    border-radius: 8px;
}

.toggle-btn {
    padding: 12px 24px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: #666;
    border-radius: 6px;
    transition: all 0.3s;
    position: relative;
}

.toggle-btn.active {
    background: white;
    color: #D4AF37;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.save-badge {
    display: inline-block;
    background: #D4AF37;
    color: white;
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 4px;
    margin-left: 8px;
    font-weight: 700;
}

.billing-info {
    color: #666;
    font-size: 14px;
    text-align: center;
}

/* Plans Grid */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
    margin-top:20px;
}

.plan-card {
    background: white;
    border-radius: 12px;
    padding: 20px 20px;
    border: 1px solid #eee;
    transition: all 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
}

.plan-card:hover {
    border-color: #D4AF37;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.15);
    transform: translateY(-5px);
}

.plan-badge {
    position: absolute;
    top: -12px;
    left: 20px;
    background: #D4AF37;
    color: white;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.plan-header {
    margin-bottom: 16px;
}

.plan-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 5px;
}

.plan-description {
    font-size: 13px;
    color: #999;
    font-weight: 500;
}

.plan-price {
    margin-bottom: 16px;
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.price-currency {
    font-size: 18px;
    color: #D4AF37;
    font-weight: 600;
}

.price-amount {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a2e;
}

.price-period {
    color: #999;
    font-size: 14px;
    margin-left: 5px;
}

.plan-features {
    flex: 1;
    margin-bottom: 10px;
}

.plan-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 16px;
    color: var(--text-light);
}

.plan-features li:last-child {
    border-bottom: none;
}

.check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background: #D4AF37;
    color: white;
    border-radius: 50%;
    flex-shrink: 0;
    font-size: 11px;
    font-weight: 700;
}

.cross-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background: #ddd;
    color: #999;
    border-radius: 50%;
    flex-shrink: 0;
    font-size: 11px;
    font-weight: 700;
}

.feature-excluded {
    opacity: 0.6;
}

/* Plan Buttons */
.plan-btn {
    padding: 10px 16px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-current {
    background: #f5f5f5;
    color: #999;
    cursor: default;
}

.plan-upgrade {
    background: linear-gradient(91.38deg, #d3a020 1.03%, rgb(243 185 37) 48.76%, #cd9c1f 100%);
    color: #11192b;
}

.plan-upgrade:hover {
    background: linear-gradient(91.38deg, #d3a020 1.03%, rgb(243 185 37) 48.76%, #cd9c1f 100%);
    transform: scale(1.02);
}

.plan-contact {
    background: #2c5aa0;
    color: white;
}

.plan-contact:hover {
    background: #1e4170;
    transform: scale(1.02);
}

/* Comparison Table */
.plans-comparison {
    background: white;
    padding: 50px;
    border-radius: 12px;
    margin-bottom: 50px;
    border: 1px solid #eee;
}

.plans-comparison h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #1a1a2e;
}

.comparison-table {
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 16px;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
    font-size: 15px;
}

.comparison-table th {
    background: #f9f9f9;
    font-weight: 700;
    color: #1a1a2e;
}

.comparison-table td:first-child,
.comparison-table th:first-child {
    text-align: left;
}

.comparison-table tbody tr:hover {
    background: #fffef9;
}

/* FAQ Section */
.plans-faq {
    margin-bottom: 50px;
}

.plans-faq h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #1a1a2e;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #eee;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: #D4AF37;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.1);
}

.faq-item h4 {
    font-size: 16px;
    margin-bottom: 12px;
    color: #1a1a2e;
}

.faq-item p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .upgrade-header {
        padding: 40px 20px;
    }

    .upgrade-header h1 {
        font-size: 28px;
    }

    .upgrade-header p {
        font-size: 14px;
    }

    .plans-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom:20px;
    }

    .plan-card {
        padding: 20px 16px;
    }

    .plan-price {
        margin-bottom: 12px;
    }

    .price-amount {
        font-size: 28px;
    }

    .plans-comparison {
        padding: 30px 20px;
        overflow-x: auto;
        margin-bottom: 40px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px 8px;
        font-size: 12px;
    }

    .billing-toggle {
        flex-direction: column;
        width: 100%;
    }

    .toggle-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .plans-comparison {
        padding: 20px;
    }

    .plans-comparison h3,
    .plans-faq h3 {
        font-size: 20px;
    }

    .plan-title {
        font-size: 20px;
    }

    .price-amount {
        font-size: 24px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
} 

#filterControls {
    display: none;
    background: #ffffff;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
}

#filterControls.show {
    display: flex;
}

  /* Checkout Page Styles */
       

        /* Checkout Container */
        .checkout-container {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 40px;
            margin-bottom: 60px;
            padding: 40px 0;
        }

        /* Order Summary */
        .checkout-summary {
            background: white;
            border-radius: 12px;
            padding: 40px;
            border: 1px solid #eee;
            height: fit-content;
            position: sticky;
            top: 20px;
        }

        .checkout-summary h3 {
            font-size: 22px;
            margin-bottom: 20px;
            color: #1a1a2e;
        }

        .summary-box {
            background: #f9f9f9;
            border-radius: 8px;
            padding: 20px;
            margin-bottom: 25px;
        }

        .summary-item {
            display: flex;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px solid #e8e8e8;
            font-size: 14px;
        }

        .summary-item:last-of-type {
            border-bottom: none;
        }

        .item-label {
            color: #999;
            font-weight: 600;
        }

        .item-value {
            color: #1a1a2e;
            font-weight: 600;
        }

        .summary-divider {
            height: 2px;
            background: #D4AF37;
            margin: 15px 0;
        }

        .summary-total {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }

        .total-label {
            font-size: 16px;
            font-weight: 700;
            color: #1a1a2e;
        }

        .total-price {
            font-size: 28px;
            font-weight: 700;
            color: #D4AF37;
        }

        .plan-benefits {
            background: #fffef9;
            border-left: 4px solid #D4AF37;
            padding: 20px;
            border-radius: 6px;
            margin-bottom: 30px;
        }

        .plan-benefits h4 {
            font-size: 14px;
            color: #1a1a2e;
            margin-bottom: 12px;
        }

        .plan-benefits ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .plan-benefits li {
            font-size: 13px;
            color: var(--text-light);
            padding: 6px 0;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .back-link-btn {
            display: inline-block;
            color: #D4AF37;
            text-decoration: none;
            font-size: 13px;
            font-weight: 600;
            transition: all 0.3s;
        }

        .back-link-btn:hover {
            color: #c9952d;
        }

        /* Checkout Form */
        .checkout-form {
            background: white;
            border-radius: 12px;
            padding: 40px;
            border: 1px solid #eee;
        }

        .checkout-form h3 {
            font-size: 22px;
            margin-bottom: 30px;
            color: #1a1a2e;
        }

        .form-section {
            margin-bottom: 35px;
        }

        .form-section h4 {
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            color: #1a1a2e;
            letter-spacing: 0.5px;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #eee;
        }

        .form-group {
            margin-bottom: 18px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-size: 14px;
            font-weight: 600;
            color: #1a1a2e;
        }


        .form-group input:focus,
        .form-group select:focus {
            outline: none;
            border-color: #D4AF37;
            box-shadow: 0 0 8px rgba(212, 175, 55, 0.2);
        }

        .form-row {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
        }

        /* Payment Methods */
        .payment-methods {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin-bottom: 25px;
        }

        .payment-option {
            position: relative;
        }

        .payment-option input {
            display: none;
        }

        .payment-label {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 20px;
            border: 2px solid #ddd;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s;
            gap: 8px;
            text-align: center;
        }

        .payment-option input:checked + .payment-label {
            border-color: #D4AF37;
            background: #fffef9;
            box-shadow: 0 0 12px rgba(212, 175, 55, 0.2);
        }

        .payment-label:hover {
            border-color: #D4AF37;
        }

        .payment-icon {
            font-size: 28px;
        }

        .payment-label span:last-child {
            font-size: 13px;
            font-weight: 600;
            color: #333;
        }

        .payment-details {
            display: none;
            margin-bottom: 25px;
        }

        .payment-details.active {
            display: block;
        }

        /* Checkout Terms */
        .checkout-terms {
            background: #f5f5f5;
            padding: 20px;
            border-radius: 8px;
            margin-bottom: 25px;
        }

        .checkout-terms .checkbox-label {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 13px;
            color: #666;
        }

        .checkout-terms input[type="checkbox"] {
            width: 18px;
            height: 18px;
            cursor: pointer;
            accent-color: #D4AF37;
        }

        .checkout-terms a {
            color: #D4AF37;
            text-decoration: none;
            font-weight: 600;
        }

        .checkout-terms a:hover {
            text-decoration: underline;
        }

        /* Checkout Button */
        .btn-checkout-pay {
            width: 100%;
            padding: 16px;
            background: linear-gradient(91.38deg, #d3a020 1.03%, rgb(243 185 37) 48.76%, #cd9c1f 100%);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 15px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 12px;
        }

        .btn-checkout-pay:hover {
            background: #c9952d;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
        }

        .btn-checkout-pay:active {
            transform: translateY(0);
        }

        .secure-payment {
            text-align: center;
            font-size: 12px;
            color: #999;
        }

        /* Responsive Design */
        @media (max-width: 968px) {
            .checkout-container {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .checkout-summary {
                position: static;
            }

            .payment-methods {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .checkout-header {
                padding: 40px 20px;
            }

            .checkout-header h1 {
                font-size: 28px;
            }

            .checkout-summary,
            .checkout-form {
                padding: 25px;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .payment-methods {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .checkout-summary h3,
            .checkout-form h3 {
                font-size: 18px;
            }

            .checkout-summary,
            .checkout-form {
                padding: 15px;
            }

            .total-price {
                font-size: 22px;
            }
        }
    

.upgrade-btn {
    border-radius: 4px;
    padding: 7px 16px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    background-image: linear-gradient(91.38deg, #d3a020 1.03%, rgb(243 185 37) 48.76%, #cd9c1f 100%);
    border: none;
    text-decoration:none;
    text-align:center;
}

.upgrade-btn:hover {
    color: #fff;
}
  
/* Partner Hero Section */
    .partner-hero {
        background: linear-gradient(135deg, #D4AF37 0%, #F0E68C 50%, #FFD700 100%);
        padding: 80px 20px;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .partner-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="3" fill="rgba(255,255,255,0.1)"/></svg>');
        pointer-events: none;
    }

    .hero-content {
        position: relative;
        z-index: 1;
    }

    .partner-hero h1 {
        font-size: 48px;
        color: white;
        margin-bottom: 20px;
        text-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .partner-hero p {
        font-size: 18px;
        color: rgba(255,255,255,0.95);
        margin-bottom: 30px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .btn-scroll-down {
        background: white;
        color: #D4AF37;
        border: none;
        padding: 14px 32px;
        border-radius: 8px;
        font-weight: 700;
        font-size: 15px;
        cursor: pointer;
        transition: all 0.3s;
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }

    .btn-scroll-down:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    }

    /* Partner Benefits Section */
    .partner-benefits {
        background: #f9f9f9;
        padding: 60px 20px;
    }

    .partner-benefits h2 {
        font-size: 36px;
        text-align: center;
        color: #1a1a2e;
        margin-bottom: 10px;
    }

  

    .benefits-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 30px;
        margin-bottom: 50px;
    }

    .benefit-card {
        background: white;
        border-radius: 12px;
        padding: 30px;
        border: 2px solid #eee;
        transition: all 0.3s;
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }

    .benefit-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 8px 25px rgba(212, 175, 55, 0.15);
        border-color: #D4AF37;
    }

    .benefit-icon {
        font-size: 40px;
        margin-bottom: 15px;
    }

    .benefit-card h3 {
        font-size: 18px;
        color: #1a1a2e;
        margin-bottom: 15px;
        font-weight: 700;
    }

    .benefit-list {
        list-style: none;
        padding: 0;
        margin: 0 0 15px 0;
    }

    .benefit-list li {
        font-size: 14px;
        color: var(--text-light);
        padding: 8px 0;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .benefit-highlight {
        font-size: 13px;
        color: #D4AF37;
        font-weight: 600;
        padding: 12px;
        background: #fffef9;
        border-radius: 6px;
        margin-top: 10px;
    }

    /* Positioning Box */
    .positioning-box {
        background: linear-gradient(135deg, #D4AF37 0%, #F0E68C 100%);
        padding: 30px;
        border-radius: 12px;
        text-align: center;
        color: white;
    }

    .positioning-box h4 {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .positioning-box p {
        font-size: 15px;
        line-height: 1.6;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Partner Registration Section */
    .partner-registration {
        padding: 40px 20px;
        background: white;
    }

    .registration-header {
        text-align: center;
        margin-bottom: 40px;
    }

    .registration-header h2 {
        font-size: 32px;
        color: #1a1a2e;
        margin-bottom: 10px;
    }

    .registration-header p {
        font-size: 16px;
        color: #999;
    }

    .registration-form-container {
        background: white;
        border-radius: 12px;
        padding: 40px;
        border: 2px solid #eee;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    .form-section {
        margin-bottom: 30px;
    }

    .form-section h3 {
        font-size: 16px;
        font-weight: 700;
        text-transform: uppercase;
        color: #1a1a2e;
        letter-spacing: 0.5px;
        margin-bottom: 20px;
        padding-bottom: 10px;
        border-bottom: 2px solid #D4AF37;
    }

    .form-group {
        margin-bottom: 18px;
    }

    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-size: 14px;
        font-weight: 600;
        color: #1a1a2e;
    }

    

    .form-group input:focus,
    .form-group select:focus {
        outline: none;
        border-color: #D4AF37;
        box-shadow: 0 0 8px rgba(212, 175, 55, 0.2);
    }

    .checkbox-label {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        font-size: 13px;
        color: #666;
    }

    .checkbox-label input {
        width: 18px;
        height: 18px;
        margin-top: 2px;
        cursor: pointer;
        accent-color: #D4AF37;
    }

    .checkbox-label a {
        color: #D4AF37;
        text-decoration: none;
        font-weight: 600;
    }

    .checkbox-label a:hover {
        text-decoration: underline;
    }

    .partner-form-actions {
        text-align: center;
        margin-top: 30px;
    }

    .btn-register {
        background: linear-gradient(91.38deg, #d3a020 1.03%, rgb(243 185 37) 48.76%, #cd9c1f 100%);
        color: white;
        border: none;
        padding: 14px 40px;
        border-radius: 8px;
        font-size: 15px;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.3s;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .btn-register:hover {
        background: linear-gradient(91.38deg, #d3a020 1.03%, rgb(243 185 37) 48.76%, #cd9c1f 100%);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
    }

    .form-note {
        font-size: 12px;
        color: #999;
        margin-top: 15px;
    }

    /* CTA Section */
    .partner-cta {
        background: linear-gradient(135deg, #1a1a2e 0%, #2c5aa0 100%);
        padding: 50px 20px;
        text-align: center;
        color: white;
    }

    .partner-cta h3 {
        font-size: 32px;
        margin-bottom: 10px;
    }

    .partner-cta p {
        font-size: 16px;
        margin-bottom: 30px;
        opacity: 0.9;
    }

    .btn-register-large {
        background: #D4AF37;
        color: #1a1a2e;
        border: none;
        padding: 16px 45px;
        border-radius: 8px;
        font-size: 16px;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.3s;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .btn-register-large:hover {
        background: #F0E68C;
        transform: scale(1.05);
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .btn-register {
            padding:10px 20px;
        }
        
        .checkbox-label {
            display: inline-block;
        }
        
        .partner-hero h1 {
            font-size: 32px;
        }

        .partner-hero p {
            font-size: 16px;
        }

        .partner-benefits h2 {
            font-size: 26px;
        }

        .benefits-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .registration-form-container {
            padding: 25px;
        }

        .registration-header h2 {
            font-size: 24px;
        }
    }

    @media (max-width: 480px) {
        .partner-hero {
            padding: 50px 15px;
        }

        .partner-hero h1 {
            font-size: 24px;
        }

        .partner-benefits {
            padding: 40px 15px;
        }

        .benefits-grid {
            gap: 15px;
        }

        .benefit-card {
            padding: 20px;
        }

        .registration-form-container {
            padding: 20px;
        }

        .partner-cta h3 {
            font-size: 22px;
        }

        .partner-cta p {
            font-size: 14px;
        }
    }  
 
 .btn-register:hover {
     color:#fff;
 } 
 

.title-benefit {
    display: flex;
    align-items: center;
    gap: 10px;
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
    margin-bottom: 0px;
}

.add-property-section {
    background: linear-gradient(91.38deg, #f6eacf 1.03%, rgb(248 237 213) 48.76%, #f9f4e9 100%);
    color: #11192b;
    padding: 32px 20px;
    text-align: center;
    border-radius:10px;
}

.plan-footer-info {
    margin: 16px 0;
}


 /* Payment Success Container */
.payment-success-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px 60px;
}

/* Success Section */
.success-section {
    text-align: center;
    padding: 0px;
    margin-bottom: 24px;
}

.success-icon-container {
    margin-bottom: 20px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #D4AF37 0%, #F0E68C 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: white;
    margin: 0 auto;
    animation: successPulse 0.6s ease-in-out;
}

@keyframes successPulse {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.success-section h1 {
    font-size: 36px;
    color: #1a1a2e;
    margin-bottom: 10px;
}




/* Receipt Card */
.receipt-card {
    background: white;
    border: 2px solid #eee;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.receipt-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.receipt-header h2 {
    font-size: 24px;
    color: #1a1a2e;
    margin: 0;
}

.btn-download-receipt {
    background: linear-gradient(91.38deg, #d3a020 1.03%, rgb(243 185 37) 48.76%, #cd9c1f 100%);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
}

.btn-download-receipt:hover {
    background: linear-gradient(91.38deg, #d3a020 1.03%, rgb(243 185 37) 48.76%, #cd9c1f 100%);
    transform: translateY(-2px);
    color: white;
}

/* Receipt Content */
.receipt-content {
    font-size: 13px;
    line-height: 1.8;
}

.receipt-company {
    text-align: center;
    margin-bottom: 20px;
}

.receipt-logo {
    font-size: 24px;
    font-weight: 700;
    color: #D4AF37;
    margin-bottom: 5px;
}

.receipt-company p {
    color: #999;
    margin: 0;
}

.receipt-divider {
    height: 1px;
    background: #eee;
    margin: 20px 0;
}

.receipt-section h4 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #1a1a2e;
    letter-spacing: 0.5px;
    margin: 0 0 15px 0;
}

.receipt-detail {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    color: var(--text-light);
    font-weight: 600;
    font-size:14px;
}

.detail-value {
    color: #1a1a2e;
    font-weight: 600;
}

.payment-status-success {
    color: #28a745;
    font-weight: 700;
}

.receipt-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

/*.feature-item {*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    align-items: center;*/
/*    text-align: center;*/
/*    padding: 15px;*/
/*    background: #f9f9f9;*/
/*    border-radius: 8px;*/
/*}*/

.feature-icon {
    font-size: 24px;
    margin-bottom: 8px;
}

.feature-text {
    color: #333;
    font-weight: 600;
    font-size: 14px;
}

.receipt-summary {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 6px;
    font-size:16px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.summary-row.total {
    border-bottom: none;
    border-top: 2px solid #D4AF37;
    padding-top: 10px;
    font-weight: 700;
    color: #1a1a2e;
}

.receipt-footer {
    text-align: center;
    color: #999;
    margin-top: 20px;
    font-size: 14px;
}

.receipt-footer p {
    margin: 5px 0;
}

/* What's Next Section */
.whats-next-section {
    margin-bottom: 50px;
}

.whats-next-section h2 {
    font-size: 28px;
    color: #1a1a2e;
    margin-bottom: 30px;
    text-align: center;
}

.next-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.next-step-card {
    background: white;
    border: 2px solid #eee;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s;
}

.next-step-card:hover {
    border-color: #D4AF37;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.15);
    transform: translateY(-5px);
}

.step-number {
    width: 45px;
    height: 45px;
    background: #D4AF37;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    margin: 0 auto 15px;
}

.next-step-card h3 {
    font-size: 18px;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.next-step-card p {
    font-size: 14px;
    color: #999;
    margin-bottom: 15px;
    line-height: 1.6;
}

.step-link {
    color: #D4AF37;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.step-link:hover {
    color: #c9952d;
}

/* Plan Details Info Section */
.plan-details-info {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.plan-details-info h2 {
    font-size: 24px;
    color: #1a1a2e;
    margin-bottom: 30px;
    text-align: center;
}

.plan-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.info-box {
    background: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid #D4AF37;
}

.info-box h4 {
    font-size: 16px;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.info-value {
    font-size: 28px;
    font-weight: 700;
    color: #D4AF37;
    margin: 10px 0;
}

.info-description {
    font-size: 14px;
    color: #999;
    margin: 0;
}

/* Important Information */
.important-info {
    background: #fffef9;
    border-left: 4px solid #D4AF37;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.important-info h3 {
    font-size: 18px;
    color: #1a1a2e;
    margin-bottom: 20px;
}

.info-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.info-item {
    display: flex;
    gap: 15px;
}

.info-icon {
    color: #28a745;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
    background: linear-gradient(91.38deg, #d3a020 1.03%, rgb(243 185 37) 48.76%, #cd9c1f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.info-item strong {
    display: block;
    color: #1a1a2e;
    margin-bottom: 5px;
    font-size: 16px;
}

.info-item div {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Success Actions */
.success-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn-primary,
.btn-secondary,
.btn-tertiary {
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: #D4AF37;
    color: white;
}

.btn-primary:hover {
    background: #c9952d;
    transform: translateY(-2px);
}

.btn-secondary {
    background: #434955;
    color: white;
}

.btn-secondary:hover {
    background: #434955;
    transform: translateY(-2px);
}

.btn-tertiary {
    background: transparent;
    color: #D4AF37;
    border: 2px solid #D4AF37;
}

.btn-tertiary:hover {
    background: #D4AF37;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .payment-success-container {
        padding: 20px 15px 40px;
    }

    .receipt-card {
        padding: 25px;
    }

    .receipt-header {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-download-receipt {
        width: 100%;
    }

    .next-steps-grid {
        grid-template-columns: 1fr;
    }

    .plan-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .info-list {
        grid-template-columns: 1fr;
    }

    .success-actions {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary,
    .btn-tertiary {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .success-section h1 {
        font-size: 24px;
    }

    .receipt-header h2 {
        font-size: 18px;
    }

    .whats-next-section h2 {
        font-size: 20px;
    }

    .plan-info-grid {
        grid-template-columns: 1fr;
    }

    .feature-item {
        padding: 10px;
    }

    .feature-icon {
        font-size: 20px;
    }
}

.tagline {
    color: #11192b;
    font-weight: 400;
    font-size: 14px;
    position: absolute;
    bottom: -16px;
    min-width: max-content;
    left: 4px;
}
.footer-tagline {
    color: #ffffff;
    font-weight: 400;
    font-size: 14px;
    position: absolute;
    bottom: -16px;
    min-width: max-content;
    left: 4px;
    opacity: 0.6;
}

.logo-tagline {
    position:relative;
}

.terms-box {
    padding: 40px 20px;
}

.footer-social {
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom: 0;
}

.footer-social li {
    margin-bottom: 0!important;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(91.38deg, #d3a020 1.03%, rgb(243 185 37) 48.76%, #cd9c1f 100%);
    color: #ffffff;
    border-radius: 50%;
}

.footer-social li svg {
    width: 24px;
    height: 24px;
    color: #fff;
}
   
   
.nav-tabs .nav-link{
    border:none;
    color:#555;
    font-weight:600;
    padding:12px 25px;
}

.nav-tabs .nav-link.active{
    background:linear-gradient(91.38deg, #d3a020 1.03%, rgb(243 185 37) 48.76%, #cd9c1f 100%);
    color:#ffffff;
    border-radius:6px 6px 0 0;
}

.property-card-types{
    border:1px solid #e0e0e0;
    border-radius:10px;
    padding:10px;
    text-align:center;
    cursor:pointer;
    transition:0.3s;
    background:white;
}

.property-card-types:hover{
    border-color:#ffc107;
    box-shadow:0 5px 20px rgba(0,0,0,0.1);
    transform:translateY(-3px);
}

.property-card-types input{
    display:none;
}

.property-card-types.selected{
    border-color:#ffc107;
    background:#fff8e1;
}

.property-card-types h6 {
    margin-bottom:0;
    font-weight:400;
}
.tab-content {
    border: 1px solid var(--border-color);
    padding: 20px;
    border-radius: 10px;
}
.start-btn{
    background:linear-gradient(91.38deg, #d3a020 1.03%, rgb(243 185 37) 48.76%, #cd9c1f 100%);
    border:none;
    padding:9px 10px;
    font-weight:500;
    border-radius:6px;
    width:40%;
}

.start-btn:hover{
    background:linear-gradient(91.38deg, #d3a020 1.03%, rgb(243 185 37) 48.76%, #cd9c1f 100%);
}   
   
ul.nav.nav-tabs.justify-content-center.protype {
    display: flex;
    flex-flow:row;
    position: unset;
    background: transparent;
    margin: auto;
    text-align: center;
    justify-content: center;
    border:0;
}   

.pro-type-title {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: #1a1a2e;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    text-align: center;
    margin-top: 50px;
}
.verified-badge {
    font-size: 12px;
    color: #11192b;
    margin-bottom: 0px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    border: 1px solid var(--border-color);
    padding: 4px;
    border-radius: 8px;
}

.view-contact-card {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 16px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.otp-box{
    width:56px!important;
    height:56px;
    font-size:24px!important;
    text-align:center;
    border:1px solid var(--border-color);
    border-radius:8px;
}

.otp-box:focus{
    border-color:#0d6efd;
    outline:none;
    box-shadow:0 0 5px rgba(13,110,253,.4);
}

.otp-container{
    display:flex;
    gap:10px;
    justify-content:center;
}

.font-600 {
    font-weight:600;
}
.property-type-box {
    border:1px solid var(--border-color);
    border-radius:8px;
    padding:24px;
}
   
        
