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

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #d4af37;
    --accent-color: #c9a961;
    --text-color: #f5f5f5;
    --text-secondary: #b8b8b8;
    --bg-overlay: rgba(0, 0, 0, 0.85);
}

body {
    font-family: 'Montserrat', 'Segoe UI', 'Tahoma', 'Arial', sans-serif;
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    color: var(--text-color);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    direction: rtl;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(45deg, transparent 30%, rgba(212, 175, 55, 0.02) 30%, rgba(212, 175, 55, 0.02) 70%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(255, 255, 255, 0.01) 30%, rgba(255, 255, 255, 0.01) 70%, transparent 70%);
    background-size: 100px 100px;
    z-index: 0;
    pointer-events: none;
}

.marble-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(201, 169, 97, 0.08) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
    animation: marbleShift 20s ease-in-out infinite;
}

@keyframes marbleShift {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.container {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.content {
    max-width: 900px;
    width: 100%;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo {
    margin-bottom: 50px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.logo-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    color: var(--secondary-color);
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.3));
}

.logo-icon svg {
    width: 100%;
    height: 100%;
}

.company-name {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 8px;
    color: var(--text-color);
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
    margin-bottom: 10px;
}

.tagline {
    font-size: 1rem;
    letter-spacing: 3px;
    color: var(--secondary-color);
    text-transform: uppercase;
    font-weight: 300;
}

.divider {
    width: 150px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
    margin: 40px auto;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.main-message {
    margin-bottom: 60px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.3;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.feature {
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--secondary-color);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.feature-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
    color: var(--secondary-color);
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.feature p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.contact-section {
    margin-bottom: 50px;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.contact-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 400px;
    margin: 0 auto;
}

.contact-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50px;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.contact-link:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--secondary-color);
    transform: translateX(-5px);
}

.contact-link svg {
    width: 20px;
    height: 20px;
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 1s both;
}

.social-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.02);
}

.social-link:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-5px) rotate(5deg);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.social-link svg {
    width: 24px;
    height: 24px;
}

footer {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    animation: fadeInUp 1s ease-out 1.2s both;
}

footer p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .company-name {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }

    .title {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .features {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-link {
        font-size: 0.9rem;
        padding: 12px 20px;
    }
}

@media (max-width: 480px) {
    .company-name {
        font-size: 2rem;
        letter-spacing: 3px;
    }

    .logo-icon {
        width: 60px;
        height: 60px;
    }

    .title {
        font-size: 1.6rem;
    }

    .social-link {
        width: 45px;
        height: 45px;
    }

    .social-link svg {
        width: 20px;
        height: 20px;
    }
}

.loading-animation {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.loading-dot {
    width: 12px;
    height: 12px;
    background: var(--secondary-color);
    border-radius: 50%;
    animation: bounce 1.4s infinite ease-in-out both;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.loading-dot:nth-child(1) {
    animation-delay: -0.32s;
}

.loading-dot:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes bounce {
    0%, 80%, 100% {
        transform: scale(0);
        opacity: 0.5;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}