/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Assistant', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    min-height: 100vh;
    line-height: 1.6;
    direction: rtl;
    text-align: center;
}

.container {
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
    min-height: 100vh;
}

/* Header Styles */
.header {
    text-align: center;
    margin-bottom: 20px;
}

.logo-container {
    margin-bottom: 20px;
}

.logo {
    width: 140px;
    height: 140px;
    border-radius: 20px;
    background: white;
    padding: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 3px solid rgba(255, 255, 255, 0.9);
    object-fit: contain;
}

.title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1565c0;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.subtitle {
    font-size: 1.1rem;
    color: #424242;
    font-weight: 400;
    margin-bottom: 20px;
}

.divider {
    color: #757575;
    margin: 20px 0;
}

/* Main Content */
.main-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Hero Card */
.hero-card {
    background: linear-gradient(135deg, #9c88ff 0%, #7c4dff 100%);
    color: white;
    padding: 25px 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 12px 40px rgba(124, 77, 255, 0.3);
    margin: 20px 0;
}

.hero-card h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
}

.hero-card p {
    font-size: 1.1rem;
    font-weight: 400;
    opacity: 0.95;
}

/* Services Section */
.services {
    background: rgba(255, 255, 255, 0.9);
    padding: 30px 25px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.services-description {
    font-size: 1rem;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.7;
    text-align: center;
}

.service-items {
    margin-bottom: 30px;
}

.service-item {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.service-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.service-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1565c0;
    margin-bottom: 8px;
}

.service-item p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 4px;
}

/* Contact Button (now as link) */
.contact-btn {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #2c5282 0%, #1a365d 100%);
    color: white;
    border: none;
    padding: 20px 25px;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 25px;
    box-shadow: 0 8px 24px rgba(44, 82, 130, 0.3);
    transition: all 0.3s ease;
    text-align: center;
    font-family: inherit;
    text-decoration: none;
    box-sizing: border-box;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(44, 82, 130, 0.4);
    color: white;
    text-decoration: none;
}

.contact-btn:visited {
    color: white;
}

.contact-btn:active {
    transform: translateY(0);
}

.contact-subtitle {
    display: block;
    font-size: 0.9rem;
    font-weight: 400;
    opacity: 0.9;
    margin-top: 4px;
}

/* Contact Info */
.contact-info {
    text-align: center;
    margin-bottom: 20px;
}

.contact-info h3 {
    font-size: 1.1rem;
    color: #333;
    font-weight: 500;
}

/* WhatsApp Button */
.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    text-decoration: none;
    padding: 18px 25px;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    margin-top: 10px;
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    color: white;
}

.whatsapp-btn:visited {
    color: white;
}

.whatsapp-btn svg {
    width: 24px;
    height: 24px;
}

/* Responsive Design */
@media (max-width: 480px) {
    .container {
        padding: 15px;
    }
    
    .logo {
        width: 120px;
        height: 120px;
        padding: 12px;
    }
    
    .title {
        font-size: 1.8rem;
    }
    
    .hero-card {
        padding: 25px 20px;
    }
    
    .services {
        padding: 25px 20px;
    }
    
    .hero-card h2 {
        font-size: 1.3rem;
    }
}

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

.hero-card,
.services {
    animation: fadeInUp 0.6s ease-out;
}

.hero-card {
    animation-delay: 0.1s;
}

.services {
    animation-delay: 0.2s;
}