/* 
    Builder Floor - Premium Real Estate Design System
    Color Palette:
    - Primary: #0a2540 (Deep Navy)
    - Secondary: #c19b6c (Muted Gold)
    - Accent: #00d4ff (Electric Blue)
    - BG: #f6f9fc (Soft Gray)
*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&family=Playfair+Display:wght@700&display=swap');

:root {
    --primary: #0a2540;
    --secondary: #c19b6c;
    --accent: #00d4ff;
    --bg: #f6f9fc;
    --white: #ffffff;
    --text: #e1e8ed;
    --heading: #ffffff;
    --shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    --transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background: linear-gradient(rgba(10, 37, 64, 0.6), rgba(10, 37, 64, 0.6)), url('../images/bg-building.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

h1, h2, h3, h4, .premium-font {
    font-family: 'Playfair Display', serif;
    color: var(--heading);
    font-weight: 700;
}

/* WhatsApp Floating Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: linear-gradient(135deg, #25D366, #20BA5D);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
    text-decoration: none;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    background: linear-gradient(135deg, #20BA5D, #1AA752);
}

.whatsapp-btn:active {
    transform: scale(0.95);
}

/* Mobile Call Button */
.call-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #FF6B6B, #EE5A5A);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
    text-decoration: none;
}

.call-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.6);
    background: linear-gradient(135deg, #EE5A5A, #DD4747);
}

.call-btn:active {
    transform: scale(0.95);
}

/* Show call button only on mobile devices */
@media (max-width: 768px) {
    .whatsapp-btn {
        position: fixed;
        top: 89%;
        left: 15px;
        width: 55px;
        height: 55px;
        font-size: 26px;
    }
    
    .call-btn {
        display: flex;
        bottom: 30px;
        right: 15px;
        width: 55px;
        height: 55px;
        font-size: 26px;
    }
}

/* Popup Modal Styling */
.popup-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.popup-modal.show {
    display: flex;
}

.modal-content {
    background: linear-gradient(135deg, rgba(10, 37, 64, 0.95) 0%, rgba(10, 37, 64, 0.98) 100%);
    border: 1px solid rgba(193, 155, 108, 0.3);
    border-radius: 16px;
    padding: 40px;
    width: 90%;
    max-width: 450px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    position: relative;
    animation: slideUp 0.4s ease;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 30px;
    color: var(--secondary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close:hover {
    color: #e1e8ed;
    transform: rotate(90deg);
}

.modal-content h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: var(--white);
    text-align: center;
}

.modal-content > p {
    text-align: center;
    color: #a8b3c0;
    margin-bottom: 25px;
    font-size: 14px;
}

.modal-content .form-group {
    margin-bottom: 20px;
}

.modal-content .form-group label {
    display: block;
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
}

.modal-content .form-group input {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(193, 155, 108, 0.3);
    border-radius: 8px;
    color: white;
    font-size: 14px;
    transition: all 0.3s ease;
}

.modal-content .form-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.modal-content .form-group input:focus {
    outline: none;
    border-color: var(--secondary);
    background: rgba(193, 155, 108, 0.1);
    box-shadow: 0 0 10px rgba(193, 155, 108, 0.2);
}

/* Properties Page Styles */
.properties-wrapper {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
}

.filter-sidebar {
    grid-column: 1;
}

.properties-wrapper > .property-grid {
    grid-column: 2;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

/* Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 20px 0;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 12px;
    perspective: 1000px;
    transition: var(--transition);
    transform-style: preserve-3d;
}

.logo i {
    color: var(--accent);
    filter: drop-shadow(0 0 5px rgba(0, 212, 255, 0.5));
    transition: transform 0.5s ease;
}

.logo span {
    color: var(--secondary);
}

.logo:hover {
    transform: rotateX(10deg) rotateY(15deg) translateZ(20px);
    text-shadow: 2px 2px 5px rgba(0,0,0,0.1), 0 0 10px rgba(0, 212, 255, 0.2);
}

.logo:hover i {
    transform: translateZ(30px) rotate(360deg);
}

.bluelad{
    height:50px;
    width:50px;
    border-radius:25%;
}

/* Snow Falling Effect */
.snow-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}
/* 
.snowflake {
    position: absolute;
    top: -10px;
    background: white;
    border-radius: 50%;
    opacity: 0.8;
    filter: blur(1px);
    animation: fall linear infinite;
} */

/* @keyframes fall {
    to {
        transform: translateY(105vh) translateX(20px);
    }
} */

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a:hover {
    color: var(--secondary);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    position: relative;
    z-index: 1001;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--primary) !important;
    margin: 4px 0;
    transition: 0.4s ease !important;
    display: block;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px) !important;
}

.hamburger.active span:nth-child(2) {
    opacity: 0 !important;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px) !important;
}

/* Mobile Menu Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex !important;
    }
    
    .nav-container {
        position: relative;
    }
    
    nav {
        position: absolute;
        top: 70px;
        right: 20px;
        background: rgba(10, 37, 64, 0.98) !important;
        backdrop-filter: blur(15px);
        border: 1px solid rgba(193, 155, 108, 0.3);
        border-radius: 8px;
        width: 250px;
        max-height: 0 !important;
        overflow: hidden !important;
        transition: max-height 0.4s ease !important;
        box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
        z-index: 1000;
        padding: 0 !important;
    }
    
    nav.active {
        max-height: 400px !important;
        overflow: visible !important;
        padding: 20px 0 !important;
    }
    
    .nav-links {
        flex-direction: column !important;
        gap: 0 !important;
        padding: 0 20px !important;
        display: flex !important;
    }
    
    .nav-links li {
        border-bottom: 1px solid rgba(193, 155, 108, 0.2);
        padding: 15px 0;
        list-style: none;
    }
    
    .nav-links li:last-child {
        border-bottom: none;
    }
    
    .nav-links a {
        display: block;
        color: var(--text);
        transition: var(--transition);
        padding: 5px 0;
    }
    
    .nav-links a:hover {
        color: var(--secondary);
    }
}

.btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    display: inline-block;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(10, 37, 64, 0.2);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--secondary);
    color: var(--secondary);
}

.btn-outline:hover {
    background: var(--secondary);
    color: var(--primary);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(10, 37, 64, 0.7), rgba(10, 37, 64, 0.7)), url('https://images.unsplash.com/photo-1512917774080-9991f1c4c750?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    align-items: center;
    color: var(--white);
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Search Bar */
.search-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.search-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary);
}

.form-group input, .form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 8px;
    outline: none;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group select option {
    background: var(--primary);
    color: white;
}

/* Property Cards */
.property-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    justify-content: center;
}

.properties-wrapper {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 30px;
    align-items: start;
}

.property-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    align-self: start;
}

.property-card:hover {
    transform: translateY(-10px);
}

.property-img {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.property-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.property-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--secondary);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.property-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.property-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.property-title {
    font-size: 18px;
    margin-bottom: 10px;
}

.property-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    color: #697386;
    font-size: 14px;
    margin-bottom: 20px;
    border-bottom: 1px solid #f1f3f5;
    padding-bottom: 15px;
}

.property-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: auto;
}

.property-footer .btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
}

/* Admin Dashboard Styles */
.admin-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    min-height: 100vh;
}

.sidebar {
    background: var(--primary);
    color: var(--white);
    padding: 40px 20px;
}

.sidebar-links {
    margin-top: 40px;
}

.sidebar-links li {
    margin-bottom: 15px;
}

.sidebar-links a {
    display: block;
    padding: 12px 20px;
    border-radius: 8px;
    transition: var(--transition);
}

.sidebar-links a:hover, .sidebar-links a.active {
    background: var(--secondary);
    color: var(--primary);
    font-weight: 600;
}

.admin-content {
    padding: 40px;
}

.admin-content .form-group label {
    color: #0f172a;
}

.admin-content .form-group input,
.admin-content .form-group select,
.admin-content .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #cbd5e1;
    background: #ffffff;
    color: #0f172a;
    border-radius: 8px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.admin-content .form-group input::placeholder,
.admin-content .form-group textarea::placeholder {
    color: #94a3b8;
}

.admin-content .form-group select option {
    background: #ffffff;
    color: #0f172a;
}

.admin-content .form-group textarea {
    min-height: 120px;
}

.admin-content .form-group input:focus,
.admin-content .form-group select:focus,
.admin-content .form-group textarea:focus {
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.18);
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.admin-header h2 {
    margin: 0;
    font-size: 34px;
    color: #0f172a;
}

.admin-welcome {
    margin: 8px 0 0;
    color: #475569;
    font-size: 15px;
}

.admin-profile img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e2e8f0;
}

.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.admin-stat-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(148, 163, 184, 0.16);
}

.admin-stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    font-size: 22px;
    color: #0f172a;
}

.primary-bg { background: rgba(10, 37, 64, 0.08); color: #0f172a; }
.secondary-bg { background: rgba(193, 155, 108, 0.12); color: #9a6b2a; }
.alert-bg { background: rgba(254, 226, 226, 0.7); color: #b91c1c; }
.info-bg { background: rgba(0, 212, 255, 0.15); color: #0369a1; }

.admin-stat-number {
    font-size: 28px;
    font-weight: 700;
    color: #0f172a;
}

.admin-stat-label {
    margin-top: 6px;
    color: #64748b;
    font-size: 14px;
}

.admin-panel-card {
    padding: 32px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(148, 163, 184, 0.16);
}

.admin-panel-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.admin-panel-heading h3 {
    margin: 0;
    font-size: 22px;
    color: #0f172a;
}

.admin-link {
    color: var(--secondary);
    font-weight: 600;
    text-decoration: none;
}

.admin-link:hover {
    text-decoration: underline;
}

.table-container {
    overflow-x: auto;
    margin: 0 -32px;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
}

.admin-table th,
.admin-table td {
    padding: 16px 18px;
    border-bottom: 1px solid #e2e8f0;
    vertical-align: middle;
}

.admin-table td {
    color: #0f172a;
}

.admin-table th {
    text-align: left;
    font-size: 13px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #475569;
}

.admin-table tr:nth-child(even) {
    background: #f8fafc;
}

.admin-table tr:hover {
    background: #eef2ff;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.status-new {
    background: #fee2e2;
    color: #b91c1c;
}

.status-closed {
    background: #dcfce7;
    color: #15803d;
}

.status-available {
    background: #dbeafe;
    color: #1d4ed8;
}

.status-under-construction {
    background: #fef3c7;
    color: #92400e;
}

.property-thumb {
    width: 90px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid rgba(148, 163, 184, 0.2);
}

.admin-action-group {
    display: flex;
    gap: 10px;
}

.admin-action.edit {
    color: #2563eb;
    background: rgba(37, 99, 235, 0.08);
}

.admin-action.delete {
    color: #dc2626;
    background: rgba(220, 38, 38, 0.08);
}

.admin-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    transition: transform 0.2s ease, background 0.2s ease;
}

.admin-action:hover {
    transform: translateY(-1px);
}

.admin-table-small {
    display: inline-block;
    color: #64748b;
    font-size: 14px;
}

.admin-table-empty {
    padding: 32px 18px;
    text-align: center;
    color: #64748b;
}

@media (max-width: 1024px) {
    .admin-stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .admin-content {
        padding: 24px;
    }

    .admin-layout {
        grid-template-columns: 1fr;
    }

    .sidebar {
        padding: 24px 18px;
    }

    .admin-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .table-container {
        margin: 0;
    }
}

.admin-table th,
.admin-table td {
    padding: 18px 16px;
    border-bottom: 1px solid #e2e8f0;
    vertical-align: top;
    color: #0f172a;
}

.admin-table th {
    text-align: left;
    font-size: 13px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #334155;
}

.admin-table tr:nth-child(even) {
    background: #f8fafc;
}

.admin-table tr:hover {
    background: #eef2ff;
}

.admin-table-name {
    font-weight: 700;
    color: #0f172a;
}

.admin-table-small {
    display: block;
    font-size: 13px;
    color: #64748b;
}

.admin-table-message {
    max-width: 300px;
    white-space: pre-wrap;
    word-break: break-word;
    font-size: 14px;
    color: #1e293b;
}

.admin-table-select {
    width: 100%;
    max-width: 180px;
    padding: 10px 12px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    background: #f8fafc;
    color: #0f172a;
    font-size: 14px;
    transition: border-color 0.2s ease;
}

.admin-table-select:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.18);
}

.admin-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    color: #ef4444;
    background: rgba(239, 68, 68, 0.08);
    transition: transform 0.2s ease, background 0.2s ease;
}

.admin-action:hover {
    transform: translateY(-1px);
    background: rgba(239, 68, 68, 0.16);
}

.admin-table-empty {
    padding: 40px 16px;
    text-align: center;
    color: #64748b;
}

/* Forms */
.form-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(148, 163, 184, 0.18);
    color: #0f172a;
}

.form-card h3,
.form-card p,
.form-card span,
.form-card label,
.form-card div,
.form-card a {
    color: #0f172a;
}

.form-card .form-group input,
.form-card .form-group textarea,
.form-card .form-group select {
    background: #ffffff;
    color: #0f172a;
    border: 1px solid #cbd5e1;
}

.form-card .form-group input::placeholder,
.form-card .form-group textarea::placeholder {
    color: #94a3b8;
}

.form-card .btn.btn-outline {
    color: var(--primary);
    border-color: rgba(10, 37, 64, 0.15);
    background: #f8fafc;
}

.form-card .btn.btn-outline:hover {
    background: #e2e8f0;
}

/* Footer */
footer {
    background: #08182f;
    color: rgba(255, 255, 255, 0.92);
    padding: 60px 0 20px;
}

footer .logo {
    color: #ffffff;
}

footer .logo span {
    color: var(--secondary);
}

footer .footer-about p,
footer .footer-links a,
footer .footer-contact li,
footer .footer-newsletter p,
footer .footer-newsletter input {
    color: rgba(255, 255, 255, 0.85);
}

footer .footer-contact ul {
    padding: 0;
    margin: 0;
}

footer .footer-contact ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

footer .footer-contact li i {
    width: 18px;
    text-align: center;
    color: var(--secondary);
    min-width: 18px;
}

footer .footer-links a:hover,
footer .footer-contact li:hover {
    color: var(--secondary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 20px;
    font-size: 14px;
    opacity: 0.75;
}

/* Responsive */
@media (max-width: 1024px) {
    .property-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    /* Properties Page - Mobile Layout */
    .properties-wrapper {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .filter-sidebar {
        grid-column: auto;
        order: 2;
    }
    
    .form-card {
        position: static !important;
        top: auto !important;
    }
    
    .form-card h3 {
        margin-bottom: 15px;
    }
    
    .property-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        padding: 0 10px;
    }
    
    .property-card {
        display: flex;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border-radius: 12px;
        overflow: hidden;
        width: 100%;
        max-width: 98%;
        margin: 0 auto;
    }
    
    .property-card:hover {
        transform: translateY(-5px);
    }
    
    .property-img {
        width: 100%;
        height: 220px;
        flex-shrink: 0;
    }
    
    .property-info {
        padding: 15px;
        flex: 1;
    }
    
    .property-price {
        font-size: 18px;
    }
    
    .property-title {
        font-size: 16px;
    }
    
    .property-meta {
        flex-wrap: wrap;
        gap: 10px;
        font-size: 12px;
    }
    
    .property-footer {
        flex-direction: row;
        gap: 10px;
        margin-top: 10px;
        align-items: center;
    }
    
    .btn-outline {
        width: auto;
        text-align: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .hero {
        height: 50vh;
    }
    
    .search-form {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 15px;
    }
    
    .form-card {
        padding: 15px !important;
    }
    
    .modal-content {
        width: 95% !important;
        padding: 25px !important;
    }
    
    .modal-content h2 {
        font-size: 22px;
    }
    
    .modal-content .form-group input {
        padding: 10px 12px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .property-card {
        flex-direction: column;
        width: 100%;
        max-width: 98%;
        margin: 0 auto;
    }
    
    .property-img {
        width: 100%;
        height: 200px;
    }
    
    .search-container {
        padding: 15px;
        margin-top: -40px;
    }
    
    .whatsapp-btn {
        bottom: 80px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .call-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}
