:root {
    --primary-color: #25D366;
    /* WhatsApp Green */
    --primary-hover: #1da851;
    --dark-bg: #1c2a33;
    /* Dark Navy/Slate */
    --light-bg: #f9fbfd;
    --text-color: #333;
    --text-light: #666;
    --accent-color: #d4a017;
    /* Gold/Bronze for luxury accents */
    --white: #ffffff;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    --radius: 12px;
}

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

body {
    font-family: 'Tajawal', sans-serif;
    background-color: var(--light-bg);
    color: var(--text-color);
    line-height: 1.6;
    direction: rtl;
    overflow-x: hidden;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
}

h1,
h2,
h3 {
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn-primary i {
    font-size: 1.4rem;
}

/* Hero Section */
.hero {
    position: relative;
    height: 90vh;
    min-height: 500px;
    background: url('https://images.unsplash.com/photo-1522708323590-d24dbb6b0267?ixlib=rb-4.0.3&auto=format&fit=crop&w=2340&q=80') center/cover no-repeat;
    /* Placeholder luxury apartment */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(28, 42, 51, 0.7));
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }
}

.hero-sub {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.note-text {
    margin-top: 15px;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Intro Section */
.intro {
    padding: 80px 0;
    text-align: center;
    background: var(--white);
}

.intro p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--text-light);
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 10px;
    color: var(--dark-bg);
}

/* WhatsApp Benefits */
.whatsapp-benefits {
    padding: 80px 0;
    background-color: var(--white);
}

.benefits-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto 50px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.icon-box {
    background-color: rgba(37, 211, 102, 0.1);
    color: var(--primary-color);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.text-box h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.cta-banner {
    background-color: #fff3cd;
    color: #856404;
    padding: 15px;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid #ffeeba;
    font-weight: 500;
}

/* Steps Section */
.steps {
    padding: 80px 0;
    background-color: var(--dark-bg);
    color: var(--white);
    text-align: center;
}

.steps .section-title {
    color: var(--white);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.step {
    position: relative;
    padding: 20px;
}

.step-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    line-height: 40px;
    font-weight: 700;
    margin-bottom: 15px;
}

/* Trust Section */
.trust {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(to bottom, #f9fbfd, #eef2f5);
}

.trust-icon {
    font-size: 4rem;
    color: var(--dark-bg);
    margin-bottom: 20px;
}

/* Footer */
.main-footer {
    background-color: var(--white);
    padding: 60px 0 30px;
    text-align: center;
    border-top: 1px solid #eee;
}

.main-footer h2 {
    font-size: 2rem;
    color: var(--dark-bg);
}

.big-btn {
    margin-top: 30px;
    padding: 20px 50px;
    font-size: 1.3rem;
}

.copyright {
    margin-top: 50px;
    font-size: 0.9rem;
    color: #999;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Floating Contact Buttons */
.floating-contacts {
    position: fixed;
    bottom: 30px;
    left: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.35);
}

.whatsapp-float {
    background-color: var(--primary-color);
}

.whatsapp-float:hover {
    background-color: var(--primary-hover);
}

.phone-float {
    background-color: var(--accent-color);
}

.phone-float:hover {
    background-color: #bfa14c;
}

/* Make them responsive */
@media (max-width: 480px) {
    .floating-contacts {
        bottom: 20px;
        left: 20px;
        gap: 10px;
    }
    
    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}
