/* Contact section */
.atf-touch-area {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 40px 0;
}

/* Left side contact info */
.contact-info {
    padding: 40px;
}

.contact-info h2 {
    font-size: 32px;
    font-weight: bold;
    color: #333333;
    margin-bottom: 20px;
    text-align: left;
}

.contact-info p {
    font-size: 16px;
    color: #666666;
    margin-bottom: 40px;
    line-height: 1.6;
    text-align: left;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    margin-bottom: 40px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 15px;
    flex-shrink: 0;
}

.contact-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.contact-details h3 {
    font-size: 18px;
    font-weight: bold;
    color: #333333;
    margin-bottom: 5px;
}

.contact-details p {
    font-size: 16px;
    color: #666666;
    margin-bottom: 0;
}

/* Divider */
.divider {
    width: 100%;
    height: 1px;
    background-color: #e0e0e0;
    margin-bottom: 40px;
}

/* Right side form */
.contact-form {
    padding: 40px;
}

.contact-form form {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-row .form-group {
    flex: 1;
    margin-bottom: 0;
}

label {
    display: block;
    font-size: 14px;
    color: #333333;
    margin-bottom: 8px;
    font-weight: 500;
}

input, textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0 !important;
    border-radius: 8px;
    font-size: 16px;
    color: #333333;
    transition: border-color 0.3s ease;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #3B83F6 !important;
}

textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background-color: #3B83F6;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #2563EB;
}

/* Success modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background-color: white;
    margin: 15% auto;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    position: relative;
    animation: slideIn 0.3s ease;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.modal-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.success-icon {
    background-color: #3B83F6;
}

.success-icon::before {
    content: '✓';
    color: white;
    font-size: 32px;
    font-weight: bold;
}

.error-icon {
    background-color: #EF4444;
}

.error-icon::before {
    content: '!';
    color: white;
    font-size: 32px;
    font-weight: bold;
}

.modal h3 {
    color: #333333;
    margin-bottom: 15px;
    font-size: 24px;
}

.modal p {
    color: #666666;
    margin-bottom: 25px;
    font-size: 16px;
}

.modal-btn {
    background-color: #3B83F6;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.modal-btn:hover {
    background-color: #2563EB;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Responsive design */
@media (max-width: 768px) {
    body {
        padding: 40px 20px;
    }

    .contact-info, .contact-form {
        padding: 20px;
    }

    .form-row {
        flex-direction: column;
        gap: 20px;
    }

    .form-row .form-group {
        margin-bottom: 0;
    }
}