/* Contact Section Styles */
.contact-section {
    position: relative;
    padding: 100px 0;
    /* background: #000003; */
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 223, 84, 0.05) 0%, rgba(255, 223, 84, 0.02) 100%);
    z-index: 0;
}

.contact-section .container {
    position: relative;
    z-index: 1;
}

/* Section Header */
.section-header {
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    padding: 8px 20px;
    background: #ffdf54;
    color: #000003;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(255, 223, 84, 0.3);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #ffffff;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #ffdf54;
    border-radius: 2px;
}

.section-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #cccccc;
    max-width: 700px;
    margin: 0 auto;
}

/* Contact Cards */
.contact-card {
    background: black;
    border: 1px solid rgba(255, 223, 84, 0.2);
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.contact-card:hover {
    background: rgba(255, 223, 84, 0.1);
    border-color: #ffdf54;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 223, 84, 0.2);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: #ffdf54;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #000003;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(255, 223, 84, 0.3);
}

.contact-content {
    color: #ffffff;
}

.contact-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffdf54;
}

.contact-link {
    display: block;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #ffdf54;
}

.contact-email {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #cccccc;
    text-decoration: none;
    font-size: 0.95rem;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.contact-email:hover {
    color: #ffdf54;
}

.contact-email i {
    color: #ffdf54;
}

.contact-address {
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.contact-desc {
    color: #aaaaaa;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-top: 10px;
    margin-bottom: 0;
}

.contact-map-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffdf54;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.contact-map-link:hover {
    color: #ffffff;
    gap: 12px;
}

.contact-map-link i {
    font-size: 0.875rem;
}

/* Contact Form */
.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 223, 84, 0.2);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.form-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffdf54;
    margin-bottom: 10px;
}

.form-desc {
    color: #cccccc;
    font-size: 0.95rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form .form-control {
    width: 100%;
    padding: 15px 20px;
    background: rgb(0 0 0 / 10%);
    border: #000000;
    border-radius: 10px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form .form-control::placeholder {
    color: #aaaaaa;
}

.contact-form .form-control:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    border-color: #ffdf54;
    box-shadow: 0 0 0 3px rgba(255, 223, 84, 0.1);
}

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

.error-message {
    display: block;
    color: #ff6b6b;
    font-size: 0.875rem;
    margin-top: 5px;
}

.alert-danger {
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.3);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
    color: #ff6b6b;
}

.alert-danger ul {
    margin: 0;
    padding-left: 20px;
}

.submit-btn {
    width: 100%;
    padding: 15px 30px;
    background: #ffdf54;
    color: #000003;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(255, 223, 84, 0.3);
}

.submit-btn:hover {
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 223, 84, 0.4);
}

.submit-btn i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

[dir="rtl"] .submit-btn:hover i {
    transform: translateX(-5px);
}

[dir="ltr"] .submit-btn:hover i {
    transform: translateX(5px);
}

/* Map Full Width */
.map-wrapper-full {
    margin-top: 60px;
    width: 100%;
}

.map-container-full {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 223, 84, 0.2);
    width: 100%;
}

.map-container-full iframe {
    display: block;
    width: 100%;
    height: 500px;
}

/* Responsive Design */
@media (max-width: 991px) {
    .contact-section {
        padding: 80px 0;
    }
    
    .section-header {
        margin-bottom: 50px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .contact-form-wrapper {
        margin-bottom: 40px;
        padding: 30px;
    }
    
    .map-wrapper-full {
        margin-top: 40px;
    }
    
    .map-container-full iframe {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .contact-form-wrapper {
        padding: 25px;
    }
    
    .form-title {
        font-size: 1.5rem;
    }
    
    .contact-card {
        padding: 20px;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .contact-title {
        font-size: 1.125rem;
    }
    
    .contact-link {
        font-size: 1rem;
    }
    
    .map-wrapper-full {
        margin-top: 40px;
    }
    
    .map-container-full iframe {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .contact-section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-label {
        font-size: 0.75rem;
        padding: 6px 15px;
    }
    
    .contact-form-wrapper {
        padding: 20px;
    }
    
    .form-title {
        font-size: 1.25rem;
    }
    
    .contact-card {
        padding: 20px;
    }
    
    .map-wrapper-full {
        margin-top: 30px;
    }
    
    .map-container-full iframe {
        height: 300px;
    }
}

/* RTL Specific Adjustments */
[dir="rtl"] .section-title::after {
    left: auto;
    right: 50%;
    transform: translateX(50%);
}

[dir="ltr"] .section-title::after {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
}

/* Animation Support */
.wow {
    visibility: hidden;
}

