/**
 * RentBHK.com - Main Stylesheet
 * Theme: Black & Orange (Redis Colors)
 */

/* CSS Variables */
:root {
    --primary-color: #FF4500;        /* Redis Orange */
    --primary-dark: #CC3700;         /* Darker Orange */
    --secondary-color: #000000;      /* Black */
    --text-dark: #2d3748;
    --text-light: #718096;
    --bg-light: #f7fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.15);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.2);
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

/* Top Bar */
.top-bar {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1a1a1a 100%);
    color: white;
    padding: 0.75rem 0;
    font-size: 0.875rem;
}

.top-bar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.top-bar-left {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.top-bar-contact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.top-bar-contact a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.top-bar-contact a:hover {
    color: var(--primary-color);
}

.top-bar-right {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.social-links a {
    color: white;
    font-size: 1.125rem;
    text-decoration: none;
    transition: transform 0.3s;
}

.social-links a:hover {
    transform: scale(1.2);
}

/* Header */
.site-header {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Logo */
.site-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.site-logo img {
    height: 60px;
}

/* Navigation */
.main-nav ul {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.main-nav a {
    padding: 0.75rem 1.25rem;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s;
    display: inline-block;
}

.main-nav a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

.btn-login {
    background: transparent !important;
    border: 2px solid var(--primary-color) !important;
    color: var(--primary-color) !important;
    font-weight: 600 !important;
}

.btn-login:hover {
    background: var(--primary-color) !important;
    color: white !important;
}

.btn-register {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%) !important;
    color: white !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 12px rgba(255, 69, 0, 0.3);
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 69, 0, 0.4);
}

.btn-post-property {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%) !important;
    color: white !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 12px rgba(255, 69, 0, 0.3);
    position: relative;
}

.btn-post-property sup {
    font-size: 0.7em;
    font-weight: 700;
    background: #FFD700;
    color: #000;
    padding: 0.2em 0.5em;
    border-radius: 4px;
    margin-left: 0.3em;
    animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.btn-post-property:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 69, 0, 0.5);
}

.email-icon {
    font-size: 1.3em;
    filter: brightness(1.5) saturate(2);
    display: inline-block;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.btn-logout {
    background: #fc8181 !important;
    color: white !important;
    font-weight: 600 !important;
}

.btn-logout:hover {
    background: #f56565 !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(26, 26, 26, 0.95) 100%), url('/assets/img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 4rem 2rem;
    text-align: center;
    color: white;
    box-shadow: var(--shadow-sm);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
}

.hero-logo {
    margin-bottom: 1.5rem;
}

.hero-logo img {
    height: 120px;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 1rem 0 0.5rem 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    font-weight: 300;
}

/* Hero Search Form */
.hero-search-form {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.1);
    margin: 2rem auto;
    max-width: 950px;
    border: 1px solid rgba(255,255,255,0.2);
}

.hero-search-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.hero-search-group {
    width: 100%;
    position: relative;
}

.hero-search-group::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-size: contain;
    opacity: 0.5;
    pointer-events: none;
    z-index: 1;
}

.hero-search-group input,
.hero-search-group select {
    width: 100%;
    padding: 1.125rem 1.25rem;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    background: white;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    appearance: none;
}

.hero-search-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 3rem;
    cursor: pointer;
}

.hero-search-group input:hover,
.hero-search-group select:hover {
    border-color: #d0d0d0;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.hero-search-group input:focus,
.hero-search-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(255, 69, 0, 0.12), 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.hero-search-group input::placeholder {
    color: #999;
    font-weight: 400;
}

.hero-search-btn {
    width: 100%;
    padding: 1.375rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.25rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(255, 69, 0, 0.35);
    margin-top: 0.5rem;
    position: relative;
    overflow: hidden;
}

.hero-search-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.hero-search-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(255, 69, 0, 0.45);
}

.hero-search-btn:hover::before {
    left: 100%;
}

.hero-search-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255, 69, 0, 0.4);
}

/* Add icons to search fields */
.hero-search-group:nth-child(1) select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 9L1 4h10z'/%3E%3C/svg%3E"), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23FF4500' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 1A1.5 1.5 0 0 0 5 2.5V3H1.5A1.5 1.5 0 0 0 0 4.5v1.384l7.614 2.03a1.5 1.5 0 0 0 .772 0L16 5.884V4.5A1.5 1.5 0 0 0 14.5 3H11v-.5A1.5 1.5 0 0 0 9.5 1h-3zm0 1h3a.5.5 0 0 1 .5.5V3H6v-.5a.5.5 0 0 1 .5-.5z'/%3E%3Cpath d='M0 12.5A1.5 1.5 0 0 0 1.5 14h13a1.5 1.5 0 0 0 1.5-1.5V6.85L8.129 8.947a.5.5 0 0 1-.258 0L0 6.85v5.65z'/%3E%3C/svg%3E");
    background-position: right 1rem center, left 1rem center;
    background-repeat: no-repeat, no-repeat;
    padding-left: 3rem;
}

.hero-search-group:nth-child(2) select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 9L1 4h10z'/%3E%3C/svg%3E"), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23FF4500' viewBox='0 0 16 16'%3E%3Cpath d='M0 2a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V2zm4.5 0a.5.5 0 0 0 0 1h7a.5.5 0 0 0 0-1h-7zM3 4.5a.5.5 0 0 1 .5-.5h9a.5.5 0 0 1 0 1h-9a.5.5 0 0 1-.5-.5zM3.5 7a.5.5 0 0 0 0 1h9a.5.5 0 0 0 0-1h-9zm0 2.5a.5.5 0 0 0 0 1h6a.5.5 0 0 0 0-1h-6z'/%3E%3C/svg%3E");
    background-position: right 1rem center, left 1rem center;
    background-repeat: no-repeat, no-repeat;
    padding-left: 3rem;
}

.hero-search-group:nth-child(3) input {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23FF4500' viewBox='0 0 16 16'%3E%3Cpath d='M8 16s6-5.686 6-10A6 6 0 0 0 2 6c0 4.314 6 10 6 10zm0-7a3 3 0 1 1 0-6 3 3 0 0 1 0 6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 1rem center;
    padding-left: 3rem;
}

.hero-search-group:nth-child(4) select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 9L1 4h10z'/%3E%3C/svg%3E"), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23FF4500' viewBox='0 0 16 16'%3E%3Cpath d='M8.707 1.5a1 1 0 0 0-1.414 0L.646 8.146a.5.5 0 0 0 .708.708L8 2.207l6.646 6.647a.5.5 0 0 0 .708-.708L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.707 1.5Z'/%3E%3Cpath d='m8 3.293 6 6V13.5a1.5 1.5 0 0 1-1.5 1.5h-9A1.5 1.5 0 0 1 2 13.5V9.293l6-6Z'/%3E%3C/svg%3E");
    background-position: right 1rem center, left 1rem center;
    background-repeat: no-repeat, no-repeat;
    padding-left: 3rem;
}

.hero-search-group:nth-child(5) input,
.hero-search-group:nth-child(6) input {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23FF4500' viewBox='0 0 16 16'%3E%3Cpath d='M4 10.781c.148 1.667 1.513 2.85 3.591 3.003V15h1.043v-1.216c2.27-.179 3.678-1.438 3.678-3.3 0-1.59-.947-2.51-2.956-3.028l-.722-.187V3.467c1.122.11 1.879.714 2.07 1.616h1.47c-.166-1.6-1.54-2.748-3.54-2.875V1H7.591v1.233c-1.939.23-3.27 1.472-3.27 3.156 0 1.454.966 2.483 2.661 2.917l.61.162v4.031c-1.149-.17-1.94-.8-2.131-1.718H4zm3.391-3.836c-1.043-.263-1.6-.825-1.6-1.616 0-.944.704-1.641 1.8-1.828v3.495l-.2-.05zm1.591 1.872c1.287.323 1.852.859 1.852 1.769 0 1.097-.826 1.828-2.2 1.939V8.73l.348.086z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 1rem center;
    padding-left: 3rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

/* ============================================
   REGISTRATION PAGE STYLES
   ============================================ */

.register-card {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08), 0 0 0 1px rgba(0,0,0,0.04);
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.register-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark), var(--primary-color));
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.form-section {
    margin-bottom: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 2rem;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.75rem;
    display: flex;
    align-items: center;
    letter-spacing: -0.02em;
}

.section-title::before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 28px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    margin-right: 1rem;
    border-radius: 3px;
    box-shadow: 0 2px 8px rgba(255, 69, 0, 0.3);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
    margin-bottom: 1.75rem;
}

.form-group {
    margin-bottom: 1.75rem;
}

.form-group label {
    display: block;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.625rem;
    font-size: 0.9375rem;
    letter-spacing: -0.01em;
}

.required {
    color: var(--primary-color);
    margin-left: 3px;
    font-size: 1.1em;
}

.form-input,
.form-select {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    color: var(--text-dark);
    background: #fafafa;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
}

.form-input:hover,
.form-select:hover {
    background: white;
    border-color: #d1d5db;
    transform: translateY(-1px);
}

.form-input:focus,
.form-select:focus {
    outline: none;
    background: white;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(255, 69, 0, 0.08), 0 4px 12px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath fill='%23666' d='M7 10L2 5h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.125rem center;
    padding-right: 3rem;
    cursor: pointer;
}

.form-hint {
    display: block;
    font-size: 0.8125rem;
    color: #6b7280;
    margin-top: 0.5rem;
    font-weight: 500;
}

/* User Type Selection Cards */
.user-type-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.user-type-option {
    position: relative;
    cursor: pointer;
}

.user-type-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.user-type-card {
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 2rem 1.25rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.user-type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.05), rgba(255, 69, 0, 0.02));
    opacity: 0;
    transition: opacity 0.3s;
}

.user-type-option:hover .user-type-card {
    border-color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(255, 69, 0, 0.15);
}

.user-type-option:hover .user-type-card::before {
    opacity: 1;
}

.user-type-option input[type="radio"]:checked + .user-type-card {
    border-color: var(--primary-color);
    border-width: 3px;
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.08), rgba(255, 69, 0, 0.05));
    box-shadow: 0 12px 32px rgba(255, 69, 0, 0.25), 0 0 0 4px rgba(255, 69, 0, 0.1);
    transform: translateY(-2px);
}

.user-type-option input[type="radio"]:checked + .user-type-card::after {
    content: '✓';
    position: absolute;
    top: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: 0 4px 12px rgba(255, 69, 0, 0.4);
}

.user-type-icon {
    font-size: 3.5rem;
    margin-bottom: 0.75rem;
    filter: grayscale(30%);
    transition: filter 0.3s;
}

.user-type-option:hover .user-type-icon,
.user-type-option input[type="radio"]:checked + .user-type-card .user-type-icon {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.user-type-card h4 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.375rem;
    letter-spacing: -0.02em;
}

.user-type-card p {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
    font-weight: 500;
}

/* Checkbox Styling */
.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    padding: 1.25rem;
    background: linear-gradient(135deg, #fafafa, #f5f5f5);
    border-radius: 12px;
    transition: all 0.3s;
    border: 2px solid #e5e7eb;
}

.checkbox-label:hover {
    background: linear-gradient(135deg, #f5f5f5, #efefef);
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.checkbox-label input[type="checkbox"] {
    width: 22px;
    height: 22px;
    margin-right: 1rem;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.checkbox-label span {
    font-size: 0.9375rem;
    color: var(--text-dark);
    line-height: 1.6;
    font-weight: 500;
}

.checkbox-label a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.2s;
}

.checkbox-label a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Buttons */
.btn-gradient {
    display: inline-block;
    padding: 1.125rem 2.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(255, 69, 0, 0.35);
    text-align: center;
    text-decoration: none;
    letter-spacing: -0.01em;
    position: relative;
    overflow: hidden;
}

.btn-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(255, 69, 0, 0.45);
}

.btn-gradient:hover::before {
    left: 100%;
}

.btn-gradient:active {
    transform: translateY(-1px);
}

.btn-large {
    width: 100%;
    padding: 1.375rem;
    font-size: 1.25rem;
}

/* Form Footer */
.form-footer {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid #f0f0f0;
    text-align: center;
}

.form-footer p {
    font-size: 1.0625rem;
    color: var(--text-dark);
    margin: 0;
    font-weight: 500;
}

.form-footer a {
    color: var(--primary-color);
    font-weight: 800;
    text-decoration: none;
    transition: color 0.2s;
}

.form-footer a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Alert Messages */
.alert-error {
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    border-left: 5px solid #ef4444;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.15);
}

.alert-error strong {
    display: block;
    font-weight: 800;
    color: #dc2626;
    margin-bottom: 0.75rem;
    font-size: 1.0625rem;
}

.alert-error ul {
    margin: 0.75rem 0 0 0;
    padding-left: 1.75rem;
    color: #991b1b;
}

.alert-error li {
    margin: 0.5rem 0;
    font-weight: 500;
}

.alert-success {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border-left: 5px solid #22c55e;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.15);
}

.alert-success strong {
    display: block;
    font-weight: 800;
    color: #16a34a;
    margin-bottom: 0.75rem;
    font-size: 1.0625rem;
}

/* Benefits Section */
.benefits-section {
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 50%, #fafafa 100%);
    border-radius: 24px;
    border: 1px solid #e5e7eb;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.benefit-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    transform: scaleX(0);
    transition: transform 0.3s;
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.12);
    border-color: var(--primary-color);
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1.25rem;
    display: inline-block;
    transition: transform 0.3s;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.15) rotate(5deg);
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.625rem;
    letter-spacing: -0.02em;
}

.benefit-card p {
    font-size: 0.9375rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.6;
    font-weight: 500;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    opacity: 0.9;
    font-size: 1rem;
}

/* Cards */
.card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    margin-bottom: 1.5rem;
}

.card-header-gradient {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 1.5rem;
    color: white;
    border-radius: 12px 12px 0 0;
    margin: -1.5rem -1.5rem 1.5rem -1.5rem;
}

.card-title {
    margin: 0;
    font-size: 1.75rem;
    color: white;
}

.card-subtitle {
    margin: 0.5rem 0 0 0;
    opacity: 0.95;
}

.card-body {
    padding: 2rem;
}

/* Section Header */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.section-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.section-link:hover {
    text-decoration: underline;
}

/* Property Cards */
.property-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.property-card {
    padding: 0;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.property-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.property-image {
    position: relative;
}

.property-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.featured-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
    box-shadow: var(--shadow-md);
}

.property-content {
    padding: 1.25rem;
}

.property-title {
    margin: 0 0 0.75rem 0;
    font-size: 1.125rem;
}

.property-title a {
    color: var(--text-dark);
    text-decoration: none;
}

.property-meta {
    display: flex;
    gap: 1rem;
    margin: 0.75rem 0;
    flex-wrap: wrap;
    font-size: 0.875rem;
}

.property-meta-item,
.meta-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.icon-orange {
    color: var(--primary-color);
}

.property-location {
    margin: 0.5rem 0;
    color: var(--text-light);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.property-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.property-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

.property-price-suffix,
.price-period {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--text-light);
}

/* Buttons */
.btn {
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-block {
    width: 100%;
    padding: 1rem;
    font-size: 1.125rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border: none;
    box-shadow: 0 4px 15px rgba(255, 69, 0, 0.4);
}

/* Form Elements */
.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 69, 0, 0.1);
}

/* Why Choose Section */
.why-choose {
    margin-top: 4rem;
    background: linear-gradient(135deg, var(--bg-light) 0%, #edf2f7 100%);
    padding: 3rem 2rem;
    border-radius: 16px;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    font-size: 1.125rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-title {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.feature-description {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    margin-top: 4rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 3rem 2rem;
    border-radius: 16px;
    text-align: center;
    color: white;
    box-shadow: var(--shadow-lg);
}

.cta-title {
    margin: 0 0 1rem 0;
    font-size: 2.5rem;
    color: white;
}

.cta-subtitle {
    margin: 0 0 2rem 0;
    font-size: 1.25rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-white {
    background: white;
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    box-shadow: var(--shadow-md);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.btn-outline-white {
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    border: 2px solid white;
}

.btn-outline-white:hover {
    background: rgba(255,255,255,0.3);
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    color: white;
    margin-top: 4rem;
    padding: 3rem 0 0 0;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 40px;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-description {
    color: #cbd5e0;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    text-decoration: none;
    transition: all 0.3s;
}

.social-icon:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-contact-item {
    margin-bottom: 1rem;
    display: flex;
    align-items: start;
    gap: 0.75rem;
    color: #cbd5e0;
}

.footer-contact-icon {
    font-size: 1.25rem;
}

.footer-contact-title {
    display: block;
    color: white;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.footer-contact-link {
    color: var(--primary-color);
    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    color: #cbd5e0;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

/* Content Grid */
.content-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2rem;
}

.main-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.single-column {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.main-column {
    min-width: 0;
}

.sidebar-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.ad-container {
    background: #f7fafc;
    border: 2px dashed #e2e8f0;
    padding: 2rem;
    text-align: center;
    color: var(--text-light);
    border-radius: 8px;
}

/* SEO Content */
.seo-content {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 12px;
}

.seo-content h2 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.seo-content h3 {
    color: var(--text-dark);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.seo-content p {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.seo-content ul {
    color: var(--text-dark);
    line-height: 1.8;
    margin-left: 1.5rem;
/* Responsive */
@media (max-width: 1200px) {
@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
    
    .main-container {
        padding: 1rem;
    }
    
    .hero-search-form {
        padding: 1.5rem;
    }
    
    .hero-search-row {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .hero-search-btn {
        padding: 1rem;
        font-size: 1.125rem;
    }
    
    .header-container {
        padding: 0.75rem 1rem;
    }   padding: 0 1.5rem;
    }
}

@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
    
    .header-container {
        padding: 0.75rem 1rem;
    }
    
    .top-bar-container {
        padding: 0 1rem;
        flex-direction: column;
        gap: 0.5rem;
        font-size: 0.75rem;
    }
    
    .top-bar-left,
    .top-bar-right {
        width: 100%;
        justify-content: center;
    }
    
    .site-logo img {
        height: 45px;
    }
    
    .main-nav ul {
        flex-direction: column;
        width: 100%;
        gap: 0.25rem;
    }
    
    .main-nav a {
        width: 100%;
        text-align: center;
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .sidebar-column {
        display: none;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-logo img {
        height: 80px;
    }
    
    .hero-stats {
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .stat-label {
        font-size: 0.875rem;
    }
    
    .property-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
    
    .cta-subtitle {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-white,
    .btn-outline-white {
        width: 100%;
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .card {
@media (max-width: 480px) {
    .hero-section {
        padding: 2rem 1rem;
    }
    
    .hero-search-form {
        padding: 1rem;
        border-radius: 12px;
    }
    
    .hero-search-row {
        gap: 0.5rem;
    }
    
    .hero-search-group input,
    .hero-search-group select {
        padding: 0.875rem;
        font-size: 0.9rem;
    }
    
    .hero-search-btn {
        padding: 0.875rem;
        font-size: 1rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .card-title {
        font-size: 1.25rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 2rem 1rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-logo img {
        height: 60px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .main-nav a {
        font-size: 0.85rem;
        padding: 0.5rem 0.75rem;
    }
    
    .btn-post-property sup {
        font-size: 0.6em;
        padding: 0.15em 0.4em;
    }
    
    .property-card {
        margin-bottom: 1rem;
    }
    
    .property-image img {
        height: 180px;
    }
    
    .top-bar {
        padding: 0.5rem 0;
    }
    
    .top-bar-contact {
        font-size: 0.8rem;
    }
    
    .footer-container {
        padding: 0 1rem;
    }
    
    .why-choose {
        padding: 2rem 1rem;
    }
    
    .cta-section {
        padding: 2rem 1rem;
    }
    
    /* Registration Form - Mobile */
    .register-card {
        padding: 1.5rem;
        border-radius: 16px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .user-type-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .form-section {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }
    
    .section-title {
        font-size: 1.125rem;
    }
}       gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    /* Registration Form - Tablet */
    .user-type-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }
    
    .user-type-card {
        padding: 1.25rem 0.75rem;
    }
    
    .user-type-icon {
        font-size: 2.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

/* ============================================
   LOGIN PAGE STYLES
   ============================================ */

.login-container {
    padding: 3rem 0;
    animation: fadeInUp 0.6s ease-out;
}

.login-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.98) 100%);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15),
                0 0 0 1px rgba(255, 69, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    overflow: hidden;
    margin-bottom: 3rem;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.login-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #ff6b35, var(--primary-color));
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
}

.login-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.login-header h1 {
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #333 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
}

.login-header p {
    font-size: 1.05rem;
    color: #64748b;
    font-weight: 500;
    line-height: 1.6;
}

/* Login Form */
.login-form {
    margin-bottom: 2rem;
}

.login-form .form-group {
    margin-bottom: 1.5rem;
}

.login-form .form-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.login-form .form-label svg {
    color: var(--primary-color);
    flex-shrink: 0;
}

.login-form .form-input {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--secondary-color);
    background: #ffffff;
    transition: all 0.3s ease;
    outline: none;
}

.login-form .form-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(255, 69, 0, 0.1),
                0 8px 20px rgba(255, 69, 0, 0.15);
    transform: translateY(-2px);
}

.login-form .form-input::placeholder {
    color: #94a3b8;
    font-weight: 400;
}

/* Form Options (Remember Me & Forgot Password) */
.form-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    gap: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    user-select: none;
}

.checkbox-input {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.checkbox-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: #475569;
}

.forgot-password {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.forgot-password:hover {
    color: #ff6b35;
    text-decoration: underline;
}

/* Buttons */
.btn-large {
    width: 100%;
    padding: 1.25rem 2rem;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.btn-gradient {
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff6b35 100%);
    color: #ffffff;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(255, 69, 0, 0.3);
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(255, 69, 0, 0.4);
}

.btn-gradient:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(255, 69, 0, 0.3);
}

.btn-outline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1.25rem 2rem;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: var(--primary-color);
    background: #ffffff;
    border: 2px solid var(--primary-color);
    border-radius: 16px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff6b35 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 69, 0, 0.3);
}

/* Divider */
.divider {
    display: flex;
    align-items: center;
    margin: 2rem 0;
    text-align: center;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
}

.divider span {
    padding: 0 1.5rem;
    font-size: 0.95rem;
    font-weight: 700;
    color: #64748b;
    letter-spacing: -0.01em;
}

/* Alert Messages */
.alert-error {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    border: 2px solid #f87171;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    color: #991b1b;
    font-weight: 600;
}

.alert-error svg {
    flex-shrink: 0;
    color: #dc2626;
}

.alert-error p {
    margin: 0;
    line-height: 1.5;
}

.alert-success {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 1.25rem;
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    border: 2px solid #34d399;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    color: #065f46;
    font-weight: 600;
}

.alert-success svg {
    flex-shrink: 0;
    color: #10b981;
}

.alert-success p {
    margin: 0;
    line-height: 1.5;
}

/* Login Benefits Section */
.login-benefits {
    margin-top: 4rem;
    text-align: center;
}

.login-benefits h2 {
    font-size: 2.25rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #333 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2.5rem;
}

.login-benefits .benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.login-benefits .benefit-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.98) 100%);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    border: 2px solid rgba(255, 69, 0, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.login-benefits .benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), #ff6b35);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.login-benefits .benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 69, 0, 0.15);
    border-color: var(--primary-color);
}

.login-benefits .benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: grayscale(0.2);
}

.login-benefits .benefit-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.login-benefits .benefit-card p {
    font-size: 0.95rem;
    color: #64748b;
    font-weight: 500;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .login-card {
        padding: 2rem 1.5rem;
    }
    
    .login-header h1 {
        font-size: 2rem;
    }
    
    .login-header p {
        font-size: 0.95rem;
    }
    
    .form-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .login-benefits .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .login-benefits h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .login-container {
        padding: 2rem 0;
    }
    
    .login-card {
        padding: 1.5rem 1rem;
        border-radius: 20px;
    }
    
    .login-header h1 {
        font-size: 1.75rem;
    }
    
    .btn-large,
    .btn-outline {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .login-benefits .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .benefit-icon {
        font-size: 2.5rem;
    }
}

/* ============================================
   DASHBOARD PAGE STYLES
   ============================================ */

/* Dashboard Container Background */
.main-container {
    position: relative;
}

.main-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.08) 0%, rgba(255, 107, 53, 0.05) 50%, transparent 100%);
    z-index: -1;
    border-radius: 0 0 50px 50px;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    padding-top: 2rem;
}

.dashboard-header h1 {
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.dashboard-header p {
    font-size: 1.1rem;
    color: #64748b;
    font-weight: 500;
}

/* Stats Grid */
.stats-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
    gap: 1.5rem !important;
    margin-bottom: 3rem;
}

.stat-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.98) 100%);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    display: flex !important;
    align-items: center !important;
    gap: 1.5rem !important;
    border: 2px solid;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.stat-card:hover::before {
    width: 100%;
    opacity: 0.05;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.stat-primary {
    border-color: rgba(255, 69, 0, 0.2);
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.05) 0%, rgba(255, 255, 255, 0.98) 100%);
}

.stat-success {
    border-color: rgba(34, 197, 94, 0.2);
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.05) 0%, rgba(255, 255, 255, 0.98) 100%);
}

.stat-info {
    border-color: rgba(59, 130, 246, 0.2);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(255, 255, 255, 0.98) 100%);
}

.stat-warning {
    border-color: rgba(251, 146, 60, 0.2);
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.05) 0%, rgba(255, 255, 255, 0.98) 100%);
}

.stat-icon {
    font-size: 3rem;
    flex-shrink: 0;
    filter: grayscale(0.2);
}

.stat-content {
    flex: 1;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    color: var(--secondary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Subscription Card */
.subscription-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff6b35 100%);
    border-radius: 24px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    color: #ffffff;
    box-shadow: 0 20px 60px rgba(255, 69, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.subscription-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    pointer-events: none;
}

.subscription-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.subscription-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.subscription-card h2 {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.subscription-validity {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
}

.subscription-card .btn-outline {
    background: #ffffff;
    color: var(--primary-color);
    border: 2px solid #ffffff;
}

.subscription-card .btn-outline:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.subscription-usage {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important;
    gap: 2rem !important;
    position: relative;
    z-index: 1;
}

.usage-item {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.usage-label {
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0.9;
}

.usage-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    overflow: hidden;
}

.usage-progress {
    height: 100%;
    background: #ffffff;
    border-radius: 4px;
    transition: width 0.3s ease;
}

.usage-text {
    font-size: 1.1rem;
    font-weight: 700;
}

.usage-text-only {
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: auto;
}

/* Alert Warning */
.alert-warning {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 2px solid #f59e0b;
    border-radius: 16px;
    margin-bottom: 2rem;
    color: #92400e;
}

.alert-warning svg {
    flex-shrink: 0;
    color: #f59e0b;
}

.alert-warning strong {
    display: block;
    font-weight: 800;
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
}

.alert-warning p {
    margin: 0;
    line-height: 1.6;
}

.alert-warning a {
    color: #92400e;
    font-weight: 700;
    text-decoration: underline;
}

/* Quick Actions Card */
.quick-actions-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.98) 100%);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(255, 69, 0, 0.1);
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.quick-actions-card::after {
    content: '⚡';
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 150px;
    opacity: 0.03;
    transform: rotate(-15deg);
    pointer-events: none;
}

.quick-actions-card h2 {
    font-size: 1.75rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.actions-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)) !important;
    gap: 1.25rem !important;
}

.action-button {
    display: flex !important;
    align-items: center !important;
    gap: 1rem !important;
    padding: 1.5rem;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.action-button:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 69, 0, 0.15);
}

.action-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.action-text {
    flex: 1;
}

.action-title {
    font-size: 1rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 0.25rem;
    letter-spacing: -0.01em;
}

.action-subtitle {
    font-size: 0.85rem;
    font-weight: 500;
    color: #64748b;
}

/* Properties Table Card */
.properties-table-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.98) 100%);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(255, 69, 0, 0.1);
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.properties-table-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), #ff6b35, var(--primary-color));
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
}

.table-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.table-header h2 {
    font-size: 1.75rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: var(--secondary-color);
}

.view-all-link {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.view-all-link:hover {
    color: #ff6b35;
    transform: translateX(3px);
}

.table-responsive {
    overflow-x: auto;
}

.properties-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.properties-table thead tr {
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.05) 0%, rgba(255, 69, 0, 0.02) 100%);
}

.properties-table th {
    padding: 1rem 1.25rem;
    text-align: left;
    font-weight: 800;
    font-size: 0.85rem;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 2px solid #e2e8f0;
}

.properties-table th:first-child {
    border-top-left-radius: 12px;
}

.properties-table th:last-child {
    border-top-right-radius: 12px;
}

.properties-table td {
    padding: 1.25rem;
    border-bottom: 1px solid #f1f5f9;
    font-weight: 500;
    color: #475569;
}

.properties-table tbody tr {
    transition: all 0.2s ease;
}

.properties-table tbody tr:hover {
    background: rgba(255, 69, 0, 0.02);
}

.property-link {
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.property-link:hover {
    color: #ff6b35;
    text-decoration: underline;
}

.status-badge {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: 0.03em;
}

.status-published {
    background: #d1fae5;
    color: #065f46;
}

.status-draft {
    background: #e0e7ff;
    color: #3730a3;
}

.status-archived {
    background: #f3f4f6;
    color: #374151;
}

.status-sold,
.status-rented {
    background: #fee2e2;
    color: #991b1b;
}

.status-pending {
    background: #fef3c7;
    color: #92400e;
}

.status-active {
    background: #d1fae5;
    color: #065f46;
}

.action-buttons {
    display: flex;
    gap: 0.75rem;
}

.action-view,
.action-edit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    transition: all 0.3s ease;
    color: #64748b;
}

.action-view:hover {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.action-edit:hover {
    background: rgba(255, 69, 0, 0.1);
    color: var(--primary-color);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.98) 100%);
    border-radius: 24px;
    border: 2px dashed rgba(255, 69, 0, 0.2);
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.empty-state::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 69, 0, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.empty-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    opacity: 0.5;
    animation: float 3s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.empty-state h3 {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
}

.empty-state p {
    font-size: 1.05rem;
    color: #64748b;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

/* Inquiries Card */
.inquiries-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.98) 100%);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(255, 69, 0, 0.1);
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.inquiries-card::after {
    content: '💬';
    position: absolute;
    bottom: -30px;
    right: -30px;
    font-size: 180px;
    opacity: 0.03;
    pointer-events: none;
}

.inquiries-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.inquiry-item {
    padding: 1.5rem;
    background: #ffffff;
    border: 2px solid #f1f5f9;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.inquiry-item:hover {
    border-color: rgba(255, 69, 0, 0.3);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.inquiry-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.inquirer-info {
    flex: 1;
}

.inquirer-name {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 0.25rem;
}

.inquirer-contact {
    font-size: 0.9rem;
    font-weight: 500;
    color: #64748b;
}

.inquiry-message {
    padding: 1rem;
    background: rgba(255, 69, 0, 0.03);
    border-left: 3px solid var(--primary-color);
    border-radius: 8px;
    color: #475569;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.inquiry-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
    color: #64748b;
}

.inquiry-property {
    font-weight: 600;
}

.inquiry-property a {
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
}

.inquiry-property a:hover {
    text-decoration: underline;
}

.inquiry-date {
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .dashboard-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    
    .dashboard-header h1 {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .stat-icon {
        font-size: 2.5rem;
    }
    
    .stat-value {
        font-size: 2rem;
    }
    
    .subscription-card {
        padding: 2rem;
    }
    
    .subscription-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .actions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .action-button {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem;
    }
    
    .properties-table {
        font-size: 0.85rem;
    }
    
    .properties-table th,
    .properties-table td {
        padding: 0.75rem 0.5rem;
    }
    
    .inquiry-header {
        flex-direction: column;
    }
    
    .inquiry-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .actions-grid {
        grid-template-columns: 1fr;
    }
    
    .table-responsive {
        overflow-x: scroll;
    }
}
