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

body {
    font-family: 'Cairo', sans-serif;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
    overflow-x: hidden;
    direction: rtl;
}

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

.content {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 600px;
    width: 100%;
    position: relative;
    z-index: 10;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 1s ease-out;
}

.logo-section {
    /* margin-bottom: 40px; */
    animation: logoFloat 3s ease-in-out infinite;
}

.main-logo {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.main-logo:hover {
    transform: scale(1.05);
}

.message-section {
    margin-bottom: 50px;
}

.main-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #6b7c32;
    /* margin-bottom: 20px; */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    animation: titleGlow 2s ease-in-out infinite alternate;
}

.subtitle {
    font-size: 1.3rem;
    color: #666;
    font-weight: 400;
    opacity: 0.8;
    animation: fadeIn 2s ease-out 0.5s both;
}

.contact-section {
    background: rgba(107, 124, 50, 0.05);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 40px;
    border: 2px solid rgba(107, 124, 50, 0.1);
    animation: slideInRight 1s ease-out 0.8s both;
}

.contact-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(107, 124, 50, 0.1);
    font-size: 1.1rem;
}

.contact-item:last-child {
    border-bottom: none;
}

.label {
    font-weight: 600;
    color: #6b7c32;
    min-width: 100px;
}

.value {
    color: #333;
    font-weight: 400;
    flex: 1;
    text-align: left;
}

.footer {
    animation: slideInUp 1s ease-out 1s both;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    font-size: 0.9rem;
    color: #666;
}

.social-links span {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 12px;
    background: rgba(107, 124, 50, 0.1);
    color: #6b7c32;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.social-links span:hover {
    background: rgba(107, 124, 50, 0.2);
    transform: translateY(-2px);
}

.website {
    color: #6b7c32;
    font-weight: 600;
}

.social-media-icons {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 8px 12px;
    background: rgba(107, 124, 50, 0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.social-media-icons:hover {
    background: rgba(107, 124, 50, 0.2);
    transform: translateY(-2px);
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(107, 124, 50, 0.1);
    border-radius: 50%;
    color: #6b7c32;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.social-link:hover {
    background: #6b7c32;
    color: white;
    transform: translateY(-2px) scale(1.1);
    box-shadow: 0 4px 12px rgba(107, 124, 50, 0.3);
}

.social-link svg {
    transition: all 0.3s ease;
}

.social-handle {
    color: #6b7c32;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Background Animation Elements */
.bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-element {
    position: absolute;
    background: linear-gradient(45deg, rgba(107, 124, 50, 0.1), rgba(184, 190, 77, 0.1));
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.element-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.element-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.element-3 {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

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

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes titleGlow {
    from {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    }
    to {
        text-shadow: 2px 2px 20px rgba(107, 124, 50, 0.3);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 0.8;
    }
}

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

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

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

/* Loading Dots Animation */
.loading-dots {
    display: inline-block;
    margin-right: 10px;
}

.dot {
    display: inline-block;
    animation: loadingDots 1.5s infinite;
    font-size: 3.5rem;
    line-height: 1;
}

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

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

.dot:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes loadingDots {
    0%, 60%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    30% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .content {
        padding: 40px 20px;
        margin: 10px;
    }
    
    .main-title {
        font-size: 2.5rem;
    }
    
    .dot {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .social-links {
        flex-direction: column;
        gap: 10px;
    }
    
    .social-media-icons {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }
    
    .value {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .main-logo {
        max-width: 150px;
    }
    
    .main-title {
        font-size: 2rem;
    }
    
    .dot {
        font-size: 2rem;
    }
    
    .contact-section {
        padding: 20px;
    }
}