body {
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

/* NAVBAR */
.navbar {
    backdrop-filter: blur(10px);
    background: rgba(0,0,0,0.8) !important;
    transition: 0.4s;
}

.navbar-brand {
    font-weight: 700;
    font-size: 22px;
    letter-spacing: 1px;
}

.nav-link {
    transition: 0.3s;
}

.nav-link:hover {
    color: #ffc107 !important;
}

/* HERO SECTION */
.hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                url('../images/hero.jpg') center/cover no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 1.5s ease-in-out;
}

.hero h1 {
    font-size: 3rem;
    animation: slideDown 1.2s ease-in-out;
}

.hero p {
    font-size: 1.2rem;
    margin-top: 15px;
    animation: fadeIn 2s ease-in-out;
}

.btn-warning {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 30px;
    transition: 0.4s;
}

.btn-warning:hover {
    background: #fff;
    color: #000;
    transform: scale(1.05);
}

/* SECTIONS */
section {
    padding: 80px 0;
}

h2 {
    font-weight: 700;
    margin-bottom: 40px;
    position: relative;
}

h2::after {
    content: "";
    width: 80px;
    height: 4px;
    background: #ffc107;
    display: block;
    margin: 10px auto;
    border-radius: 5px;
}

/* PROPERTY CARDS */
.card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: 0.4s ease;
}

.card img {
    height: 250px;
    object-fit: cover;
    transition: 0.5s;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.card:hover img {
    transform: scale(1.1);
}

.card-body {
    padding: 25px;
}

/* CONTACT */
form input, form textarea {
    border-radius: 10px !important;
    padding: 12px;
}

form button {
    border-radius: 30px;
    padding: 12px;
    font-weight: 600;
    transition: 0.4s;
}

form button:hover {
    transform: scale(1.05);
}

/* FOOTER */
footer {
    background: linear-gradient(45deg, #111, #222);
    font-size: 14px;
}

/* ANIMATIONS */
@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}

@keyframes slideDown {
    from {transform: translateY(-30px); opacity: 0;}
    to {transform: translateY(0); opacity: 1;}
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    text-decoration: none;
    z-index: 999;
}

.whatsapp-float img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    animation: pulse 1.5s infinite;
}

.whatsapp-text {
    background: #25D366;
    color: #fff;
    padding: 8px 15px;
    margin-right: 10px;
    border-radius: 20px;
    font-size: 14px;
    opacity: 0;
    transition: 0.3s;
    white-space: nowrap;
}

.whatsapp-float:hover .whatsapp-text {
    opacity: 1;
}

/* Pulse Animation */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Chat Button */
.chat-button {
    position: fixed;
    bottom: 100px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #ffc107;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    z-index: 9999;
}

/* Chat Box */
.chat-box {
    position: fixed;
    bottom: 170px;
    right: 25px;
    width: 320px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 9999;
}

.chat-header {
    background: #111;
    color: #fff;
    padding: 12px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
}

.chat-body {
    padding: 15px;
    height: 250px;
    overflow-y: auto;
    font-size: 14px;
}

.chat-footer {
    display: flex;
    border-top: 1px solid #ddd;
}

.chat-footer input {
    flex: 1;
    border: none;
    padding: 10px;
}

.chat-footer button {
    background: #ffc107;
    border: none;
    padding: 10px 15px;
}

.user-message {
    text-align: right;
    margin-bottom: 8px;
    color: #000;
}

.bot-message {
    margin-bottom: 8px;
    color: #555;
}
