/* Custom CSS for MoveIn.ng */

:root {
    --primary-color: #2563eb;
    --secondary-color: #10b981;
    --dark-color: #1f2937;
    --light-color: #f9fafb;
}

/* Custom styles for property cards */
.property-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Price tag styling */
.price-tag {
    background: var(--secondary-color);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Feature icons */
.feature-icon {
    color: var(--secondary-color);
    margin-right: 8px;
}

/* WhatsApp button */
.whatsapp-btn {
    background: #25d366;
    color: white;
    border: none;
    border-radius: 25px;
    padding: 12px 24px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s ease;
}

.whatsapp-btn:hover {
    background: #128c7e;
    color: white;
}

/* Search box styling */
.search-box {
    background: white;
    border-radius: 50px;
    padding: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid #e5e7eb;
}

.search-input {
    border: none;
    outline: none;
    padding: 15px 20px;
    font-size: 1.1rem;
    width: 100%;
    background: transparent;
}

.search-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 15px 30px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.search-btn:hover {
    background: #1d4ed8;
}

/* Hero section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 80px 0;
}

/* Property image placeholder */
.property-image {
    height: 200px;
    object-fit: cover;
    background-color: #f3f4f6;
}

/* Custom button styles */
.btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
    border-radius: 25px;
    padding: 10px 25px;
    font-weight: 500;
}

.btn-primary:hover {
    background: #1d4ed8;
    border-color: #1d4ed8;
}

.btn-success {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    border-radius: 25px;
    padding: 10px 25px;
    font-weight: 500;
}

.btn-success:hover {
    background: #059669;
    border-color: #059669;
}

/* Footer styling */
.footer {
    background: var(--dark-color);
    color: white;
    padding: 50px 0 20px;
}

.footer a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: white;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }
    
    .search-box {
        margin: 0 15px;
    }
    
    .property-card {
        margin-bottom: 20px;
    }
}

/* Loading animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Form styling */
.form-control {
    border-radius: 8px;
    border: 1px solid #d1d5db;
    padding: 12px 16px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Card styling */
.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.card-header {
    border-radius: 15px 15px 0 0 !important;
    border-bottom: none;
}

/* Badge styling */
.badge {
    font-size: 0.75rem;
    padding: 6px 12px;
    border-radius: 20px;
}

/* Table styling */
.table {
    border-radius: 8px;
    overflow: hidden;
}

.table th {
    background-color: #f8fafc;
    border-bottom: 2px solid #e5e7eb;
    font-weight: 600;
}

/* Alert styling */
.alert {
    border: none;
    border-radius: 10px;
    padding: 16px 20px;
}

/* Pagination styling */
.pagination .page-link {
    border-radius: 8px;
    margin: 0 2px;
    border: 1px solid #e5e7eb;
    color: var(--primary-color);
}

.pagination .page-item.active .page-link {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

/* Custom utilities */
.text-primary {
    color: var(--primary-color) !important;
}

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

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

