:root {
    --primary: #8B1FA8;
    --primary-dark: #6A1782;
    --secondary: #F5820A;
    --dark: #1a0a22;
    --dark-light: #2d1b36;
    --off-white: #f8f9fa;
}

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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    background-color: var(--off-white);
}

.font-display {
    font-family: 'Playfair Display', serif;
}

/* Glassmorphism */
.glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-dark {
    background: rgba(26, 10, 34, 0.7);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Animations */
@keyframes slowZoom {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

.animate-slow-zoom {
    animation: slowZoom 20s ease-in-out infinite alternate;
}

/* Hero Slider */
.hero-slider .slide {
    opacity: 0;
    transition: opacity 2s ease-in-out;
    transform: scale(1.1);
}

.hero-slider .slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-slider .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes kenBurns {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.15) translate(-2%, -1%); }
}

.ken-burns {
    animation: kenBurns 8s linear infinite alternate;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

/* Mobile Nav */
.mobile-nav-active {
    overflow: hidden;
}

/* ROI Calculator Styles */
.roi-card {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
}

.roi-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
}

.roi-input:focus {
    border-color: var(--secondary);
    outline: none;
    background: rgba(255, 255, 255, 0.1);
}

/* Property Cards */
.property-card {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.property-card:hover {
    transform: translateY(-15px);
}

.property-image-container img {
    transition: transform 0.8s ease;
}

.property-card:hover .property-image-container img {
    transform: scale(1.1);
}

/* WhatsApp Widget */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128c7e;
}