/* ============================================
   CONTACT SHOWCASE SECTION STYLES
   ============================================ */

/* Contact Section */
.contact-showcase {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.contact-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,0,0,0.1), transparent);
}

/* Section Header */
.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.contact-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 1rem;
}

.contact-title-underline {
    width: 80px;
    height: 4px;
    background: #80cc27;
    margin: 0 auto;
    border-radius: 2px;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Contact Form Card */
.contact-form-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.contact-form-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.contact-form-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.contact-form-description {
    color: #6c757d;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

/* Form Styles */
.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form .form-input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.contact-form .form-input:focus {
    outline: none;
    border-color: #007bff;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.1);
}

.contact-form .form-input::placeholder {
    color: #adb5bd;
}

.contact-form textarea.form-input {
    resize: vertical;
    min-height: 140px;
}

/* Submit Button */
.contact-submit-btn {
    width: 100%;
    padding: 16px 32px;
    background: #80cc27;
    color: #000000;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

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

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

.contact-submit-btn i {
    transition: transform 0.3s ease;
}

.contact-submit-btn:hover i {
    transform: translateX(5px);
}

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

/* Alert Messages */
.contact-alert {
    padding: 1rem 1.25rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border: none;
}

.contact-alert-danger {
    background: #fee;
    color: #c33;
    border-left: 4px solid #c33;
}

.contact-alert-danger ul {
    margin: 0.5rem 0 0 0;
    padding-left: 1.5rem;
}

[dir="rtl"] .contact-alert-danger {
    border-left: none;
    border-right: 4px solid #c33;
}

/* Contact Info Card */
.contact-info-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
}

/* Contact Info Item */
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e9ecef;
}

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

.contact-info-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ffffff;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.contact-info-icon.phone {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
}

.contact-info-icon.email {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.contact-info-icon.location {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
}

.contact-info-content {
    flex: 1;
}

.contact-info-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.contact-info-text {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-info-text a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-text a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Map Container */
.contact-map-container {
    margin-top: 2rem;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-map-container iframe {
    width: 100%;
    height: 250px;
    border: none;
    display: block;
}

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

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

    .contact-form-card,
    .contact-info-card {
        padding: 1.75rem;
    }

    .contact-form-title {
        font-size: 1.5rem;
    }

    .contact-info-icon {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }

    .contact-grid {
        gap: 1.5rem;
    }
}

@media (max-width: 576px) {
    .contact-form-card,
    .contact-info-card {
        padding: 1.5rem;
    }

    .contact-info-item {
        gap: 1rem;
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
    }
}

