/* WhatsApp Button */
.btn-whatsapp {
    background-color: #25D366;
    color: white;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Header Improvements */
header {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar {
    height: auto;
    padding: 10px 0;
}

.logo img {
    max-height: 70px;
    /* Slightly larger logo */
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

.nav-links {
    align-items: center;
}

/* Premium Card Hover Effect */
.listing-card {
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.listing-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-8px);
}

/* Welcome Section */
.welcome-section {
    padding: 80px 0 40px;
    text-align: center;
    background: linear-gradient(to bottom, #ffffff, #f9f9f9);
}

.welcome-content h1 {
    font-size: 3rem;
    color: #1a1a1a;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.welcome-content .subtitle {
    font-size: 1.4rem;
    color: #b08d4b;
    /* Gold color */
    font-family: 'Playfair Display', serif;
    font-style: italic;
    margin-bottom: 25px;
}

.welcome-content .divider {
    width: 80px;
    height: 3px;
    background: #b08d4b;
    margin: 0 auto 30px;
    border-radius: 2px;
}

.welcome-content .description {
    max-width: 700px;
    margin: 0 auto;
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .welcome-content h1 {
        font-size: 2rem;
    }

    .welcome-content .subtitle {
        font-size: 1.1rem;
    }
}