/* Property gallery on home page */
.property-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: center;
    margin: 32px 0 0 0;
}
.property-gallery img {
    width: 220px;
    height: 150px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.13);
    transition: transform 0.2s, box-shadow 0.2s;
    border: 2px solid #FFD700;
    background: #fff;
}
.property-gallery img:hover {
    transform: scale(1.05) rotate(-1deg);
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
    border-color: #ffeb3b;
}
/* Header flex layout for logo left, text center, WhatsApp right */
.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
    gap: 18px;
    flex-wrap: wrap;
}

.company-logo {
    max-width: 90px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    background: #fff;
    padding: 6px;
    border: 2px solid #FFD700;
}

.header-center {
    flex: 1 1 0;
    text-align: center;
    min-width: 200px;
}

@media (max-width: 700px) {
    .header-flex {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .header-center {
        text-align: center;
    }
    .company-logo {
        margin-bottom: 6px;
    }
}
/* Company logo in header */
.company-logo {
    max-width: 140px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 10px auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    background: #222;
    padding: 4px;
}
/* WhatsApp header button */
.whatsapp-header {
    display: inline-flex;
    align-items: center;
    margin-top: 12px;
    padding: 7px 16px;
    background: #25d366;
    color: #fff;
    border-radius: 22px;
    font-weight: bold;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 2px 6px rgba(0,0,0,0.07);
    transition: background 0.2s, color 0.2s;
    border: none;
    gap: 6px;
}

.whatsapp-header:hover {
    background: #128c7e;
    color: #fff;
}
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #fff8dc;
    color: #333;
}

header {
    background-color: #FFD700;
    padding: 20px;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 2.2rem;
}

header p {
    margin: 5px 0 0;
    font-size: 1.1rem;
}

nav {
    background-color: #ffeb3b;
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 12px;
    flex-wrap: wrap;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    font-size: 1rem;
}

nav a:hover {
    color: #000;
    text-decoration: underline;
}

section {
    padding: 40px 20px;
    max-width: 1000px;
    margin: auto;
}

h2 {
    color: #444;
    margin-bottom: 15px;
}

footer {
    background-color: #FFD700;
    padding: 20px;
    text-align: center;
}

.social-icons {
    margin-top: 10px;
}


.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #333;
    font-size: 20px;
    margin: 0 8px;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    border: 1.5px solid #333;
    transition: background 0.2s, color 0.2s, border 0.2s;
    box-shadow: 0 2px 6px rgba(0,0,0,0.07);
    position: relative;
}

.social-icons a .icon {
    width: 22px;
    height: 22px;
    display: inline-block;
    vertical-align: middle;
}

.social-icons a:hover {
    background: #333;
    color: #fff;
    border-color: #222;
}

@media (max-width: 600px) {
    nav {
        flex-direction: column;
        gap: 10px;
    }
}
