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

:root {
    --primary: #0f172a;      /* Deep Navy */
    --secondary: #334155;    /* Slate */
    --gold: #c29d59;         /* Luxury Gold */
    --bg-light: #f8fafc;
    --white: #ffffff;
    --radius: 12px;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--secondary);
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; }

/* --- Navbar --- */
.navbar {
    background: var(--white);
    padding: 20px 0;
    border-bottom: 1px solid #e2e8f0;
}
.navbar-brand {
    font-weight: 700;
    letter-spacing: -0.5px;
    font-size: 1.5rem;
    color: var(--primary) !important;
}
.nav-link {
    color: var(--secondary) !important;
    font-weight: 500;
    margin-left: 15px;
    transition: 0.3s;
}
.nav-link:hover { color: var(--gold) !important; }

/* --- Hero Section --- */
.hero-modern {
    height: 500px;
    background: linear-gradient(rgba(15, 23, 42, 0.5), rgba(15, 23, 42, 0.7)), url('jvc.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-bottom: 60px;
}
.hero-title { font-size: 3.5rem; font-weight: 800; letter-spacing: -1px; margin-bottom: 15px; }
.hero-subtitle { font-size: 1.2rem; opacity: 0.9; font-weight: 300; }

/* --- Property Cards --- */
.property-card {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid #f1f5f9;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}
.property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -5px rgba(15, 23, 42, 0.1);
    border-color: #e2e8f0;
}
.card-img-wrap {
    position: relative;
    height: 260px;
    overflow: hidden;
}
.card-img-top {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.property-card:hover .card-img-top { transform: scale(1.05); }

.badge-custom {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
    color: var(--primary);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
}
.badge-price { bottom: 15px; right: 15px; color: var(--primary); font-size: 1rem; }
.badge-freq { top: 15px; left: 15px; }

.card-body-custom { padding: 20px; }
.prop-title { font-weight: 700; font-size: 1.1rem; color: var(--primary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.prop-loc { font-size: 0.9rem; color: #94a3b8; margin-bottom: 15px; }

.amenity-row {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #f1f5f9;
    padding-top: 15px;
    margin-top: 10px;
    color: var(--secondary);
    font-size: 0.9rem;
}
.amenity-row i { color: var(--gold); margin-right: 5px; }

.btn-outline-modern {
    width: 100%;
    margin-top: 15px;
    border: 1px solid #e2e8f0;
    color: var(--primary);
    font-weight: 600;
    padding: 10px;
    border-radius: 8px;
    transition: 0.2s;
}
.btn-outline-modern:hover { background: var(--primary); color: white; border-color: var(--primary); }

/* --- Details Page --- */
.detail-gallery img { border-radius: var(--radius); width: 100%; height: auto; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.feature-tag {
    background: #fff;
    border: 1px solid #e2e8f0;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    margin: 0 8px 8px 0;
    display: inline-block;
    color: var(--secondary);
}
.feature-tag i { color: var(--gold); margin-right: 6px; }

/* --- Lead Form --- */
.lead-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: 0 10px 40px -10px rgba(0,0,0,0.08);
    border: 1px solid #f1f5f9;
}
.form-control {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 12px;
}
.form-control:focus {
    background: #fff;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(194, 157, 89, 0.1);
}
.btn-whatsapp {
    background: #25D366;
    color: white;
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    transition: 0.3s;
}
.btn-whatsapp:hover { background: #1ebc57; transform: translateY(-2px); }

/* --- Footer --- */
.footer { background: var(--white); border-top: 1px solid #e2e8f0; padding: 50px 0; margin-top: 80px; }
.iti { width: 100%; }

/* --- Minimal Footer & Notification --- */
.footer-wrapper {
    margin-top: 80px;
    border-top: 1px solid #e2e8f0;
}

.footer-notice {
    background-color: #f8fafc; /* Very light gray */
    color: #64748b;            /* Muted text */
    padding: 12px 0;
    font-size: 0.85rem;
    border-bottom: 1px solid #e2e8f0;
    text-align: center;
    line-height: 1.5;
}

.footer-minimal {
    background: #ffffff;
    padding: 40px 0;
}

.footer-link {
    color: var(--secondary);
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0 12px;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-link:hover {
    color: var(--gold);
}

.footer-social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #f1f5f9;
    color: var(--primary);
    margin-left: 8px;
    transition: all 0.3s;
}

.footer-social-btn:hover {
    background-color: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

.legal-links a {
    color: #94a3b8;
    font-size: 0.8rem;
    text-decoration: none;
    margin-left: 15px;
}

.legal-links a:hover {
    color: var(--primary);
    text-decoration: underline;
}