/* Basic styles for BigGem Website */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', sans-serif;
    direction: rtl;
    text-align: right;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Ensure all sections have proper spacing */
section {
    position: relative;
}

/* Contact section styles */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.contact .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2e0056;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #2e0056 0%, #57078d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact .section-subtitle {
    font-size: 1.1rem;
    color: #666;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(46, 0, 86, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(46, 0, 86, 0.15);
    border-color: rgba(87, 7, 141, 0.2);
}

.contact-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #57078d, #6b01df);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2e0056;
    margin-bottom: 8px;
}

.contact-details p {
    color: #666;
    font-size: 1rem;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    justify-content: flex-start;
}

.social-link {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #57078d, #6b01df);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 25px rgba(87, 7, 141, 0.4);
    background: linear-gradient(135deg, #6b01df, #57078d);
}

.contact-form {
    background: white;
    padding: 45px;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(46, 0, 86, 0.1);
    border: 2px solid transparent;
    background-clip: padding-box;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #2e0056;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.form-control {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e5e5e5;
    border-radius: 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Cairo', sans-serif;
    background: #fafafa;
}

.form-control:focus {
    outline: none;
    border-color: #57078d;
    box-shadow: 0 0 0 3px rgba(87, 7, 141, 0.1);
    background: white;
}

.form-control::placeholder {
    color: #999;
    font-size: 0.95rem;
}

textarea.form-control {
    resize: vertical;
    min-height: 130px;
}

.btn-submit {
    background: linear-gradient(135deg, #57078d, #6b01df);
    color: white;
    padding: 16px 45px;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Cairo', sans-serif;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(87, 7, 141, 0.3);
    background: linear-gradient(135deg, #6b01df, #57078d);
}

.alert {
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    font-weight: 500;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-danger {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* تجاهل أنماط social-link في الفوتر */
.footer .social-link,
.footer-social .social-link {
    width: 36px !important;
    height: 36px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border-radius: 50% !important;
    font-size: 0.9rem !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact {
        padding: 60px 0;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact .section-title {
        font-size: 2rem;
    }

    .contact .section-subtitle {
        font-size: 1rem;
    }

    .contact-form {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .contact-item {
        padding: 20px;
        border-radius: 15px;
    }

    .contact-icon {
        width: 55px;
        height: 55px;
        font-size: 1.2rem;
    }

    .contact-details h4 {
        font-size: 1.1rem;
    }

    .social-links {
        justify-content: center;
    }

    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .form-control {
        padding: 14px 16px;
        font-size: 0.95rem;
    }

    .btn-submit {
        width: 100%;
        padding: 14px 35px;
        font-size: 1rem;
    }
}
