* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

/* HEADER (3× LARGE) */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 35px 80px;
    background: #0d3b66;
    color: #fff;
}

.logo {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo img {
    height: 120px;
}

.logo span {
    font-size: 32px;
    font-weight: bold;
}

/* NAVIGATION */
.nav a {
    color: #fff;
    text-decoration: none;
    margin-left: 40px;
    font-size: 22px;
    font-weight: 600;
}

.nav a:hover {
    color: #ffd166;
}

/* MAIN CONTENT */
.container {
    padding: 50px 80px;
}

.container h1 {
    margin-bottom: 30px;
    color: #0d3b66;
}

/* PROPERTY GRID */
.property-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.property-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 12px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}

.property-card:hover {
    transform: translateY(-6px);
}

.property-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.property-card h3 {
    padding: 15px;
}

.property-card p {
    padding: 0 15px 10px;
    color: #555;
}

.price {
    font-weight: bold;
    color: #0d3b66;
}

/* BUTTON */
.btn {
    display: block;
    margin: 15px;
    padding: 14px;
    text-align: center;
    background: #0d3b66;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}

.btn:hover {
    background: #092b4a;
}

/* PAGINATION */
.pagination {
    margin-top: 50px;
    text-align: center;
}

.pagination a {
    padding: 10px 18px;
    margin: 0 5px;
    text-decoration: none;
    border: 1px solid #ccc;
    color: #333;
    border-radius: 4px;
}

.pagination a.active,
.pagination a:hover {
    background: #0d3b66;
    color: #fff;
}

/* RELATED PROPERTIES */
.related {
    background: #f5f5f5;
    padding: 50px 80px;
}

.related h2 {
    margin-bottom: 30px;
    color: #0d3b66;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
}

.related-card {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.related-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.related-card p {
    padding: 12px;
    text-align: center;
    font-size: 14px;
}

/* FOOTER */
.footer {
    background: #0d3b66;
    color: #fff;
    text-align: center;
    padding: 35px;
}

.footer h3 {
    margin-bottom: 8px;
}

.footer p {
    margin: 6px 0;
    font-size: 14px;
}

.footer .copyright {
    margin-top: 12px;
    font-size: 13px;
    opacity: 0.8;
}
/* WHATSAPP FLOATING BUTTON */
.whatsapp-float {
    position: fixed;
    width: 70px;
    height: 70px;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
    z-index: 999;
    transition: transform 0.2s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float img {
    width: 40px;
    height: 40px;
}