:root {
    --primary-color: #1d9b85;
    --dark-primary-color: #146e5f;
    --primary: #0f172a;
    --accent: #1d9b85;
    --tz-green: #198754;
    --bs-primary: #1d9b85 !important;
    --bs-primary-rgb: 29, 155, 133 !important;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #334155;
    scroll-behavior: smooth;
}

/* Modern Header */
.navbar {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #f1f5f9;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.7)),
    url('https://images.unsplash.com/photo-1512917774080-9991f1c4c750?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    height: 70vh;
    display: flex;
    align-items: center;
    color: white;
}

/* Property Cards */
.card-property {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.card-property:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.1);
}

.property-label {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Pricing Table */
.plan-card {
    border: 2px solid #f1f5f9;
    border-radius: 24px;
    padding: 40px 30px;
    transition: border-color 0.3s;
}

.plan-card.featured {
    border-color: var(--accent);
    background: #f8fafc;
    position: relative;
}

.plan-card.featured::after {
    content: "Recommended";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: white;
    padding: 4px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
}

.btn-modern {
    border-radius: 12px;
    padding: 7px 20px;
    font-weight: 600;
}

.section-padding {
    padding: 80px 0;
}

.btn-primary {
    border-color: var(--primary-color) !important;
    background-color: var(--primary-color) !important;
}

.btn-primary:focus {
    border-color: var(--primary-color) !important;
    background-color: var(--primary-color) !important;
}

.btn-primary:hover {
    border-color: var(--dark-primary-color) !important;
    background-color: var(--dark-primary-color) !important;
}
