body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

/* Animation Classes */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Menu Animation */
#mobile-menu {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* RTL Overrides */
html[dir="rtl"] body {
    direction: rtl;
    text-align: right;
}

html[dir="rtl"] .flex-row-reverse-rtl {
    flex-direction: row-reverse;
}

html[dir="rtl"] .mr-2,
html[dir="rtl"] .mr-3,
html[dir="rtl"] .mr-4 {
    margin-right: 0;
}

html[dir="rtl"] .mr-2 { margin-left: 0.5rem; }
html[dir="rtl"] .mr-3 { margin-left: 0.75rem; }
html[dir="rtl"] .mr-4 { margin-left: 1rem; }

html[dir="rtl"] .ml-2,
html[dir="rtl"] .ml-3,
html[dir="rtl"] .ml-4 {
    margin-left: 0;
}

html[dir="rtl"] .ml-2 { margin-right: 0.5rem; }
html[dir="rtl"] .ml-3 { margin-right: 0.75rem; }
html[dir="rtl"] .ml-4 { margin-right: 1rem; }

html[dir="rtl"] .text-left { text-align: right; }
html[dir="rtl"] .text-right { text-align: left; }

html[dir="rtl"] .border-l-4 {
    border-left: 0;
    border-right: 4px solid;
}

html[dir="rtl"] .left-4 {
    left: auto;
    right: 1rem;
}

html[dir="rtl"] .-right-4,
html[dir="rtl"] .md\:-right-6 {
    right: auto;
    left: -1rem;
}

/* Smooth scrollbar */
html {
    scroll-behavior: smooth;
}

/* Select option text (readable on white browser dropdown) */
select.text-white option {
    color: #1f2937;
    background: white;
}

/* Form focus styling */
input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #FF6A00 !important;
    box-shadow: 0 0 0 2px rgba(255, 106, 0, 0.15);
}

/* Property card hover */
.property-card:hover {
    transform: translateY(-4px);
    transition: transform 0.3s ease;
}

/* Filter tabs */
.filter-tab.active {
    background-color: #FF6A00;
    color: white;
}
