/* تحسين تصميم الصفحة الرئيسية */
body {
    font-family: 'Cairo', 'Segoe UI', sans-serif;
    background: #ffffff;
}

.launching {
    padding: 60px 0;
    background: #ffffff;
    position: relative;
}

.launching::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%2347b2e4" fill-opacity="0.03"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
    opacity: 0.5;
    pointer-events: none;
}

.title {
    background: linear-gradient(135deg, #1976d2 0%, #47b2e4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 40px;
    animation: fadeInDown 0.8s ease;
    text-shadow: 0 2px 10px rgba(25, 118, 210, 0.1);
}

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

.launch-link {
    display: block;
    text-decoration: none;
    margin-bottom: 30px;
    transition: all 0.4s ease;
    position: relative;
}

.launch-link::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, #47b2e4 0%, #1976d2 100%);
    border-radius: 25px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.launch-link:hover::before {
    opacity: 0.1;
}

.launch-link:hover {
    transform: translateY(-10px);
}

.launch-img {
    height: 350px;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(25, 118, 210, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 3px solid rgba(71, 178, 228, 0.1);
}

.launch-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(25, 118, 210, 0.3) 0%, rgba(71, 178, 228, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.launch-link:hover .launch-img::before {
    opacity: 1;
}

.launch-link:hover .launch-img {
    box-shadow: 0 15px 50px rgba(25, 118, 210, 0.35);
    transform: scale(1.02);
    border-color: rgba(71, 178, 228, 0.3);
}

.launching p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #1a2332;
    text-align: justify;
    animation: fadeIn 1s ease;
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(25, 118, 210, 0.08);
    border-left: 4px solid #47b2e4;
}

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

.launching strong {
    color: #1976d2;
    font-weight: 700;
    background: linear-gradient(135deg, #1976d2 0%, #47b2e4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.launching hr {
    border: none;
    height: 3px;
    background: linear-gradient(90deg, transparent, #47b2e4, transparent);
    margin: 50px 0;
    box-shadow: 0 2px 10px rgba(71, 178, 228, 0.2);
}

/* Gallery Section */
#gallery {
    padding: 80px 0;
    background: white;
    position: relative;
}

#gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, #e3f2fd 0%, transparent 100%);
    pointer-events: none;
}

.gallery .swiper-slide img {
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(25, 118, 210, 0.15);
    transition: all 0.3s ease;
    border: 3px solid #e3f2fd;
}

.gallery .swiper-slide img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(25, 118, 210, 0.3);
    border-color: #47b2e4;
}

/* Contact Section */
#contact {
    padding: 80px 0;
    background: #ffffff;
    position: relative;
}

#contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%2347b2e4" fill-opacity="0.03"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
    opacity: 0.5;
    pointer-events: none;
}

.section-title h2 {
    background: linear-gradient(135deg, #1976d2 0%, #47b2e4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #47b2e4, transparent);
    border-radius: 2px;
}

.php-email-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(25, 118, 210, 0.15);
    border: 2px solid #47b2e4;
    transition: all 0.3s ease;
}

.php-email-form:hover {
    box-shadow: 0 15px 50px rgba(25, 118, 210, 0.25);
    border-color: #1976d2;
}

.php-email-form label {
    font-weight: 600;
    color: #1a2332;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.php-email-form .form-control {
    border: 2px solid #e3f2fd;
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.php-email-form .form-control:focus {
    border-color: #47b2e4;
    box-shadow: 0 0 0 0.2rem rgba(71, 178, 228, 0.15);
    outline: none;
    background: white;
}

.php-email-form textarea {
    min-height: 150px;
    resize: vertical;
}

.php-email-form button {
    background: linear-gradient(135deg, #1976d2 0%, #47b2e4 100%);
    border: none;
    padding: 12px 40px;
    border-radius: 25px;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(25, 118, 210, 0.3);
}

.php-email-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(25, 118, 210, 0.4);
    background: linear-gradient(135deg, #47b2e4 0%, #1976d2 100%);
}

/* Responsive */
@media (max-width: 768px) {
    .title {
        font-size: 1.8rem;
    }

    .launch-img {
        height: 250px;
    }

    .launching p {
        font-size: 0.95rem;
    }
}
