/* Jarreh Realty - Main Styles */
/* Elite Property Management & Real Estate */

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    overflow: hidden;
    position: relative;
}

.container {
    text-align: center;
    max-width: 800px;
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    backdrop-filter: blur(15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
    margin-bottom: 40px;
}

.logo svg {
    width: 150px;
    height: 150px;
    margin-bottom: 20px;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

.company-name {
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, #FFD700, #FFA500, #FF6B6B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

.tagline {
    font-size: 1.4rem;
    margin-bottom: 20px;
    opacity: 0.9;
    font-weight: 300;
    letter-spacing: 1px;
}

.location {
    font-size: 1.1rem;
    margin-bottom: 50px;
    opacity: 0.8;
    font-style: italic;
}

.services {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0;
}

.service-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
}

.cta-section {
    margin: 40px 0;
}

.facebook-button {
    display: inline-block;
    background: linear-gradient(45deg, #4267B2, #365899);
    color: #ffffff;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 15px;
    transition: all 0.4s ease;
    border: 2px solid #4267B2;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(66, 103, 178, 0.3);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.facebook-button:hover {
    background: linear-gradient(45deg, #365899, #2d4373);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(66, 103, 178, 0.4);
    border-color: #365899;
}

.messenger-button {
    display: inline-block;
    background: linear-gradient(45deg, #00c04b, #00a03e);
    color: white;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 500;
    margin: 15px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 192, 75, 0.3);
}

.messenger-button:hover {
    background: linear-gradient(45deg, #00a03e, #008533);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 192, 75, 0.4);
}

.ai-badge {
    background: linear-gradient(45deg, #FF6B6B, #4ECDC4);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    display: inline-block;
    font-size: 0.9rem;
    margin: 20px 0;
    animation: pulse 3s infinite;
    font-weight: 500;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}

.background-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    animation: float 20s infinite linear;
}

.shape:nth-child(1) {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape:nth-child(2) {
    width: 150px;
    height: 150px;
    top: 70%;
    right: 15%;
    animation-delay: -7s;
}

.shape:nth-child(3) {
    width: 100px;
    height: 100px;
    top: 30%;
    right: 20%;
    animation-delay: -14s;
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(120deg); }
    66% { transform: translateY(10px) rotate(240deg); }
    100% { transform: translateY(0px) rotate(360deg); }
}

/* Ripple animation for buttons */
@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    body {
        min-height: 100vh;
        padding: 10px;
        overflow-y: auto;
    }

    .container {
        margin: 10px;
        padding: 30px 20px;
        max-width: 100%;
        width: calc(100% - 20px);
        box-sizing: border-box;
    }

    .logo svg {
        width: 100px;
        height: 100px;
        margin-bottom: 15px;
    }

    .company-name {
        font-size: 2.2rem;
        margin-bottom: 10px;
        line-height: 1.2;
    }

    .tagline {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .services {
        gap: 10px;
        margin: 20px 0;
    }

    .service-item {
        padding: 8px 16px;
        font-size: 0.9rem;
    }

    .location {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .ai-badge {
        font-size: 0.8rem;
        padding: 8px 16px;
        margin: 15px 0;
    }

    .facebook-button, .messenger-button {
        display: block;
        margin: 10px auto;
        padding: 15px 30px;
        width: 90%;
        max-width: 280px;
        font-size: 1rem;
        text-align: center;
        font-weight: 600;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
    }

    .facebook-button {
        background: linear-gradient(45deg, #4267B2, #365899) !important;
        color: #ffffff !important;
        border: 2px solid #4267B2 !important;
    }

    .cta-section {
        margin: 30px 0 20px 0;
    }
}

@media (max-width: 480px) {
    .container {
        margin: 5px;
        padding: 25px 15px;
        width: calc(100% - 10px);
    }

    .company-name {
        font-size: 1.8rem;
    }

    .tagline {
        font-size: 0.9rem;
    }

    .service-item {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    .facebook-button, .messenger-button {
        padding: 12px 25px;
        font-size: 0.9rem;
        width: 95%;
        font-weight: 600;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
    }

    .facebook-button {
        background: linear-gradient(45deg, #4267B2, #365899) !important;
        color: #ffffff !important;
        border: 2px solid #4267B2 !important;
    }
}